Mercurial > public > finance-parser
changeset 2:ef8a4d95755a
add aws sam project
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Thu, 01 Jun 2023 18:51:18 +0100 |
parents | e23b7617bbc4 |
children | 2e5f3664f3e4 |
files | .gitignore .idea/.gitignore .idea/aws.xml .idea/finance-parser.iml .idea/inspectionProfiles/Project_Default.xml .idea/inspectionProfiles/profiles_settings.xml .idea/jsonSchemas.xml .idea/misc.xml .idea/modules.xml .idea/vcs.xml README.md __init__.py events/process_document_event.json inditex.json main.py process_document/__init__.py process_document/app.py process_document/requirements.txt samconfig.toml santander.json template.yaml tests/__init__.py tests/unit/__init__.py tests/unit/test_handler.py |
diffstat | 20 files changed, 682 insertions(+), 49187 deletions(-) [+] |
line wrap: on
line diff
--- a/.gitignore Wed May 31 20:19:26 2023 +0100 +++ b/.gitignore Thu Jun 01 18:51:18 2023 +0100 @@ -1,5 +1,152 @@ -# Created by https://www.toptal.com/developers/gitignore/api/python -# Edit at https://www.toptal.com/developers/gitignore?templates=python + +# Created by https://www.toptal.com/developers/gitignore/api/osx,linux,python,windows,pycharm,visualstudiocode,sam +# Edit at https://www.toptal.com/developers/gitignore?templates=osx,linux,python,windows,pycharm,visualstudiocode,sam + +### Linux ### +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +### OSX ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### PyCharm ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +### PyCharm Patch ### +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 + +# *.iml +# modules.xml +# .idea/misc.xml +# *.ipr + +# Sonarlint plugin +# https://plugins.jetbrains.com/plugin/7973-sonarlint +.idea/**/sonarlint/ + +# SonarQube Plugin +# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin +.idea/**/sonarIssues.xml + +# Markdown Navigator plugin +# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced +.idea/**/markdown-navigator.xml +.idea/**/markdown-navigator-enh.xml +.idea/**/markdown-navigator/ + +# Cache file creation bug +# See https://youtrack.jetbrains.com/issue/JBR-2257 +.idea/$CACHE_FILE$ + +# CodeStream plugin +# https://plugins.jetbrains.com/plugin/12206-codestream +.idea/codestream.xml ### Python ### # Byte-compiled / optimized / DLL files @@ -18,12 +165,11 @@ downloads/ eggs/ .eggs/ -lib/ -lib64/ parts/ sdist/ var/ wheels/ +pip-wheel-metadata/ share/python-wheels/ *.egg-info/ .installed.cfg @@ -53,7 +199,7 @@ *.py,cover .hypothesis/ .pytest_cache/ -cover/ +pytestdebug.log # Translations *.mo @@ -74,9 +220,9 @@ # Sphinx documentation docs/_build/ +doc/_build/ # PyBuilder -.pybuilder/ target/ # Jupyter Notebook @@ -87,9 +233,7 @@ ipython_config.py # pyenv -# For a library or package, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# .python-version +.python-version # pipenv # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. @@ -99,21 +243,9 @@ #Pipfile.lock # poetry -# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control #poetry.lock -# pdm -# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. -#pdm.lock -# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it -# in version control. -# https://pdm.fming.dev/#use-with-ide -.pdm.toml - -# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +# PEP 582; used by e.g. github.com/David-OConnor/pyflow __pypackages__/ # Celery stuff @@ -124,13 +256,15 @@ *.sage.py # Environments -.env -.venv +# .env +.env/ +.venv/ env/ venv/ ENV/ env.bak/ venv.bak/ +pythonenv* # Spyder project settings .spyderproject @@ -153,24 +287,59 @@ # pytype static type analyzer .pytype/ -# Cython debug symbols -cython_debug/ +# operating system-related files +# file properties cache/storage on macOS +*.DS_Store +# thumbnail cache on Windows +Thumbs.db + +# profiling data +.prof + -# PyCharm -# JetBrains specific template is maintained in a separate JetBrains.gitignore that can -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore -# and can be added to the global gitignore or merged into this file. For a more nuclear -# option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ +### SAM ### +# Ignore build directories for the AWS Serverless Application Model (SAM) +# Info: https://aws.amazon.com/serverless/sam/ +# Docs: https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-reference.html + +**/.aws-sam + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace -### Python Patch ### -# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration -poetry.toml +### VisualStudioCode Patch ### +# Ignore all local history of files +.history +.ionide + +### Windows ### +# Windows thumbnail cache files +Thumbs.db:encryptable +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump -# ruff -.ruff_cache/ +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ -# LSP config files -pyrightconfig.json +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp -# End of https://www.toptal.com/developers/gitignore/api/python +# Windows shortcuts +*.lnk + +# End of https://www.toptal.com/developers/gitignore/api/osx,linux,python,windows,pycharm,visualstudiocode,sam
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.idea/.gitignore Thu Jun 01 18:51:18 2023 +0100 @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.idea/aws.xml Thu Jun 01 18:51:18 2023 +0100 @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="accountSettings"> + <option name="activeProfile" value="profile:Sandbox" /> + <option name="activeRegion" value="eu-central-1" /> + <option name="recentlyUsedProfiles"> + <list> + <option value="profile:Sandbox" /> + <option value="profile:default" /> + </list> + </option> + <option name="recentlyUsedRegions"> + <list> + <option value="eu-central-1" /> + </list> + </option> + </component> +</project> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.idea/finance-parser.iml Thu Jun 01 18:51:18 2023 +0100 @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8"?> +<module type="PYTHON_MODULE" version="4"> + <component name="NewModuleRootManager"> + <content url="file://$MODULE_DIR$"> + <excludeFolder url="file://$MODULE_DIR$/.aws-sam" /> + <excludeFolder url="file://$MODULE_DIR$/venv" /> + </content> + <orderEntry type="inheritedJdk" /> + <orderEntry type="sourceFolder" forTests="false" /> + </component> + <component name="syncSettings"> + <option name="samConfigs"> + <map> + <entry key="template.yaml"> + <value> + <SyncSamConfig> + <option name="bucketName" value="sandbox-finance-parser-source" /> + <option name="enabledCapabilities"> + <list> + <option value="NAMED_IAM" /> + <option value="AUTO_EXPAND" /> + </list> + </option> + <option name="stackName" value="FinanceParser" /> + <option name="tags"> + <map /> + </option> + <option name="tempParameterOverrides"> + <map /> + </option> + <option name="useContainer" value="true" /> + </SyncSamConfig> + </value> + </entry> + </map> + </option> + </component> +</module> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.idea/inspectionProfiles/Project_Default.xml Thu Jun 01 18:51:18 2023 +0100 @@ -0,0 +1,12 @@ +<component name="InspectionProjectProfileManager"> + <profile version="1.0"> + <option name="myName" value="Project Default" /> + <inspection_tool class="GrazieInspection" enabled="false" level="GRAMMAR_ERROR" enabled_by_default="false" /> + <inspection_tool class="LanguageDetectionInspection" enabled="false" level="WARNING" enabled_by_default="false" /> + <inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false"> + <option name="processCode" value="true" /> + <option name="processLiterals" value="true" /> + <option name="processComments" value="true" /> + </inspection_tool> + </profile> +</component> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.idea/inspectionProfiles/profiles_settings.xml Thu Jun 01 18:51:18 2023 +0100 @@ -0,0 +1,6 @@ +<component name="InspectionProjectProfileManager"> + <settings> + <option name="USE_PROJECT_PROFILE" value="false" /> + <version value="1.0" /> + </settings> +</component> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.idea/jsonSchemas.xml Thu Jun 01 18:51:18 2023 +0100 @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="JsonSchemaMappingsProjectConfiguration"> + <state> + <map> + <entry key="AWS CloudFormation Serverless Application Model (SAM)"> + <value> + <SchemaInfo> + <option name="name" value="AWS CloudFormation Serverless Application Model (SAM)" /> + <option name="relativePathToSchema" value="https://raw.githubusercontent.com/aws/serverless-application-model/main/samtranslator/schema/schema.json" /> + <option name="applicationDefined" value="true" /> + <option name="patterns"> + <list> + <Item> + <option name="path" value="template.yaml" /> + </Item> + </list> + </option> + </SchemaInfo> + </value> + </entry> + </map> + </state> + </component> +</project> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.idea/misc.xml Thu Jun 01 18:51:18 2023 +0100 @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.11 (finance-parser)" project-jdk-type="Python SDK" /> +</project> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.idea/modules.xml Thu Jun 01 18:51:18 2023 +0100 @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="ProjectModuleManager"> + <modules> + <module fileurl="file://$PROJECT_DIR$/.idea/finance-parser.iml" filepath="$PROJECT_DIR$/.idea/finance-parser.iml" /> + </modules> + </component> +</project> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.idea/vcs.xml Thu Jun 01 18:51:18 2023 +0100 @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="VcsDirectoryMappings"> + <mapping directory="$PROJECT_DIR$" vcs="Git" /> + </component> +</project> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README.md Thu Jun 01 18:51:18 2023 +0100 @@ -0,0 +1,1 @@ +# finance-parser \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/events/process_document_event.json Thu Jun 01 18:51:18 2023 +0100 @@ -0,0 +1,38 @@ +{ + "Records":[ + { + "eventVersion":"2.1", + "eventSource":"aws:s3", + "awsRegion":"eu-central-1", + "eventTime":"2023-06-01T16:53:50.860Z", + "eventName":"ObjectCreated:Put", + "userIdentity":{ + "principalId":"AWS:AROAYRP4EVDJOMTEWOIXJ:dennis" + }, + "requestParameters":{ + "sourceIPAddress":"88.25.226.176" + }, + "responseElements":{ + "x-amz-request-id":"X1HS8KY4ZX3GBSCD", + "x-amz-id-2":"AE2BzGU/+Dk0x2lsYhw6b8h2Ha67cxSK/hsI0NIRnjP9/UePvBfYS4GabPgzpdd6JSM6LYSLJvjDDFeOfES5ip1dtfsPSw5G" + }, + "s3":{ + "s3SchemaVersion":"1.0", + "configurationId":"f0a23387-f41d-4d90-b2cb-f16f2c61c5ab", + "bucket":{ + "name":"sandbox-finance-parser-data", + "ownerIdentity":{ + "principalId":"A2WI146QA2L7B1" + }, + "arn":"arn:aws:s3:::sandbox-finance-parser-data" + }, + "object":{ + "key":"balance_sheet.pdf", + "size":49856, + "eTag":"0adc595c8f2dbfabb5c4095f1f91b458", + "sequencer":"006478CD1EC996352F" + } + } + } + ] +} \ No newline at end of file
--- a/inditex.json Wed May 31 20:19:26 2023 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,20276 +0,0 @@ -{ - "DocumentMetadata": { - "Pages": 1 - }, - "JobStatus": "SUCCEEDED", - "Blocks": [ - { - "BlockType": "PAGE", - "Geometry": { - "BoundingBox": { - "Width": 1, - "Height": 1, - "Left": 0, - "Top": 0 - }, - "Polygon": [ - { - "X": 2.743419713624462e-9, - "Y": 0 - }, - { - "X": 1, - "Y": 0.0007439688197337091 - }, - { - "X": 1, - "Y": 1 - }, - { - "X": 0, - "Y": 1 - } - ] - }, - "Id": "3dfd8ed7-990e-42ae-985c-d3d6af352268", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "e3dc38d9-c176-43a6-a97d-083af2fa0950", - "036778e2-0222-4757-91d6-aeb3fd3d59b9", - "9ff93656-265c-4596-a98f-05c1d47e7dde", - "59812e4c-3b36-4e68-b5f5-f8b546c0432e", - "8eb9102a-29bb-4b8a-a2b4-93f9fd6895d3", - "9c42b13f-2dca-4541-95b6-0d9a8fb2cfb4", - "69ffab26-2736-404e-9172-3f8b82055c5f", - "af67d74a-d1c5-4459-86ef-933c71b9b054", - "81e371aa-744d-4c85-8e5f-4405ed67b0f1", - "e1bb7e7d-02a0-4a20-8430-d3a7d0ac2a27", - "69408bd2-f88c-44ed-9d78-1de0cb23f300", - "a5bb1e8b-4db4-4098-b4bd-3e6c4dd84980", - "d595f84b-ff6d-450c-9c93-7f2d4152e1ce", - "044d3a46-ab23-4518-9bab-0c77a6b2ba19", - "ed34cdc9-25bc-41ac-a4ed-8e874c4dd0ad", - "14c06585-4001-4660-bdff-673a977819a4", - "a6a74532-088c-44da-8ff2-f0d1b229c2f6", - "a633a1eb-71e9-4f68-bd4a-e62989871988", - "76d6d4c4-626d-4fe5-9f86-9b76160bd26f", - "d93a863a-1b0d-4374-b0a2-f840ad99ef42", - "6c2b3dd9-3c5d-4517-baa0-84e8dcebbf31", - "5038e484-f2b1-4db0-b351-007705dfbc77", - "c072e755-c71e-425a-9e75-17210afd360c", - "d670755a-6104-4f60-b845-49f5cddafbc1", - "646f69a0-57cb-4189-a1e8-77e0e6248300", - "dff18f07-791a-4136-bbe1-e18d563190e3", - "6292a8f3-a13b-4686-b999-f29fc261bc12", - "891a66a2-5ce3-4044-affa-82f7b0b7ff3d", - "2021790f-5758-4fda-9785-4e118b4351d9", - "10185e93-2332-4f7a-a892-83d0553b4e89", - "0d90e71e-4172-4817-bdf9-6ddf9db43b69", - "35082714-ecdc-4485-8011-5cdb26c79512", - "3f5ef235-83e4-49dc-933d-257dab87c354", - "f6a9ef49-0c56-4c96-8b5b-6af52c627c37", - "3a520203-9e60-4cb6-84fe-094e843012e9", - "5c246334-16db-4be1-9067-3735d2de1ca4", - "b1d672d1-857d-40ba-a7d6-1414268ed388", - "5e2c6083-580a-4546-9292-85c76143c047", - "a66ae1b8-035d-4f6d-9994-e84129038d30", - "53848829-6133-4ef5-aee6-acf83e602477", - "43b8b5fc-2242-4710-a7e7-5c2309fb9cca", - "bd4b7b48-27f6-46a6-9cb3-f786fac8bf34", - "6581892b-1acc-4b3b-977b-cc4e7181cf87", - "c540d6aa-2abf-475e-9f23-9c6ca487f135", - "578e9e44-d656-41f1-99e0-e040d51aebf6", - "a11b8243-b4a4-4318-bfa4-de3477312bbf", - "cec23b65-fb9a-46f2-ae96-7dacbe81fd70", - "d429c609-28e8-449f-9f7d-74b99229d315", - "f1343670-921f-4f33-bf6c-7b48e6b6a127", - "c99d2f5a-256a-4911-ba5b-37fef53c411d", - "91f8fe45-8b01-4096-8aa2-7486ce4c9cee", - "98967870-ef1c-46fc-a5a7-ac3dacdf2e6b", - "e6c3f6cd-7ca3-406b-9b63-4bd991312754", - "8d7157d8-6b91-49c0-ac58-d6755b5fbc4f", - "05cae6ae-5931-4dd7-9d03-e903f09fa346", - "33b397a2-73e1-4f09-a515-84f549ea0be5", - "634cbd51-90ed-4bcc-87f1-e8b8d82326a0", - "f79f6c9a-47c8-46d1-bace-2f901268503b", - "d745751a-5b29-44b0-8875-c59826882f81", - "2b81aada-3dcd-4afd-b061-5556e5a27ba2", - "c79b45b1-b85a-4e39-91a8-9ed92edaebf5", - "fca5e930-a477-464e-a0c9-7fd1bf453f18", - "0d5dfde5-74a0-4a33-81dc-cb0048143854", - "e23eebe7-c144-445d-a1bf-9de9f511a7fc", - "9076376e-f228-4cae-b411-1dc52fdd8fb3", - "9df92c62-ef81-4476-ba3d-025afdfee7cf", - "b3c2dad9-860e-4974-97e0-0a5cb8e5fe1b", - "d4cf3aab-3acb-4a47-8688-f186472316bf", - "67983279-d3a9-4fac-820e-4486d79624dc", - "846e226d-40af-4b29-8135-f08f227d8598", - "40a75166-7dee-4fdc-9996-71e87d209436", - "de00d1b2-75b0-44e1-970f-65be32cc1316", - "79f30a6a-7551-4e93-b5c3-a71fb6309b8e", - "e0ca2a9c-0c77-4f82-bc02-4b57472c8c56", - "342ff825-f8c8-465d-8bf5-f6f4db1887ec", - "b1a370d3-834d-43b2-bf66-94151a822bb0", - "698e699a-3d9f-469a-a8ec-68823c3915cd", - "4f4e1c3d-5e37-43cf-93a8-773e6206d28d", - "6db071da-93b3-4eda-b26d-adeb10a408fa", - "45c45ef0-dd72-42ba-85ed-6264eb77022d", - "08139095-493e-482b-a67a-848ee3f17390", - "16ccfe38-21ba-494d-ac1c-fd43ae7e0997", - "9b1afc5e-642b-49fc-8cc2-aba43d136cc8", - "22322071-645d-4564-94a9-64d671393329", - "b77f1ea0-9e41-4a89-ab5e-2435a740a9b4", - "194cb701-5f00-40ab-808c-ad6fa7fa6a9d", - "37a293d6-c093-4a0c-bb69-531464fc5c12", - "4ab80f4a-9d7b-4245-8c6f-0e17c21939c9", - "a9131ea4-a748-4837-8911-453c2804a724", - "93b1fab3-3738-44f7-a821-1413628b654c", - "f9caf5bc-619d-434d-b229-4a8edcc6efec", - "1f755dbb-a2e2-4310-ad73-0e265eb97112", - "23233c55-1b7e-4e6c-bd71-aaf1db801c29", - "ec1f3273-bc6b-4242-be23-5bc26224e2ca", - "ba0b79d2-221a-4c33-9d68-08ff03dbc058", - "f965e425-60e2-4f0b-8b44-02ee9c827c23", - "9d8027d3-73a4-42dd-ac92-ff6dc2212e66", - "29fb12a4-2282-473b-99b7-3359897463b1", - "80249642-9246-4375-8c44-613a8b347f07", - "14d1b7aa-a540-44a7-bfb0-76c1ad8c1523", - "e2d1b02f-db3a-4440-9dcd-abd752ce8580", - "16d52e28-d756-417e-a4b7-2596d8b5b449", - "c730a64d-9089-49a6-920b-a1489f3fa110", - "4b2bf4ec-00e8-4a0c-b80d-3cfe11798f41", - "a47873f3-2a17-4f0e-9079-d6968077f95d", - "9fc275e2-8a35-430f-851a-468fb60e68fb", - "d624ff5e-db3c-436d-ad99-72a74cdfcb5e", - "dadfdd74-cd0e-4743-947d-369746076d63", - "43848399-12fb-4080-ba3e-f167adcb83e1", - "5628fb80-89f9-4963-859d-2d0351a0399d", - "59261727-0c3e-4e4b-8933-50867d952c3c", - "682cd2d9-3106-4985-a0b0-15a8fe44e25a", - "25ac050d-0940-435b-bda4-7876810ceeb5", - "a7651adf-f577-4fe6-9c3f-51fff72421af", - "758bf6a4-2649-46cc-a920-23b5b0ba01eb", - "fc142961-709b-4c0a-a576-c807eee27fea", - "cb03f73d-a249-4173-9044-d42acc1d3f8a", - "c5cb0378-d104-4d9b-ad67-d342e750c080", - "469a8336-0123-4921-8dc8-91019ba04886", - "b1aecef4-a65c-4a8f-825b-0cbae47c3b26", - "26eb61fc-1fe0-41d4-a614-6b8c68204e0c", - "94287c05-a895-4c69-be1b-1e60964c6ac4", - "ca6d5fd0-12df-447f-8d22-8ab592278540", - "aa965932-da58-48ba-aa75-1a5983831e10", - "f1cf3a58-951e-4870-9a9b-25590cce4d93", - "27fdfea6-a9e7-4ed3-a878-75fd4f4026be", - "23622376-6f27-44c2-a60d-0c1c58c64d3f", - "efeb8a5b-7ff2-43a6-babc-33b958e5de88", - "1c3a73b2-835b-4103-a9ca-25d2045ac55d", - "12389fe4-6cca-4ff1-9e80-bd56112e876e", - "264d1e25-cae7-4bbd-849a-2303db524edc", - "f205cecf-7cb4-4c82-9c14-cda279b9b0bb", - "147b59ce-e580-48d0-98c5-36614eb43f12", - "f412e6ba-8d12-413c-9ddb-d610e5d90813", - "a25500de-42b4-4719-adb1-d2ff6455ca01", - "88c1d179-1c45-41eb-bc1c-7c9c54e03450", - "4e8259d9-92d9-49c3-b745-7baead8ac107", - "ef13f9e7-8f03-4b04-bd32-6b4823ebe594", - "4257b555-e9f4-4c39-b4fe-8d992614fcd9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 98.99732208251953, - "Text": "Inditex Annual Report 2022 / Consolidated Annual Accounts", - "Geometry": { - "BoundingBox": { - "Width": 0.2841462194919586, - "Height": 0.008795266970992088, - "Left": 0.10329598933458328, - "Top": 0.04673710837960243 - }, - "Polygon": [ - { - "X": 0.1032983735203743, - "Y": 0.04673710837960243 - }, - { - "X": 0.3874422013759613, - "Y": 0.046951185911893845 - }, - { - "X": 0.38744059205055237, - "Y": 0.05553237721323967 - }, - { - "X": 0.10329598933458328, - "Y": 0.055318254977464676 - } - ] - }, - "Id": "e3dc38d9-c176-43a6-a97d-083af2fa0950", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "0298b06b-1eca-4a54-8d82-84207c1fbf7d", - "227624f2-0341-45ff-8868-3547e7e81a16", - "d7602e54-dac3-47f1-a8eb-f99a7e57ce7e", - "e7fa0bb0-5046-4e77-a6da-b3141c45608b", - "462d8ff0-0771-4f7d-914b-68ae135f3cd5", - "5d428d25-4c8f-4197-b7e0-0d038231cd39", - "f0ab7c4d-d861-4b35-b394-8fc78a93dc66", - "e3394e67-442f-4dee-be2e-62c7332730dd" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.66687774658203, - "Text": "(Amounts in millions of euros)", - "Geometry": { - "BoundingBox": { - "Width": 0.16286705434322357, - "Height": 0.00930653978139162, - "Left": 0.11146684736013412, - "Top": 0.115041084587574 - }, - "Polygon": [ - { - "X": 0.11146937310695648, - "Y": 0.115041084587574 - }, - { - "X": 0.2743338942527771, - "Y": 0.11516400426626205 - }, - { - "X": 0.27433183789253235, - "Y": 0.12434762716293335 - }, - { - "X": 0.11146684736013412, - "Y": 0.12422467768192291 - } - ] - }, - "Id": "036778e2-0222-4757-91d6-aeb3fd3d59b9", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "539be61f-3fd6-4c59-b0b6-d8097a3cd43d", - "3547e8db-3dc0-459d-a631-82a26ae01dec", - "b4874339-a8be-46a6-8535-4d36f09dda66", - "7032ce45-c86e-4a2a-8c03-fdcbd8edca14", - "f236c6d9-4b75-4728-93de-581f07efaad4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.79374694824219, - "Text": "(Notes)", - "Geometry": { - "BoundingBox": { - "Width": 0.04059092327952385, - "Height": 0.009456093423068523, - "Left": 0.6850693225860596, - "Top": 0.11493061482906342 - }, - "Polygon": [ - { - "X": 0.6850702166557312, - "Y": 0.11493061482906342 - }, - { - "X": 0.7256602048873901, - "Y": 0.11496125161647797 - }, - { - "X": 0.7256594300270081, - "Y": 0.12438671290874481 - }, - { - "X": 0.6850693225860596, - "Y": 0.12435606867074966 - } - ] - }, - "Id": "9ff93656-265c-4596-a98f-05c1d47e7dde", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "437f8b1e-c7d1-4d64-ab16-c08e5ab93f60" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.7059097290039, - "Text": "31/01/2023", - "Geometry": { - "BoundingBox": { - "Width": 0.06254169344902039, - "Height": 0.007852497510612011, - "Left": 0.745964527130127, - "Top": 0.11529694497585297 - }, - "Polygon": [ - { - "X": 0.7459651827812195, - "Y": 0.11529694497585297 - }, - { - "X": 0.8085062503814697, - "Y": 0.11534414440393448 - }, - { - "X": 0.8085057735443115, - "Y": 0.12314943969249725 - }, - { - "X": 0.745964527130127, - "Y": 0.12310223281383514 - } - ] - }, - "Id": "59812e4c-3b36-4e68-b5f5-f8b546c0432e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ee8fd458-8783-4a83-9670-d919295a9ac0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.76959228515625, - "Text": "31/01/2022", - "Geometry": { - "BoundingBox": { - "Width": 0.06250781565904617, - "Height": 0.007845240645110607, - "Left": 0.8292930126190186, - "Top": 0.11529428511857986 - }, - "Polygon": [ - { - "X": 0.829293429851532, - "Y": 0.11529428511857986 - }, - { - "X": 0.8918008208274841, - "Y": 0.11534146219491959 - }, - { - "X": 0.8918005228042603, - "Y": 0.12313952296972275 - }, - { - "X": 0.8292930126190186, - "Y": 0.12309233844280243 - } - ] - }, - "Id": "8eb9102a-29bb-4b8a-a2b4-93f9fd6895d3", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "dcc42672-a493-40ec-880c-e2ab165c6799" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.91988372802734, - "Text": "ASSETS", - "Geometry": { - "BoundingBox": { - "Width": 0.04722103849053383, - "Height": 0.008245411328971386, - "Left": 0.1108265370130539, - "Top": 0.13016892969608307 - }, - "Polygon": [ - { - "X": 0.11082880198955536, - "Y": 0.13016892969608307 - }, - { - "X": 0.15804757177829742, - "Y": 0.13020457327365875 - }, - { - "X": 0.1580454409122467, - "Y": 0.13841433823108673 - }, - { - "X": 0.1108265370130539, - "Y": 0.13837867975234985 - } - ] - }, - "Id": "9c42b13f-2dca-4541-95b6-0d9a8fb2cfb4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "67e5da9e-cd3a-402b-af77-2488c66649b9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.71355438232422, - "Text": "NON-CURRENT ASSETS", - "Geometry": { - "BoundingBox": { - "Width": 0.13788004219532013, - "Height": 0.007759851403534412, - "Left": 0.11165919154882431, - "Top": 0.14553391933441162 - }, - "Polygon": [ - { - "X": 0.11166129261255264, - "Y": 0.14553391933441162 - }, - { - "X": 0.24953922629356384, - "Y": 0.14563806354999542 - }, - { - "X": 0.24953745305538177, - "Y": 0.15329377353191376 - }, - { - "X": 0.11165919154882431, - "Y": 0.15318961441516876 - } - ] - }, - "Id": "69ffab26-2736-404e-9172-3f8b82055c5f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "359d5fb1-8a1e-4542-9447-dabfa76302bc", - "0121ae2c-3e97-4be9-bdaa-3aa4594f070c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.74694061279297, - "Text": "15,344", - "Geometry": { - "BoundingBox": { - "Width": 0.035062648355960846, - "Height": 0.008493378758430481, - "Left": 0.7734638452529907, - "Top": 0.1458921581506729 - }, - "Polygon": [ - { - "X": 0.7734644412994385, - "Y": 0.1458921581506729 - }, - { - "X": 0.8085265159606934, - "Y": 0.14591863751411438 - }, - { - "X": 0.8085259795188904, - "Y": 0.1543855369091034 - }, - { - "X": 0.7734638452529907, - "Y": 0.15435905754566193 - } - ] - }, - "Id": "af67d74a-d1c5-4459-86ef-933c71b9b054", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8e4cfab5-6cad-498e-9db5-ca33961b69c9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.72840118408203, - "Text": "15,343", - "Geometry": { - "BoundingBox": { - "Width": 0.034721072763204575, - "Height": 0.008466671220958233, - "Left": 0.8566368222236633, - "Top": 0.1459018886089325 - }, - "Polygon": [ - { - "X": 0.856637179851532, - "Y": 0.1459018886089325 - }, - { - "X": 0.8913578987121582, - "Y": 0.14592811465263367 - }, - { - "X": 0.8913576006889343, - "Y": 0.1543685495853424 - }, - { - "X": 0.8566368222236633, - "Y": 0.15434232354164124 - } - ] - }, - "Id": "81e371aa-744d-4c85-8e5f-4405ed67b0f1", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "16ed970d-ebe8-41bd-ad2b-fb76a0c2e6c1" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9449462890625, - "Text": "Rights of use", - "Geometry": { - "BoundingBox": { - "Width": 0.06860273331403732, - "Height": 0.009456492029130459, - "Left": 0.11172273010015488, - "Top": 0.16063426434993744 - }, - "Polygon": [ - { - "X": 0.1117253229022026, - "Y": 0.16063426434993744 - }, - { - "X": 0.1803254634141922, - "Y": 0.16068610548973083 - }, - { - "X": 0.18032307922840118, - "Y": 0.17009076476097107 - }, - { - "X": 0.11172273010015488, - "Y": 0.17003890872001648 - } - ] - }, - "Id": "e1bb7e7d-02a0-4a20-8430-d3a7d0ac2a27", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "3a102d9a-0627-4b7e-8259-78cede4715b1", - "c103c58c-d716-404c-bc25-cbc693b116e9", - "e1da6514-ae63-4afb-921e-ba0004dfa176" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.76457977294922, - "Text": "(16)", - "Geometry": { - "BoundingBox": { - "Width": 0.017789658159017563, - "Height": 0.009077232331037521, - "Left": 0.7078553438186646, - "Top": 0.1606232225894928 - }, - "Polygon": [ - { - "X": 0.7078561782836914, - "Y": 0.1606232225894928 - }, - { - "X": 0.7256450057029724, - "Y": 0.16063666343688965 - }, - { - "X": 0.7256442308425903, - "Y": 0.16970045864582062 - }, - { - "X": 0.7078553438186646, - "Y": 0.16968700289726257 - } - ] - }, - "Id": "69408bd2-f88c-44ed-9d78-1de0cb23f300", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "1f9ce0f5-afc0-4f70-9d9b-47ff4677e556" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9526596069336, - "Text": "4,910", - "Geometry": { - "BoundingBox": { - "Width": 0.026857890188694, - "Height": 0.008224277757108212, - "Left": 0.7814426422119141, - "Top": 0.16098885238170624 - }, - "Polygon": [ - { - "X": 0.7814432382583618, - "Y": 0.16098885238170624 - }, - { - "X": 0.8083005547523499, - "Y": 0.16100914776325226 - }, - { - "X": 0.8083000779151917, - "Y": 0.16921313107013702 - }, - { - "X": 0.7814426422119141, - "Y": 0.169192835688591 - } - ] - }, - "Id": "a5bb1e8b-4db4-4098-b4bd-3e6c4dd84980", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "56e2eaa5-611d-4b82-a0ff-638620027171" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.79216766357422, - "Text": "5,224", - "Geometry": { - "BoundingBox": { - "Width": 0.028144367039203644, - "Height": 0.008384323678910732, - "Left": 0.8633919358253479, - "Top": 0.16080844402313232 - }, - "Polygon": [ - { - "X": 0.8633922934532166, - "Y": 0.16080844402313232 - }, - { - "X": 0.891536295413971, - "Y": 0.16082970798015594 - }, - { - "X": 0.8915359973907471, - "Y": 0.16919277608394623 - }, - { - "X": 0.8633919358253479, - "Y": 0.1691714972257614 - } - ] - }, - "Id": "d595f84b-ff6d-450c-9c93-7f2d4152e1ce", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "df478b79-28fa-4d66-8767-cca6ab4a8d86" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93990325927734, - "Text": "Other intangible assets", - "Geometry": { - "BoundingBox": { - "Width": 0.12164187431335449, - "Height": 0.00948286522179842, - "Left": 0.11131977289915085, - "Top": 0.17591333389282227 - }, - "Polygon": [ - { - "X": 0.11132235825061798, - "Y": 0.17591333389282227 - }, - { - "X": 0.23296165466308594, - "Y": 0.1760052889585495 - }, - { - "X": 0.23295941948890686, - "Y": 0.185396209359169 - }, - { - "X": 0.11131977289915085, - "Y": 0.18530423939228058 - } - ] - }, - "Id": "044d3a46-ab23-4518-9bab-0c77a6b2ba19", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a640ff35-1379-46ac-98e4-2f950b94c870", - "0f455c67-2824-4220-b9d4-883e29faf992", - "d728ff5d-3e13-4aeb-add9-d5cde560212f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.94857025146484, - "Text": "(15)", - "Geometry": { - "BoundingBox": { - "Width": 0.017572134733200073, - "Height": 0.00902289804071188, - "Left": 0.7080923318862915, - "Top": 0.17578376829624176 - }, - "Polygon": [ - { - "X": 0.7080931663513184, - "Y": 0.17578376829624176 - }, - { - "X": 0.7256644368171692, - "Y": 0.17579706013202667 - }, - { - "X": 0.7256636619567871, - "Y": 0.1848066747188568 - }, - { - "X": 0.7080923318862915, - "Y": 0.1847933828830719 - } - ] - }, - "Id": "ed34cdc9-25bc-41ac-a4ed-8e874c4dd0ad", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2b128e48-07cf-46fa-9e98-8e8edbaa39df" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9495849609375, - "Text": "810", - "Geometry": { - "BoundingBox": { - "Width": 0.017759481444954872, - "Height": 0.00744821410626173, - "Left": 0.7904251217842102, - "Top": 0.17617493867874146 - }, - "Polygon": [ - { - "X": 0.7904255986213684, - "Y": 0.17617493867874146 - }, - { - "X": 0.8081846237182617, - "Y": 0.1761883646249771 - }, - { - "X": 0.8081841468811035, - "Y": 0.18362314999103546 - }, - { - "X": 0.7904251217842102, - "Y": 0.1836097240447998 - } - ] - }, - "Id": "14c06585-4001-4660-bdff-673a977819a4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ab027485-d62e-40a9-8799-7d64d52ab433" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9455337524414, - "Text": "589", - "Geometry": { - "BoundingBox": { - "Width": 0.019831378012895584, - "Height": 0.007513502612709999, - "Left": 0.8714017271995544, - "Top": 0.176121324300766 - }, - "Polygon": [ - { - "X": 0.8714020252227783, - "Y": 0.176121324300766 - }, - { - "X": 0.8912330865859985, - "Y": 0.176136314868927 - }, - { - "X": 0.8912328481674194, - "Y": 0.18363481760025024 - }, - { - "X": 0.8714017271995544, - "Y": 0.18361982703208923 - } - ] - }, - "Id": "a6a74532-088c-44da-8ff2-f0d1b229c2f6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "bcf58699-adb6-4991-a21f-741f30a93277" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.91839599609375, - "Text": "Goodwill", - "Geometry": { - "BoundingBox": { - "Width": 0.04580601677298546, - "Height": 0.007708454504609108, - "Left": 0.11138288676738739, - "Top": 0.19106848537921906 - }, - "Polygon": [ - { - "X": 0.11138499528169632, - "Y": 0.19106848537921906 - }, - { - "X": 0.15718889236450195, - "Y": 0.19110313057899475 - }, - { - "X": 0.15718689560890198, - "Y": 0.1987769454717636 - }, - { - "X": 0.11138288676738739, - "Y": 0.19874230027198792 - } - ] - }, - "Id": "a633a1eb-71e9-4f68-bd4a-e62989871988", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "83fdcaea-9f6e-493a-b520-453b8252c041" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.88993072509766, - "Text": "(17)", - "Geometry": { - "BoundingBox": { - "Width": 0.016259953379631042, - "Height": 0.008956391364336014, - "Left": 0.7093361616134644, - "Top": 0.19098588824272156 - }, - "Polygon": [ - { - "X": 0.7093369960784912, - "Y": 0.19098588824272156 - }, - { - "X": 0.7255961298942566, - "Y": 0.19099819660186768 - }, - { - "X": 0.7255953550338745, - "Y": 0.19994229078292847 - }, - { - "X": 0.7093361616134644, - "Y": 0.19992998242378235 - } - ] - }, - "Id": "76d6d4c4-626d-4fe5-9f86-9b76160bd26f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c776c3f1-196c-477d-952b-21758d349604" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96113586425781, - "Text": "193", - "Geometry": { - "BoundingBox": { - "Width": 0.017522037029266357, - "Height": 0.007326139602810144, - "Left": 0.7908136248588562, - "Top": 0.19137296080589294 - }, - "Polygon": [ - { - "X": 0.7908141016960144, - "Y": 0.19137296080589294 - }, - { - "X": 0.8083356618881226, - "Y": 0.19138620793819427 - }, - { - "X": 0.8083352446556091, - "Y": 0.19869910180568695 - }, - { - "X": 0.7908136248588562, - "Y": 0.19868583977222443 - } - ] - }, - "Id": "d93a863a-1b0d-4374-b0a2-f840ad99ef42", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "41d5ff0f-1173-4a33-ba38-4743fa691fb6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93324279785156, - "Text": "202", - "Geometry": { - "BoundingBox": { - "Width": 0.020070306956768036, - "Height": 0.007466468494385481, - "Left": 0.8712711930274963, - "Top": 0.19127288460731506 - }, - "Polygon": [ - { - "X": 0.871271550655365, - "Y": 0.19127288460731506 - }, - { - "X": 0.891341507434845, - "Y": 0.1912880539894104 - }, - { - "X": 0.8913412690162659, - "Y": 0.19873934984207153 - }, - { - "X": 0.8712711930274963, - "Y": 0.198724165558815 - } - ] - }, - "Id": "6c2b3dd9-3c5d-4517-baa0-84e8dcebbf31", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "515f4fd5-5dd8-4ab7-a9f7-e26be11e2fc1" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9008560180664, - "Text": "Property, plant and equipment", - "Geometry": { - "BoundingBox": { - "Width": 0.1605249047279358, - "Height": 0.009633136913180351, - "Left": 0.11162804812192917, - "Top": 0.2061784267425537 - }, - "Polygon": [ - { - "X": 0.11163067072629929, - "Y": 0.2061784267425537 - }, - { - "X": 0.27215296030044556, - "Y": 0.20629985630512238 - }, - { - "X": 0.27215081453323364, - "Y": 0.2158115655183792 - }, - { - "X": 0.11162804812192917, - "Y": 0.21569010615348816 - } - ] - }, - "Id": "5038e484-f2b1-4db0-b351-007705dfbc77", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8af89c36-8d80-4fa0-b93d-ae1951251eaf", - "869747c4-0536-4d8f-bc9c-2a5e9d206309", - "6f2e53a4-152c-4be5-8c89-0cfbc421ead9", - "48e50e49-9400-4cf1-812b-41cc5978f00e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.83903503417969, - "Text": "(14)", - "Geometry": { - "BoundingBox": { - "Width": 0.017113523557782173, - "Height": 0.008857233449816704, - "Left": 0.7083873748779297, - "Top": 0.20612819492816925 - }, - "Polygon": [ - { - "X": 0.7083882093429565, - "Y": 0.20612819492816925 - }, - { - "X": 0.7255008816719055, - "Y": 0.2061411440372467 - }, - { - "X": 0.7255001664161682, - "Y": 0.2149854302406311 - }, - { - "X": 0.7083873748779297, - "Y": 0.21497248113155365 - } - ] - }, - "Id": "c072e755-c71e-425a-9e75-17210afd360c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6f89dfa9-95ea-44b2-88c1-25999316f38a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9029541015625, - "Text": "7,591", - "Geometry": { - "BoundingBox": { - "Width": 0.025538694113492966, - "Height": 0.008513846434652805, - "Left": 0.7827667593955994, - "Top": 0.20627368986606598 - }, - "Polygon": [ - { - "X": 0.7827673554420471, - "Y": 0.20627368986606598 - }, - { - "X": 0.8083054423332214, - "Y": 0.2062930166721344 - }, - { - "X": 0.8083049654960632, - "Y": 0.2147875428199768 - }, - { - "X": 0.7827667593955994, - "Y": 0.2147682160139084 - } - ] - }, - "Id": "d670755a-6104-4f60-b845-49f5cddafbc1", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "51c5df9a-9c66-4518-9f97-44508ebcbb50" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.83826446533203, - "Text": "7,481", - "Geometry": { - "BoundingBox": { - "Width": 0.02541910484433174, - "Height": 0.008367644622921944, - "Left": 0.8659624457359314, - "Top": 0.20627909898757935 - }, - "Polygon": [ - { - "X": 0.8659628033638, - "Y": 0.20627909898757935 - }, - { - "X": 0.891381561756134, - "Y": 0.2062983363866806 - }, - { - "X": 0.8913812637329102, - "Y": 0.21464675664901733 - }, - { - "X": 0.8659624457359314, - "Y": 0.21462751924991608 - } - ] - }, - "Id": "646f69a0-57cb-4189-a1e8-77e0e6248300", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "e99761d3-7415-4a49-bc69-8e8dc96617e5" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9337158203125, - "Text": "Investment property", - "Geometry": { - "BoundingBox": { - "Width": 0.1063072681427002, - "Height": 0.009425374679267406, - "Left": 0.11203797906637192, - "Top": 0.22150030732154846 - }, - "Polygon": [ - { - "X": 0.11204054951667786, - "Y": 0.22150030732154846 - }, - { - "X": 0.2183452546596527, - "Y": 0.22158075869083405 - }, - { - "X": 0.21834298968315125, - "Y": 0.23092569410800934 - }, - { - "X": 0.11203797906637192, - "Y": 0.23084522783756256 - } - ] - }, - "Id": "dff18f07-791a-4136-bbe1-e18d563190e3", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "69158ecd-6e47-4d5e-976d-20b67f591458", - "eb64a1bd-b2cc-477d-a90e-0904af205ff9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96636962890625, - "Text": "24", - "Geometry": { - "BoundingBox": { - "Width": 0.012866031378507614, - "Height": 0.00759848952293396, - "Left": 0.7954997420310974, - "Top": 0.22146211564540863 - }, - "Polygon": [ - { - "X": 0.7955002188682556, - "Y": 0.22146211564540863 - }, - { - "X": 0.8083657622337341, - "Y": 0.2214718461036682 - }, - { - "X": 0.8083652853965759, - "Y": 0.2290606051683426 - }, - { - "X": 0.7954997420310974, - "Y": 0.22905085980892181 - } - ] - }, - "Id": "6292a8f3-a13b-4686-b999-f29fc261bc12", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "324ab35c-ce9b-4225-bf0b-a98e756f9e3c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96414184570312, - "Text": "21", - "Geometry": { - "BoundingBox": { - "Width": 0.010672055184841156, - "Height": 0.00754499202594161, - "Left": 0.880689799785614, - "Top": 0.22149668633937836 - }, - "Polygon": [ - { - "X": 0.8806900382041931, - "Y": 0.22149668633937836 - }, - { - "X": 0.8913618326187134, - "Y": 0.22150476276874542 - }, - { - "X": 0.8913615345954895, - "Y": 0.2290416806936264 - }, - { - "X": 0.880689799785614, - "Y": 0.22903360426425934 - } - ] - }, - "Id": "891a66a2-5ce3-4044-affa-82f7b0b7ff3d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6d3bf2b4-2b6f-4b25-a93f-ff3344053d18" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.8303451538086, - "Text": "Financial investments", - "Geometry": { - "BoundingBox": { - "Width": 0.11406796425580978, - "Height": 0.00820536445826292, - "Left": 0.11182605475187302, - "Top": 0.23628655076026917 - }, - "Polygon": [ - { - "X": 0.1118282899260521, - "Y": 0.23628655076026917 - }, - { - "X": 0.2258940190076828, - "Y": 0.2363729029893875 - }, - { - "X": 0.2258920669555664, - "Y": 0.24449191987514496 - }, - { - "X": 0.11182605475187302, - "Y": 0.24440555274486542 - } - ] - }, - "Id": "2021790f-5758-4fda-9785-4e118b4351d9", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ec388662-a84f-478c-a9ad-d02b51756eff", - "918b9a82-e22d-4b82-8d54-db790c830aa8" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93653106689453, - "Text": "(18)", - "Geometry": { - "BoundingBox": { - "Width": 0.017734123393893242, - "Height": 0.00916321575641632, - "Left": 0.7078234553337097, - "Top": 0.23632487654685974 - }, - "Polygon": [ - { - "X": 0.7078242897987366, - "Y": 0.23632487654685974 - }, - { - "X": 0.7255575656890869, - "Y": 0.2363383024930954 - }, - { - "X": 0.7255567908287048, - "Y": 0.24548809230327606 - }, - { - "X": 0.7078234553337097, - "Y": 0.2454746663570404 - } - ] - }, - "Id": "10185e93-2332-4f7a-a892-83d0553b4e89", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "887e4725-e408-4fb3-8585-8f8244fb8855" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97718048095703, - "Text": "334", - "Geometry": { - "BoundingBox": { - "Width": 0.019387593492865562, - "Height": 0.007425365503877401, - "Left": 0.7890126705169678, - "Top": 0.23678478598594666 - }, - "Polygon": [ - { - "X": 0.7890132069587708, - "Y": 0.23678478598594666 - }, - { - "X": 0.8084002733230591, - "Y": 0.2367994636297226 - }, - { - "X": 0.8083998560905457, - "Y": 0.2442101538181305 - }, - { - "X": 0.7890126705169678, - "Y": 0.24419547617435455 - } - ] - }, - "Id": "0d90e71e-4172-4817-bdf9-6ddf9db43b69", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2749bff9-ca66-4cff-a6fa-a1384d2ecc5c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96788024902344, - "Text": "307", - "Geometry": { - "BoundingBox": { - "Width": 0.019458333030343056, - "Height": 0.007437232881784439, - "Left": 0.8721731305122375, - "Top": 0.23673169314861298 - }, - "Polygon": [ - { - "X": 0.8721734285354614, - "Y": 0.23673169314861298 - }, - { - "X": 0.8916314840316772, - "Y": 0.2367464303970337 - }, - { - "X": 0.8916311860084534, - "Y": 0.2441689372062683 - }, - { - "X": 0.8721731305122375, - "Y": 0.2441541999578476 - } - ] - }, - "Id": "35082714-ecdc-4485-8011-5cdb26c79512", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "21959b1e-44c1-4a01-8067-db7fa10593b0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.72042846679688, - "Text": "Other non-current assets", - "Geometry": { - "BoundingBox": { - "Width": 0.13339698314666748, - "Height": 0.007727057673037052, - "Left": 0.11126551777124405, - "Top": 0.2516555190086365 - }, - "Polygon": [ - { - "X": 0.11126761138439178, - "Y": 0.2516555190086365 - }, - { - "X": 0.24466249346733093, - "Y": 0.25175654888153076 - }, - { - "X": 0.24466070532798767, - "Y": 0.25938257575035095 - }, - { - "X": 0.11126551777124405, - "Y": 0.25928154587745667 - } - ] - }, - "Id": "3f5ef235-83e4-49dc-933d-257dab87c354", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ed98e825-3075-48bf-a2f0-95996c35730c", - "0d70f7e9-e7cf-4987-b77c-3ae66fe0e3af", - "0b0fba3a-1aca-4bb7-afd5-174f0f9e846e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.89887237548828, - "Text": "(19)", - "Geometry": { - "BoundingBox": { - "Width": 0.017745114862918854, - "Height": 0.009179145097732544, - "Left": 0.7078786492347717, - "Top": 0.2514037787914276 - }, - "Polygon": [ - { - "X": 0.7078794836997986, - "Y": 0.2514037787914276 - }, - { - "X": 0.7256237268447876, - "Y": 0.25141721963882446 - }, - { - "X": 0.7256229519844055, - "Y": 0.26058292388916016 - }, - { - "X": 0.7078786492347717, - "Y": 0.2605694830417633 - } - ] - }, - "Id": "f6a9ef49-0c56-4c96-8b5b-6af52c627c37", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7ff0109b-dc13-449b-b528-a0300226c791" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95698547363281, - "Text": "278", - "Geometry": { - "BoundingBox": { - "Width": 0.018686864525079727, - "Height": 0.0075010149739682674, - "Left": 0.7896279692649841, - "Top": 0.2517334222793579 - }, - "Polygon": [ - { - "X": 0.7896285057067871, - "Y": 0.2517334222793579 - }, - { - "X": 0.808314859867096, - "Y": 0.25174757838249207 - }, - { - "X": 0.8083143830299377, - "Y": 0.2592344284057617 - }, - { - "X": 0.7896279692649841, - "Y": 0.25922027230262756 - } - ] - }, - "Id": "3a520203-9e60-4cb6-84fe-094e843012e9", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b62e2fd2-3ead-4e09-9811-b76f3c566038" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96954345703125, - "Text": "340", - "Geometry": { - "BoundingBox": { - "Width": 0.019931472837924957, - "Height": 0.007430706638842821, - "Left": 0.871285617351532, - "Top": 0.25188636779785156 - }, - "Polygon": [ - { - "X": 0.8712859749794006, - "Y": 0.25188636779785156 - }, - { - "X": 0.8912171125411987, - "Y": 0.25190144777297974 - }, - { - "X": 0.8912168145179749, - "Y": 0.2593170702457428 - }, - { - "X": 0.871285617351532, - "Y": 0.25930196046829224 - } - ] - }, - "Id": "5c246334-16db-4be1-9067-3735d2de1ca4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "cebf861f-304a-49d0-a6d7-0f3909736263" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96063232421875, - "Text": "Deferred tax assets", - "Geometry": { - "BoundingBox": { - "Width": 0.10225554555654526, - "Height": 0.008195429109036922, - "Left": 0.11163026094436646, - "Top": 0.2665306031703949 - }, - "Polygon": [ - { - "X": 0.11163249611854553, - "Y": 0.2665306031703949 - }, - { - "X": 0.2138858139514923, - "Y": 0.2666080594062805 - }, - { - "X": 0.21388383209705353, - "Y": 0.2747260332107544 - }, - { - "X": 0.11163026094436646, - "Y": 0.2746485471725464 - } - ] - }, - "Id": "b1d672d1-857d-40ba-a7d6-1414268ed388", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2e2ca590-4e35-4592-a6b2-40fb2b8dedcd", - "58985a13-379d-4cc1-bc06-d5a915b59400", - "fc084d6f-5810-49fe-b8b7-2cbc846cf58b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96893310546875, - "Text": "(25)", - "Geometry": { - "BoundingBox": { - "Width": 0.01951364241540432, - "Height": 0.009427434764802456, - "Left": 0.7061206102371216, - "Top": 0.26651492714881897 - }, - "Polygon": [ - { - "X": 0.7061215043067932, - "Y": 0.26651492714881897 - }, - { - "X": 0.7256342768669128, - "Y": 0.26652970910072327 - }, - { - "X": 0.725633442401886, - "Y": 0.2759423553943634 - }, - { - "X": 0.7061206102371216, - "Y": 0.2759275734424591 - } - ] - }, - "Id": "5e2c6083-580a-4546-9292-85c76143c047", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "616a28a1-974f-4d3e-8520-571039530514" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.80571746826172, - "Text": "1,203", - "Geometry": { - "BoundingBox": { - "Width": 0.026760447770357132, - "Height": 0.008270801976323128, - "Left": 0.7815250754356384, - "Top": 0.2669129967689514 - }, - "Polygon": [ - { - "X": 0.7815256714820862, - "Y": 0.2669129967689514 - }, - { - "X": 0.8082855343818665, - "Y": 0.26693326234817505 - }, - { - "X": 0.8082849979400635, - "Y": 0.2751837968826294 - }, - { - "X": 0.7815250754356384, - "Y": 0.27516353130340576 - } - ] - }, - "Id": "a66ae1b8-035d-4f6d-9994-e84129038d30", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ec9fec70-cc51-4101-841e-672f7426a58c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.70626831054688, - "Text": "1,179", - "Geometry": { - "BoundingBox": { - "Width": 0.02298150211572647, - "Height": 0.008179370313882828, - "Left": 0.868174135684967, - "Top": 0.2669716477394104 - }, - "Polygon": [ - { - "X": 0.8681744933128357, - "Y": 0.2669716477394104 - }, - { - "X": 0.8911556601524353, - "Y": 0.2669890522956848 - }, - { - "X": 0.8911553621292114, - "Y": 0.27515101432800293 - }, - { - "X": 0.868174135684967, - "Y": 0.2751336097717285 - } - ] - }, - "Id": "53848829-6133-4ef5-aee6-acf83e602477", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c83f4ece-f7f9-4d1f-b5a5-a8a9a1774606" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92105102539062, - "Text": "CURRENT ASSETS", - "Geometry": { - "BoundingBox": { - "Width": 0.10679081082344055, - "Height": 0.007715938612818718, - "Left": 0.11136861890554428, - "Top": 0.2818444073200226 - }, - "Polygon": [ - { - "X": 0.11137071251869202, - "Y": 0.2818444073200226 - }, - { - "X": 0.21815942227840424, - "Y": 0.28192535042762756 - }, - { - "X": 0.2181575745344162, - "Y": 0.28956034779548645 - }, - { - "X": 0.11136861890554428, - "Y": 0.28947940468788147 - } - ] - }, - "Id": "43b8b5fc-2242-4710-a7e7-5c2309fb9cca", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c5b78bd6-9451-4176-b458-3e879c0c7b02", - "cfdb96bf-a847-447a-86b9-854b0ed503b7" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93346405029297, - "Text": "14,639", - "Geometry": { - "BoundingBox": { - "Width": 0.03526519984006882, - "Height": 0.008748570457100868, - "Left": 0.7730259299278259, - "Top": 0.28214117884635925 - }, - "Polygon": [ - { - "X": 0.7730265855789185, - "Y": 0.28214117884635925 - }, - { - "X": 0.8082911372184753, - "Y": 0.282167911529541 - }, - { - "X": 0.8082906007766724, - "Y": 0.29088976979255676 - }, - { - "X": 0.7730259299278259, - "Y": 0.2908630073070526 - } - ] - }, - "Id": "bd4b7b48-27f6-46a6-9cb3-f786fac8bf34", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "cc4be113-d274-4860-b0e1-c711b317d4c1" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.88829803466797, - "Text": "13,602", - "Geometry": { - "BoundingBox": { - "Width": 0.035970915108919144, - "Height": 0.008556163869798183, - "Left": 0.8557003736495972, - "Top": 0.2821776270866394 - }, - "Polygon": [ - { - "X": 0.8557007312774658, - "Y": 0.2821776270866394 - }, - { - "X": 0.8916712403297424, - "Y": 0.28220489621162415 - }, - { - "X": 0.8916709423065186, - "Y": 0.29073378443717957 - }, - { - "X": 0.8557003736495972, - "Y": 0.2907065153121948 - } - ] - }, - "Id": "6581892b-1acc-4b3b-977b-cc4e7181cf87", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "723a4bad-9228-46fe-ada5-647af6a59881" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.94569396972656, - "Text": "Non-currents assets held for sale", - "Geometry": { - "BoundingBox": { - "Width": 0.17539919912815094, - "Height": 0.00796405877918005, - "Left": 0.11165888607501984, - "Top": 0.29698553681373596 - }, - "Polygon": [ - { - "X": 0.11166103929281235, - "Y": 0.29698553681373596 - }, - { - "X": 0.2870580852031708, - "Y": 0.29711854457855225 - }, - { - "X": 0.2870563566684723, - "Y": 0.3049496114253998 - }, - { - "X": 0.11165888607501984, - "Y": 0.3048166036605835 - } - ] - }, - "Id": "c540d6aa-2abf-475e-9f23-9c6ca487f135", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5e0474cc-a69b-4d44-b893-a681cb08e895", - "336783d1-78c0-4853-b3d7-5e1afd9f2864", - "3c08bc03-2c00-4253-a5db-2ce6e1e38fdc", - "d6cb5265-f8ed-4db4-a438-4517d15152bd", - "b039343c-c6f2-4491-9abd-20a3d648cd67" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.98063659667969, - "Text": "(33)", - "Geometry": { - "BoundingBox": { - "Width": 0.019774997606873512, - "Height": 0.009313005954027176, - "Left": 0.7058454751968384, - "Top": 0.29689353704452515 - }, - "Polygon": [ - { - "X": 0.7058463096618652, - "Y": 0.29689353704452515 - }, - { - "X": 0.725620448589325, - "Y": 0.29690852761268616 - }, - { - "X": 0.7256196141242981, - "Y": 0.3062065541744232 - }, - { - "X": 0.7058454751968384, - "Y": 0.3061915636062622 - } - ] - }, - "Id": "578e9e44-d656-41f1-99e0-e040d51aebf6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "94427730-db7c-46d2-ae69-5f4c33fb73c8" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97367095947266, - "Text": "183", - "Geometry": { - "BoundingBox": { - "Width": 0.0177309513092041, - "Height": 0.007454158738255501, - "Left": 0.7906213998794556, - "Top": 0.2972811460494995 - }, - "Polygon": [ - { - "X": 0.7906218767166138, - "Y": 0.2972811460494995 - }, - { - "X": 0.8083523511886597, - "Y": 0.29729461669921875 - }, - { - "X": 0.8083518743515015, - "Y": 0.30473533272743225 - }, - { - "X": 0.7906213998794556, - "Y": 0.304721862077713 - } - ] - }, - "Id": "a11b8243-b4a4-4318-bfa4-de3477312bbf", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f47033e0-6f7e-4d4f-a3dd-3db882720d9f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 92.10195922851562, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.004251758102327585, - "Height": 0.0017133259680122137, - "Left": 0.8870001435279846, - "Top": 0.3006984293460846 - }, - "Polygon": [ - { - "X": 0.8870002031326294, - "Y": 0.3006984293460846 - }, - { - "X": 0.8912519216537476, - "Y": 0.30070164799690247 - }, - { - "X": 0.8912518620491028, - "Y": 0.3024117648601532 - }, - { - "X": 0.8870001435279846, - "Y": 0.30240851640701294 - } - ] - }, - "Id": "cec23b65-fb9a-46f2-ae96-7dacbe81fd70", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c73c0165-34ef-4f4f-9b83-d5b6d7d77c44" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.23226928710938, - "Text": "Inventories", - "Geometry": { - "BoundingBox": { - "Width": 0.057920679450035095, - "Height": 0.0077239396050572395, - "Left": 0.11160691827535629, - "Top": 0.3123312294483185 - }, - "Polygon": [ - { - "X": 0.11160903424024582, - "Y": 0.3123312294483185 - }, - { - "X": 0.16952760517597198, - "Y": 0.31237515807151794 - }, - { - "X": 0.1695256233215332, - "Y": 0.32005515694618225 - }, - { - "X": 0.11160691827535629, - "Y": 0.3200112283229828 - } - ] - }, - "Id": "d429c609-28e8-449f-9f7d-74b99229d315", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4c1f4e43-d0fd-4385-a245-3beda5f0fbb7" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.89884185791016, - "Text": "(13)", - "Geometry": { - "BoundingBox": { - "Width": 0.017688272520899773, - "Height": 0.009144522249698639, - "Left": 0.7079495787620544, - "Top": 0.3119591176509857 - }, - "Polygon": [ - { - "X": 0.7079504132270813, - "Y": 0.3119591176509857 - }, - { - "X": 0.7256378531455994, - "Y": 0.3119725286960602 - }, - { - "X": 0.7256370782852173, - "Y": 0.32110363245010376 - }, - { - "X": 0.7079495787620544, - "Y": 0.3210902214050293 - } - ] - }, - "Id": "f1343670-921f-4f33-bf6c-7b48e6b6a127", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c8889ada-f53c-49fa-a41c-af00d7981a49" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.83606719970703, - "Text": "3,191", - "Geometry": { - "BoundingBox": { - "Width": 0.023913593962788582, - "Height": 0.008418570272624493, - "Left": 0.7843583226203918, - "Top": 0.3123222887516022 - }, - "Polygon": [ - { - "X": 0.7843589186668396, - "Y": 0.3123222887516022 - }, - { - "X": 0.8082719445228577, - "Y": 0.3123404085636139 - }, - { - "X": 0.8082714080810547, - "Y": 0.32074084877967834 - }, - { - "X": 0.7843583226203918, - "Y": 0.32072269916534424 - } - ] - }, - "Id": "c99d2f5a-256a-4911-ba5b-37fef53c411d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "25480045-9370-46da-8ea9-2ca17d854f1e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.75767517089844, - "Text": "3,042", - "Geometry": { - "BoundingBox": { - "Width": 0.028604192659258842, - "Height": 0.008442186750471592, - "Left": 0.8627549409866333, - "Top": 0.3123246729373932 - }, - "Polygon": [ - { - "X": 0.862755298614502, - "Y": 0.3123246729373932 - }, - { - "X": 0.8913590908050537, - "Y": 0.31234636902809143 - }, - { - "X": 0.8913587927818298, - "Y": 0.3207668662071228 - }, - { - "X": 0.8627549409866333, - "Y": 0.32074517011642456 - } - ] - }, - "Id": "91f8fe45-8b01-4096-8aa2-7486ce4c9cee", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "abc62c07-1bb5-48e1-9737-a64b178393a8" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95699310302734, - "Text": "Trade and other receivables", - "Geometry": { - "BoundingBox": { - "Width": 0.14922958612442017, - "Height": 0.008015608415007591, - "Left": 0.11084583401679993, - "Top": 0.3272300362586975 - }, - "Polygon": [ - { - "X": 0.11084800958633423, - "Y": 0.3272300362586975 - }, - { - "X": 0.2600754201412201, - "Y": 0.32734328508377075 - }, - { - "X": 0.26007360219955444, - "Y": 0.33524563908576965 - }, - { - "X": 0.11084583401679993, - "Y": 0.3351323902606964 - } - ] - }, - "Id": "98967870-ef1c-46fc-a5a7-ac3dacdf2e6b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ef12f359-66d8-4dc5-a6a1-0630baefd41d", - "fa3590dc-5f18-451c-9a18-5f9ceeee6f40", - "3a84c235-453a-4778-9ea7-30b1f3517492", - "8f2ed8b1-720a-4a9c-8dcd-903e4910c725" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.8186264038086, - "Text": "(12)", - "Geometry": { - "BoundingBox": { - "Width": 0.01735740713775158, - "Height": 0.009175557643175125, - "Left": 0.7082303166389465, - "Top": 0.3270721733570099 - }, - "Polygon": [ - { - "X": 0.7082311511039734, - "Y": 0.3270721733570099 - }, - { - "X": 0.7255877256393433, - "Y": 0.32708534598350525 - }, - { - "X": 0.7255869507789612, - "Y": 0.3362477421760559 - }, - { - "X": 0.7082303166389465, - "Y": 0.33623456954956055 - } - ] - }, - "Id": "e6c3f6cd-7ca3-406b-9b63-4bd991312754", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5239d7f8-a3de-4a9b-9ee6-8f66ea0db58c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9774169921875, - "Text": "851", - "Geometry": { - "BoundingBox": { - "Width": 0.01747141219675541, - "Height": 0.00760476291179657, - "Left": 0.790970504283905, - "Top": 0.32745927572250366 - }, - "Polygon": [ - { - "X": 0.790971040725708, - "Y": 0.32745927572250366 - }, - { - "X": 0.8084419369697571, - "Y": 0.3274725377559662 - }, - { - "X": 0.8084414601325989, - "Y": 0.3350640535354614 - }, - { - "X": 0.790970504283905, - "Y": 0.3350507915019989 - } - ] - }, - "Id": "8d7157d8-6b91-49c0-ac58-d6755b5fbc4f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "dcf0ca17-f8f0-4666-811e-1ae63324e452" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.91311645507812, - "Text": "842", - "Geometry": { - "BoundingBox": { - "Width": 0.019386958330869675, - "Height": 0.007591331843286753, - "Left": 0.8720545172691345, - "Top": 0.327480673789978 - }, - "Polygon": [ - { - "X": 0.8720548748970032, - "Y": 0.327480673789978 - }, - { - "X": 0.8914415240287781, - "Y": 0.32749539613723755 - }, - { - "X": 0.8914412260055542, - "Y": 0.33507201075553894 - }, - { - "X": 0.8720545172691345, - "Y": 0.3350572884082794 - } - ] - }, - "Id": "05cae6ae-5931-4dd7-9d03-e903f09fa346", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "015e9831-2fde-4e6a-8cce-de530f746c9f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.76416778564453, - "Text": "Income tax receivable", - "Geometry": { - "BoundingBox": { - "Width": 0.1165541559457779, - "Height": 0.007867778651416302, - "Left": 0.11146847158670425, - "Top": 0.3424816429615021 - }, - "Polygon": [ - { - "X": 0.11147060990333557, - "Y": 0.3424816429615021 - }, - { - "X": 0.22802262008190155, - "Y": 0.34257009625434875 - }, - { - "X": 0.22802075743675232, - "Y": 0.35034942626953125 - }, - { - "X": 0.11146847158670425, - "Y": 0.3502609133720398 - } - ] - }, - "Id": "33b397a2-73e1-4f09-a515-84f549ea0be5", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "9c7953db-7703-4c6f-87c6-794b58c919a0", - "158dd5b0-7b65-4376-bf4e-ba43f49e189d", - "898144fa-3f29-4eea-a4fe-19a91a3c1012" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96587371826172, - "Text": "(25)", - "Geometry": { - "BoundingBox": { - "Width": 0.019461626186966896, - "Height": 0.009558897465467453, - "Left": 0.7061312794685364, - "Top": 0.34216874837875366 - }, - "Polygon": [ - { - "X": 0.706132173538208, - "Y": 0.34216874837875366 - }, - { - "X": 0.7255929112434387, - "Y": 0.34218353033065796 - }, - { - "X": 0.7255920767784119, - "Y": 0.3517276644706726 - }, - { - "X": 0.7061312794685364, - "Y": 0.3517128825187683 - } - ] - }, - "Id": "634cbd51-90ed-4bcc-87f1-e8b8d82326a0", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "0a8e1ec1-5fbc-4098-9eb8-d398d03b1c9a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.98085021972656, - "Text": "238", - "Geometry": { - "BoundingBox": { - "Width": 0.02001272886991501, - "Height": 0.007599665317684412, - "Left": 0.7883673310279846, - "Top": 0.34262487292289734 - }, - "Polygon": [ - { - "X": 0.7883678078651428, - "Y": 0.34262487292289734 - }, - { - "X": 0.8083800673484802, - "Y": 0.34264007210731506 - }, - { - "X": 0.808379590511322, - "Y": 0.3502245545387268 - }, - { - "X": 0.7883673310279846, - "Y": 0.3502093553543091 - } - ] - }, - "Id": "f79f6c9a-47c8-46d1-bace-2f901268503b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "57193e04-9f90-4ff1-8e91-0f412218a32c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96266174316406, - "Text": "219", - "Geometry": { - "BoundingBox": { - "Width": 0.017052829265594482, - "Height": 0.007579114753752947, - "Left": 0.8741852641105652, - "Top": 0.342606782913208 - }, - "Polygon": [ - { - "X": 0.8741855621337891, - "Y": 0.342606782913208 - }, - { - "X": 0.8912380933761597, - "Y": 0.34261971712112427 - }, - { - "X": 0.8912378549575806, - "Y": 0.35018590092658997 - }, - { - "X": 0.8741852641105652, - "Y": 0.3501729667186737 - } - ] - }, - "Id": "d745751a-5b29-44b0-8875-c59826882f81", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "47302927-9335-457c-8985-bad2b7d21c8c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97213745117188, - "Text": "Other current assets", - "Geometry": { - "BoundingBox": { - "Width": 0.10808254778385162, - "Height": 0.007811470422893763, - "Left": 0.11143965274095535, - "Top": 0.35779350996017456 - }, - "Polygon": [ - { - "X": 0.11144177615642548, - "Y": 0.35779350996017456 - }, - { - "X": 0.21952219307422638, - "Y": 0.3578755855560303 - }, - { - "X": 0.21952033042907715, - "Y": 0.365604966878891 - }, - { - "X": 0.11143965274095535, - "Y": 0.3655228912830353 - } - ] - }, - "Id": "2b81aada-3dcd-4afd-b061-5556e5a27ba2", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ca4ddcda-4777-4161-9d01-878c4928f2ca", - "0730225a-2d2c-413e-9daf-d87189cf3a0a", - "b839432e-3782-4cb8-8247-f30a2cb346a4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92446899414062, - "Text": "85", - "Geometry": { - "BoundingBox": { - "Width": 0.013366881757974625, - "Height": 0.007735317572951317, - "Left": 0.7950487732887268, - "Top": 0.3576938807964325 - }, - "Polygon": [ - { - "X": 0.795049250125885, - "Y": 0.3576938807964325 - }, - { - "X": 0.8084156513214111, - "Y": 0.3577040433883667 - }, - { - "X": 0.8084151744842529, - "Y": 0.36542919278144836 - }, - { - "X": 0.7950487732887268, - "Y": 0.36541905999183655 - } - ] - }, - "Id": "c79b45b1-b85a-4e39-91a8-9ed92edaebf5", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f6b033ff-bce2-4a73-9914-f0b49ecc759b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.869140625, - "Text": "82", - "Geometry": { - "BoundingBox": { - "Width": 0.013061748817563057, - "Height": 0.007730091921985149, - "Left": 0.8783958554267883, - "Top": 0.3576725125312805 - }, - "Polygon": [ - { - "X": 0.8783961534500122, - "Y": 0.3576725125312805 - }, - { - "X": 0.8914576172828674, - "Y": 0.3576824367046356 - }, - { - "X": 0.8914573192596436, - "Y": 0.36540260910987854 - }, - { - "X": 0.8783958554267883, - "Y": 0.36539268493652344 - } - ] - }, - "Id": "fca5e930-a477-464e-a0c9-7fd1bf453f18", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4e7b738d-2770-403d-9d32-b63710e35b2d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96412658691406, - "Text": "Other financial assets", - "Geometry": { - "BoundingBox": { - "Width": 0.11370889842510223, - "Height": 0.007887482643127441, - "Left": 0.11140823364257812, - "Top": 0.3728635013103485 - }, - "Polygon": [ - { - "X": 0.11141037940979004, - "Y": 0.3728635013103485 - }, - { - "X": 0.22511713206768036, - "Y": 0.37294986844062805 - }, - { - "X": 0.22511525452136993, - "Y": 0.38075098395347595 - }, - { - "X": 0.11140823364257812, - "Y": 0.380664587020874 - } - ] - }, - "Id": "0d5dfde5-74a0-4a33-81dc-cb0048143854", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "bd9c7bda-e753-42fb-bbdd-196bc9b0b15e", - "34cbe5bf-2ce7-4d5c-8ca6-3a7f15d51d4d", - "820860ad-7319-4bda-ac2b-51a02530e437" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95842742919922, - "Text": "(26)", - "Geometry": { - "BoundingBox": { - "Width": 0.0198011826723814, - "Height": 0.009435000829398632, - "Left": 0.7058008313179016, - "Top": 0.37253695726394653 - }, - "Polygon": [ - { - "X": 0.7058016657829285, - "Y": 0.37253695726394653 - }, - { - "X": 0.7256019711494446, - "Y": 0.3725520074367523 - }, - { - "X": 0.7256011962890625, - "Y": 0.38197195529937744 - }, - { - "X": 0.7058008313179016, - "Y": 0.38195690512657166 - } - ] - }, - "Id": "e23eebe7-c144-445d-a1bf-9de9f511a7fc", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2aaf0c84-72b9-4cd5-b606-47045271d989" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9263687133789, - "Text": "8", - "Geometry": { - "BoundingBox": { - "Width": 0.006523185409605503, - "Height": 0.007312840782105923, - "Left": 0.8016781806945801, - "Top": 0.37316060066223145 - }, - "Polygon": [ - { - "X": 0.8016786575317383, - "Y": 0.37316060066223145 - }, - { - "X": 0.8082013726234436, - "Y": 0.3731655478477478 - }, - { - "X": 0.8082008957862854, - "Y": 0.38047343492507935 - }, - { - "X": 0.8016781806945801, - "Y": 0.380468487739563 - } - ] - }, - "Id": "9076376e-f228-4cae-b411-1dc52fdd8fb3", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c260205e-04ad-452e-8a16-671e6d1ad1ff" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.80004119873047, - "Text": "22", - "Geometry": { - "BoundingBox": { - "Width": 0.012995411641895771, - "Height": 0.007568938657641411, - "Left": 0.8784249424934387, - "Top": 0.3729355037212372 - }, - "Polygon": [ - { - "X": 0.8784252405166626, - "Y": 0.3729355037212372 - }, - { - "X": 0.8914203643798828, - "Y": 0.3729453682899475 - }, - { - "X": 0.8914201259613037, - "Y": 0.38050442934036255 - }, - { - "X": 0.8784249424934387, - "Y": 0.3804945647716522 - } - ] - }, - "Id": "9df92c62-ef81-4476-ba3d-025afdfee7cf", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5b3f355d-0134-4b63-aab8-d4266128192d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92487335205078, - "Text": "Current financial investments", - "Geometry": { - "BoundingBox": { - "Width": 0.15419164299964905, - "Height": 0.00807978119701147, - "Left": 0.11136726289987564, - "Top": 0.38785338401794434 - }, - "Polygon": [ - { - "X": 0.11136945337057114, - "Y": 0.38785338401794434 - }, - { - "X": 0.2655588984489441, - "Y": 0.38797053694725037 - }, - { - "X": 0.26555708050727844, - "Y": 0.3959331512451172 - }, - { - "X": 0.11136726289987564, - "Y": 0.3958159387111664 - } - ] - }, - "Id": "b3c2dad9-860e-4974-97e0-0a5cb8e5fe1b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ad1eb377-acd1-43f1-947e-584623fc5d57", - "faf9572c-0319-4f64-a74b-b267ec860087", - "28cc0539-6886-47d0-9d59-dbf0641a0352" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.94767761230469, - "Text": "(21)", - "Geometry": { - "BoundingBox": { - "Width": 0.0171799436211586, - "Height": 0.009123523719608784, - "Left": 0.7084124088287354, - "Top": 0.3878045082092285 - }, - "Polygon": [ - { - "X": 0.7084132432937622, - "Y": 0.3878045082092285 - }, - { - "X": 0.725592315196991, - "Y": 0.3878175616264343 - }, - { - "X": 0.7255915403366089, - "Y": 0.3969280421733856 - }, - { - "X": 0.7084124088287354, - "Y": 0.3969149887561798 - } - ] - }, - "Id": "d4cf3aab-3acb-4a47-8688-f186472316bf", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "828fff47-d2dc-42c8-850e-e030d61a3e85" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92720794677734, - "Text": "4,522", - "Geometry": { - "BoundingBox": { - "Width": 0.02818518877029419, - "Height": 0.00848547276109457, - "Left": 0.7801524996757507, - "Top": 0.3880383372306824 - }, - "Polygon": [ - { - "X": 0.7801530957221985, - "Y": 0.3880383372306824 - }, - { - "X": 0.8083376884460449, - "Y": 0.38805973529815674 - }, - { - "X": 0.8083372116088867, - "Y": 0.3965238034725189 - }, - { - "X": 0.7801524996757507, - "Y": 0.39650237560272217 - } - ] - }, - "Id": "67983279-d3a9-4fac-820e-4486d79624dc", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4318c44c-07dc-460b-b1f5-4eeba275a8ee" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.75398254394531, - "Text": "2,374", - "Geometry": { - "BoundingBox": { - "Width": 0.027408858761191368, - "Height": 0.008489862084388733, - "Left": 0.8642136454582214, - "Top": 0.3880888521671295 - }, - "Polygon": [ - { - "X": 0.8642140030860901, - "Y": 0.3880888521671295 - }, - { - "X": 0.8916224837303162, - "Y": 0.3881096839904785 - }, - { - "X": 0.8916221857070923, - "Y": 0.39657872915267944 - }, - { - "X": 0.8642136454582214, - "Y": 0.39655789732933044 - } - ] - }, - "Id": "846e226d-40af-4b29-8135-f08f227d8598", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "666f4096-6409-4f87-8741-11b5f17ff464" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.91455078125, - "Text": "Cash and cash equivalents", - "Geometry": { - "BoundingBox": { - "Width": 0.14298920333385468, - "Height": 0.009489604271948338, - "Left": 0.11132268607616425, - "Top": 0.40318694710731506 - }, - "Polygon": [ - { - "X": 0.11132526397705078, - "Y": 0.40318694710731506 - }, - { - "X": 0.2543118894100189, - "Y": 0.403295636177063 - }, - { - "X": 0.2543097138404846, - "Y": 0.41267654299736023 - }, - { - "X": 0.11132268607616425, - "Y": 0.4125678241252899 - } - ] - }, - "Id": "40a75166-7dee-4fdc-9996-71e87d209436", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f653c681-c9f7-40f3-85eb-e80683ad324d", - "74879f6e-6ffb-4f80-8db9-708aa77f7615", - "9a7a344a-d4c8-4a65-a2cb-ec7e12c32e47", - "a407ae9d-79e4-4c00-947f-2b62902f608b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96686553955078, - "Text": "(21)", - "Geometry": { - "BoundingBox": { - "Width": 0.01751953549683094, - "Height": 0.009330272674560547, - "Left": 0.7081959247589111, - "Top": 0.40290501713752747 - }, - "Polygon": [ - { - "X": 0.7081968188285828, - "Y": 0.40290501713752747 - }, - { - "X": 0.7257154583930969, - "Y": 0.40291833877563477 - }, - { - "X": 0.7257146835327148, - "Y": 0.412235289812088 - }, - { - "X": 0.7081959247589111, - "Y": 0.4122219681739807 - } - ] - }, - "Id": "de00d1b2-75b0-44e1-970f-65be32cc1316", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8a729cb7-7191-441e-8736-c5e6e4485957" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9330825805664, - "Text": "5,561", - "Geometry": { - "BoundingBox": { - "Width": 0.026425426825881004, - "Height": 0.008770277723670006, - "Left": 0.7819176316261292, - "Top": 0.4030835032463074 - }, - "Polygon": [ - { - "X": 0.7819182276725769, - "Y": 0.4030835032463074 - }, - { - "X": 0.8083430528640747, - "Y": 0.4031035900115967 - }, - { - "X": 0.8083425164222717, - "Y": 0.4118537902832031 - }, - { - "X": 0.7819176316261292, - "Y": 0.41183367371559143 - } - ] - }, - "Id": "79f30a6a-7551-4e93-b5c3-a71fb6309b8e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8a202c5f-c8c4-4c93-afe5-2eb0bd7525d8" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9200210571289, - "Text": "7,021", - "Geometry": { - "BoundingBox": { - "Width": 0.02592291682958603, - "Height": 0.008692005649209023, - "Left": 0.8654699325561523, - "Top": 0.40313851833343506 - }, - "Polygon": [ - { - "X": 0.865470290184021, - "Y": 0.40313851833343506 - }, - { - "X": 0.8913928270339966, - "Y": 0.4031582176685333 - }, - { - "X": 0.8913925290107727, - "Y": 0.41183051466941833 - }, - { - "X": 0.8654699325561523, - "Y": 0.41181081533432007 - } - ] - }, - "Id": "e0ca2a9c-0c77-4f82-bc02-4b57472c8c56", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "eb0fd689-c6ce-4604-a593-b638d03dd286" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9189682006836, - "Text": "TOTAL ASSETS", - "Geometry": { - "BoundingBox": { - "Width": 0.08878148347139359, - "Height": 0.00788609404116869, - "Left": 0.11083505302667618, - "Top": 0.4182104766368866 - }, - "Polygon": [ - { - "X": 0.11083720624446869, - "Y": 0.4182104766368866 - }, - { - "X": 0.19961653649806976, - "Y": 0.4182780086994171 - }, - { - "X": 0.19961459934711456, - "Y": 0.4260965883731842 - }, - { - "X": 0.11083505302667618, - "Y": 0.4260290563106537 - } - ] - }, - "Id": "342ff825-f8c8-465d-8bf5-f6f4db1887ec", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "1a26bc22-f283-41a2-87b0-e6c728b54ad0", - "c5861414-fc0b-4218-8a7e-263575df065f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.87919616699219, - "Text": "29,983", - "Geometry": { - "BoundingBox": { - "Width": 0.037255171686410904, - "Height": 0.00876244530081749, - "Left": 0.7709845304489136, - "Top": 0.4184510111808777 - }, - "Polygon": [ - { - "X": 0.7709851861000061, - "Y": 0.4184510111808777 - }, - { - "X": 0.808239758014679, - "Y": 0.418479323387146 - }, - { - "X": 0.808239221572876, - "Y": 0.4272134602069855 - }, - { - "X": 0.7709845304489136, - "Y": 0.4271851181983948 - } - ] - }, - "Id": "b1a370d3-834d-43b2-bf66-94151a822bb0", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "205a1fea-d9a0-461d-a911-f483120cb4be" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92645263671875, - "Text": "28,945", - "Geometry": { - "BoundingBox": { - "Width": 0.03705447167158127, - "Height": 0.008838421665132046, - "Left": 0.8544696569442749, - "Top": 0.4184640944004059 - }, - "Polygon": [ - { - "X": 0.8544700741767883, - "Y": 0.4184640944004059 - }, - { - "X": 0.8915241360664368, - "Y": 0.41849228739738464 - }, - { - "X": 0.8915238380432129, - "Y": 0.4273025393486023 - }, - { - "X": 0.8544696569442749, - "Y": 0.42727434635162354 - } - ] - }, - "Id": "698e699a-3d9f-469a-a8ec-68823c3915cd", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a29811b9-ba1f-4e0d-b391-67ad13228ac1" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.88436126708984, - "Text": "EQUITY AND LIABILITIES", - "Geometry": { - "BoundingBox": { - "Width": 0.14048469066619873, - "Height": 0.007679829839617014, - "Left": 0.11159297823905945, - "Top": 0.4518614113330841 - }, - "Polygon": [ - { - "X": 0.11159506440162659, - "Y": 0.4518614113330841 - }, - { - "X": 0.2520776689052582, - "Y": 0.45196834206581116 - }, - { - "X": 0.2520759105682373, - "Y": 0.4595412313938141 - }, - { - "X": 0.11159297823905945, - "Y": 0.45943427085876465 - } - ] - }, - "Id": "4f4e1c3d-5e37-43cf-93a8-773e6206d28d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "3f86efde-95f0-4566-be30-79df8d288099", - "bf45fd4d-7fd3-4b2e-a1f5-128125cc1d52", - "6bcd29e1-06c8-4e73-901c-4b9c7df24072" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92291259765625, - "Text": "EQUITY", - "Geometry": { - "BoundingBox": { - "Width": 0.04327946528792381, - "Height": 0.007481924258172512, - "Left": 0.11161354929208755, - "Top": 0.4671058654785156 - }, - "Polygon": [ - { - "X": 0.11161559820175171, - "Y": 0.4671058654785156 - }, - { - "X": 0.15489301085472107, - "Y": 0.4671388268470764 - }, - { - "X": 0.15489105880260468, - "Y": 0.4745877981185913 - }, - { - "X": 0.11161354929208755, - "Y": 0.4745548367500305 - } - ] - }, - "Id": "6db071da-93b3-4eda-b26d-adeb10a408fa", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "42d314b6-5cf9-4113-89d2-f8192d0601f9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93382263183594, - "Text": "17,033", - "Geometry": { - "BoundingBox": { - "Width": 0.03475659713149071, - "Height": 0.008636122569441795, - "Left": 0.7735702991485596, - "Top": 0.467308908700943 - }, - "Polygon": [ - { - "X": 0.7735708951950073, - "Y": 0.467308908700943 - }, - { - "X": 0.8083269000053406, - "Y": 0.46733537316322327 - }, - { - "X": 0.8083263635635376, - "Y": 0.47594502568244934 - }, - { - "X": 0.7735702991485596, - "Y": 0.47591856122016907 - } - ] - }, - "Id": "45c45ef0-dd72-42ba-85ed-6264eb77022d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c0721941-7269-463f-b142-e1f70f50865d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9046401977539, - "Text": "15,759", - "Geometry": { - "BoundingBox": { - "Width": 0.034488920122385025, - "Height": 0.008807784877717495, - "Left": 0.8570383191108704, - "Top": 0.46726804971694946 - }, - "Polygon": [ - { - "X": 0.8570387363433838, - "Y": 0.46726804971694946 - }, - { - "X": 0.8915272355079651, - "Y": 0.467294305562973 - }, - { - "X": 0.8915269374847412, - "Y": 0.47607582807540894 - }, - { - "X": 0.8570383191108704, - "Y": 0.4760495722293854 - } - ] - }, - "Id": "08139095-493e-482b-a67a-848ee3f17390", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "65a5e57d-49b8-4d67-88ba-70d88975206f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.91502380371094, - "Text": "Equity attributable to the Parent", - "Geometry": { - "BoundingBox": { - "Width": 0.1662624478340149, - "Height": 0.009825581684708595, - "Left": 0.11156535148620605, - "Top": 0.4821808636188507 - }, - "Polygon": [ - { - "X": 0.11156801879405975, - "Y": 0.4821808636188507 - }, - { - "X": 0.27782779932022095, - "Y": 0.4823075234889984 - }, - { - "X": 0.27782562375068665, - "Y": 0.49200645089149475 - }, - { - "X": 0.11156535148620605, - "Y": 0.49187976121902466 - } - ] - }, - "Id": "16ccfe38-21ba-494d-ac1c-fd43ae7e0997", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f1014553-1de7-4996-8c92-6a713184c199", - "49466e3b-d26b-4d32-94bc-4dd54f754bdd", - "5ada30c7-7a76-48f9-80ed-261e9049ec2a", - "63d71e55-b3c7-40fa-b01b-85b1a1e1de60", - "8d1c9d2a-d017-4731-a405-df5c760219fd" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.83082580566406, - "Text": "17,008", - "Geometry": { - "BoundingBox": { - "Width": 0.03304969519376755, - "Height": 0.008444415405392647, - "Left": 0.7752528786659241, - "Top": 0.4824122488498688 - }, - "Polygon": [ - { - "X": 0.7752534747123718, - "Y": 0.4824122488498688 - }, - { - "X": 0.8083025813102722, - "Y": 0.4824374318122864 - }, - { - "X": 0.8083020448684692, - "Y": 0.49085667729377747 - }, - { - "X": 0.7752528786659241, - "Y": 0.49083149433135986 - } - ] - }, - "Id": "9b1afc5e-642b-49fc-8cc2-aba43d136cc8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "33468066-8bc0-4d71-80ab-4b3c9c5f5049" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.83407592773438, - "Text": "15,733", - "Geometry": { - "BoundingBox": { - "Width": 0.03180823475122452, - "Height": 0.00848512351512909, - "Left": 0.8595389723777771, - "Top": 0.48230233788490295 - }, - "Polygon": [ - { - "X": 0.8595393896102905, - "Y": 0.48230233788490295 - }, - { - "X": 0.8913472294807434, - "Y": 0.48232656717300415 - }, - { - "X": 0.8913469314575195, - "Y": 0.49078744649887085 - }, - { - "X": 0.8595389723777771, - "Y": 0.49076321721076965 - } - ] - }, - "Id": "22322071-645d-4564-94a9-64d671393329", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "dbe389ad-0d4e-4ce0-94f7-12eb6b2c0c19" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.89884948730469, - "Text": "Equity attributable to non-controlling interests", - "Geometry": { - "BoundingBox": { - "Width": 0.2406391203403473, - "Height": 0.009798521175980568, - "Left": 0.1116103082895279, - "Top": 0.49727463722229004 - }, - "Polygon": [ - { - "X": 0.1116129532456398, - "Y": 0.49727463722229004 - }, - { - "X": 0.3522494435310364, - "Y": 0.49745801091194153 - }, - { - "X": 0.3522475063800812, - "Y": 0.507073163986206 - }, - { - "X": 0.1116103082895279, - "Y": 0.5068897008895874 - } - ] - }, - "Id": "b77f1ea0-9e41-4a89-ab5e-2435a740a9b4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "afc3e6d7-6a4e-40ed-a8b9-a181ca4db8ec", - "f4d8e7e4-8414-4a72-ab74-c7c318b0b4af", - "b8ebfa6e-e190-46c1-a6a5-e207d1da20c9", - "862c1c64-1f2c-4b97-8e53-38826292e6c7", - "824444b3-f620-435b-8d8e-4d6a22877dd0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95125579833984, - "Text": "25", - "Geometry": { - "BoundingBox": { - "Width": 0.013220857828855515, - "Height": 0.007682377938181162, - "Left": 0.795204222202301, - "Top": 0.49741697311401367 - }, - "Polygon": [ - { - "X": 0.7952046990394592, - "Y": 0.49741697311401367 - }, - { - "X": 0.8084250688552856, - "Y": 0.4974270462989807 - }, - { - "X": 0.8084245920181274, - "Y": 0.505099356174469 - }, - { - "X": 0.795204222202301, - "Y": 0.505089282989502 - } - ] - }, - "Id": "194cb701-5f00-40ab-808c-ad6fa7fa6a9d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "dbe06991-e0a8-4382-9ad0-0e1547df3ffc" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95170593261719, - "Text": "26", - "Geometry": { - "BoundingBox": { - "Width": 0.013384372927248478, - "Height": 0.007729813922196627, - "Left": 0.8781041502952576, - "Top": 0.4974382221698761 - }, - "Polygon": [ - { - "X": 0.8781044483184814, - "Y": 0.4974382221698761 - }, - { - "X": 0.8914885520935059, - "Y": 0.4974484145641327 - }, - { - "X": 0.891488254070282, - "Y": 0.5051680207252502 - }, - { - "X": 0.8781041502952576, - "Y": 0.5051578283309937 - } - ] - }, - "Id": "37a293d6-c093-4a0c-bb69-531464fc5c12", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5a1cc389-b5b6-4a60-b0d9-d95c8a1734bf" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.80475616455078, - "Text": "NON-CURRENT LIABILITIES", - "Geometry": { - "BoundingBox": { - "Width": 0.15777932107448578, - "Height": 0.007817774079740047, - "Left": 0.11133801192045212, - "Top": 0.5124276876449585 - }, - "Polygon": [ - { - "X": 0.11134013533592224, - "Y": 0.5124276876449585 - }, - { - "X": 0.2691173553466797, - "Y": 0.5125479698181152 - }, - { - "X": 0.2691155970096588, - "Y": 0.5202454924583435 - }, - { - "X": 0.11133801192045212, - "Y": 0.520125150680542 - } - ] - }, - "Id": "4ab80f4a-9d7b-4245-8c6f-0e17c21939c9", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "376206a9-51a2-40b4-ac34-46d8f1ef52c0", - "977b1f78-a646-4a56-9a48-69433408a91a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.89104461669922, - "Text": "4,813", - "Geometry": { - "BoundingBox": { - "Width": 0.028052955865859985, - "Height": 0.00857413187623024, - "Left": 0.7803167700767517, - "Top": 0.5125781893730164 - }, - "Polygon": [ - { - "X": 0.7803173661231995, - "Y": 0.5125781893730164 - }, - { - "X": 0.8083696961402893, - "Y": 0.5125995874404907 - }, - { - "X": 0.8083691596984863, - "Y": 0.5211523175239563 - }, - { - "X": 0.7803167700767517, - "Y": 0.5211309194564819 - } - ] - }, - "Id": "a9131ea4-a748-4837-8911-453c2804a724", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "62230040-7572-4ae0-9832-d7175255976c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.66999053955078, - "Text": "5,157", - "Geometry": { - "BoundingBox": { - "Width": 0.027021609246730804, - "Height": 0.008612273260951042, - "Left": 0.8643923997879028, - "Top": 0.5126868486404419 - }, - "Polygon": [ - { - "X": 0.8643927574157715, - "Y": 0.5126868486404419 - }, - { - "X": 0.8914139866828918, - "Y": 0.5127074718475342 - }, - { - "X": 0.891413688659668, - "Y": 0.5212991237640381 - }, - { - "X": 0.8643923997879028, - "Y": 0.5212785601615906 - } - ] - }, - "Id": "93b1fab3-3738-44f7-a821-1413628b654c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "20ee4928-f7a3-42a2-9ffd-2e06bb0a4b5a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.8619384765625, - "Text": "Provisions", - "Geometry": { - "BoundingBox": { - "Width": 0.05423779413104057, - "Height": 0.007939464412629604, - "Left": 0.11185324937105179, - "Top": 0.5276627540588379 - }, - "Polygon": [ - { - "X": 0.11185542494058609, - "Y": 0.5276627540588379 - }, - { - "X": 0.16609103977680206, - "Y": 0.527704119682312 - }, - { - "X": 0.1660890132188797, - "Y": 0.5356022715568542 - }, - { - "X": 0.11185324937105179, - "Y": 0.5355608463287354 - } - ] - }, - "Id": "f9caf5bc-619d-434d-b229-4a8edcc6efec", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b06259d1-a100-4e75-bd11-c42b623acd01" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.90911865234375, - "Text": "(22)", - "Geometry": { - "BoundingBox": { - "Width": 0.019281616434454918, - "Height": 0.00946885533630848, - "Left": 0.7062757015228271, - "Top": 0.5273455381393433 - }, - "Polygon": [ - { - "X": 0.7062765955924988, - "Y": 0.5273455381393433 - }, - { - "X": 0.7255573272705078, - "Y": 0.527360200881958 - }, - { - "X": 0.725556492805481, - "Y": 0.5368143916130066 - }, - { - "X": 0.7062757015228271, - "Y": 0.5367996692657471 - } - ] - }, - "Id": "1f755dbb-a2e2-4310-ad73-0e265eb97112", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "91b09e4a-675c-4e9e-b068-ee68b9e6efc5" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96783447265625, - "Text": "283", - "Geometry": { - "BoundingBox": { - "Width": 0.01998983509838581, - "Height": 0.007552263792604208, - "Left": 0.7883710265159607, - "Top": 0.5278216600418091 - }, - "Polygon": [ - { - "X": 0.7883715629577637, - "Y": 0.5278216600418091 - }, - { - "X": 0.8083608746528625, - "Y": 0.5278369188308716 - }, - { - "X": 0.8083603978157043, - "Y": 0.5353739261627197 - }, - { - "X": 0.7883710265159607, - "Y": 0.5353586673736572 - } - ] - }, - "Id": "23233c55-1b7e-4e6c-bd71-aaf1db801c29", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c7bc2c4f-4f97-4c1e-83d2-1bdb806057b5" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.88455963134766, - "Text": "287", - "Geometry": { - "BoundingBox": { - "Width": 0.019022611901164055, - "Height": 0.007639095187187195, - "Left": 0.87257981300354, - "Top": 0.5276872515678406 - }, - "Polygon": [ - { - "X": 0.8725801706314087, - "Y": 0.5276872515678406 - }, - { - "X": 0.8916024565696716, - "Y": 0.527701735496521 - }, - { - "X": 0.8916021585464478, - "Y": 0.5353263020515442 - }, - { - "X": 0.87257981300354, - "Y": 0.5353118181228638 - } - ] - }, - "Id": "ec1f3273-bc6b-4242-be23-5bc26224e2ca", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "590d401e-91c9-4da4-831d-6aefecbb3b63" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.79491424560547, - "Text": "Other non-current liabilities", - "Geometry": { - "BoundingBox": { - "Width": 0.14357563853263855, - "Height": 0.007901119068264961, - "Left": 0.1113002598285675, - "Top": 0.5427793264389038 - }, - "Polygon": [ - { - "X": 0.11130240559577942, - "Y": 0.5427793264389038 - }, - { - "X": 0.25487589836120605, - "Y": 0.5428888201713562 - }, - { - "X": 0.2548741102218628, - "Y": 0.55068039894104 - }, - { - "X": 0.1113002598285675, - "Y": 0.5505708456039429 - } - ] - }, - "Id": "ba0b79d2-221a-4c33-9d68-08ff03dbc058", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f984efec-848e-4181-be4c-87edc5af8bb9", - "36e5b07c-fbf2-4205-8911-5285ecf74975", - "77f9fd5f-1be2-4dd7-86b3-18e46ef323c6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96521759033203, - "Text": "(23)", - "Geometry": { - "BoundingBox": { - "Width": 0.01962057314813137, - "Height": 0.009378230199217796, - "Left": 0.7059786915779114, - "Top": 0.5425426959991455 - }, - "Polygon": [ - { - "X": 0.705979585647583, - "Y": 0.5425426959991455 - }, - { - "X": 0.7255992889404297, - "Y": 0.5425576567649841 - }, - { - "X": 0.7255984544754028, - "Y": 0.5519209504127502 - }, - { - "X": 0.7059786915779114, - "Y": 0.5519059896469116 - } - ] - }, - "Id": "f965e425-60e2-4f0b-8b44-02ee9c827c23", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "cc66a3b1-efb9-41e9-9189-689e748f3f66" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.88491821289062, - "Text": "222", - "Geometry": { - "BoundingBox": { - "Width": 0.01941428892314434, - "Height": 0.007451886311173439, - "Left": 0.788929283618927, - "Top": 0.5429995059967041 - }, - "Polygon": [ - { - "X": 0.78892982006073, - "Y": 0.5429995059967041 - }, - { - "X": 0.8083435893058777, - "Y": 0.5430142879486084 - }, - { - "X": 0.8083431720733643, - "Y": 0.550451397895813 - }, - { - "X": 0.788929283618927, - "Y": 0.5504365563392639 - } - ] - }, - "Id": "9d8027d3-73a4-42dd-ac92-ff6dc2212e66", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "92d597d4-bc82-46c0-b258-2f361b146533" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96395111083984, - "Text": "248", - "Geometry": { - "BoundingBox": { - "Width": 0.019661305472254753, - "Height": 0.007674625609070063, - "Left": 0.8717800974845886, - "Top": 0.542935848236084 - }, - "Polygon": [ - { - "X": 0.8717803955078125, - "Y": 0.542935848236084 - }, - { - "X": 0.8914414048194885, - "Y": 0.5429508686065674 - }, - { - "X": 0.8914411067962646, - "Y": 0.5506104826927185 - }, - { - "X": 0.8717800974845886, - "Y": 0.5505955219268799 - } - ] - }, - "Id": "29fb12a4-2282-473b-99b7-3359897463b1", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "10c4d30a-4972-4483-9eb2-9f77a92179d9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.7077407836914, - "Text": "Financial debt", - "Geometry": { - "BoundingBox": { - "Width": 0.07443998754024506, - "Height": 0.007891401648521423, - "Left": 0.11166444420814514, - "Top": 0.557982861995697 - }, - "Polygon": [ - { - "X": 0.11166659742593765, - "Y": 0.557982861995697 - }, - { - "X": 0.1861044317483902, - "Y": 0.558039665222168 - }, - { - "X": 0.1861024647951126, - "Y": 0.5658742785453796 - }, - { - "X": 0.11166444420814514, - "Y": 0.5658174753189087 - } - ] - }, - "Id": "80249642-9246-4375-8c44-613a8b347f07", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "35833a5b-aa13-42e6-8440-8c9d27e3f832", - "078c6ed2-8d8c-4355-a038-90db08ab09a0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.94790649414062, - "Text": "(21)", - "Geometry": { - "BoundingBox": { - "Width": 0.01717662252485752, - "Height": 0.009096439927816391, - "Left": 0.7084268927574158, - "Top": 0.5577877163887024 - }, - "Polygon": [ - { - "X": 0.7084277272224426, - "Y": 0.5577877163887024 - }, - { - "X": 0.7256035208702087, - "Y": 0.557800829410553 - }, - { - "X": 0.7256027460098267, - "Y": 0.5668841600418091 - }, - { - "X": 0.7084268927574158, - "Y": 0.5668710470199585 - } - ] - }, - "Id": "14d1b7aa-a540-44a7-bfb0-76c1ad8c1523", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "284c79a4-ff7e-4e54-a67c-57380293789f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 93.95230102539062, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.004489201121032238, - "Height": 0.0017128430772572756, - "Left": 0.8039003014564514, - "Top": 0.5616876482963562 - }, - "Polygon": [ - { - "X": 0.803900420665741, - "Y": 0.5616876482963562 - }, - { - "X": 0.8083894848823547, - "Y": 0.5616910457611084 - }, - { - "X": 0.80838942527771, - "Y": 0.5634004473686218 - }, - { - "X": 0.8039003014564514, - "Y": 0.5633970499038696 - } - ] - }, - "Id": "e2d1b02f-db3a-4440-9dcd-abd752ce8580", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4dbc7648-6a9e-40da-98fd-03447574427a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.85636901855469, - "Text": "1", - "Geometry": { - "BoundingBox": { - "Width": 0.004268734250217676, - "Height": 0.007085535675287247, - "Left": 0.8870455622673035, - "Top": 0.5582143664360046 - }, - "Polygon": [ - { - "X": 0.8870458006858826, - "Y": 0.5582143664360046 - }, - { - "X": 0.8913142681121826, - "Y": 0.5582176446914673 - }, - { - "X": 0.8913140296936035, - "Y": 0.565299928188324 - }, - { - "X": 0.8870455622673035, - "Y": 0.5652966499328613 - } - ] - }, - "Id": "16d52e28-d756-417e-a4b7-2596d8b5b449", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "da4cdcf3-97de-4d53-9e0b-23fa95cdc22a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.82513427734375, - "Text": "Non-current lease liability", - "Geometry": { - "BoundingBox": { - "Width": 0.13375751674175262, - "Height": 0.009555071592330933, - "Left": 0.11211181432008743, - "Top": 0.5730264186859131 - }, - "Polygon": [ - { - "X": 0.11211441457271576, - "Y": 0.5730264186859131 - }, - { - "X": 0.24586933851242065, - "Y": 0.5731285810470581 - }, - { - "X": 0.24586711823940277, - "Y": 0.5825815200805664 - }, - { - "X": 0.11211181432008743, - "Y": 0.5824793577194214 - } - ] - }, - "Id": "c730a64d-9089-49a6-920b-a1489f3fa110", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "74ec8eda-a769-46a7-8616-36045aa3faa6", - "596924ce-b2aa-4320-8f57-fad2904e8d6f", - "f6b43a2f-8c4a-4c55-aa77-456a1c873c9f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.78744506835938, - "Text": "(16)", - "Geometry": { - "BoundingBox": { - "Width": 0.017995959147810936, - "Height": 0.00924947950989008, - "Left": 0.7076959013938904, - "Top": 0.5729054808616638 - }, - "Polygon": [ - { - "X": 0.7076967358589172, - "Y": 0.5729054808616638 - }, - { - "X": 0.7256918549537659, - "Y": 0.5729192495346069 - }, - { - "X": 0.7256910800933838, - "Y": 0.5821549892425537 - }, - { - "X": 0.7076959013938904, - "Y": 0.5821412205696106 - } - ] - }, - "Id": "4b2bf4ec-00e8-4a0c-b80d-3cfe11798f41", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "18e8346d-7750-4b8b-a1a8-ac9a435c794f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.64484405517578, - "Text": "3,924", - "Geometry": { - "BoundingBox": { - "Width": 0.02855587936937809, - "Height": 0.00870907586067915, - "Left": 0.7799148559570312, - "Top": 0.5731410980224609 - }, - "Polygon": [ - { - "X": 0.779915452003479, - "Y": 0.5731410980224609 - }, - { - "X": 0.8084707260131836, - "Y": 0.5731629133224487 - }, - { - "X": 0.8084701895713806, - "Y": 0.5818501710891724 - }, - { - "X": 0.7799148559570312, - "Y": 0.5818283557891846 - } - ] - }, - "Id": "a47873f3-2a17-4f0e-9079-d6968077f95d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c4022190-b42f-447e-bac4-2d6604c2e3dd" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.82009887695312, - "Text": "4,262", - "Geometry": { - "BoundingBox": { - "Width": 0.028631091117858887, - "Height": 0.00847471784800291, - "Left": 0.8628667593002319, - "Top": 0.5732091665267944 - }, - "Polygon": [ - { - "X": 0.8628671169281006, - "Y": 0.5732091665267944 - }, - { - "X": 0.8914978504180908, - "Y": 0.5732309818267822 - }, - { - "X": 0.8914975523948669, - "Y": 0.581683874130249 - }, - { - "X": 0.8628667593002319, - "Y": 0.5816619992256165 - } - ] - }, - "Id": "9fc275e2-8a35-430f-851a-468fb60e68fb", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b54203e7-39f5-484a-aea4-0631c1cb2776" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.855712890625, - "Text": "Deferred tax liabilities", - "Geometry": { - "BoundingBox": { - "Width": 0.11243247240781784, - "Height": 0.007976626977324486, - "Left": 0.11160635948181152, - "Top": 0.5881741046905518 - }, - "Polygon": [ - { - "X": 0.11160852760076523, - "Y": 0.5881741046905518 - }, - { - "X": 0.22403882443904877, - "Y": 0.5882599949836731 - }, - { - "X": 0.22403693199157715, - "Y": 0.5961507558822632 - }, - { - "X": 0.11160635948181152, - "Y": 0.5960648655891418 - } - ] - }, - "Id": "d624ff5e-db3c-436d-ad99-72a74cdfcb5e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "877e7291-5f8e-4e90-9546-3129e985cd35", - "bc59d6f9-eda8-4211-80f3-01e0369d0443", - "26fe6a59-e6cd-46d5-be73-7ae21012bee9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93415069580078, - "Text": "(25)", - "Geometry": { - "BoundingBox": { - "Width": 0.019365916028618813, - "Height": 0.00944853387773037, - "Left": 0.7062230110168457, - "Top": 0.5880193710327148 - }, - "Polygon": [ - { - "X": 0.7062238454818726, - "Y": 0.5880193710327148 - }, - { - "X": 0.7255889177322388, - "Y": 0.5880341529846191 - }, - { - "X": 0.7255880832672119, - "Y": 0.5974678993225098 - }, - { - "X": 0.7062230110168457, - "Y": 0.5974530577659607 - } - ] - }, - "Id": "dadfdd74-cd0e-4743-947d-369746076d63", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4ac74d84-a5d6-47d1-a5c8-aeb0186bf082" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97776794433594, - "Text": "385", - "Geometry": { - "BoundingBox": { - "Width": 0.020032424479722977, - "Height": 0.007694382220506668, - "Left": 0.7883392572402954, - "Top": 0.5884034633636475 - }, - "Polygon": [ - { - "X": 0.7883397936820984, - "Y": 0.5884034633636475 - }, - { - "X": 0.8083717226982117, - "Y": 0.58841872215271 - }, - { - "X": 0.8083712458610535, - "Y": 0.5960978269577026 - }, - { - "X": 0.7883392572402954, - "Y": 0.5960825085639954 - } - ] - }, - "Id": "43848399-12fb-4080-ba3e-f167adcb83e1", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c3870537-35ed-4087-bb59-6b36929c6564" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.91902160644531, - "Text": "359", - "Geometry": { - "BoundingBox": { - "Width": 0.019682347774505615, - "Height": 0.0078099374659359455, - "Left": 0.8715174794197083, - "Top": 0.5881194472312927 - }, - "Polygon": [ - { - "X": 0.8715177774429321, - "Y": 0.5881194472312927 - }, - { - "X": 0.8911998271942139, - "Y": 0.5881344676017761 - }, - { - "X": 0.89119952917099, - "Y": 0.5959293842315674 - }, - { - "X": 0.8715174794197083, - "Y": 0.5959143042564392 - } - ] - }, - "Id": "5628fb80-89f9-4963-859d-2d0351a0399d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "abff8e37-1f2e-4bde-a671-8678a838addd" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.84156036376953, - "Text": "CURRENT LIABILITIES", - "Geometry": { - "BoundingBox": { - "Width": 0.12603823840618134, - "Height": 0.008267520926892757, - "Left": 0.11140162497758865, - "Top": 0.6032819747924805 - }, - "Polygon": [ - { - "X": 0.11140387505292892, - "Y": 0.6032819747924805 - }, - { - "X": 0.2374398559331894, - "Y": 0.6033782958984375 - }, - { - "X": 0.23743793368339539, - "Y": 0.6115494966506958 - }, - { - "X": 0.11140162497758865, - "Y": 0.6114531755447388 - } - ] - }, - "Id": "59261727-0c3e-4e4b-8933-50867d952c3c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c6981826-12bc-4d6f-b4ae-3a5aa0e8cfcb", - "fbf2c23a-72b1-4191-b6d3-1f87436a82c8" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.86100006103516, - "Text": "8,137", - "Geometry": { - "BoundingBox": { - "Width": 0.027423100546002388, - "Height": 0.008828557096421719, - "Left": 0.7809897065162659, - "Top": 0.6034548878669739 - }, - "Polygon": [ - { - "X": 0.7809903621673584, - "Y": 0.6034548878669739 - }, - { - "X": 0.8084128499031067, - "Y": 0.60347580909729 - }, - { - "X": 0.8084123134613037, - "Y": 0.6122834086418152 - }, - { - "X": 0.7809897065162659, - "Y": 0.612262487411499 - } - ] - }, - "Id": "682cd2d9-3106-4985-a0b0-15a8fe44e25a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5704fa56-820d-49fb-b058-e1416acd5228" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.90941619873047, - "Text": "8,030", - "Geometry": { - "BoundingBox": { - "Width": 0.03134961426258087, - "Height": 0.008886892348527908, - "Left": 0.8599395155906677, - "Top": 0.6034632921218872 - }, - "Polygon": [ - { - "X": 0.8599399328231812, - "Y": 0.6034632921218872 - }, - { - "X": 0.8912891745567322, - "Y": 0.6034872531890869 - }, - { - "X": 0.8912888169288635, - "Y": 0.6123501658439636 - }, - { - "X": 0.8599395155906677, - "Y": 0.6123262047767639 - } - ] - }, - "Id": "25ac050d-0940-435b-bda4-7876810ceeb5", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a5d4d6b7-87e5-4c8c-ac07-1f163b245d46" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.88067626953125, - "Text": "Financial debt", - "Geometry": { - "BoundingBox": { - "Width": 0.07452638447284698, - "Height": 0.008070997893810272, - "Left": 0.11163563281297684, - "Top": 0.6184619069099426 - }, - "Polygon": [ - { - "X": 0.11163783818483353, - "Y": 0.6184619069099426 - }, - { - "X": 0.18616202473640442, - "Y": 0.6185188889503479 - }, - { - "X": 0.18615999817848206, - "Y": 0.6265329122543335 - }, - { - "X": 0.11163563281297684, - "Y": 0.6264759302139282 - } - ] - }, - "Id": "a7651adf-f577-4fe6-9c3f-51fff72421af", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "25d13ae2-b783-44a5-9e52-ee76d436ced7", - "e82df9ef-2502-4283-b08d-beb2de063b72" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95734405517578, - "Text": "(21)", - "Geometry": { - "BoundingBox": { - "Width": 0.01733197644352913, - "Height": 0.009142753668129444, - "Left": 0.7081981301307678, - "Top": 0.6184147000312805 - }, - "Polygon": [ - { - "X": 0.7081989645957947, - "Y": 0.6184147000312805 - }, - { - "X": 0.7255300879478455, - "Y": 0.6184279322624207 - }, - { - "X": 0.7255293130874634, - "Y": 0.6275574564933777 - }, - { - "X": 0.7081981301307678, - "Y": 0.6275441646575928 - } - ] - }, - "Id": "758bf6a4-2649-46cc-a920-23b5b0ba01eb", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "3627c961-fa08-4412-a529-d3d58e2dd5ac" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95159912109375, - "Text": "13", - "Geometry": { - "BoundingBox": { - "Width": 0.010988576337695122, - "Height": 0.007477124221622944, - "Left": 0.7975047826766968, - "Top": 0.6188205480575562 - }, - "Polygon": [ - { - "X": 0.797505259513855, - "Y": 0.6188205480575562 - }, - { - "X": 0.8084933757781982, - "Y": 0.6188289523124695 - }, - { - "X": 0.80849289894104, - "Y": 0.626297652721405 - }, - { - "X": 0.7975047826766968, - "Y": 0.6262892484664917 - } - ] - }, - "Id": "fc142961-709b-4c0a-a576-c807eee27fea", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "da9b6f8c-0514-4e0b-afc6-45d782f96276" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95687103271484, - "Text": "35", - "Geometry": { - "BoundingBox": { - "Width": 0.013256719335913658, - "Height": 0.007856271229684353, - "Left": 0.8782365322113037, - "Top": 0.6186332106590271 - }, - "Polygon": [ - { - "X": 0.8782368898391724, - "Y": 0.6186332106590271 - }, - { - "X": 0.8914932608604431, - "Y": 0.6186433434486389 - }, - { - "X": 0.891493022441864, - "Y": 0.626489520072937 - }, - { - "X": 0.8782365322113037, - "Y": 0.6264793872833252 - } - ] - }, - "Id": "cb03f73d-a249-4173-9044-d42acc1d3f8a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "fb9267a1-1aab-49e4-9f28-e6654608c399" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.8666763305664, - "Text": "Other financial liabilities", - "Geometry": { - "BoundingBox": { - "Width": 0.1239742860198021, - "Height": 0.007975677028298378, - "Left": 0.11142406612634659, - "Top": 0.6336690783500671 - }, - "Polygon": [ - { - "X": 0.11142623424530029, - "Y": 0.6336690783500671 - }, - { - "X": 0.23539835214614868, - "Y": 0.6337639093399048 - }, - { - "X": 0.23539648950099945, - "Y": 0.6416447758674622 - }, - { - "X": 0.11142406612634659, - "Y": 0.6415499448776245 - } - ] - }, - "Id": "c5cb0378-d104-4d9b-ad67-d342e750c080", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "af6c5f52-0561-47ad-b6a8-0a70d4eaeaa5", - "75b8fda5-855e-4649-ad8b-4c91f63151fe", - "b9f22324-872b-498c-82fc-4b9090578bce" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.84843444824219, - "Text": "(26)", - "Geometry": { - "BoundingBox": { - "Width": 0.019663749262690544, - "Height": 0.009373079985380173, - "Left": 0.7059478759765625, - "Top": 0.6333974599838257 - }, - "Polygon": [ - { - "X": 0.7059487700462341, - "Y": 0.6333974599838257 - }, - { - "X": 0.7256116271018982, - "Y": 0.6334124803543091 - }, - { - "X": 0.7256108522415161, - "Y": 0.642770528793335 - }, - { - "X": 0.7059478759765625, - "Y": 0.6427554488182068 - } - ] - }, - "Id": "469a8336-0123-4921-8dc8-91019ba04886", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "27ea8930-6ad3-4c14-9fcb-fc408d41ac0b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96955108642578, - "Text": "46", - "Geometry": { - "BoundingBox": { - "Width": 0.013366900384426117, - "Height": 0.007625116966664791, - "Left": 0.7951764464378357, - "Top": 0.633904755115509 - }, - "Polygon": [ - { - "X": 0.7951769232749939, - "Y": 0.633904755115509 - }, - { - "X": 0.80854332447052, - "Y": 0.6339150071144104 - }, - { - "X": 0.8085428476333618, - "Y": 0.64152991771698 - }, - { - "X": 0.7951764464378357, - "Y": 0.6415196657180786 - } - ] - }, - "Id": "b1aecef4-a65c-4a8f-825b-0cbae47c3b26", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "9d70ef2d-51d1-482b-afab-72b3a8383446" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.84808349609375, - "Text": "22", - "Geometry": { - "BoundingBox": { - "Width": 0.013022755272686481, - "Height": 0.007763965521007776, - "Left": 0.8783410787582397, - "Top": 0.6338340044021606 - }, - "Polygon": [ - { - "X": 0.8783413767814636, - "Y": 0.6338340044021606 - }, - { - "X": 0.8913638591766357, - "Y": 0.6338439583778381 - }, - { - "X": 0.8913635611534119, - "Y": 0.6415979862213135 - }, - { - "X": 0.8783410787582397, - "Y": 0.641588032245636 - } - ] - }, - "Id": "26eb61fc-1fe0-41d4-a614-6b8c68204e0c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4836ce5a-cb7d-417f-a80d-55262d40ae66" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.91398620605469, - "Text": "Current lease liability", - "Geometry": { - "BoundingBox": { - "Width": 0.10982991009950638, - "Height": 0.00968874990940094, - "Left": 0.11130940169095993, - "Top": 0.6488063335418701 - }, - "Polygon": [ - { - "X": 0.11131204664707184, - "Y": 0.6488063335418701 - }, - { - "X": 0.2211393117904663, - "Y": 0.6488903760910034 - }, - { - "X": 0.22113700211048126, - "Y": 0.6584950685501099 - }, - { - "X": 0.11130940169095993, - "Y": 0.6584110260009766 - } - ] - }, - "Id": "94287c05-a895-4c69-be1b-1e60964c6ac4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b736c8f9-fceb-45ff-9c3d-13117040f39b", - "885e5147-c9ac-4a90-8e86-b69f8c82e0ce", - "342c6447-8148-4ea8-a287-fb2aa185bb29" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.79644775390625, - "Text": "(16)", - "Geometry": { - "BoundingBox": { - "Width": 0.017804516479372978, - "Height": 0.009306861087679863, - "Left": 0.7078073024749756, - "Top": 0.6486105918884277 - }, - "Polygon": [ - { - "X": 0.7078081965446472, - "Y": 0.6486105918884277 - }, - { - "X": 0.7256118655204773, - "Y": 0.6486241817474365 - }, - { - "X": 0.7256110310554504, - "Y": 0.6579174399375916 - }, - { - "X": 0.7078073024749756, - "Y": 0.657903790473938 - } - ] - }, - "Id": "ca6d5fd0-12df-447f-8d22-8ab592278540", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "97fafd12-00a1-4c71-bd91-11e81d493464" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.57926940917969, - "Text": "1,517", - "Geometry": { - "BoundingBox": { - "Width": 0.023080719634890556, - "Height": 0.008335902355611324, - "Left": 0.7856054306030273, - "Top": 0.6488732695579529 - }, - "Polygon": [ - { - "X": 0.7856060266494751, - "Y": 0.6488732695579529 - }, - { - "X": 0.8086861968040466, - "Y": 0.6488909125328064 - }, - { - "X": 0.8086856603622437, - "Y": 0.6572091579437256 - }, - { - "X": 0.7856054306030273, - "Y": 0.6571915149688721 - } - ] - }, - "Id": "aa965932-da58-48ba-aa75-1a5983831e10", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "689239c2-07f3-48c5-8201-9cfe4652e006" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92216491699219, - "Text": "1,562", - "Geometry": { - "BoundingBox": { - "Width": 0.026289047673344612, - "Height": 0.008510446175932884, - "Left": 0.865128755569458, - "Top": 0.6489462852478027 - }, - "Polygon": [ - { - "X": 0.8651291131973267, - "Y": 0.6489462852478027 - }, - { - "X": 0.8914178013801575, - "Y": 0.6489664316177368 - }, - { - "X": 0.8914175033569336, - "Y": 0.6574567556381226 - }, - { - "X": 0.865128755569458, - "Y": 0.6574366688728333 - } - ] - }, - "Id": "f1cf3a58-951e-4870-9a9b-25590cce4d93", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "447d5593-51e3-4c96-88f7-984d6c4e9462" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.79031372070312, - "Text": "Income tax payable", - "Geometry": { - "BoundingBox": { - "Width": 0.1036512702703476, - "Height": 0.009519720450043678, - "Left": 0.11156676709651947, - "Top": 0.6640417575836182 - }, - "Polygon": [ - { - "X": 0.1115693673491478, - "Y": 0.6640417575836182 - }, - { - "X": 0.21521803736686707, - "Y": 0.6641210913658142 - }, - { - "X": 0.2152157425880432, - "Y": 0.6735614538192749 - }, - { - "X": 0.11156676709651947, - "Y": 0.6734821200370789 - } - ] - }, - "Id": "27fdfea6-a9e7-4ed3-a878-75fd4f4026be", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f80134bc-81b9-4e86-b6f7-2707824e5114", - "e747c945-5e7e-486e-bbe1-64d78fb1201a", - "32bdad76-453b-4037-8674-c39c726c5429" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9388656616211, - "Text": "(25)", - "Geometry": { - "BoundingBox": { - "Width": 0.019453102722764015, - "Height": 0.009434941224753857, - "Left": 0.7061780095100403, - "Top": 0.6637569665908813 - }, - "Polygon": [ - { - "X": 0.7061789035797119, - "Y": 0.6637569665908813 - }, - { - "X": 0.7256311178207397, - "Y": 0.6637718677520752 - }, - { - "X": 0.7256303429603577, - "Y": 0.6731919646263123 - }, - { - "X": 0.7061780095100403, - "Y": 0.6731770634651184 - } - ] - }, - "Id": "23622376-6f27-44c2-a60d-0c1c58c64d3f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4737fa29-2112-4265-bc30-87e64c23e5bd" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.94588470458984, - "Text": "264", - "Geometry": { - "BoundingBox": { - "Width": 0.01960810460150242, - "Height": 0.007683330215513706, - "Left": 0.7887306809425354, - "Top": 0.6642032861709595 - }, - "Polygon": [ - { - "X": 0.7887311577796936, - "Y": 0.6642032861709595 - }, - { - "X": 0.8083387613296509, - "Y": 0.6642183065414429 - }, - { - "X": 0.8083382844924927, - "Y": 0.6718866229057312 - }, - { - "X": 0.7887306809425354, - "Y": 0.6718716025352478 - } - ] - }, - "Id": "efeb8a5b-7ff2-43a6-babc-33b958e5de88", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a60f69d4-8565-47ad-9071-dfd271d581b0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97631072998047, - "Text": "211", - "Geometry": { - "BoundingBox": { - "Width": 0.014936702325940132, - "Height": 0.007713677827268839, - "Left": 0.8764349818229675, - "Top": 0.6641100645065308 - }, - "Polygon": [ - { - "X": 0.8764353394508362, - "Y": 0.6641100645065308 - }, - { - "X": 0.8913717269897461, - "Y": 0.6641215085983276 - }, - { - "X": 0.8913714289665222, - "Y": 0.6718237400054932 - }, - { - "X": 0.8764349818229675, - "Y": 0.6718123555183411 - } - ] - }, - "Id": "1c3a73b2-835b-4103-a9ca-25d2045ac55d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d748c50f-9e8b-454c-ab54-c4738028d6f1" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95278930664062, - "Text": "Trade and other payables", - "Geometry": { - "BoundingBox": { - "Width": 0.1363047957420349, - "Height": 0.009681583382189274, - "Left": 0.11090022325515747, - "Top": 0.6791052222251892 - }, - "Polygon": [ - { - "X": 0.11090286076068878, - "Y": 0.6791052222251892 - }, - { - "X": 0.24720501899719238, - "Y": 0.6792095899581909 - }, - { - "X": 0.2472027838230133, - "Y": 0.6887868046760559 - }, - { - "X": 0.11090022325515747, - "Y": 0.6886824369430542 - } - ] - }, - "Id": "12389fe4-6cca-4ff1-9e80-bd56112e876e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "924e5562-b2dd-4792-ba01-cdb9e98a8cd1", - "e3fb12e8-cd85-49b2-afff-f0c744fa1bf9", - "e923fb05-08eb-4bcc-bae1-963cddc26d45", - "0f2897db-78d2-49ec-8f07-83aea013560c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97832489013672, - "Text": "(20)", - "Geometry": { - "BoundingBox": { - "Width": 0.020096657797694206, - "Height": 0.009343605488538742, - "Left": 0.7055849432945251, - "Top": 0.6789098978042603 - }, - "Polygon": [ - { - "X": 0.705585777759552, - "Y": 0.6789098978042603 - }, - { - "X": 0.7256816029548645, - "Y": 0.6789253354072571 - }, - { - "X": 0.7256807684898376, - "Y": 0.6882535219192505 - }, - { - "X": 0.7055849432945251, - "Y": 0.6882381439208984 - } - ] - }, - "Id": "264d1e25-cae7-4bbd-849a-2303db524edc", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4b71bdbc-9577-4884-8638-82ef0f09d65f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.79578399658203, - "Text": "6,297", - "Geometry": { - "BoundingBox": { - "Width": 0.028018610551953316, - "Height": 0.008580281399190426, - "Left": 0.7806565761566162, - "Top": 0.6793179512023926 - }, - "Polygon": [ - { - "X": 0.780657172203064, - "Y": 0.6793179512023926 - }, - { - "X": 0.8086751699447632, - "Y": 0.6793394088745117 - }, - { - "X": 0.808674693107605, - "Y": 0.6878982782363892 - }, - { - "X": 0.7806565761566162, - "Y": 0.68787682056427 - } - ] - }, - "Id": "f205cecf-7cb4-4c82-9c14-cda279b9b0bb", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b705e131-03ff-4306-8fe1-9c142d1807ca" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.66165924072266, - "Text": "6,199", - "Geometry": { - "BoundingBox": { - "Width": 0.02670522965490818, - "Height": 0.008547088131308556, - "Left": 0.864569902420044, - "Top": 0.6793691515922546 - }, - "Polygon": [ - { - "X": 0.8645703196525574, - "Y": 0.6793691515922546 - }, - { - "X": 0.89127516746521, - "Y": 0.6793895959854126 - }, - { - "X": 0.8912748694419861, - "Y": 0.6879162192344666 - }, - { - "X": 0.864569902420044, - "Y": 0.6878957748413086 - } - ] - }, - "Id": "147b59ce-e580-48d0-98c5-36614eb43f12", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d4e3a4ac-f368-4f56-a852-f7de0f267389" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.89414978027344, - "Text": "TOTAL EQUITY AND LIABILITIES", - "Geometry": { - "BoundingBox": { - "Width": 0.18300746381282806, - "Height": 0.008094487711787224, - "Left": 0.11087203770875931, - "Top": 0.6941649913787842 - }, - "Polygon": [ - { - "X": 0.1108742281794548, - "Y": 0.6941649913787842 - }, - { - "X": 0.2938794791698456, - "Y": 0.6943051815032959 - }, - { - "X": 0.2938777506351471, - "Y": 0.7022594809532166 - }, - { - "X": 0.11087203770875931, - "Y": 0.7021193504333496 - } - ] - }, - "Id": "f412e6ba-8d12-413c-9ddb-d610e5d90813", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "48ccb87b-6175-42e3-93d3-0c19f939f25a", - "0ac3aeab-b980-4903-ad4c-4b0efdecb33d", - "d47d8a32-92cc-4b07-9bbe-8d2b67b0eeab", - "bdbfd481-79e7-4dba-81ec-16411ff2898d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.85585021972656, - "Text": "29,983", - "Geometry": { - "BoundingBox": { - "Width": 0.03724372759461403, - "Height": 0.00871921144425869, - "Left": 0.7709906697273254, - "Top": 0.6945130228996277 - }, - "Polygon": [ - { - "X": 0.770991325378418, - "Y": 0.6945130228996277 - }, - { - "X": 0.8082343935966492, - "Y": 0.6945415139198303 - }, - { - "X": 0.8082338571548462, - "Y": 0.7032322287559509 - }, - { - "X": 0.7709906697273254, - "Y": 0.7032036781311035 - } - ] - }, - "Id": "a25500de-42b4-4719-adb1-d2ff6455ca01", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7843fb7c-5c67-4964-90b6-1102ed4011ca" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.90985107421875, - "Text": "28,945", - "Geometry": { - "BoundingBox": { - "Width": 0.037096500396728516, - "Height": 0.008832123130559921, - "Left": 0.8543480038642883, - "Top": 0.6944987773895264 - }, - "Polygon": [ - { - "X": 0.8543484210968018, - "Y": 0.6944987773895264 - }, - { - "X": 0.8914445042610168, - "Y": 0.6945272088050842 - }, - { - "X": 0.891444206237793, - "Y": 0.7033308744430542 - }, - { - "X": 0.8543480038642883, - "Y": 0.7033025026321411 - } - ] - }, - "Id": "88c1d179-1c45-41eb-bc1c-7c9c54e03450", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "be426448-03f6-4d29-a047-01999ef26e9e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 89.21700286865234, - "Text": "22", - "Geometry": { - "BoundingBox": { - "Width": 0.011868185363709927, - "Height": 0.007125294301658869, - "Left": 0.10746223479509354, - "Top": 0.9642103910446167 - }, - "Polygon": [ - { - "X": 0.10746420174837112, - "Y": 0.9642103910446167 - }, - { - "X": 0.11933042109012604, - "Y": 0.9642195105552673 - }, - { - "X": 0.11932848393917084, - "Y": 0.9713356494903564 - }, - { - "X": 0.10746223479509354, - "Y": 0.9713265299797058 - } - ] - }, - "Id": "4e8259d9-92d9-49c3-b745-7baead8ac107", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6226c9f3-d6a0-4f50-8cf6-a31819478fdb" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.62274169921875, - "Text": "INDITEX", - "Geometry": { - "BoundingBox": { - "Width": 0.08068589121103287, - "Height": 0.013506082817912102, - "Left": 0.8114340901374817, - "Top": 0.9584115147590637 - }, - "Polygon": [ - { - "X": 0.8114348649978638, - "Y": 0.9584115147590637 - }, - { - "X": 0.8921200037002563, - "Y": 0.9584737420082092 - }, - { - "X": 0.8921195268630981, - "Y": 0.9719176292419434 - }, - { - "X": 0.8114340901374817, - "Y": 0.9718554019927979 - } - ] - }, - "Id": "ef13f9e7-8f03-4b04-bd32-6b4823ebe594", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "9b4c3fe5-5964-4192-8ed6-04446f14e0a5" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.71894073486328, - "Text": "Inditex", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.030820433050394058, - "Height": 0.006685491185635328, - "Left": 0.10329641401767731, - "Top": 0.04711754247546196 - }, - "Polygon": [ - { - "X": 0.10329826176166534, - "Y": 0.04711754247546196 - }, - { - "X": 0.13411684334278107, - "Y": 0.04714076220989227 - }, - { - "X": 0.1341150552034378, - "Y": 0.053803034126758575 - }, - { - "X": 0.10329641401767731, - "Y": 0.053779810667037964 - } - ] - }, - "Id": "0298b06b-1eca-4a54-8d82-84207c1fbf7d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98426818847656, - "Text": "Annual", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03263777866959572, - "Height": 0.006667749024927616, - "Left": 0.13642942905426025, - "Top": 0.04707833752036095 - }, - "Polygon": [ - { - "X": 0.13643120229244232, - "Y": 0.04707833752036095 - }, - { - "X": 0.16906720399856567, - "Y": 0.047102924436330795 - }, - { - "X": 0.16906549036502838, - "Y": 0.05374608561396599 - }, - { - "X": 0.13642942905426025, - "Y": 0.05372149497270584 - } - ] - }, - "Id": "227624f2-0341-45ff-8868-3547e7e81a16", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94766998291016, - "Text": "Report", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03115256503224373, - "Height": 0.00838308222591877, - "Left": 0.17203578352928162, - "Top": 0.04701044410467148 - }, - "Polygon": [ - { - "X": 0.17203792929649353, - "Y": 0.04701044410467148 - }, - { - "X": 0.20318834483623505, - "Y": 0.04703391343355179 - }, - { - "X": 0.2031862884759903, - "Y": 0.0553935281932354 - }, - { - "X": 0.17203578352928162, - "Y": 0.05537005513906479 - } - ] - }, - "Id": "d7602e54-dac3-47f1-a8eb-f99a7e57ce7e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 98.32625579833984, - "Text": "2022", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.023351460695266724, - "Height": 0.0067488099448382854, - "Left": 0.2057204246520996, - "Top": 0.04707895219326019 - }, - "Polygon": [ - { - "X": 0.20572207868099213, - "Y": 0.04707895219326019 - }, - { - "X": 0.22907188534736633, - "Y": 0.04709654673933983 - }, - { - "X": 0.2290702760219574, - "Y": 0.053827762603759766 - }, - { - "X": 0.2057204246520996, - "Y": 0.05381016805768013 - } - ] - }, - "Id": "e7fa0bb0-5046-4e77-a6da-b3141c45608b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 94.76722717285156, - "Text": "/", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.004795030690729618, - "Height": 0.007013917434960604, - "Left": 0.2310638725757599, - "Top": 0.04683336988091469 - }, - "Polygon": [ - { - "X": 0.2310655415058136, - "Y": 0.04683336988091469 - }, - { - "X": 0.23585890233516693, - "Y": 0.046836983412504196 - }, - { - "X": 0.23585724830627441, - "Y": 0.053847286850214005 - }, - { - "X": 0.2310638725757599, - "Y": 0.053843677043914795 - } - ] - }, - "Id": "462d8ff0-0771-4f7d-914b-68ae135f3cd5", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.34828186035156, - "Text": "Consolidated", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06469215452671051, - "Height": 0.00699101947247982, - "Left": 0.23832376301288605, - "Top": 0.046847447752952576 - }, - "Polygon": [ - { - "X": 0.23832540214061737, - "Y": 0.046847447752952576 - }, - { - "X": 0.30301591753959656, - "Y": 0.04689618572592735 - }, - { - "X": 0.3030144274234772, - "Y": 0.05383846536278725 - }, - { - "X": 0.23832376301288605, - "Y": 0.05378971993923187 - } - ] - }, - "Id": "5d428d25-4c8f-4197-b7e0-0d038231cd39", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9766616821289, - "Text": "Annual", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03387932479381561, - "Height": 0.006708407308906317, - "Left": 0.30529695749282837, - "Top": 0.04708808287978172 - }, - "Polygon": [ - { - "X": 0.30529841780662537, - "Y": 0.04708808287978172 - }, - { - "X": 0.3391762971878052, - "Y": 0.047113608568906784 - }, - { - "X": 0.33917492628097534, - "Y": 0.05379648879170418 - }, - { - "X": 0.30529695749282837, - "Y": 0.05377096310257912 - } - ] - }, - "Id": "f0ab7c4d-d861-4b35-b394-8fc78a93dc66", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90921020507812, - "Text": "Accounts", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04605827108025551, - "Height": 0.0066117215901613235, - "Left": 0.3413839042186737, - "Top": 0.04714934527873993 - }, - "Polygon": [ - { - "X": 0.34138524532318115, - "Y": 0.04714934527873993 - }, - { - "X": 0.3874421715736389, - "Y": 0.0471840463578701 - }, - { - "X": 0.38744091987609863, - "Y": 0.0537610687315464 - }, - { - "X": 0.3413839042186737, - "Y": 0.05372636392712593 - } - ] - }, - "Id": "e3394e67-442f-4dee-be2e-62c7332730dd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91746520996094, - "Text": "(Amounts", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05374377965927124, - "Height": 0.008930673822760582, - "Left": 0.11146684736013412, - "Top": 0.11533457785844803 - }, - "Polygon": [ - { - "X": 0.11146929115056992, - "Y": 0.11533457785844803 - }, - { - "X": 0.16521061956882477, - "Y": 0.11537513881921768 - }, - { - "X": 0.16520832479000092, - "Y": 0.12426525354385376 - }, - { - "X": 0.11146684736013412, - "Y": 0.12422467768192291 - } - ] - }, - "Id": "539be61f-3fd6-4c59-b0b6-d8097a3cd43d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93170928955078, - "Text": "in", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.00976194441318512, - "Height": 0.007456419989466667, - "Left": 0.16787225008010864, - "Top": 0.11544166505336761 - }, - "Polygon": [ - { - "X": 0.16787417232990265, - "Y": 0.11544166505336761 - }, - { - "X": 0.17763419449329376, - "Y": 0.11544903367757797 - }, - { - "X": 0.17763230204582214, - "Y": 0.12289808690547943 - }, - { - "X": 0.16787225008010864, - "Y": 0.12289071828126907 - } - ] - }, - "Id": "3547e8db-3dc0-459d-a631-82a26ae01dec", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.89584350585938, - "Text": "millions", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04227634519338608, - "Height": 0.007678599562495947, - "Left": 0.1806335747241974, - "Top": 0.11531264334917068 - }, - "Polygon": [ - { - "X": 0.1806355118751526, - "Y": 0.11531264334917068 - }, - { - "X": 0.22290992736816406, - "Y": 0.11534454673528671 - }, - { - "X": 0.22290807962417603, - "Y": 0.12299124151468277 - }, - { - "X": 0.1806335747241974, - "Y": 0.12295933067798615 - } - ] - }, - "Id": "b4874339-a8be-46a6-8535-4d36f09dda66", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96591186523438, - "Text": "of", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.011465327814221382, - "Height": 0.007541768718510866, - "Left": 0.22555427253246307, - "Top": 0.1153450608253479 - }, - "Polygon": [ - { - "X": 0.22555607557296753, - "Y": 0.1153450608253479 - }, - { - "X": 0.2370195984840393, - "Y": 0.11535371094942093 - }, - { - "X": 0.23701781034469604, - "Y": 0.12288682907819748 - }, - { - "X": 0.22555427253246307, - "Y": 0.12287817150354385 - } - ] - }, - "Id": "7032ce45-c86e-4a2a-8c03-fdcbd8edca14", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 98.62345886230469, - "Text": "euros)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03507120534777641, - "Height": 0.009145435877144337, - "Left": 0.2392626851797104, - "Top": 0.11513753980398178 - }, - "Polygon": [ - { - "X": 0.2392648458480835, - "Y": 0.11513753980398178 - }, - { - "X": 0.2743338942527771, - "Y": 0.11516400426626205 - }, - { - "X": 0.27433183789253235, - "Y": 0.12428297102451324 - }, - { - "X": 0.2392626851797104, - "Y": 0.12425649911165237 - } - ] - }, - "Id": "f236c6d9-4b75-4728-93de-581f07efaad4", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.79374694824219, - "Text": "(Notes)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04059092327952385, - "Height": 0.009456093423068523, - "Left": 0.6850693225860596, - "Top": 0.11493061482906342 - }, - "Polygon": [ - { - "X": 0.6850702166557312, - "Y": 0.11493061482906342 - }, - { - "X": 0.7256602048873901, - "Y": 0.11496125161647797 - }, - { - "X": 0.7256594300270081, - "Y": 0.12438671290874481 - }, - { - "X": 0.6850693225860596, - "Y": 0.12435606867074966 - } - ] - }, - "Id": "437f8b1e-c7d1-4d64-ab16-c08e5ab93f60", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.7059097290039, - "Text": "31/01/2023", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06254169344902039, - "Height": 0.007852497510612011, - "Left": 0.745964527130127, - "Top": 0.11529694497585297 - }, - "Polygon": [ - { - "X": 0.7459651827812195, - "Y": 0.11529694497585297 - }, - { - "X": 0.8085062503814697, - "Y": 0.11534414440393448 - }, - { - "X": 0.8085057735443115, - "Y": 0.12314943969249725 - }, - { - "X": 0.745964527130127, - "Y": 0.12310223281383514 - } - ] - }, - "Id": "ee8fd458-8783-4a83-9670-d919295a9ac0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.76959228515625, - "Text": "31/01/2022", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06250781565904617, - "Height": 0.007845240645110607, - "Left": 0.8292930126190186, - "Top": 0.11529428511857986 - }, - "Polygon": [ - { - "X": 0.829293429851532, - "Y": 0.11529428511857986 - }, - { - "X": 0.8918008208274841, - "Y": 0.11534146219491959 - }, - { - "X": 0.8918005228042603, - "Y": 0.12313952296972275 - }, - { - "X": 0.8292930126190186, - "Y": 0.12309233844280243 - } - ] - }, - "Id": "dcc42672-a493-40ec-880c-e2ab165c6799", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91988372802734, - "Text": "ASSETS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04722103849053383, - "Height": 0.008245411328971386, - "Left": 0.1108265370130539, - "Top": 0.13016892969608307 - }, - "Polygon": [ - { - "X": 0.11082880198955536, - "Y": 0.13016892969608307 - }, - { - "X": 0.15804757177829742, - "Y": 0.13020457327365875 - }, - { - "X": 0.1580454409122467, - "Y": 0.13841433823108673 - }, - { - "X": 0.1108265370130539, - "Y": 0.13837867975234985 - } - ] - }, - "Id": "67e5da9e-cd3a-402b-af77-2488c66649b9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.74307250976562, - "Text": "NON-CURRENT", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.08882316946983337, - "Height": 0.007528502028435469, - "Left": 0.11165919899940491, - "Top": 0.14569899439811707 - }, - "Polygon": [ - { - "X": 0.11166124790906906, - "Y": 0.14569899439811707 - }, - { - "X": 0.20048236846923828, - "Y": 0.14576607942581177 - }, - { - "X": 0.20048052072525024, - "Y": 0.15322749316692352 - }, - { - "X": 0.11165919899940491, - "Y": 0.15316039323806763 - } - ] - }, - "Id": "359d5fb1-8a1e-4542-9447-dabfa76302bc", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.68405151367188, - "Text": "ASSETS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04681793972849846, - "Height": 0.007691071834415197, - "Left": 0.20272128283977509, - "Top": 0.14560270309448242 - }, - "Polygon": [ - { - "X": 0.2027231752872467, - "Y": 0.14560270309448242 - }, - { - "X": 0.24953922629356384, - "Y": 0.14563806354999542 - }, - { - "X": 0.24953745305538177, - "Y": 0.15329377353191376 - }, - { - "X": 0.20272128283977509, - "Y": 0.15325839817523956 - } - ] - }, - "Id": "0121ae2c-3e97-4be9-bdaa-3aa4594f070c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.74694061279297, - "Text": "15,344", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.035062648355960846, - "Height": 0.008493378758430481, - "Left": 0.7734638452529907, - "Top": 0.1458921581506729 - }, - "Polygon": [ - { - "X": 0.7734644412994385, - "Y": 0.1458921581506729 - }, - { - "X": 0.8085265159606934, - "Y": 0.14591863751411438 - }, - { - "X": 0.8085259795188904, - "Y": 0.1543855369091034 - }, - { - "X": 0.7734638452529907, - "Y": 0.15435905754566193 - } - ] - }, - "Id": "8e4cfab5-6cad-498e-9db5-ca33961b69c9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.72840118408203, - "Text": "15,343", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.034721072763204575, - "Height": 0.008466671220958233, - "Left": 0.8566368222236633, - "Top": 0.1459018886089325 - }, - "Polygon": [ - { - "X": 0.856637179851532, - "Y": 0.1459018886089325 - }, - { - "X": 0.8913578987121582, - "Y": 0.14592811465263367 - }, - { - "X": 0.8913576006889343, - "Y": 0.1543685495853424 - }, - { - "X": 0.8566368222236633, - "Y": 0.15434232354164124 - } - ] - }, - "Id": "16ed970d-ebe8-41bd-ad2b-fb76a0c2e6c1", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96390533447266, - "Text": "Rights", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03290202096104622, - "Height": 0.009429510682821274, - "Left": 0.11172273010015488, - "Top": 0.16063426434993744 - }, - "Polygon": [ - { - "X": 0.1117253229022026, - "Y": 0.16063426434993744 - }, - { - "X": 0.1446247547864914, - "Y": 0.16065913438796997 - }, - { - "X": 0.14462226629257202, - "Y": 0.170063778758049 - }, - { - "X": 0.11172273010015488, - "Y": 0.17003890872001648 - } - ] - }, - "Id": "3a102d9a-0627-4b7e-8259-78cede4715b1", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91915130615234, - "Text": "of", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.010837175883352757, - "Height": 0.007550893351435661, - "Left": 0.14774763584136963, - "Top": 0.16082634031772614 - }, - "Polygon": [ - { - "X": 0.1477496325969696, - "Y": 0.16082634031772614 - }, - { - "X": 0.1585848182439804, - "Y": 0.16083452105522156 - }, - { - "X": 0.15858285129070282, - "Y": 0.16837723553180695 - }, - { - "X": 0.14774763584136963, - "Y": 0.16836903989315033 - } - ] - }, - "Id": "c103c58c-d716-404c-bc25-cbc693b116e9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9517822265625, - "Text": "use", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019041378051042557, - "Height": 0.006037152837961912, - "Left": 0.16128364205360413, - "Top": 0.16244004666805267 - }, - "Polygon": [ - { - "X": 0.16128520667552948, - "Y": 0.16244004666805267 - }, - { - "X": 0.18032501637935638, - "Y": 0.16245444118976593 - }, - { - "X": 0.18032348155975342, - "Y": 0.16847720742225647 - }, - { - "X": 0.16128364205360413, - "Y": 0.1684628129005432 - } - ] - }, - "Id": "e1da6514-ae63-4afb-921e-ba0004dfa176", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.76457977294922, - "Text": "(16)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.017789658159017563, - "Height": 0.009077232331037521, - "Left": 0.7078553438186646, - "Top": 0.1606232225894928 - }, - "Polygon": [ - { - "X": 0.7078561782836914, - "Y": 0.1606232225894928 - }, - { - "X": 0.7256450057029724, - "Y": 0.16063666343688965 - }, - { - "X": 0.7256442308425903, - "Y": 0.16970045864582062 - }, - { - "X": 0.7078553438186646, - "Y": 0.16968700289726257 - } - ] - }, - "Id": "1f9ce0f5-afc0-4f70-9d9b-47ff4677e556", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9526596069336, - "Text": "4,910", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.026857890188694, - "Height": 0.008224277757108212, - "Left": 0.7814426422119141, - "Top": 0.16098885238170624 - }, - "Polygon": [ - { - "X": 0.7814432382583618, - "Y": 0.16098885238170624 - }, - { - "X": 0.8083005547523499, - "Y": 0.16100914776325226 - }, - { - "X": 0.8083000779151917, - "Y": 0.16921313107013702 - }, - { - "X": 0.7814426422119141, - "Y": 0.169192835688591 - } - ] - }, - "Id": "56e2eaa5-611d-4b82-a0ff-638620027171", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.79216766357422, - "Text": "5,224", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.028144367039203644, - "Height": 0.008384323678910732, - "Left": 0.8633919358253479, - "Top": 0.16080844402313232 - }, - "Polygon": [ - { - "X": 0.8633922934532166, - "Y": 0.16080844402313232 - }, - { - "X": 0.891536295413971, - "Y": 0.16082970798015594 - }, - { - "X": 0.8915359973907471, - "Y": 0.16919277608394623 - }, - { - "X": 0.8633919358253479, - "Y": 0.1691714972257614 - } - ] - }, - "Id": "df478b79-28fa-4d66-8767-cca6ab4a8d86", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95201110839844, - "Text": "Other", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029890751466155052, - "Height": 0.007607823237776756, - "Left": 0.11132025718688965, - "Top": 0.17596882581710815 - }, - "Polygon": [ - { - "X": 0.11132234334945679, - "Y": 0.17596882581710815 - }, - { - "X": 0.14121100306510925, - "Y": 0.17599141597747803 - }, - { - "X": 0.14120899140834808, - "Y": 0.18357664346694946 - }, - { - "X": 0.11132025718688965, - "Y": 0.1835540533065796 - } - ] - }, - "Id": "a640ff35-1379-46ac-98e4-2f950b94c870", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.8824691772461, - "Text": "intangible", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05178801715373993, - "Height": 0.009430056437849998, - "Left": 0.1441843956708908, - "Top": 0.1759381741285324 - }, - "Polygon": [ - { - "X": 0.14418688416481018, - "Y": 0.1759381741285324 - }, - { - "X": 0.19597241282463074, - "Y": 0.17597731947898865 - }, - { - "X": 0.1959700733423233, - "Y": 0.18536823987960815 - }, - { - "X": 0.1441843956708908, - "Y": 0.18532907962799072 - } - ] - }, - "Id": "0f455c67-2824-4220-b9d4-883e29faf992", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98522186279297, - "Text": "assets", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03401225432753563, - "Height": 0.00700952485203743, - "Left": 0.19894924759864807, - "Top": 0.17661038041114807 - }, - "Polygon": [ - { - "X": 0.19895097613334656, - "Y": 0.17661038041114807 - }, - { - "X": 0.2329614907503128, - "Y": 0.17663609981536865 - }, - { - "X": 0.2329598367214203, - "Y": 0.1836199164390564 - }, - { - "X": 0.19894924759864807, - "Y": 0.18359419703483582 - } - ] - }, - "Id": "d728ff5d-3e13-4aeb-add9-d5cde560212f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94857025146484, - "Text": "(15)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.017572134733200073, - "Height": 0.00902289804071188, - "Left": 0.7080923318862915, - "Top": 0.17578376829624176 - }, - "Polygon": [ - { - "X": 0.7080931663513184, - "Y": 0.17578376829624176 - }, - { - "X": 0.7256644368171692, - "Y": 0.17579706013202667 - }, - { - "X": 0.7256636619567871, - "Y": 0.1848066747188568 - }, - { - "X": 0.7080923318862915, - "Y": 0.1847933828830719 - } - ] - }, - "Id": "2b128e48-07cf-46fa-9e98-8e8edbaa39df", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9495849609375, - "Text": "810", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.017759481444954872, - "Height": 0.00744821410626173, - "Left": 0.7904251217842102, - "Top": 0.17617493867874146 - }, - "Polygon": [ - { - "X": 0.7904255986213684, - "Y": 0.17617493867874146 - }, - { - "X": 0.8081846237182617, - "Y": 0.1761883646249771 - }, - { - "X": 0.8081841468811035, - "Y": 0.18362314999103546 - }, - { - "X": 0.7904251217842102, - "Y": 0.1836097240447998 - } - ] - }, - "Id": "ab027485-d62e-40a9-8799-7d64d52ab433", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9455337524414, - "Text": "589", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019831378012895584, - "Height": 0.007513502612709999, - "Left": 0.8714017271995544, - "Top": 0.176121324300766 - }, - "Polygon": [ - { - "X": 0.8714020252227783, - "Y": 0.176121324300766 - }, - { - "X": 0.8912330865859985, - "Y": 0.176136314868927 - }, - { - "X": 0.8912328481674194, - "Y": 0.18363481760025024 - }, - { - "X": 0.8714017271995544, - "Y": 0.18361982703208923 - } - ] - }, - "Id": "bcf58699-adb6-4991-a21f-741f30a93277", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91839599609375, - "Text": "Goodwill", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04580601677298546, - "Height": 0.007708454504609108, - "Left": 0.11138288676738739, - "Top": 0.19106848537921906 - }, - "Polygon": [ - { - "X": 0.11138499528169632, - "Y": 0.19106848537921906 - }, - { - "X": 0.15718889236450195, - "Y": 0.19110313057899475 - }, - { - "X": 0.15718689560890198, - "Y": 0.1987769454717636 - }, - { - "X": 0.11138288676738739, - "Y": 0.19874230027198792 - } - ] - }, - "Id": "83fdcaea-9f6e-493a-b520-453b8252c041", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.88993072509766, - "Text": "(17)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.016259953379631042, - "Height": 0.008956391364336014, - "Left": 0.7093361616134644, - "Top": 0.19098588824272156 - }, - "Polygon": [ - { - "X": 0.7093369960784912, - "Y": 0.19098588824272156 - }, - { - "X": 0.7255961298942566, - "Y": 0.19099819660186768 - }, - { - "X": 0.7255953550338745, - "Y": 0.19994229078292847 - }, - { - "X": 0.7093361616134644, - "Y": 0.19992998242378235 - } - ] - }, - "Id": "c776c3f1-196c-477d-952b-21758d349604", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96113586425781, - "Text": "193", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.017522037029266357, - "Height": 0.007326139602810144, - "Left": 0.7908136248588562, - "Top": 0.19137296080589294 - }, - "Polygon": [ - { - "X": 0.7908141016960144, - "Y": 0.19137296080589294 - }, - { - "X": 0.8083356618881226, - "Y": 0.19138620793819427 - }, - { - "X": 0.8083352446556091, - "Y": 0.19869910180568695 - }, - { - "X": 0.7908136248588562, - "Y": 0.19868583977222443 - } - ] - }, - "Id": "41d5ff0f-1173-4a33-ba38-4743fa691fb6", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93324279785156, - "Text": "202", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.020070306956768036, - "Height": 0.007466468494385481, - "Left": 0.8712711930274963, - "Top": 0.19127288460731506 - }, - "Polygon": [ - { - "X": 0.871271550655365, - "Y": 0.19127288460731506 - }, - { - "X": 0.891341507434845, - "Y": 0.1912880539894104 - }, - { - "X": 0.8913412690162659, - "Y": 0.19873934984207153 - }, - { - "X": 0.8712711930274963, - "Y": 0.198724165558815 - } - ] - }, - "Id": "515f4fd5-5dd8-4ab7-a9f7-e26be11e2fc1", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93604278564453, - "Text": "Property,", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04730864241719246, - "Height": 0.009402774274349213, - "Left": 0.11162804812192917, - "Top": 0.20632313191890717 - }, - "Polygon": [ - { - "X": 0.1116306260228157, - "Y": 0.20632313191890717 - }, - { - "X": 0.15893669426441193, - "Y": 0.2063589096069336 - }, - { - "X": 0.15893425047397614, - "Y": 0.21572589874267578 - }, - { - "X": 0.11162804812192917, - "Y": 0.21569010615348816 - } - ] - }, - "Id": "8af89c36-8d80-4fa0-b93d-ae1951251eaf", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.88377380371094, - "Text": "plant", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.026351500302553177, - "Height": 0.009321647696197033, - "Left": 0.16219770908355713, - "Top": 0.20629966259002686 - }, - "Polygon": [ - { - "X": 0.16220012307167053, - "Y": 0.20629966259002686 - }, - { - "X": 0.1885492205619812, - "Y": 0.20631960034370422 - }, - { - "X": 0.18854688107967377, - "Y": 0.21562130749225616 - }, - { - "X": 0.16219770908355713, - "Y": 0.2156013697385788 - } - ] - }, - "Id": "869747c4-0536-4d8f-bc9c-2a5e9d206309", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97962951660156, - "Text": "and", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02005576528608799, - "Height": 0.007651748601347208, - "Left": 0.19128306210041046, - "Top": 0.20623868703842163 - }, - "Polygon": [ - { - "X": 0.19128498435020447, - "Y": 0.20623868703842163 - }, - { - "X": 0.2113388329744339, - "Y": 0.20625385642051697 - }, - { - "X": 0.21133697032928467, - "Y": 0.2138904333114624 - }, - { - "X": 0.19128306210041046, - "Y": 0.21387526392936707 - } - ] - }, - "Id": "6f2e53a4-152c-4be5-8c89-0cfbc421ead9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.80396270751953, - "Text": "equipment", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05749429762363434, - "Height": 0.00932587031275034, - "Left": 0.21465861797332764, - "Top": 0.20638854801654816 - }, - "Polygon": [ - { - "X": 0.2146608829498291, - "Y": 0.20638854801654816 - }, - { - "X": 0.27215293049812317, - "Y": 0.206432044506073 - }, - { - "X": 0.27215081453323364, - "Y": 0.21571442484855652 - }, - { - "X": 0.21465861797332764, - "Y": 0.21567091345787048 - } - ] - }, - "Id": "48e50e49-9400-4cf1-812b-41cc5978f00e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.83903503417969, - "Text": "(14)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.017113523557782173, - "Height": 0.008857233449816704, - "Left": 0.7083873748779297, - "Top": 0.20612819492816925 - }, - "Polygon": [ - { - "X": 0.7083882093429565, - "Y": 0.20612819492816925 - }, - { - "X": 0.7255008816719055, - "Y": 0.2061411440372467 - }, - { - "X": 0.7255001664161682, - "Y": 0.2149854302406311 - }, - { - "X": 0.7083873748779297, - "Y": 0.21497248113155365 - } - ] - }, - "Id": "6f89dfa9-95ea-44b2-88c1-25999316f38a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9029541015625, - "Text": "7,591", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.025538694113492966, - "Height": 0.008513846434652805, - "Left": 0.7827667593955994, - "Top": 0.20627368986606598 - }, - "Polygon": [ - { - "X": 0.7827673554420471, - "Y": 0.20627368986606598 - }, - { - "X": 0.8083054423332214, - "Y": 0.2062930166721344 - }, - { - "X": 0.8083049654960632, - "Y": 0.2147875428199768 - }, - { - "X": 0.7827667593955994, - "Y": 0.2147682160139084 - } - ] - }, - "Id": "51c5df9a-9c66-4518-9f97-44508ebcbb50", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.83826446533203, - "Text": "7,481", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02541910484433174, - "Height": 0.008367644622921944, - "Left": 0.8659624457359314, - "Top": 0.20627909898757935 - }, - "Polygon": [ - { - "X": 0.8659628033638, - "Y": 0.20627909898757935 - }, - { - "X": 0.891381561756134, - "Y": 0.2062983363866806 - }, - { - "X": 0.8913812637329102, - "Y": 0.21464675664901733 - }, - { - "X": 0.8659624457359314, - "Y": 0.21462751924991608 - } - ] - }, - "Id": "e99761d3-7415-4a49-bc69-8e8dc96617e5", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91466522216797, - "Text": "Investment", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.058372482657432556, - "Height": 0.007631979882717133, - "Left": 0.11203846335411072, - "Top": 0.22150030732154846 - }, - "Polygon": [ - { - "X": 0.11204054951667786, - "Y": 0.22150030732154846 - }, - { - "X": 0.17041094601154327, - "Y": 0.22154448926448822 - }, - { - "X": 0.17040899395942688, - "Y": 0.2291322946548462 - }, - { - "X": 0.11203846335411072, - "Y": 0.22908811271190643 - } - ] - }, - "Id": "69158ecd-6e47-4d5e-976d-20b67f591458", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9527816772461, - "Text": "property", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04514706879854202, - "Height": 0.0089632673189044, - "Left": 0.17319807410240173, - "Top": 0.22196242213249207 - }, - "Polygon": [ - { - "X": 0.17320036888122559, - "Y": 0.22196242213249207 - }, - { - "X": 0.21834515035152435, - "Y": 0.22199659049510956 - }, - { - "X": 0.21834298968315125, - "Y": 0.23092569410800934 - }, - { - "X": 0.17319807410240173, - "Y": 0.23089151084423065 - } - ] - }, - "Id": "eb64a1bd-b2cc-477d-a90e-0904af205ff9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96636962890625, - "Text": "24", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.012866031378507614, - "Height": 0.00759848952293396, - "Left": 0.7954997420310974, - "Top": 0.22146211564540863 - }, - "Polygon": [ - { - "X": 0.7955002188682556, - "Y": 0.22146211564540863 - }, - { - "X": 0.8083657622337341, - "Y": 0.2214718461036682 - }, - { - "X": 0.8083652853965759, - "Y": 0.2290606051683426 - }, - { - "X": 0.7954997420310974, - "Y": 0.22905085980892181 - } - ] - }, - "Id": "324ab35c-ce9b-4225-bf0b-a98e756f9e3c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96414184570312, - "Text": "21", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.010672055184841156, - "Height": 0.00754499202594161, - "Left": 0.880689799785614, - "Top": 0.22149668633937836 - }, - "Polygon": [ - { - "X": 0.8806900382041931, - "Y": 0.22149668633937836 - }, - { - "X": 0.8913618326187134, - "Y": 0.22150476276874542 - }, - { - "X": 0.8913615345954895, - "Y": 0.2290416806936264 - }, - { - "X": 0.880689799785614, - "Y": 0.22903360426425934 - } - ] - }, - "Id": "6d3bf2b4-2b6f-4b25-a93f-ff3344053d18", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.73918151855469, - "Text": "Financial", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04648603871464729, - "Height": 0.008154191076755524, - "Left": 0.11182605475187302, - "Top": 0.23628655076026917 - }, - "Polygon": [ - { - "X": 0.1118282899260521, - "Y": 0.23628655076026917 - }, - { - "X": 0.1583120971918106, - "Y": 0.23632174730300903 - }, - { - "X": 0.15830998122692108, - "Y": 0.24444074928760529 - }, - { - "X": 0.11182605475187302, - "Y": 0.24440555274486542 - } - ] - }, - "Id": "ec388662-a84f-478c-a9ad-d02b51756eff", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9215087890625, - "Text": "investments", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0641406774520874, - "Height": 0.007630093023180962, - "Left": 0.16175328195095062, - "Top": 0.23657894134521484 - }, - "Polygon": [ - { - "X": 0.1617552489042282, - "Y": 0.23657894134521484 - }, - { - "X": 0.22589395940303802, - "Y": 0.2366274893283844 - }, - { - "X": 0.22589214146137238, - "Y": 0.24420903623104095 - }, - { - "X": 0.16175328195095062, - "Y": 0.244160458445549 - } - ] - }, - "Id": "918b9a82-e22d-4b82-8d54-db790c830aa8", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93653106689453, - "Text": "(18)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.017734123393893242, - "Height": 0.00916321575641632, - "Left": 0.7078234553337097, - "Top": 0.23632487654685974 - }, - "Polygon": [ - { - "X": 0.7078242897987366, - "Y": 0.23632487654685974 - }, - { - "X": 0.7255575656890869, - "Y": 0.2363383024930954 - }, - { - "X": 0.7255567908287048, - "Y": 0.24548809230327606 - }, - { - "X": 0.7078234553337097, - "Y": 0.2454746663570404 - } - ] - }, - "Id": "887e4725-e408-4fb3-8585-8f8244fb8855", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97718048095703, - "Text": "334", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019387593492865562, - "Height": 0.007425365503877401, - "Left": 0.7890126705169678, - "Top": 0.23678478598594666 - }, - "Polygon": [ - { - "X": 0.7890132069587708, - "Y": 0.23678478598594666 - }, - { - "X": 0.8084002733230591, - "Y": 0.2367994636297226 - }, - { - "X": 0.8083998560905457, - "Y": 0.2442101538181305 - }, - { - "X": 0.7890126705169678, - "Y": 0.24419547617435455 - } - ] - }, - "Id": "2749bff9-ca66-4cff-a6fa-a1384d2ecc5c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96788024902344, - "Text": "307", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019458333030343056, - "Height": 0.007437232881784439, - "Left": 0.8721731305122375, - "Top": 0.23673169314861298 - }, - "Polygon": [ - { - "X": 0.8721734285354614, - "Y": 0.23673169314861298 - }, - { - "X": 0.8916314840316772, - "Y": 0.2367464303970337 - }, - { - "X": 0.8916311860084534, - "Y": 0.2441689372062683 - }, - { - "X": 0.8721731305122375, - "Y": 0.2441541999578476 - } - ] - }, - "Id": "21959b1e-44c1-4a01-8067-db7fa10593b0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.37159729003906, - "Text": "Other", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02977544069290161, - "Height": 0.007611570414155722, - "Left": 0.11126552522182465, - "Top": 0.2516555190086365 - }, - "Polygon": [ - { - "X": 0.11126761138439178, - "Y": 0.2516555190086365 - }, - { - "X": 0.14104096591472626, - "Y": 0.25167807936668396 - }, - { - "X": 0.1410389393568039, - "Y": 0.25926709175109863 - }, - { - "X": 0.11126552522182465, - "Y": 0.25924453139305115 - } - ] - }, - "Id": "ed98e825-3075-48bf-a2f0-95996c35730c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.80726623535156, - "Text": "non-current", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06346195191144943, - "Height": 0.0072101508267223835, - "Left": 0.14421716332435608, - "Top": 0.2520754635334015 - }, - "Polygon": [ - { - "X": 0.1442190557718277, - "Y": 0.2520754635334015 - }, - { - "X": 0.2076791226863861, - "Y": 0.25212350487709045 - }, - { - "X": 0.20767734944820404, - "Y": 0.2592855989933014 - }, - { - "X": 0.14421716332435608, - "Y": 0.25923752784729004 - } - ] - }, - "Id": "0d70f7e9-e7cf-4987-b77c-3ae66fe0e3af", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98242950439453, - "Text": "assets", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03442096337676048, - "Height": 0.007136231753975153, - "Left": 0.2102414071559906, - "Top": 0.25224635004997253 - }, - "Polygon": [ - { - "X": 0.21024315059185028, - "Y": 0.25224635004997253 - }, - { - "X": 0.24466237425804138, - "Y": 0.25227242708206177 - }, - { - "X": 0.24466070532798767, - "Y": 0.25938257575035095 - }, - { - "X": 0.2102414071559906, - "Y": 0.2593564987182617 - } - ] - }, - "Id": "0b0fba3a-1aca-4bb7-afd5-174f0f9e846e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.89887237548828, - "Text": "(19)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.017745114862918854, - "Height": 0.009179145097732544, - "Left": 0.7078786492347717, - "Top": 0.2514037787914276 - }, - "Polygon": [ - { - "X": 0.7078794836997986, - "Y": 0.2514037787914276 - }, - { - "X": 0.7256237268447876, - "Y": 0.25141721963882446 - }, - { - "X": 0.7256229519844055, - "Y": 0.26058292388916016 - }, - { - "X": 0.7078786492347717, - "Y": 0.2605694830417633 - } - ] - }, - "Id": "7ff0109b-dc13-449b-b528-a0300226c791", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95698547363281, - "Text": "278", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.018686864525079727, - "Height": 0.0075010149739682674, - "Left": 0.7896279692649841, - "Top": 0.2517334222793579 - }, - "Polygon": [ - { - "X": 0.7896285057067871, - "Y": 0.2517334222793579 - }, - { - "X": 0.808314859867096, - "Y": 0.25174757838249207 - }, - { - "X": 0.8083143830299377, - "Y": 0.2592344284057617 - }, - { - "X": 0.7896279692649841, - "Y": 0.25922027230262756 - } - ] - }, - "Id": "b62e2fd2-3ead-4e09-9811-b76f3c566038", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96954345703125, - "Text": "340", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019931472837924957, - "Height": 0.007430706638842821, - "Left": 0.871285617351532, - "Top": 0.25188636779785156 - }, - "Polygon": [ - { - "X": 0.8712859749794006, - "Y": 0.25188636779785156 - }, - { - "X": 0.8912171125411987, - "Y": 0.25190144777297974 - }, - { - "X": 0.8912168145179749, - "Y": 0.2593170702457428 - }, - { - "X": 0.871285617351532, - "Y": 0.25930196046829224 - } - ] - }, - "Id": "cebf861f-304a-49d0-a6d7-0f3909736263", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93992614746094, - "Text": "Deferred", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.046195775270462036, - "Height": 0.008152947761118412, - "Left": 0.11163026094436646, - "Top": 0.2665306031703949 - }, - "Polygon": [ - { - "X": 0.11163249611854553, - "Y": 0.2665306031703949 - }, - { - "X": 0.1578260362148285, - "Y": 0.26656559109687805 - }, - { - "X": 0.15782392024993896, - "Y": 0.27468353509902954 - }, - { - "X": 0.11163026094436646, - "Y": 0.2746485471725464 - } - ] - }, - "Id": "2e2ca590-4e35-4592-a6b2-40fb2b8dedcd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9626235961914, - "Text": "tax", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.016102060675621033, - "Height": 0.007172660902142525, - "Left": 0.16086359322071075, - "Top": 0.2672657370567322 - }, - "Polygon": [ - { - "X": 0.16086545586585999, - "Y": 0.2672657370567322 - }, - { - "X": 0.1769656538963318, - "Y": 0.26727795600891113 - }, - { - "X": 0.17696382105350494, - "Y": 0.27443841099739075 - }, - { - "X": 0.16086359322071075, - "Y": 0.2744262218475342 - } - ] - }, - "Id": "58985a13-379d-4cc1-bc06-d5a915b59400", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97935485839844, - "Text": "assets", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03422274813055992, - "Height": 0.007283278275281191, - "Left": 0.17966288328170776, - "Top": 0.26728567481040955 - }, - "Polygon": [ - { - "X": 0.1796647310256958, - "Y": 0.26728567481040955 - }, - { - "X": 0.21388563513755798, - "Y": 0.26731160283088684 - }, - { - "X": 0.21388386189937592, - "Y": 0.27456897497177124 - }, - { - "X": 0.17966288328170776, - "Y": 0.27454304695129395 - } - ] - }, - "Id": "fc084d6f-5810-49fe-b8b7-2cbc846cf58b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96893310546875, - "Text": "(25)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01951364241540432, - "Height": 0.009427434764802456, - "Left": 0.7061206102371216, - "Top": 0.26651492714881897 - }, - "Polygon": [ - { - "X": 0.7061215043067932, - "Y": 0.26651492714881897 - }, - { - "X": 0.7256342768669128, - "Y": 0.26652970910072327 - }, - { - "X": 0.725633442401886, - "Y": 0.2759423553943634 - }, - { - "X": 0.7061206102371216, - "Y": 0.2759275734424591 - } - ] - }, - "Id": "616a28a1-974f-4d3e-8520-571039530514", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.80571746826172, - "Text": "1,203", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.026760447770357132, - "Height": 0.008270801976323128, - "Left": 0.7815250754356384, - "Top": 0.2669129967689514 - }, - "Polygon": [ - { - "X": 0.7815256714820862, - "Y": 0.2669129967689514 - }, - { - "X": 0.8082855343818665, - "Y": 0.26693326234817505 - }, - { - "X": 0.8082849979400635, - "Y": 0.2751837968826294 - }, - { - "X": 0.7815250754356384, - "Y": 0.27516353130340576 - } - ] - }, - "Id": "ec9fec70-cc51-4101-841e-672f7426a58c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.70626831054688, - "Text": "1,179", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02298150211572647, - "Height": 0.008179370313882828, - "Left": 0.868174135684967, - "Top": 0.2669716477394104 - }, - "Polygon": [ - { - "X": 0.8681744933128357, - "Y": 0.2669716477394104 - }, - { - "X": 0.8911556601524353, - "Y": 0.2669890522956848 - }, - { - "X": 0.8911553621292114, - "Y": 0.27515101432800293 - }, - { - "X": 0.868174135684967, - "Y": 0.2751336097717285 - } - ] - }, - "Id": "c83f4ece-f7f9-4d1f-b5a5-a8a9a1774606", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92578125, - "Text": "CURRENT", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05732189118862152, - "Height": 0.007653448730707169, - "Left": 0.11136861890554428, - "Top": 0.28186461329460144 - }, - "Polygon": [ - { - "X": 0.11137071251869202, - "Y": 0.28186461329460144 - }, - { - "X": 0.1686905026435852, - "Y": 0.2819080352783203 - }, - { - "X": 0.1686885505914688, - "Y": 0.2895180583000183 - }, - { - "X": 0.11136861890554428, - "Y": 0.28947460651397705 - } - ] - }, - "Id": "c5b78bd6-9451-4176-b458-3e879c0c7b02", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91633605957031, - "Text": "ASSETS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04749106243252754, - "Height": 0.00767099391669035, - "Left": 0.170668363571167, - "Top": 0.2818893492221832 - }, - "Polygon": [ - { - "X": 0.17067033052444458, - "Y": 0.2818893492221832 - }, - { - "X": 0.21815942227840424, - "Y": 0.28192535042762756 - }, - { - "X": 0.2181575745344162, - "Y": 0.28956034779548645 - }, - { - "X": 0.170668363571167, - "Y": 0.2895243465900421 - } - ] - }, - "Id": "cfdb96bf-a847-447a-86b9-854b0ed503b7", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93346405029297, - "Text": "14,639", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03526519984006882, - "Height": 0.008748570457100868, - "Left": 0.7730259299278259, - "Top": 0.28214117884635925 - }, - "Polygon": [ - { - "X": 0.7730265855789185, - "Y": 0.28214117884635925 - }, - { - "X": 0.8082911372184753, - "Y": 0.282167911529541 - }, - { - "X": 0.8082906007766724, - "Y": 0.29088976979255676 - }, - { - "X": 0.7730259299278259, - "Y": 0.2908630073070526 - } - ] - }, - "Id": "cc4be113-d274-4860-b0e1-c711b317d4c1", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.88829803466797, - "Text": "13,602", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.035970915108919144, - "Height": 0.008556163869798183, - "Left": 0.8557003736495972, - "Top": 0.2821776270866394 - }, - "Polygon": [ - { - "X": 0.8557007312774658, - "Y": 0.2821776270866394 - }, - { - "X": 0.8916712403297424, - "Y": 0.28220489621162415 - }, - { - "X": 0.8916709423065186, - "Y": 0.29073378443717957 - }, - { - "X": 0.8557003736495972, - "Y": 0.2907065153121948 - } - ] - }, - "Id": "723a4bad-9228-46fe-ada5-647af6a59881", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.80213165283203, - "Text": "Non-currents", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.07056469470262527, - "Height": 0.007670864928513765, - "Left": 0.11165888607501984, - "Top": 0.2971992492675781 - }, - "Polygon": [ - { - "X": 0.11166097968816757, - "Y": 0.2971992492675781 - }, - { - "X": 0.1822235882282257, - "Y": 0.29725274443626404 - }, - { - "X": 0.1822216510772705, - "Y": 0.3048700988292694 - }, - { - "X": 0.11165888607501984, - "Y": 0.3048166036605835 - } - ] - }, - "Id": "5e0474cc-a69b-4d44-b893-a681cb08e895", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98808288574219, - "Text": "assets", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03415599465370178, - "Height": 0.007152250502258539, - "Left": 0.18514205515384674, - "Top": 0.2976987659931183 - }, - "Polygon": [ - { - "X": 0.1851438581943512, - "Y": 0.2976987659931183 - }, - { - "X": 0.21929804980754852, - "Y": 0.2977246642112732 - }, - { - "X": 0.21929633617401123, - "Y": 0.3048509955406189 - }, - { - "X": 0.18514205515384674, - "Y": 0.304825097322464 - } - ] - }, - "Id": "336783d1-78c0-4853-b3d7-5e1afd9f2864", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.991455078125, - "Text": "held", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.022584227845072746, - "Height": 0.007648392580449581, - "Left": 0.22253891825675964, - "Top": 0.29706960916519165 - }, - "Polygon": [ - { - "X": 0.22254076600074768, - "Y": 0.29706960916519165 - }, - { - "X": 0.24512314796447754, - "Y": 0.2970867455005646 - }, - { - "X": 0.24512135982513428, - "Y": 0.304718017578125 - }, - { - "X": 0.22253891825675964, - "Y": 0.3047008812427521 - } - ] - }, - "Id": "3c08bc03-2c00-4253-a5db-2ce6e1e38fdc", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98445129394531, - "Text": "for", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.014553902670741081, - "Height": 0.007553195580840111, - "Left": 0.24804159998893738, - "Top": 0.29709702730178833 - }, - "Polygon": [ - { - "X": 0.24804335832595825, - "Y": 0.29709702730178833 - }, - { - "X": 0.2625955045223236, - "Y": 0.2971080541610718 - }, - { - "X": 0.2625937759876251, - "Y": 0.304650217294693 - }, - { - "X": 0.24804159998893738, - "Y": 0.30463916063308716 - } - ] - }, - "Id": "d6cb5265-f8ed-4db4-a438-4517d15152bd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96234130859375, - "Text": "sale", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.021426064893603325, - "Height": 0.007560668978840113, - "Left": 0.2656320035457611, - "Top": 0.29722535610198975 - }, - "Polygon": [ - { - "X": 0.2656337320804596, - "Y": 0.29722535610198975 - }, - { - "X": 0.2870580554008484, - "Y": 0.29724159836769104 - }, - { - "X": 0.2870563864707947, - "Y": 0.3047860264778137 - }, - { - "X": 0.2656320035457611, - "Y": 0.3047697842121124 - } - ] - }, - "Id": "b039343c-c6f2-4491-9abd-20a3d648cd67", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98063659667969, - "Text": "(33)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019774997606873512, - "Height": 0.009313005954027176, - "Left": 0.7058454751968384, - "Top": 0.29689353704452515 - }, - "Polygon": [ - { - "X": 0.7058463096618652, - "Y": 0.29689353704452515 - }, - { - "X": 0.725620448589325, - "Y": 0.29690852761268616 - }, - { - "X": 0.7256196141242981, - "Y": 0.3062065541744232 - }, - { - "X": 0.7058454751968384, - "Y": 0.3061915636062622 - } - ] - }, - "Id": "94427730-db7c-46d2-ae69-5f4c33fb73c8", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97367095947266, - "Text": "183", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0177309513092041, - "Height": 0.007454158738255501, - "Left": 0.7906213998794556, - "Top": 0.2972811460494995 - }, - "Polygon": [ - { - "X": 0.7906218767166138, - "Y": 0.2972811460494995 - }, - { - "X": 0.8083523511886597, - "Y": 0.29729461669921875 - }, - { - "X": 0.8083518743515015, - "Y": 0.30473533272743225 - }, - { - "X": 0.7906213998794556, - "Y": 0.304721862077713 - } - ] - }, - "Id": "f47033e0-6f7e-4d4f-a3dd-3db882720d9f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 92.10195922851562, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.004251758102327585, - "Height": 0.0017133259680122137, - "Left": 0.8870001435279846, - "Top": 0.3006984293460846 - }, - "Polygon": [ - { - "X": 0.8870002031326294, - "Y": 0.3006984293460846 - }, - { - "X": 0.8912519216537476, - "Y": 0.30070164799690247 - }, - { - "X": 0.8912518620491028, - "Y": 0.3024117648601532 - }, - { - "X": 0.8870001435279846, - "Y": 0.30240851640701294 - } - ] - }, - "Id": "c73c0165-34ef-4f4f-9b83-d5b6d7d77c44", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.23226928710938, - "Text": "Inventories", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.057920679450035095, - "Height": 0.0077239396050572395, - "Left": 0.11160691827535629, - "Top": 0.3123312294483185 - }, - "Polygon": [ - { - "X": 0.11160903424024582, - "Y": 0.3123312294483185 - }, - { - "X": 0.16952760517597198, - "Y": 0.31237515807151794 - }, - { - "X": 0.1695256233215332, - "Y": 0.32005515694618225 - }, - { - "X": 0.11160691827535629, - "Y": 0.3200112283229828 - } - ] - }, - "Id": "4c1f4e43-d0fd-4385-a245-3beda5f0fbb7", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.89884185791016, - "Text": "(13)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.017688272520899773, - "Height": 0.009144522249698639, - "Left": 0.7079495787620544, - "Top": 0.3119591176509857 - }, - "Polygon": [ - { - "X": 0.7079504132270813, - "Y": 0.3119591176509857 - }, - { - "X": 0.7256378531455994, - "Y": 0.3119725286960602 - }, - { - "X": 0.7256370782852173, - "Y": 0.32110363245010376 - }, - { - "X": 0.7079495787620544, - "Y": 0.3210902214050293 - } - ] - }, - "Id": "c8889ada-f53c-49fa-a41c-af00d7981a49", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.83606719970703, - "Text": "3,191", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.023913593962788582, - "Height": 0.008418570272624493, - "Left": 0.7843583226203918, - "Top": 0.3123222887516022 - }, - "Polygon": [ - { - "X": 0.7843589186668396, - "Y": 0.3123222887516022 - }, - { - "X": 0.8082719445228577, - "Y": 0.3123404085636139 - }, - { - "X": 0.8082714080810547, - "Y": 0.32074084877967834 - }, - { - "X": 0.7843583226203918, - "Y": 0.32072269916534424 - } - ] - }, - "Id": "25480045-9370-46da-8ea9-2ca17d854f1e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.75767517089844, - "Text": "3,042", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.028604192659258842, - "Height": 0.008442186750471592, - "Left": 0.8627549409866333, - "Top": 0.3123246729373932 - }, - "Polygon": [ - { - "X": 0.862755298614502, - "Y": 0.3123246729373932 - }, - { - "X": 0.8913590908050537, - "Y": 0.31234636902809143 - }, - { - "X": 0.8913587927818298, - "Y": 0.3207668662071228 - }, - { - "X": 0.8627549409866333, - "Y": 0.32074517011642456 - } - ] - }, - "Id": "abc62c07-1bb5-48e1-9737-a64b178393a8", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93427276611328, - "Text": "Trade", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.031314220279455185, - "Height": 0.007926116697490215, - "Left": 0.11084583401679993, - "Top": 0.3272300362586975 - }, - "Polygon": [ - { - "X": 0.11084800958633423, - "Y": 0.3272300362586975 - }, - { - "X": 0.1421600580215454, - "Y": 0.3272537887096405 - }, - { - "X": 0.14215795695781708, - "Y": 0.3351561427116394 - }, - { - "X": 0.11084583401679993, - "Y": 0.3351323902606964 - } - ] - }, - "Id": "ef12f359-66d8-4dc5-a6a1-0630baefd41d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98592376708984, - "Text": "and", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01993071287870407, - "Height": 0.0076683382503688335, - "Left": 0.1452157348394394, - "Top": 0.32743945717811584 - }, - "Polygon": [ - { - "X": 0.14521776139736176, - "Y": 0.32743945717811584 - }, - { - "X": 0.16514645516872406, - "Y": 0.3274545669555664 - }, - { - "X": 0.16514447331428528, - "Y": 0.33510780334472656 - }, - { - "X": 0.1452157348394394, - "Y": 0.3350926637649536 - } - ] - }, - "Id": "fa3590dc-5f18-451c-9a18-5f9ceeee6f40", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98970794677734, - "Text": "other", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.027916036546230316, - "Height": 0.007510401774197817, - "Left": 0.1685912013053894, - "Top": 0.3276016116142273 - }, - "Polygon": [ - { - "X": 0.1685931384563446, - "Y": 0.3276016116142273 - }, - { - "X": 0.19650724530220032, - "Y": 0.32762280106544495 - }, - { - "X": 0.1965053826570511, - "Y": 0.3351120054721832 - }, - { - "X": 0.1685912013053894, - "Y": 0.3350908160209656 - } - ] - }, - "Id": "3a84c235-453a-4778-9ea7-30b1f3517492", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91806030273438, - "Text": "receivables", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06076812744140625, - "Height": 0.007800540421158075, - "Left": 0.19930727779865265, - "Top": 0.3274358808994293 - }, - "Polygon": [ - { - "X": 0.19930920004844666, - "Y": 0.3274358808994293 - }, - { - "X": 0.2600753903388977, - "Y": 0.3274819850921631 - }, - { - "X": 0.26007363200187683, - "Y": 0.33523643016815186 - }, - { - "X": 0.19930727779865265, - "Y": 0.3351902961730957 - } - ] - }, - "Id": "8f2ed8b1-720a-4a9c-8dcd-903e4910c725", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.8186264038086, - "Text": "(12)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01735740713775158, - "Height": 0.009175557643175125, - "Left": 0.7082303166389465, - "Top": 0.3270721733570099 - }, - "Polygon": [ - { - "X": 0.7082311511039734, - "Y": 0.3270721733570099 - }, - { - "X": 0.7255877256393433, - "Y": 0.32708534598350525 - }, - { - "X": 0.7255869507789612, - "Y": 0.3362477421760559 - }, - { - "X": 0.7082303166389465, - "Y": 0.33623456954956055 - } - ] - }, - "Id": "5239d7f8-a3de-4a9b-9ee6-8f66ea0db58c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9774169921875, - "Text": "851", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01747141219675541, - "Height": 0.00760476291179657, - "Left": 0.790970504283905, - "Top": 0.32745927572250366 - }, - "Polygon": [ - { - "X": 0.790971040725708, - "Y": 0.32745927572250366 - }, - { - "X": 0.8084419369697571, - "Y": 0.3274725377559662 - }, - { - "X": 0.8084414601325989, - "Y": 0.3350640535354614 - }, - { - "X": 0.790970504283905, - "Y": 0.3350507915019989 - } - ] - }, - "Id": "dcf0ca17-f8f0-4666-811e-1ae63324e452", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91311645507812, - "Text": "842", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019386958330869675, - "Height": 0.007591331843286753, - "Left": 0.8720545172691345, - "Top": 0.327480673789978 - }, - "Polygon": [ - { - "X": 0.8720548748970032, - "Y": 0.327480673789978 - }, - { - "X": 0.8914415240287781, - "Y": 0.32749539613723755 - }, - { - "X": 0.8914412260055542, - "Y": 0.33507201075553894 - }, - { - "X": 0.8720545172691345, - "Y": 0.3350572884082794 - } - ] - }, - "Id": "015e9831-2fde-4e6a-8cce-de530f746c9f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.36286926269531, - "Text": "Income", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03998541831970215, - "Height": 0.007663652766495943, - "Left": 0.11146847158670425, - "Top": 0.342627614736557 - }, - "Polygon": [ - { - "X": 0.11147057265043259, - "Y": 0.342627614736557 - }, - { - "X": 0.1514538824558258, - "Y": 0.34265798330307007 - }, - { - "X": 0.15145188570022583, - "Y": 0.35029128193855286 - }, - { - "X": 0.11146847158670425, - "Y": 0.3502609133720398 - } - ] - }, - "Id": "9c7953db-7703-4c6f-87c6-794b58c919a0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97354888916016, - "Text": "tax", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.016213683411478996, - "Height": 0.007211990654468536, - "Left": 0.1542959213256836, - "Top": 0.34306269884109497 - }, - "Polygon": [ - { - "X": 0.1542978137731552, - "Y": 0.34306269884109497 - }, - { - "X": 0.17050960659980774, - "Y": 0.3430750072002411 - }, - { - "X": 0.1705077588558197, - "Y": 0.3502746820449829 - }, - { - "X": 0.1542959213256836, - "Y": 0.3502623736858368 - } - ] - }, - "Id": "158dd5b0-7b65-4376-bf4e-ba43f49e189d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95608520507812, - "Text": "receivable", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05475218594074249, - "Height": 0.0077985613606870174, - "Left": 0.17327043414115906, - "Top": 0.3425285518169403 - }, - "Polygon": [ - { - "X": 0.17327243089675903, - "Y": 0.3425285518169403 - }, - { - "X": 0.22802262008190155, - "Y": 0.34257009625434875 - }, - { - "X": 0.2280207723379135, - "Y": 0.35032710433006287 - }, - { - "X": 0.17327043414115906, - "Y": 0.35028553009033203 - } - ] - }, - "Id": "898144fa-3f29-4eea-a4fe-19a91a3c1012", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96587371826172, - "Text": "(25)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019461626186966896, - "Height": 0.009558897465467453, - "Left": 0.7061312794685364, - "Top": 0.34216874837875366 - }, - "Polygon": [ - { - "X": 0.706132173538208, - "Y": 0.34216874837875366 - }, - { - "X": 0.7255929112434387, - "Y": 0.34218353033065796 - }, - { - "X": 0.7255920767784119, - "Y": 0.3517276644706726 - }, - { - "X": 0.7061312794685364, - "Y": 0.3517128825187683 - } - ] - }, - "Id": "0a8e1ec1-5fbc-4098-9eb8-d398d03b1c9a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98085021972656, - "Text": "238", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02001272886991501, - "Height": 0.007599665317684412, - "Left": 0.7883673310279846, - "Top": 0.34262487292289734 - }, - "Polygon": [ - { - "X": 0.7883678078651428, - "Y": 0.34262487292289734 - }, - { - "X": 0.8083800673484802, - "Y": 0.34264007210731506 - }, - { - "X": 0.808379590511322, - "Y": 0.3502245545387268 - }, - { - "X": 0.7883673310279846, - "Y": 0.3502093553543091 - } - ] - }, - "Id": "57193e04-9f90-4ff1-8e91-0f412218a32c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96266174316406, - "Text": "219", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.017052829265594482, - "Height": 0.007579114753752947, - "Left": 0.8741852641105652, - "Top": 0.342606782913208 - }, - "Polygon": [ - { - "X": 0.8741855621337891, - "Y": 0.342606782913208 - }, - { - "X": 0.8912380933761597, - "Y": 0.34261971712112427 - }, - { - "X": 0.8912378549575806, - "Y": 0.35018590092658997 - }, - { - "X": 0.8741852641105652, - "Y": 0.3501729667186737 - } - ] - }, - "Id": "47302927-9335-457c-8985-bad2b7d21c8c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9681396484375, - "Text": "Other", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029897963628172874, - "Height": 0.007752086967229843, - "Left": 0.11143965274095535, - "Top": 0.35779350996017456 - }, - "Polygon": [ - { - "X": 0.11144177615642548, - "Y": 0.35779350996017456 - }, - { - "X": 0.14133761823177338, - "Y": 0.3578161895275116 - }, - { - "X": 0.14133556187152863, - "Y": 0.3655456006526947 - }, - { - "X": 0.11143965274095535, - "Y": 0.3655228912830353 - } - ] - }, - "Id": "ca4ddcda-4777-4161-9d01-878c4928f2ca", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95858001708984, - "Text": "current", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03814220428466797, - "Height": 0.0069202459417283535, - "Left": 0.14451788365840912, - "Top": 0.35840943455696106 - }, - "Polygon": [ - { - "X": 0.14451971650123596, - "Y": 0.35840943455696106 - }, - { - "X": 0.1826600879430771, - "Y": 0.3584384024143219 - }, - { - "X": 0.1826583445072174, - "Y": 0.36532968282699585 - }, - { - "X": 0.14451788365840912, - "Y": 0.365300714969635 - } - ] - }, - "Id": "0730225a-2d2c-413e-9daf-d87189cf3a0a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98968505859375, - "Text": "assets", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03423278406262398, - "Height": 0.007164702285081148, - "Left": 0.18528929352760315, - "Top": 0.3583720922470093 - }, - "Polygon": [ - { - "X": 0.1852910816669464, - "Y": 0.3583720922470093 - }, - { - "X": 0.21952207386493683, - "Y": 0.35839807987213135 - }, - { - "X": 0.21952034533023834, - "Y": 0.36553680896759033 - }, - { - "X": 0.18528929352760315, - "Y": 0.3655107915401459 - } - ] - }, - "Id": "b839432e-3782-4cb8-8247-f30a2cb346a4", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92446899414062, - "Text": "85", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.013366881757974625, - "Height": 0.007735317572951317, - "Left": 0.7950487732887268, - "Top": 0.3576938807964325 - }, - "Polygon": [ - { - "X": 0.795049250125885, - "Y": 0.3576938807964325 - }, - { - "X": 0.8084156513214111, - "Y": 0.3577040433883667 - }, - { - "X": 0.8084151744842529, - "Y": 0.36542919278144836 - }, - { - "X": 0.7950487732887268, - "Y": 0.36541905999183655 - } - ] - }, - "Id": "f6b033ff-bce2-4a73-9914-f0b49ecc759b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.869140625, - "Text": "82", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.013061748817563057, - "Height": 0.007730091921985149, - "Left": 0.8783958554267883, - "Top": 0.3576725125312805 - }, - "Polygon": [ - { - "X": 0.8783961534500122, - "Y": 0.3576725125312805 - }, - { - "X": 0.8914576172828674, - "Y": 0.3576824367046356 - }, - { - "X": 0.8914573192596436, - "Y": 0.36540260910987854 - }, - { - "X": 0.8783958554267883, - "Y": 0.36539268493652344 - } - ] - }, - "Id": "4e7b738d-2770-403d-9d32-b63710e35b2d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97742462158203, - "Text": "Other", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02985619194805622, - "Height": 0.007768212351948023, - "Left": 0.11140823364257812, - "Top": 0.3729190528392792 - }, - "Polygon": [ - { - "X": 0.11141036450862885, - "Y": 0.3729190528392792 - }, - { - "X": 0.1412644237279892, - "Y": 0.3729417324066162 - }, - { - "X": 0.14126236736774445, - "Y": 0.38068726658821106 - }, - { - "X": 0.11140823364257812, - "Y": 0.380664587020874 - } - ] - }, - "Id": "bd9c7bda-e753-42fb-bbdd-196bc9b0b15e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92687225341797, - "Text": "financial", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04413970932364464, - "Height": 0.007799908984452486, - "Left": 0.144039124250412, - "Top": 0.3728882968425751 - }, - "Polygon": [ - { - "X": 0.14404118061065674, - "Y": 0.3728882968425751 - }, - { - "X": 0.18817882239818573, - "Y": 0.37292182445526123 - }, - { - "X": 0.18817687034606934, - "Y": 0.3806881904602051 - }, - { - "X": 0.144039124250412, - "Y": 0.3806546628475189 - } - ] - }, - "Id": "34cbe5bf-2ce7-4d5c-8ca6-3a7f15d51d4d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98809051513672, - "Text": "assets", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03436293452978134, - "Height": 0.007202038075774908, - "Left": 0.19075405597686768, - "Top": 0.3734942078590393 - }, - "Polygon": [ - { - "X": 0.19075585901737213, - "Y": 0.3734942078590393 - }, - { - "X": 0.22511699795722961, - "Y": 0.3735203146934509 - }, - { - "X": 0.22511526942253113, - "Y": 0.38069623708724976 - }, - { - "X": 0.19075405597686768, - "Y": 0.38067013025283813 - } - ] - }, - "Id": "820860ad-7319-4bda-ac2b-51a02530e437", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95842742919922, - "Text": "(26)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0198011826723814, - "Height": 0.009435000829398632, - "Left": 0.7058008313179016, - "Top": 0.37253695726394653 - }, - "Polygon": [ - { - "X": 0.7058016657829285, - "Y": 0.37253695726394653 - }, - { - "X": 0.7256019711494446, - "Y": 0.3725520074367523 - }, - { - "X": 0.7256011962890625, - "Y": 0.38197195529937744 - }, - { - "X": 0.7058008313179016, - "Y": 0.38195690512657166 - } - ] - }, - "Id": "2aaf0c84-72b9-4cd5-b606-47045271d989", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9263687133789, - "Text": "8", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006523185409605503, - "Height": 0.007312840782105923, - "Left": 0.8016781806945801, - "Top": 0.37316060066223145 - }, - "Polygon": [ - { - "X": 0.8016786575317383, - "Y": 0.37316060066223145 - }, - { - "X": 0.8082013726234436, - "Y": 0.3731655478477478 - }, - { - "X": 0.8082008957862854, - "Y": 0.38047343492507935 - }, - { - "X": 0.8016781806945801, - "Y": 0.380468487739563 - } - ] - }, - "Id": "c260205e-04ad-452e-8a16-671e6d1ad1ff", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.80004119873047, - "Text": "22", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.012995411641895771, - "Height": 0.007568938657641411, - "Left": 0.8784249424934387, - "Top": 0.3729355037212372 - }, - "Polygon": [ - { - "X": 0.8784252405166626, - "Y": 0.3729355037212372 - }, - { - "X": 0.8914203643798828, - "Y": 0.3729453682899475 - }, - { - "X": 0.8914201259613037, - "Y": 0.38050442934036255 - }, - { - "X": 0.8784249424934387, - "Y": 0.3804945647716522 - } - ] - }, - "Id": "5b3f355d-0134-4b63-aab8-d4266128192d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93964385986328, - "Text": "Current", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04037661477923393, - "Height": 0.007830463349819183, - "Left": 0.11136726289987564, - "Top": 0.3880161643028259 - }, - "Polygon": [ - { - "X": 0.11136940866708755, - "Y": 0.3880161643028259 - }, - { - "X": 0.15174387395381927, - "Y": 0.38804686069488525 - }, - { - "X": 0.15174183249473572, - "Y": 0.3958466351032257 - }, - { - "X": 0.11136726289987564, - "Y": 0.3958159387111664 - } - ] - }, - "Id": "ad1eb377-acd1-43f1-947e-584623fc5d57", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.89739227294922, - "Text": "financial", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0438518188893795, - "Height": 0.007897459901869297, - "Left": 0.15446344017982483, - "Top": 0.387886106967926 - }, - "Polygon": [ - { - "X": 0.15446551144123077, - "Y": 0.387886106967926 - }, - { - "X": 0.19831526279449463, - "Y": 0.38791945576667786 - }, - { - "X": 0.19831331074237823, - "Y": 0.39578357338905334 - }, - { - "X": 0.15446344017982483, - "Y": 0.3957502543926239 - } - ] - }, - "Id": "faf9572c-0319-4f64-a74b-b267ec860087", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93759155273438, - "Text": "investments", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06403708457946777, - "Height": 0.007798642851412296, - "Left": 0.20152178406715393, - "Top": 0.38807350397109985 - }, - "Polygon": [ - { - "X": 0.20152370631694794, - "Y": 0.38807350397109985 - }, - { - "X": 0.2655588686466217, - "Y": 0.38812217116355896 - }, - { - "X": 0.26555711030960083, - "Y": 0.3958721458911896 - }, - { - "X": 0.20152178406715393, - "Y": 0.39582347869873047 - } - ] - }, - "Id": "28cc0539-6886-47d0-9d59-dbf0641a0352", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94767761230469, - "Text": "(21)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0171799436211586, - "Height": 0.009123523719608784, - "Left": 0.7084124088287354, - "Top": 0.3878045082092285 - }, - "Polygon": [ - { - "X": 0.7084132432937622, - "Y": 0.3878045082092285 - }, - { - "X": 0.725592315196991, - "Y": 0.3878175616264343 - }, - { - "X": 0.7255915403366089, - "Y": 0.3969280421733856 - }, - { - "X": 0.7084124088287354, - "Y": 0.3969149887561798 - } - ] - }, - "Id": "828fff47-d2dc-42c8-850e-e030d61a3e85", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92720794677734, - "Text": "4,522", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02818518877029419, - "Height": 0.00848547276109457, - "Left": 0.7801524996757507, - "Top": 0.3880383372306824 - }, - "Polygon": [ - { - "X": 0.7801530957221985, - "Y": 0.3880383372306824 - }, - { - "X": 0.8083376884460449, - "Y": 0.38805973529815674 - }, - { - "X": 0.8083372116088867, - "Y": 0.3965238034725189 - }, - { - "X": 0.7801524996757507, - "Y": 0.39650237560272217 - } - ] - }, - "Id": "4318c44c-07dc-460b-b1f5-4eeba275a8ee", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.75398254394531, - "Text": "2,374", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.027408858761191368, - "Height": 0.008489862084388733, - "Left": 0.8642136454582214, - "Top": 0.3880888521671295 - }, - "Polygon": [ - { - "X": 0.8642140030860901, - "Y": 0.3880888521671295 - }, - { - "X": 0.8916224837303162, - "Y": 0.3881096839904785 - }, - { - "X": 0.8916221857070923, - "Y": 0.39657872915267944 - }, - { - "X": 0.8642136454582214, - "Y": 0.39655789732933044 - } - ] - }, - "Id": "666f4096-6409-4f87-8741-11b5f17ff464", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92044830322266, - "Text": "Cash", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0273072998970747, - "Height": 0.007815888151526451, - "Left": 0.11132312566041946, - "Top": 0.40318694710731506 - }, - "Polygon": [ - { - "X": 0.11132526397705078, - "Y": 0.40318694710731506 - }, - { - "X": 0.13863041996955872, - "Y": 0.4032076895236969 - }, - { - "X": 0.13862834870815277, - "Y": 0.4110028147697449 - }, - { - "X": 0.11132312566041946, - "Y": 0.41098207235336304 - } - ] - }, - "Id": "f653c681-c9f7-40f3-85eb-e80683ad324d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98373413085938, - "Text": "and", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019989047199487686, - "Height": 0.007762869819998741, - "Left": 0.14192888140678406, - "Top": 0.40326568484306335 - }, - "Polygon": [ - { - "X": 0.1419309377670288, - "Y": 0.40326568484306335 - }, - { - "X": 0.16191793978214264, - "Y": 0.4032808840274811 - }, - { - "X": 0.16191592812538147, - "Y": 0.41102856397628784 - }, - { - "X": 0.14192888140678406, - "Y": 0.4110133647918701 - } - ] - }, - "Id": "74879f6e-6ffb-4f80-8db9-708aa77f7615", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96244812011719, - "Text": "cash", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.025426898151636124, - "Height": 0.007669649552553892, - "Left": 0.16508084535598755, - "Top": 0.40329456329345703 - }, - "Polygon": [ - { - "X": 0.16508281230926514, - "Y": 0.40329456329345703 - }, - { - "X": 0.19050773978233337, - "Y": 0.40331387519836426 - }, - { - "X": 0.19050581753253937, - "Y": 0.4109642207622528 - }, - { - "X": 0.16508084535598755, - "Y": 0.4109448790550232 - } - ] - }, - "Id": "9a7a344a-d4c8-4a65-a2cb-ec7e12c32e47", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.79155731201172, - "Text": "equivalents", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06026297062635422, - "Height": 0.009373513981699944, - "Left": 0.1940488964319229, - "Top": 0.40330302715301514 - }, - "Polygon": [ - { - "X": 0.19405123591423035, - "Y": 0.40330302715301514 - }, - { - "X": 0.25431185960769653, - "Y": 0.403348833322525 - }, - { - "X": 0.2543097138404846, - "Y": 0.41267654299736023 - }, - { - "X": 0.1940488964319229, - "Y": 0.41263070702552795 - } - ] - }, - "Id": "a407ae9d-79e4-4c00-947f-2b62902f608b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96686553955078, - "Text": "(21)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01751953549683094, - "Height": 0.009330272674560547, - "Left": 0.7081959247589111, - "Top": 0.40290501713752747 - }, - "Polygon": [ - { - "X": 0.7081968188285828, - "Y": 0.40290501713752747 - }, - { - "X": 0.7257154583930969, - "Y": 0.40291833877563477 - }, - { - "X": 0.7257146835327148, - "Y": 0.412235289812088 - }, - { - "X": 0.7081959247589111, - "Y": 0.4122219681739807 - } - ] - }, - "Id": "8a729cb7-7191-441e-8736-c5e6e4485957", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9330825805664, - "Text": "5,561", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.026425426825881004, - "Height": 0.008770277723670006, - "Left": 0.7819176316261292, - "Top": 0.4030835032463074 - }, - "Polygon": [ - { - "X": 0.7819182276725769, - "Y": 0.4030835032463074 - }, - { - "X": 0.8083430528640747, - "Y": 0.4031035900115967 - }, - { - "X": 0.8083425164222717, - "Y": 0.4118537902832031 - }, - { - "X": 0.7819176316261292, - "Y": 0.41183367371559143 - } - ] - }, - "Id": "8a202c5f-c8c4-4c93-afe5-2eb0bd7525d8", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9200210571289, - "Text": "7,021", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02592291682958603, - "Height": 0.008692005649209023, - "Left": 0.8654699325561523, - "Top": 0.40313851833343506 - }, - "Polygon": [ - { - "X": 0.865470290184021, - "Y": 0.40313851833343506 - }, - { - "X": 0.8913928270339966, - "Y": 0.4031582176685333 - }, - { - "X": 0.8913925290107727, - "Y": 0.41183051466941833 - }, - { - "X": 0.8654699325561523, - "Y": 0.41181081533432007 - } - ] - }, - "Id": "eb0fd689-c6ce-4604-a593-b638d03dd286", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92179870605469, - "Text": "TOTAL", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0395679697394371, - "Height": 0.007807955611497164, - "Left": 0.11083506792783737, - "Top": 0.4182104766368866 - }, - "Polygon": [ - { - "X": 0.11083720624446869, - "Y": 0.4182104766368866 - }, - { - "X": 0.15040303766727448, - "Y": 0.41824057698249817 - }, - { - "X": 0.15040099620819092, - "Y": 0.42601844668388367 - }, - { - "X": 0.11083506792783737, - "Y": 0.4259883463382721 - } - ] - }, - "Id": "1a26bc22-f283-41a2-87b0-e6c728b54ad0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9161376953125, - "Text": "ASSETS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.047031912952661514, - "Height": 0.007844206877052784, - "Left": 0.15258462727069855, - "Top": 0.4182523787021637 - }, - "Polygon": [ - { - "X": 0.1525866687297821, - "Y": 0.4182523787021637 - }, - { - "X": 0.19961653649806976, - "Y": 0.41828814148902893 - }, - { - "X": 0.19961459934711456, - "Y": 0.4260965883731842 - }, - { - "X": 0.15258462727069855, - "Y": 0.4260607957839966 - } - ] - }, - "Id": "c5861414-fc0b-4218-8a7e-263575df065f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.87919616699219, - "Text": "29,983", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.037255171686410904, - "Height": 0.00876244530081749, - "Left": 0.7709845304489136, - "Top": 0.4184510111808777 - }, - "Polygon": [ - { - "X": 0.7709851861000061, - "Y": 0.4184510111808777 - }, - { - "X": 0.808239758014679, - "Y": 0.418479323387146 - }, - { - "X": 0.808239221572876, - "Y": 0.4272134602069855 - }, - { - "X": 0.7709845304489136, - "Y": 0.4271851181983948 - } - ] - }, - "Id": "205a1fea-d9a0-461d-a911-f483120cb4be", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92645263671875, - "Text": "28,945", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03705447167158127, - "Height": 0.008838421665132046, - "Left": 0.8544696569442749, - "Top": 0.4184640944004059 - }, - "Polygon": [ - { - "X": 0.8544700741767883, - "Y": 0.4184640944004059 - }, - { - "X": 0.8915241360664368, - "Y": 0.41849228739738464 - }, - { - "X": 0.8915238380432129, - "Y": 0.4273025393486023 - }, - { - "X": 0.8544696569442749, - "Y": 0.42727434635162354 - } - ] - }, - "Id": "a29811b9-ba1f-4e0d-b391-67ad13228ac1", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90235900878906, - "Text": "EQUITY", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04342197999358177, - "Height": 0.007595797069370747, - "Left": 0.11159297823905945, - "Top": 0.4518715441226959 - }, - "Polygon": [ - { - "X": 0.11159506440162659, - "Y": 0.4518715441226959 - }, - { - "X": 0.15501496195793152, - "Y": 0.4519045948982239 - }, - { - "X": 0.15501298010349274, - "Y": 0.459467351436615 - }, - { - "X": 0.11159297823905945, - "Y": 0.45943427085876465 - } - ] - }, - "Id": "3f86efde-95f0-4566-be30-79df8d288099", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9649429321289, - "Text": "AND", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.025856098160147667, - "Height": 0.0074396440759301186, - "Left": 0.15732073783874512, - "Top": 0.4519703686237335 - }, - "Polygon": [ - { - "X": 0.15732267498970032, - "Y": 0.4519703686237335 - }, - { - "X": 0.18317683041095734, - "Y": 0.4519900679588318 - }, - { - "X": 0.1831749528646469, - "Y": 0.45941001176834106 - }, - { - "X": 0.15732073783874512, - "Y": 0.4593903422355652 - } - ] - }, - "Id": "bf45fd4d-7fd3-4b2e-a1f5-128125cc1d52", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.78578186035156, - "Text": "LIABILITIES", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06602534651756287, - "Height": 0.00762201240286231, - "Left": 0.1860523223876953, - "Top": 0.4519180953502655 - }, - "Polygon": [ - { - "X": 0.18605424463748932, - "Y": 0.4519180953502655 - }, - { - "X": 0.2520776689052582, - "Y": 0.45196834206581116 - }, - { - "X": 0.2520759105682373, - "Y": 0.45954009890556335 - }, - { - "X": 0.1860523223876953, - "Y": 0.4594898223876953 - } - ] - }, - "Id": "6bcd29e1-06c8-4e73-901c-4b9c7df24072", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92291259765625, - "Text": "EQUITY", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04327946528792381, - "Height": 0.007481924258172512, - "Left": 0.11161354929208755, - "Top": 0.4671058654785156 - }, - "Polygon": [ - { - "X": 0.11161559820175171, - "Y": 0.4671058654785156 - }, - { - "X": 0.15489301085472107, - "Y": 0.4671388268470764 - }, - { - "X": 0.15489105880260468, - "Y": 0.4745877981185913 - }, - { - "X": 0.11161354929208755, - "Y": 0.4745548367500305 - } - ] - }, - "Id": "42d314b6-5cf9-4113-89d2-f8192d0601f9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93382263183594, - "Text": "17,033", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03475659713149071, - "Height": 0.008636122569441795, - "Left": 0.7735702991485596, - "Top": 0.467308908700943 - }, - "Polygon": [ - { - "X": 0.7735708951950073, - "Y": 0.467308908700943 - }, - { - "X": 0.8083269000053406, - "Y": 0.46733537316322327 - }, - { - "X": 0.8083263635635376, - "Y": 0.47594502568244934 - }, - { - "X": 0.7735702991485596, - "Y": 0.47591856122016907 - } - ] - }, - "Id": "c0721941-7269-463f-b142-e1f70f50865d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9046401977539, - "Text": "15,759", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.034488920122385025, - "Height": 0.008807784877717495, - "Left": 0.8570383191108704, - "Top": 0.46726804971694946 - }, - "Polygon": [ - { - "X": 0.8570387363433838, - "Y": 0.46726804971694946 - }, - { - "X": 0.8915272355079651, - "Y": 0.467294305562973 - }, - { - "X": 0.8915269374847412, - "Y": 0.47607582807540894 - }, - { - "X": 0.8570383191108704, - "Y": 0.4760495722293854 - } - ] - }, - "Id": "65a5e57d-49b8-4d67-88ba-70d88975206f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97366333007812, - "Text": "Equity", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.032690178602933884, - "Height": 0.009662708267569542, - "Left": 0.11156535148620605, - "Top": 0.4822419583797455 - }, - "Polygon": [ - { - "X": 0.11156800389289856, - "Y": 0.4822419583797455 - }, - { - "X": 0.14425553381443024, - "Y": 0.4822668731212616 - }, - { - "X": 0.1442529708147049, - "Y": 0.49190467596054077 - }, - { - "X": 0.11156535148620605, - "Y": 0.49187976121902466 - } - ] - }, - "Id": "f1014553-1de7-4996-8c92-6a713184c199", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.72474670410156, - "Text": "attributable", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05976299196481705, - "Height": 0.00775015028193593, - "Left": 0.1468507945537567, - "Top": 0.4822741746902466 - }, - "Polygon": [ - { - "X": 0.14685283601284027, - "Y": 0.4822741746902466 - }, - { - "X": 0.20661377906799316, - "Y": 0.4823196828365326 - }, - { - "X": 0.20661188662052155, - "Y": 0.4900243282318115 - }, - { - "X": 0.1468507945537567, - "Y": 0.4899787902832031 - } - ] - }, - "Id": "49466e3b-d26b-4d32-94bc-4dd54f754bdd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97970581054688, - "Text": "to", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.010434133000671864, - "Height": 0.00698454724624753, - "Left": 0.20934151113033295, - "Top": 0.482869416475296 - }, - "Polygon": [ - { - "X": 0.20934320986270905, - "Y": 0.482869416475296 - }, - { - "X": 0.21977563202381134, - "Y": 0.48287734389305115 - }, - { - "X": 0.21977394819259644, - "Y": 0.48985394835472107 - }, - { - "X": 0.20934151113033295, - "Y": 0.48984599113464355 - } - ] - }, - "Id": "5ada30c7-7a76-48f9-80ed-261e9049ec2a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98880767822266, - "Text": "the", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.016932882368564606, - "Height": 0.007491133641451597, - "Left": 0.22269460558891296, - "Top": 0.4824003577232361 - }, - "Polygon": [ - { - "X": 0.22269640862941742, - "Y": 0.4824003577232361 - }, - { - "X": 0.23962748050689697, - "Y": 0.48241326212882996 - }, - { - "X": 0.2396257221698761, - "Y": 0.48989149928092957 - }, - { - "X": 0.22269460558891296, - "Y": 0.4898785948753357 - } - ] - }, - "Id": "63d71e55-b3c7-40fa-b01b-85b1a1e1de60", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90818786621094, - "Text": "Parent", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03472956642508507, - "Height": 0.00767105259001255, - "Left": 0.24309824407100677, - "Top": 0.48228105902671814 - }, - "Polygon": [ - { - "X": 0.24310003221035004, - "Y": 0.48228105902671814 - }, - { - "X": 0.27782779932022095, - "Y": 0.4823075234889984 - }, - { - "X": 0.27782610058784485, - "Y": 0.48995211720466614 - }, - { - "X": 0.24309824407100677, - "Y": 0.48992565274238586 - } - ] - }, - "Id": "8d1c9d2a-d017-4731-a405-df5c760219fd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.83082580566406, - "Text": "17,008", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03304969519376755, - "Height": 0.008444415405392647, - "Left": 0.7752528786659241, - "Top": 0.4824122488498688 - }, - "Polygon": [ - { - "X": 0.7752534747123718, - "Y": 0.4824122488498688 - }, - { - "X": 0.8083025813102722, - "Y": 0.4824374318122864 - }, - { - "X": 0.8083020448684692, - "Y": 0.49085667729377747 - }, - { - "X": 0.7752528786659241, - "Y": 0.49083149433135986 - } - ] - }, - "Id": "33468066-8bc0-4d71-80ab-4b3c9c5f5049", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.83407592773438, - "Text": "15,733", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03180823475122452, - "Height": 0.00848512351512909, - "Left": 0.8595389723777771, - "Top": 0.48230233788490295 - }, - "Polygon": [ - { - "X": 0.8595393896102905, - "Y": 0.48230233788490295 - }, - { - "X": 0.8913472294807434, - "Y": 0.48232656717300415 - }, - { - "X": 0.8913469314575195, - "Y": 0.49078744649887085 - }, - { - "X": 0.8595389723777771, - "Y": 0.49076321721076965 - } - ] - }, - "Id": "dbe389ad-0d4e-4ce0-94f7-12eb6b2c0c19", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.973876953125, - "Text": "Equity", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.032556451857089996, - "Height": 0.009467692114412785, - "Left": 0.1116103082895279, - "Top": 0.49744683504104614 - }, - "Polygon": [ - { - "X": 0.11161290109157562, - "Y": 0.49744683504104614 - }, - { - "X": 0.1441667526960373, - "Y": 0.4974716603755951 - }, - { - "X": 0.14416424930095673, - "Y": 0.5069145560264587 - }, - { - "X": 0.1116103082895279, - "Y": 0.5068897008895874 - } - ] - }, - "Id": "afc3e6d7-6a4e-40ed-a8b9-a181ca4db8ec", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.77522277832031, - "Text": "attributable", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0595783106982708, - "Height": 0.007759012747555971, - "Left": 0.1468917280435562, - "Top": 0.49741652607917786 - }, - "Polygon": [ - { - "X": 0.14689375460147858, - "Y": 0.49741652607917786 - }, - { - "X": 0.20647002756595612, - "Y": 0.4974619448184967 - }, - { - "X": 0.2064681351184845, - "Y": 0.5051755309104919 - }, - { - "X": 0.1468917280435562, - "Y": 0.5051301121711731 - } - ] - }, - "Id": "f4d8e7e4-8414-4a72-ab74-c7c318b0b4af", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9732894897461, - "Text": "to", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.010484816506505013, - "Height": 0.007030079606920481, - "Left": 0.20936790108680725, - "Top": 0.49799418449401855 - }, - "Polygon": [ - { - "X": 0.20936962962150574, - "Y": 0.49799418449401855 - }, - { - "X": 0.21985271573066711, - "Y": 0.49800220131874084 - }, - { - "X": 0.21985101699829102, - "Y": 0.505024254322052 - }, - { - "X": 0.20936790108680725, - "Y": 0.5050162672996521 - } - ] - }, - "Id": "b8ebfa6e-e190-46c1-a6a5-e207d1da20c9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.82371520996094, - "Text": "non-controlling", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.08010271191596985, - "Height": 0.009400850161910057, - "Left": 0.22311702370643616, - "Top": 0.4974348545074463 - }, - "Polygon": [ - { - "X": 0.22311927378177643, - "Y": 0.4974348545074463 - }, - { - "X": 0.303219735622406, - "Y": 0.4974958896636963 - }, - { - "X": 0.30321770906448364, - "Y": 0.5068356990814209 - }, - { - "X": 0.22311702370643616, - "Y": 0.5067746639251709 - } - ] - }, - "Id": "862c1c64-1f2c-4b97-8e53-38826292e6c7", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94815826416016, - "Text": "interests", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.045273274183273315, - "Height": 0.007805241271853447, - "Left": 0.30697616934776306, - "Top": 0.4974234998226166 - }, - "Polygon": [ - { - "X": 0.3069778382778168, - "Y": 0.4974234998226166 - }, - { - "X": 0.3522494435310364, - "Y": 0.49745801091194153 - }, - { - "X": 0.35224786400794983, - "Y": 0.5052287578582764 - }, - { - "X": 0.30697616934776306, - "Y": 0.5051942467689514 - } - ] - }, - "Id": "824444b3-f620-435b-8d8e-4d6a22877dd0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95125579833984, - "Text": "25", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.013220857828855515, - "Height": 0.007682377938181162, - "Left": 0.795204222202301, - "Top": 0.49741697311401367 - }, - "Polygon": [ - { - "X": 0.7952046990394592, - "Y": 0.49741697311401367 - }, - { - "X": 0.8084250688552856, - "Y": 0.4974270462989807 - }, - { - "X": 0.8084245920181274, - "Y": 0.505099356174469 - }, - { - "X": 0.795204222202301, - "Y": 0.505089282989502 - } - ] - }, - "Id": "dbe06991-e0a8-4382-9ad0-0e1547df3ffc", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95170593261719, - "Text": "26", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.013384372927248478, - "Height": 0.007729813922196627, - "Left": 0.8781041502952576, - "Top": 0.4974382221698761 - }, - "Polygon": [ - { - "X": 0.8781044483184814, - "Y": 0.4974382221698761 - }, - { - "X": 0.8914885520935059, - "Y": 0.4974484145641327 - }, - { - "X": 0.891488254070282, - "Y": 0.5051680207252502 - }, - { - "X": 0.8781041502952576, - "Y": 0.5051578283309937 - } - ] - }, - "Id": "5a1cc389-b5b6-4a60-b0d9-d95c8a1734bf", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.84358215332031, - "Text": "NON-CURRENT", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.08915098756551743, - "Height": 0.0077023934572935104, - "Left": 0.11133801192045212, - "Top": 0.5124907493591309 - }, - "Polygon": [ - { - "X": 0.11134011298418045, - "Y": 0.5124907493591309 - }, - { - "X": 0.20048899948596954, - "Y": 0.5125586986541748 - }, - { - "X": 0.20048712193965912, - "Y": 0.5201931595802307 - }, - { - "X": 0.11133801192045212, - "Y": 0.520125150680542 - } - ] - }, - "Id": "376206a9-51a2-40b4-ac34-46d8f1ef52c0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.76593017578125, - "Text": "LIABILITIES", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06618791818618774, - "Height": 0.007658602204173803, - "Left": 0.20292942225933075, - "Top": 0.5124975442886353 - }, - "Polygon": [ - { - "X": 0.20293129980564117, - "Y": 0.5124975442886353 - }, - { - "X": 0.2691173553466797, - "Y": 0.5125479698181152 - }, - { - "X": 0.2691156268119812, - "Y": 0.5201561450958252 - }, - { - "X": 0.20292942225933075, - "Y": 0.5201056599617004 - } - ] - }, - "Id": "977b1f78-a646-4a56-9a48-69433408a91a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.89104461669922, - "Text": "4,813", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.028052955865859985, - "Height": 0.00857413187623024, - "Left": 0.7803167700767517, - "Top": 0.5125781893730164 - }, - "Polygon": [ - { - "X": 0.7803173661231995, - "Y": 0.5125781893730164 - }, - { - "X": 0.8083696961402893, - "Y": 0.5125995874404907 - }, - { - "X": 0.8083691596984863, - "Y": 0.5211523175239563 - }, - { - "X": 0.7803167700767517, - "Y": 0.5211309194564819 - } - ] - }, - "Id": "62230040-7572-4ae0-9832-d7175255976c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.66999053955078, - "Text": "5,157", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.027021609246730804, - "Height": 0.008612273260951042, - "Left": 0.8643923997879028, - "Top": 0.5126868486404419 - }, - "Polygon": [ - { - "X": 0.8643927574157715, - "Y": 0.5126868486404419 - }, - { - "X": 0.8914139866828918, - "Y": 0.5127074718475342 - }, - { - "X": 0.891413688659668, - "Y": 0.5212991237640381 - }, - { - "X": 0.8643923997879028, - "Y": 0.5212785601615906 - } - ] - }, - "Id": "20ee4928-f7a3-42a2-9ffd-2e06bb0a4b5a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.8619384765625, - "Text": "Provisions", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05423779413104057, - "Height": 0.007939464412629604, - "Left": 0.11185324937105179, - "Top": 0.5276627540588379 - }, - "Polygon": [ - { - "X": 0.11185542494058609, - "Y": 0.5276627540588379 - }, - { - "X": 0.16609103977680206, - "Y": 0.527704119682312 - }, - { - "X": 0.1660890132188797, - "Y": 0.5356022715568542 - }, - { - "X": 0.11185324937105179, - "Y": 0.5355608463287354 - } - ] - }, - "Id": "b06259d1-a100-4e75-bd11-c42b623acd01", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90911865234375, - "Text": "(22)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019281616434454918, - "Height": 0.00946885533630848, - "Left": 0.7062757015228271, - "Top": 0.5273455381393433 - }, - "Polygon": [ - { - "X": 0.7062765955924988, - "Y": 0.5273455381393433 - }, - { - "X": 0.7255573272705078, - "Y": 0.527360200881958 - }, - { - "X": 0.725556492805481, - "Y": 0.5368143916130066 - }, - { - "X": 0.7062757015228271, - "Y": 0.5367996692657471 - } - ] - }, - "Id": "91b09e4a-675c-4e9e-b068-ee68b9e6efc5", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96783447265625, - "Text": "283", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01998983509838581, - "Height": 0.007552263792604208, - "Left": 0.7883710265159607, - "Top": 0.5278216600418091 - }, - "Polygon": [ - { - "X": 0.7883715629577637, - "Y": 0.5278216600418091 - }, - { - "X": 0.8083608746528625, - "Y": 0.5278369188308716 - }, - { - "X": 0.8083603978157043, - "Y": 0.5353739261627197 - }, - { - "X": 0.7883710265159607, - "Y": 0.5353586673736572 - } - ] - }, - "Id": "c7bc2c4f-4f97-4c1e-83d2-1bdb806057b5", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.88455963134766, - "Text": "287", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019022611901164055, - "Height": 0.007639095187187195, - "Left": 0.87257981300354, - "Top": 0.5276872515678406 - }, - "Polygon": [ - { - "X": 0.8725801706314087, - "Y": 0.5276872515678406 - }, - { - "X": 0.8916024565696716, - "Y": 0.527701735496521 - }, - { - "X": 0.8916021585464478, - "Y": 0.5353263020515442 - }, - { - "X": 0.87257981300354, - "Y": 0.5353118181228638 - } - ] - }, - "Id": "590d401e-91c9-4da4-831d-6aefecbb3b63", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.74644470214844, - "Text": "Other", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03001350909471512, - "Height": 0.007670242339372635, - "Left": 0.1113002672791481, - "Top": 0.542901873588562 - }, - "Polygon": [ - { - "X": 0.11130237579345703, - "Y": 0.542901873588562 - }, - { - "X": 0.14131377637386322, - "Y": 0.5429247617721558 - }, - { - "X": 0.14131174981594086, - "Y": 0.5505720973014832 - }, - { - "X": 0.1113002672791481, - "Y": 0.5505492091178894 - } - ] - }, - "Id": "f984efec-848e-4181-be4c-87edc5af8bb9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.7778091430664, - "Text": "non-current", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06320570409297943, - "Height": 0.007361630443483591, - "Left": 0.14437562227249146, - "Top": 0.543282687664032 - }, - "Polygon": [ - { - "X": 0.14437755942344666, - "Y": 0.543282687664032 - }, - { - "X": 0.2075813263654709, - "Y": 0.5433309078216553 - }, - { - "X": 0.20757952332496643, - "Y": 0.5506443381309509 - }, - { - "X": 0.14437562227249146, - "Y": 0.5505961179733276 - } - ] - }, - "Id": "36e5b07c-fbf2-4205-8911-5285ecf74975", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.8604736328125, - "Text": "liabilities", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04462568834424019, - "Height": 0.0078044189140200615, - "Left": 0.21025021374225616, - "Top": 0.5428547859191895 - }, - "Polygon": [ - { - "X": 0.21025212109088898, - "Y": 0.5428547859191895 - }, - { - "X": 0.25487589836120605, - "Y": 0.5428888201713562 - }, - { - "X": 0.2548741102218628, - "Y": 0.5506592392921448 - }, - { - "X": 0.21025021374225616, - "Y": 0.5506251454353333 - } - ] - }, - "Id": "77f9fd5f-1be2-4dd7-86b3-18e46ef323c6", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96521759033203, - "Text": "(23)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01962057314813137, - "Height": 0.009378230199217796, - "Left": 0.7059786915779114, - "Top": 0.5425426959991455 - }, - "Polygon": [ - { - "X": 0.705979585647583, - "Y": 0.5425426959991455 - }, - { - "X": 0.7255992889404297, - "Y": 0.5425576567649841 - }, - { - "X": 0.7255984544754028, - "Y": 0.5519209504127502 - }, - { - "X": 0.7059786915779114, - "Y": 0.5519059896469116 - } - ] - }, - "Id": "cc66a3b1-efb9-41e9-9189-689e748f3f66", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.88491821289062, - "Text": "222", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01941428892314434, - "Height": 0.007451886311173439, - "Left": 0.788929283618927, - "Top": 0.5429995059967041 - }, - "Polygon": [ - { - "X": 0.78892982006073, - "Y": 0.5429995059967041 - }, - { - "X": 0.8083435893058777, - "Y": 0.5430142879486084 - }, - { - "X": 0.8083431720733643, - "Y": 0.550451397895813 - }, - { - "X": 0.788929283618927, - "Y": 0.5504365563392639 - } - ] - }, - "Id": "92d597d4-bc82-46c0-b258-2f361b146533", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96395111083984, - "Text": "248", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019661305472254753, - "Height": 0.007674625609070063, - "Left": 0.8717800974845886, - "Top": 0.542935848236084 - }, - "Polygon": [ - { - "X": 0.8717803955078125, - "Y": 0.542935848236084 - }, - { - "X": 0.8914414048194885, - "Y": 0.5429508686065674 - }, - { - "X": 0.8914411067962646, - "Y": 0.5506104826927185 - }, - { - "X": 0.8717800974845886, - "Y": 0.5505955219268799 - } - ] - }, - "Id": "10c4d30a-4972-4483-9eb2-9f77a92179d9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.73136138916016, - "Text": "Financial", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04657406732439995, - "Height": 0.007870129309594631, - "Left": 0.11166444420814514, - "Top": 0.557982861995697 - }, - "Polygon": [ - { - "X": 0.11166659742593765, - "Y": 0.557982861995697 - }, - { - "X": 0.1582385152578354, - "Y": 0.5580184459686279 - }, - { - "X": 0.15823647379875183, - "Y": 0.5658529996871948 - }, - { - "X": 0.11166444420814514, - "Y": 0.5658174753189087 - } - ] - }, - "Id": "35833a5b-aa13-42e6-8440-8c9d27e3f832", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.68411254882812, - "Text": "debt", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02430400624871254, - "Height": 0.007613664492964745, - "Left": 0.16180041432380676, - "Top": 0.5580847859382629 - }, - "Polygon": [ - { - "X": 0.16180238127708435, - "Y": 0.5580847859382629 - }, - { - "X": 0.186104416847229, - "Y": 0.5581033229827881 - }, - { - "X": 0.1861025094985962, - "Y": 0.5656984448432922 - }, - { - "X": 0.16180041432380676, - "Y": 0.5656799077987671 - } - ] - }, - "Id": "078c6ed2-8d8c-4355-a038-90db08ab09a0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94790649414062, - "Text": "(21)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01717662252485752, - "Height": 0.009096439927816391, - "Left": 0.7084268927574158, - "Top": 0.5577877163887024 - }, - "Polygon": [ - { - "X": 0.7084277272224426, - "Y": 0.5577877163887024 - }, - { - "X": 0.7256035208702087, - "Y": 0.557800829410553 - }, - { - "X": 0.7256027460098267, - "Y": 0.5668841600418091 - }, - { - "X": 0.7084268927574158, - "Y": 0.5668710470199585 - } - ] - }, - "Id": "284c79a4-ff7e-4e54-a67c-57380293789f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 93.95230102539062, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.004489201121032238, - "Height": 0.0017128430772572756, - "Left": 0.8039003014564514, - "Top": 0.5616876482963562 - }, - "Polygon": [ - { - "X": 0.803900420665741, - "Y": 0.5616876482963562 - }, - { - "X": 0.8083894848823547, - "Y": 0.5616910457611084 - }, - { - "X": 0.80838942527771, - "Y": 0.5634004473686218 - }, - { - "X": 0.8039003014564514, - "Y": 0.5633970499038696 - } - ] - }, - "Id": "4dbc7648-6a9e-40da-98fd-03447574427a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.85636901855469, - "Text": "1", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.004268734250217676, - "Height": 0.007085535675287247, - "Left": 0.8870455622673035, - "Top": 0.5582143664360046 - }, - "Polygon": [ - { - "X": 0.8870458006858826, - "Y": 0.5582143664360046 - }, - { - "X": 0.8913142681121826, - "Y": 0.5582176446914673 - }, - { - "X": 0.8913140296936035, - "Y": 0.565299928188324 - }, - { - "X": 0.8870455622673035, - "Y": 0.5652966499328613 - } - ] - }, - "Id": "da4cdcf3-97de-4d53-9e0b-23fa95cdc22a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.65766143798828, - "Text": "Non-current", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06434432417154312, - "Height": 0.007735779508948326, - "Left": 0.11211222410202026, - "Top": 0.5733135342597961 - }, - "Polygon": [ - { - "X": 0.1121143326163292, - "Y": 0.5733135342597961 - }, - { - "X": 0.1764565408229828, - "Y": 0.5733626484870911 - }, - { - "X": 0.1764545887708664, - "Y": 0.5810493230819702 - }, - { - "X": 0.11211222410202026, - "Y": 0.5810001492500305 - } - ] - }, - "Id": "74ec8eda-a769-46a7-8616-36045aa3faa6", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.88949584960938, - "Text": "lease", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.028231948614120483, - "Height": 0.007738171610981226, - "Left": 0.1790355145931244, - "Top": 0.5733724236488342 - }, - "Polygon": [ - { - "X": 0.17903748154640198, - "Y": 0.5733724236488342 - }, - { - "X": 0.20726746320724487, - "Y": 0.5733940005302429 - }, - { - "X": 0.20726557075977325, - "Y": 0.5811105966567993 - }, - { - "X": 0.1790355145931244, - "Y": 0.5810890793800354 - } - ] - }, - "Id": "596924ce-b2aa-4320-8f57-fad2904e8d6f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92823028564453, - "Text": "liability", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03564007952809334, - "Height": 0.009480156935751438, - "Left": 0.21022926270961761, - "Top": 0.5731013417243958 - }, - "Polygon": [ - { - "X": 0.21023157238960266, - "Y": 0.5731013417243958 - }, - { - "X": 0.24586933851242065, - "Y": 0.5731285810470581 - }, - { - "X": 0.24586711823940277, - "Y": 0.5825815200805664 - }, - { - "X": 0.21022926270961761, - "Y": 0.582554280757904 - } - ] - }, - "Id": "f6b43a2f-8c4a-4c55-aa77-456a1c873c9f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.78744506835938, - "Text": "(16)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.017995959147810936, - "Height": 0.00924947950989008, - "Left": 0.7076959013938904, - "Top": 0.5729054808616638 - }, - "Polygon": [ - { - "X": 0.7076967358589172, - "Y": 0.5729054808616638 - }, - { - "X": 0.7256918549537659, - "Y": 0.5729192495346069 - }, - { - "X": 0.7256910800933838, - "Y": 0.5821549892425537 - }, - { - "X": 0.7076959013938904, - "Y": 0.5821412205696106 - } - ] - }, - "Id": "18e8346d-7750-4b8b-a1a8-ac9a435c794f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.64484405517578, - "Text": "3,924", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02855587936937809, - "Height": 0.00870907586067915, - "Left": 0.7799148559570312, - "Top": 0.5731410980224609 - }, - "Polygon": [ - { - "X": 0.779915452003479, - "Y": 0.5731410980224609 - }, - { - "X": 0.8084707260131836, - "Y": 0.5731629133224487 - }, - { - "X": 0.8084701895713806, - "Y": 0.5818501710891724 - }, - { - "X": 0.7799148559570312, - "Y": 0.5818283557891846 - } - ] - }, - "Id": "c4022190-b42f-447e-bac4-2d6604c2e3dd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.82009887695312, - "Text": "4,262", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.028631091117858887, - "Height": 0.00847471784800291, - "Left": 0.8628667593002319, - "Top": 0.5732091665267944 - }, - "Polygon": [ - { - "X": 0.8628671169281006, - "Y": 0.5732091665267944 - }, - { - "X": 0.8914978504180908, - "Y": 0.5732309818267822 - }, - { - "X": 0.8914975523948669, - "Y": 0.581683874130249 - }, - { - "X": 0.8628667593002319, - "Y": 0.5816619992256165 - } - ] - }, - "Id": "b54203e7-39f5-484a-aea4-0631c1cb2776", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91004943847656, - "Text": "Deferred", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.046398334205150604, - "Height": 0.007926179096102715, - "Left": 0.11160635948181152, - "Top": 0.5881741046905518 - }, - "Polygon": [ - { - "X": 0.11160852760076523, - "Y": 0.5881741046905518 - }, - { - "X": 0.15800468623638153, - "Y": 0.5882095694541931 - }, - { - "X": 0.15800262987613678, - "Y": 0.5961002707481384 - }, - { - "X": 0.11160635948181152, - "Y": 0.5960648655891418 - } - ] - }, - "Id": "877e7291-5f8e-4e90-9546-3129e985cd35", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.7889404296875, - "Text": "tax", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.015969891101121902, - "Height": 0.007191515527665615, - "Left": 0.16090713441371918, - "Top": 0.5888099074363708 - }, - "Polygon": [ - { - "X": 0.1609089970588684, - "Y": 0.5888099074363708 - }, - { - "X": 0.17687702178955078, - "Y": 0.588822066783905 - }, - { - "X": 0.17687518894672394, - "Y": 0.596001386642456 - }, - { - "X": 0.16090713441371918, - "Y": 0.5959892272949219 - } - ] - }, - "Id": "bc59d6f9-eda8-4211-80f3-01e0369d0443", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.86813354492188, - "Text": "liabilities", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0441698282957077, - "Height": 0.007739557884633541, - "Left": 0.17986898124217987, - "Top": 0.5883065462112427 - }, - "Polygon": [ - { - "X": 0.17987094819545746, - "Y": 0.5883065462112427 - }, - { - "X": 0.22403880953788757, - "Y": 0.5883402824401855 - }, - { - "X": 0.22403696179389954, - "Y": 0.5960460901260376 - }, - { - "X": 0.17986898124217987, - "Y": 0.5960123538970947 - } - ] - }, - "Id": "26fe6a59-e6cd-46d5-be73-7ae21012bee9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93415069580078, - "Text": "(25)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019365916028618813, - "Height": 0.00944853387773037, - "Left": 0.7062230110168457, - "Top": 0.5880193710327148 - }, - "Polygon": [ - { - "X": 0.7062238454818726, - "Y": 0.5880193710327148 - }, - { - "X": 0.7255889177322388, - "Y": 0.5880341529846191 - }, - { - "X": 0.7255880832672119, - "Y": 0.5974678993225098 - }, - { - "X": 0.7062230110168457, - "Y": 0.5974530577659607 - } - ] - }, - "Id": "4ac74d84-a5d6-47d1-a5c8-aeb0186bf082", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97776794433594, - "Text": "385", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.020032424479722977, - "Height": 0.007694382220506668, - "Left": 0.7883392572402954, - "Top": 0.5884034633636475 - }, - "Polygon": [ - { - "X": 0.7883397936820984, - "Y": 0.5884034633636475 - }, - { - "X": 0.8083717226982117, - "Y": 0.58841872215271 - }, - { - "X": 0.8083712458610535, - "Y": 0.5960978269577026 - }, - { - "X": 0.7883392572402954, - "Y": 0.5960825085639954 - } - ] - }, - "Id": "c3870537-35ed-4087-bb59-6b36929c6564", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91902160644531, - "Text": "359", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019682347774505615, - "Height": 0.0078099374659359455, - "Left": 0.8715174794197083, - "Top": 0.5881194472312927 - }, - "Polygon": [ - { - "X": 0.8715177774429321, - "Y": 0.5881194472312927 - }, - { - "X": 0.8911998271942139, - "Y": 0.5881344676017761 - }, - { - "X": 0.89119952917099, - "Y": 0.5959293842315674 - }, - { - "X": 0.8715174794197083, - "Y": 0.5959143042564392 - } - ] - }, - "Id": "abff8e37-1f2e-4bde-a671-8678a838addd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90492248535156, - "Text": "CURRENT", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05686084181070328, - "Height": 0.007940532639622688, - "Left": 0.11140162497758865, - "Top": 0.6035560965538025 - }, - "Polygon": [ - { - "X": 0.11140380054712296, - "Y": 0.6035560965538025 - }, - { - "X": 0.16826246678829193, - "Y": 0.6035995483398438 - }, - { - "X": 0.16826042532920837, - "Y": 0.61149662733078 - }, - { - "X": 0.11140162497758865, - "Y": 0.6114531755447388 - } - ] - }, - "Id": "c6981826-12bc-4d6f-b4ae-3a5aa0e8cfcb", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.77819061279297, - "Text": "LIABILITIES", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06608987599611282, - "Height": 0.007917103357613087, - "Left": 0.17134998738765717, - "Top": 0.603327751159668 - }, - "Polygon": [ - { - "X": 0.17135199904441833, - "Y": 0.603327751159668 - }, - { - "X": 0.2374398559331894, - "Y": 0.6033782958984375 - }, - { - "X": 0.23743799328804016, - "Y": 0.6112448573112488 - }, - { - "X": 0.17134998738765717, - "Y": 0.611194372177124 - } - ] - }, - "Id": "fbf2c23a-72b1-4191-b6d3-1f87436a82c8", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.86100006103516, - "Text": "8,137", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.027423100546002388, - "Height": 0.008828557096421719, - "Left": 0.7809897065162659, - "Top": 0.6034548878669739 - }, - "Polygon": [ - { - "X": 0.7809903621673584, - "Y": 0.6034548878669739 - }, - { - "X": 0.8084128499031067, - "Y": 0.60347580909729 - }, - { - "X": 0.8084123134613037, - "Y": 0.6122834086418152 - }, - { - "X": 0.7809897065162659, - "Y": 0.612262487411499 - } - ] - }, - "Id": "5704fa56-820d-49fb-b058-e1416acd5228", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90941619873047, - "Text": "8,030", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03134961426258087, - "Height": 0.008886892348527908, - "Left": 0.8599395155906677, - "Top": 0.6034632921218872 - }, - "Polygon": [ - { - "X": 0.8599399328231812, - "Y": 0.6034632921218872 - }, - { - "X": 0.8912891745567322, - "Y": 0.6034872531890869 - }, - { - "X": 0.8912888169288635, - "Y": 0.6123501658439636 - }, - { - "X": 0.8599395155906677, - "Y": 0.6123262047767639 - } - ] - }, - "Id": "a5d4d6b7-87e5-4c8c-ac07-1f163b245d46", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.8270263671875, - "Text": "Financial", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04695213958621025, - "Height": 0.008049915544688702, - "Left": 0.11163563281297684, - "Top": 0.6184619069099426 - }, - "Polygon": [ - { - "X": 0.11163783818483353, - "Y": 0.6184619069099426 - }, - { - "X": 0.1585877686738968, - "Y": 0.6184977889060974 - }, - { - "X": 0.15858568251132965, - "Y": 0.626511812210083 - }, - { - "X": 0.11163563281297684, - "Y": 0.6264759302139282 - } - ] - }, - "Id": "25d13ae2-b783-44a5-9e52-ee76d436ced7", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.934326171875, - "Text": "debt", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.024682389572262764, - "Height": 0.007900436408817768, - "Left": 0.16147960722446442, - "Top": 0.6186182498931885 - }, - "Polygon": [ - { - "X": 0.16148164868354797, - "Y": 0.6186182498931885 - }, - { - "X": 0.18616199493408203, - "Y": 0.6186371445655823 - }, - { - "X": 0.18615999817848206, - "Y": 0.626518726348877 - }, - { - "X": 0.16147960722446442, - "Y": 0.6264998316764832 - } - ] - }, - "Id": "e82df9ef-2502-4283-b08d-beb2de063b72", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95734405517578, - "Text": "(21)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01733197644352913, - "Height": 0.009142753668129444, - "Left": 0.7081981301307678, - "Top": 0.6184147000312805 - }, - "Polygon": [ - { - "X": 0.7081989645957947, - "Y": 0.6184147000312805 - }, - { - "X": 0.7255300879478455, - "Y": 0.6184279322624207 - }, - { - "X": 0.7255293130874634, - "Y": 0.6275574564933777 - }, - { - "X": 0.7081981301307678, - "Y": 0.6275441646575928 - } - ] - }, - "Id": "3627c961-fa08-4412-a529-d3d58e2dd5ac", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95159912109375, - "Text": "13", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.010988576337695122, - "Height": 0.007477124221622944, - "Left": 0.7975047826766968, - "Top": 0.6188205480575562 - }, - "Polygon": [ - { - "X": 0.797505259513855, - "Y": 0.6188205480575562 - }, - { - "X": 0.8084933757781982, - "Y": 0.6188289523124695 - }, - { - "X": 0.80849289894104, - "Y": 0.626297652721405 - }, - { - "X": 0.7975047826766968, - "Y": 0.6262892484664917 - } - ] - }, - "Id": "da9b6f8c-0514-4e0b-afc6-45d782f96276", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95687103271484, - "Text": "35", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.013256719335913658, - "Height": 0.007856271229684353, - "Left": 0.8782365322113037, - "Top": 0.6186332106590271 - }, - "Polygon": [ - { - "X": 0.8782368898391724, - "Y": 0.6186332106590271 - }, - { - "X": 0.8914932608604431, - "Y": 0.6186433434486389 - }, - { - "X": 0.891493022441864, - "Y": 0.626489520072937 - }, - { - "X": 0.8782365322113037, - "Y": 0.6264793872833252 - } - ] - }, - "Id": "fb9267a1-1aab-49e4-9f28-e6654608c399", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95159912109375, - "Text": "Other", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02973494678735733, - "Height": 0.007811723276972771, - "Left": 0.11142406612634659, - "Top": 0.6337609887123108 - }, - "Polygon": [ - { - "X": 0.1114262118935585, - "Y": 0.6337609887123108 - }, - { - "X": 0.14115901291370392, - "Y": 0.6337836980819702 - }, - { - "X": 0.14115694165229797, - "Y": 0.6415727138519287 - }, - { - "X": 0.11142406612634659, - "Y": 0.6415499448776245 - } - ] - }, - "Id": "af6c5f52-0561-47ad-b6a8-0a70d4eaeaa5", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.87216186523438, - "Text": "financial", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.043869417160749435, - "Height": 0.00785811711102724, - "Left": 0.14403210580348969, - "Top": 0.6337072253227234 - }, - "Polygon": [ - { - "X": 0.14403417706489563, - "Y": 0.6337072253227234 - }, - { - "X": 0.18790152668952942, - "Y": 0.6337407827377319 - }, - { - "X": 0.18789955973625183, - "Y": 0.6415653824806213 - }, - { - "X": 0.14403210580348969, - "Y": 0.6415318250656128 - } - ] - }, - "Id": "75b8fda5-855e-4649-ad8b-4c91f63151fe", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.77625274658203, - "Text": "liabilities", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04463605210185051, - "Height": 0.007878657430410385, - "Left": 0.19076229631900787, - "Top": 0.6337297558784485 - }, - "Polygon": [ - { - "X": 0.19076426327228546, - "Y": 0.6337297558784485 - }, - { - "X": 0.23539835214614868, - "Y": 0.6337639093399048 - }, - { - "X": 0.23539648950099945, - "Y": 0.6416084170341492 - }, - { - "X": 0.19076229631900787, - "Y": 0.6415742635726929 - } - ] - }, - "Id": "b9f22324-872b-498c-82fc-4b9090578bce", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.84843444824219, - "Text": "(26)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019663749262690544, - "Height": 0.009373079985380173, - "Left": 0.7059478759765625, - "Top": 0.6333974599838257 - }, - "Polygon": [ - { - "X": 0.7059487700462341, - "Y": 0.6333974599838257 - }, - { - "X": 0.7256116271018982, - "Y": 0.6334124803543091 - }, - { - "X": 0.7256108522415161, - "Y": 0.642770528793335 - }, - { - "X": 0.7059478759765625, - "Y": 0.6427554488182068 - } - ] - }, - "Id": "27ea8930-6ad3-4c14-9fcb-fc408d41ac0b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96955108642578, - "Text": "46", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.013366900384426117, - "Height": 0.007625116966664791, - "Left": 0.7951764464378357, - "Top": 0.633904755115509 - }, - "Polygon": [ - { - "X": 0.7951769232749939, - "Y": 0.633904755115509 - }, - { - "X": 0.80854332447052, - "Y": 0.6339150071144104 - }, - { - "X": 0.8085428476333618, - "Y": 0.64152991771698 - }, - { - "X": 0.7951764464378357, - "Y": 0.6415196657180786 - } - ] - }, - "Id": "9d70ef2d-51d1-482b-afab-72b3a8383446", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.84808349609375, - "Text": "22", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.013022755272686481, - "Height": 0.007763965521007776, - "Left": 0.8783410787582397, - "Top": 0.6338340044021606 - }, - "Polygon": [ - { - "X": 0.8783413767814636, - "Y": 0.6338340044021606 - }, - { - "X": 0.8913638591766357, - "Y": 0.6338439583778381 - }, - { - "X": 0.8913635611534119, - "Y": 0.6415979862213135 - }, - { - "X": 0.8783410787582397, - "Y": 0.641588032245636 - } - ] - }, - "Id": "4836ce5a-cb7d-417f-a80d-55262d40ae66", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9080810546875, - "Text": "Current", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04048018530011177, - "Height": 0.007848887704312801, - "Left": 0.11130985617637634, - "Top": 0.6489533185958862 - }, - "Polygon": [ - { - "X": 0.11131200939416885, - "Y": 0.6489533185958862 - }, - { - "X": 0.15179003775119781, - "Y": 0.6489843130111694 - }, - { - "X": 0.15178798139095306, - "Y": 0.656802237033844 - }, - { - "X": 0.11130985617637634, - "Y": 0.6567712426185608 - } - ] - }, - "Id": "b736c8f9-fceb-45ff-9c3d-13117040f39b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92800903320312, - "Text": "lease", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.027692638337612152, - "Height": 0.007702168542891741, - "Left": 0.15479567646980286, - "Top": 0.6490265130996704 - }, - "Polygon": [ - { - "X": 0.15479768812656403, - "Y": 0.6490265130996704 - }, - { - "X": 0.1824883222579956, - "Y": 0.6490477323532104 - }, - { - "X": 0.1824863702058792, - "Y": 0.6567286849021912 - }, - { - "X": 0.15479567646980286, - "Y": 0.6567075252532959 - } - ] - }, - "Id": "885e5147-c9ac-4a90-8e86-b69f8c82e0ce", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9058609008789, - "Text": "liability", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03550425171852112, - "Height": 0.009631892666220665, - "Left": 0.1856350600719452, - "Top": 0.6488631963729858 - }, - "Polygon": [ - { - "X": 0.1856374889612198, - "Y": 0.6488631963729858 - }, - { - "X": 0.2211393117904663, - "Y": 0.6488903760910034 - }, - { - "X": 0.22113700211048126, - "Y": 0.6584950685501099 - }, - { - "X": 0.1856350600719452, - "Y": 0.6584679484367371 - } - ] - }, - "Id": "342c6447-8148-4ea8-a287-fb2aa185bb29", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.79644775390625, - "Text": "(16)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.017804516479372978, - "Height": 0.009306861087679863, - "Left": 0.7078073024749756, - "Top": 0.6486105918884277 - }, - "Polygon": [ - { - "X": 0.7078081965446472, - "Y": 0.6486105918884277 - }, - { - "X": 0.7256118655204773, - "Y": 0.6486241817474365 - }, - { - "X": 0.7256110310554504, - "Y": 0.6579174399375916 - }, - { - "X": 0.7078073024749756, - "Y": 0.657903790473938 - } - ] - }, - "Id": "97fafd12-00a1-4c71-bd91-11e81d493464", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.57926940917969, - "Text": "1,517", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.023080719634890556, - "Height": 0.008335902355611324, - "Left": 0.7856054306030273, - "Top": 0.6488732695579529 - }, - "Polygon": [ - { - "X": 0.7856060266494751, - "Y": 0.6488732695579529 - }, - { - "X": 0.8086861968040466, - "Y": 0.6488909125328064 - }, - { - "X": 0.8086856603622437, - "Y": 0.6572091579437256 - }, - { - "X": 0.7856054306030273, - "Y": 0.6571915149688721 - } - ] - }, - "Id": "689239c2-07f3-48c5-8201-9cfe4652e006", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92216491699219, - "Text": "1,562", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.026289047673344612, - "Height": 0.008510446175932884, - "Left": 0.865128755569458, - "Top": 0.6489462852478027 - }, - "Polygon": [ - { - "X": 0.8651291131973267, - "Y": 0.6489462852478027 - }, - { - "X": 0.8914178013801575, - "Y": 0.6489664316177368 - }, - { - "X": 0.8914175033569336, - "Y": 0.6574567556381226 - }, - { - "X": 0.865128755569458, - "Y": 0.6574366688728333 - } - ] - }, - "Id": "447d5593-51e3-4c96-88f7-984d6c4e9462", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.42012786865234, - "Text": "Income", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03987028822302818, - "Height": 0.007809262722730637, - "Left": 0.11156720668077469, - "Top": 0.664110004901886 - }, - "Polygon": [ - { - "X": 0.111569344997406, - "Y": 0.664110004901886 - }, - { - "X": 0.15143749117851257, - "Y": 0.664140522480011 - }, - { - "X": 0.15143544971942902, - "Y": 0.6719192266464233 - }, - { - "X": 0.11156720668077469, - "Y": 0.6718887090682983 - } - ] - }, - "Id": "f80134bc-81b9-4e86-b6f7-2707824e5114", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96733093261719, - "Text": "tax", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.016154853627085686, - "Height": 0.007053198292851448, - "Left": 0.1543217897415161, - "Top": 0.6647958159446716 - }, - "Polygon": [ - { - "X": 0.15432362258434296, - "Y": 0.6647958159446716 - }, - { - "X": 0.17047664523124695, - "Y": 0.6648082137107849 - }, - { - "X": 0.1704748272895813, - "Y": 0.6718490123748779 - }, - { - "X": 0.1543217897415161, - "Y": 0.6718366742134094 - } - ] - }, - "Id": "e747c945-5e7e-486e-bbe1-64d78fb1201a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98350524902344, - "Text": "payable", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04193437844514847, - "Height": 0.009472491219639778, - "Left": 0.1732836663722992, - "Top": 0.6640889644622803 - }, - "Polygon": [ - { - "X": 0.1732860803604126, - "Y": 0.6640889644622803 - }, - { - "X": 0.21521803736686707, - "Y": 0.6641210913658142 - }, - { - "X": 0.2152157425880432, - "Y": 0.6735614538192749 - }, - { - "X": 0.1732836663722992, - "Y": 0.6735293865203857 - } - ] - }, - "Id": "32bdad76-453b-4037-8674-c39c726c5429", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9388656616211, - "Text": "(25)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019453102722764015, - "Height": 0.009434941224753857, - "Left": 0.7061780095100403, - "Top": 0.6637569665908813 - }, - "Polygon": [ - { - "X": 0.7061789035797119, - "Y": 0.6637569665908813 - }, - { - "X": 0.7256311178207397, - "Y": 0.6637718677520752 - }, - { - "X": 0.7256303429603577, - "Y": 0.6731919646263123 - }, - { - "X": 0.7061780095100403, - "Y": 0.6731770634651184 - } - ] - }, - "Id": "4737fa29-2112-4265-bc30-87e64c23e5bd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94588470458984, - "Text": "264", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01960810460150242, - "Height": 0.007683330215513706, - "Left": 0.7887306809425354, - "Top": 0.6642032861709595 - }, - "Polygon": [ - { - "X": 0.7887311577796936, - "Y": 0.6642032861709595 - }, - { - "X": 0.8083387613296509, - "Y": 0.6642183065414429 - }, - { - "X": 0.8083382844924927, - "Y": 0.6718866229057312 - }, - { - "X": 0.7887306809425354, - "Y": 0.6718716025352478 - } - ] - }, - "Id": "a60f69d4-8565-47ad-9071-dfd271d581b0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97631072998047, - "Text": "211", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.014936702325940132, - "Height": 0.007713677827268839, - "Left": 0.8764349818229675, - "Top": 0.6641100645065308 - }, - "Polygon": [ - { - "X": 0.8764353394508362, - "Y": 0.6641100645065308 - }, - { - "X": 0.8913717269897461, - "Y": 0.6641215085983276 - }, - { - "X": 0.8913714289665222, - "Y": 0.6718237400054932 - }, - { - "X": 0.8764349818229675, - "Y": 0.6718123555183411 - } - ] - }, - "Id": "d748c50f-9e8b-454c-ab54-c4738028d6f1", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.8631362915039, - "Text": "Trade", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.031077217310667038, - "Height": 0.008018328808248043, - "Left": 0.11090066283941269, - "Top": 0.6791052222251892 - }, - "Polygon": [ - { - "X": 0.11090286076068878, - "Y": 0.6791052222251892 - }, - { - "X": 0.14197787642478943, - "Y": 0.6791290044784546 - }, - { - "X": 0.1419757604598999, - "Y": 0.6871235370635986 - }, - { - "X": 0.11090066283941269, - "Y": 0.6870997548103333 - } - ] - }, - "Id": "924e5562-b2dd-4792-ba01-cdb9e98a8cd1", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98992919921875, - "Text": "and", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02021714113652706, - "Height": 0.007816081866621971, - "Left": 0.14513061940670013, - "Top": 0.6792536377906799 - }, - "Polygon": [ - { - "X": 0.14513267576694489, - "Y": 0.6792536377906799 - }, - { - "X": 0.16534775495529175, - "Y": 0.6792691349983215 - }, - { - "X": 0.16534574329853058, - "Y": 0.6870697140693665 - }, - { - "X": 0.14513061940670013, - "Y": 0.6870542764663696 - } - ] - }, - "Id": "e3fb12e8-cd85-49b2-afff-f0c744fa1bf9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98529052734375, - "Text": "other", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02802722156047821, - "Height": 0.0076715657487511635, - "Left": 0.16857419908046722, - "Top": 0.6793392300605774 - }, - "Polygon": [ - { - "X": 0.1685761660337448, - "Y": 0.6793392300605774 - }, - { - "X": 0.19660142064094543, - "Y": 0.6793606877326965 - }, - { - "X": 0.19659951329231262, - "Y": 0.6870107650756836 - }, - { - "X": 0.16857419908046722, - "Y": 0.6869893074035645 - } - ] - }, - "Id": "e923fb05-08eb-4bcc-bae1-963cddc26d45", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97279357910156, - "Text": "payables", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04778558015823364, - "Height": 0.00947911199182272, - "Left": 0.19941940903663635, - "Top": 0.6793076992034912 - }, - "Polygon": [ - { - "X": 0.1994217485189438, - "Y": 0.6793076992034912 - }, - { - "X": 0.24720498919487, - "Y": 0.6793442964553833 - }, - { - "X": 0.2472027838230133, - "Y": 0.6887868046760559 - }, - { - "X": 0.19941940903663635, - "Y": 0.6887502074241638 - } - ] - }, - "Id": "0f2897db-78d2-49ec-8f07-83aea013560c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97832489013672, - "Text": "(20)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.020096657797694206, - "Height": 0.009343605488538742, - "Left": 0.7055849432945251, - "Top": 0.6789098978042603 - }, - "Polygon": [ - { - "X": 0.705585777759552, - "Y": 0.6789098978042603 - }, - { - "X": 0.7256816029548645, - "Y": 0.6789253354072571 - }, - { - "X": 0.7256807684898376, - "Y": 0.6882535219192505 - }, - { - "X": 0.7055849432945251, - "Y": 0.6882381439208984 - } - ] - }, - "Id": "4b71bdbc-9577-4884-8638-82ef0f09d65f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.79578399658203, - "Text": "6,297", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.028018610551953316, - "Height": 0.008580281399190426, - "Left": 0.7806565761566162, - "Top": 0.6793179512023926 - }, - "Polygon": [ - { - "X": 0.780657172203064, - "Y": 0.6793179512023926 - }, - { - "X": 0.8086751699447632, - "Y": 0.6793394088745117 - }, - { - "X": 0.808674693107605, - "Y": 0.6878982782363892 - }, - { - "X": 0.7806565761566162, - "Y": 0.68787682056427 - } - ] - }, - "Id": "b705e131-03ff-4306-8fe1-9c142d1807ca", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.66165924072266, - "Text": "6,199", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02670522965490818, - "Height": 0.008547088131308556, - "Left": 0.864569902420044, - "Top": 0.6793691515922546 - }, - "Polygon": [ - { - "X": 0.8645703196525574, - "Y": 0.6793691515922546 - }, - { - "X": 0.89127516746521, - "Y": 0.6793895959854126 - }, - { - "X": 0.8912748694419861, - "Y": 0.6879162192344666 - }, - { - "X": 0.864569902420044, - "Y": 0.6878957748413086 - } - ] - }, - "Id": "d4e3a4ac-f368-4f56-a852-f7de0f267389", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90959930419922, - "Text": "TOTAL", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03972747176885605, - "Height": 0.007962671108543873, - "Left": 0.11087203770875931, - "Top": 0.6941871047019958 - }, - "Polygon": [ - { - "X": 0.1108742207288742, - "Y": 0.6941871047019958 - }, - { - "X": 0.15059950947761536, - "Y": 0.6942175030708313 - }, - { - "X": 0.15059742331504822, - "Y": 0.7021497488021851 - }, - { - "X": 0.11087203770875931, - "Y": 0.7021193504333496 - } - ] - }, - "Id": "48ccb87b-6175-42e3-93d3-0c19f939f25a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90530395507812, - "Text": "EQUITY", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04353169724345207, - "Height": 0.00785730592906475, - "Left": 0.15333227813243866, - "Top": 0.6942468881607056 - }, - "Polygon": [ - { - "X": 0.1533343344926834, - "Y": 0.6942468881607056 - }, - { - "X": 0.19686397910118103, - "Y": 0.694280207157135 - }, - { - "X": 0.19686202704906464, - "Y": 0.7021041512489319 - }, - { - "X": 0.15333227813243866, - "Y": 0.7020708322525024 - } - ] - }, - "Id": "0ac3aeab-b980-4903-ad4c-4b0efdecb33d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98233032226562, - "Text": "AND", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.025793878361582756, - "Height": 0.00771329365670681, - "Left": 0.19897927343845367, - "Top": 0.6943504810333252 - }, - "Polygon": [ - { - "X": 0.1989811807870865, - "Y": 0.6943504810333252 - }, - { - "X": 0.22477315366268158, - "Y": 0.6943702101707458 - }, - { - "X": 0.22477130591869354, - "Y": 0.7020637392997742 - }, - { - "X": 0.19897927343845367, - "Y": 0.7020440101623535 - } - ] - }, - "Id": "d47d8a32-92cc-4b07-9bbe-8d2b67b0eeab", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.77935028076172, - "Text": "LIABILITIES", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06598617881536484, - "Height": 0.007928497157990932, - "Left": 0.22789330780506134, - "Top": 0.6942546367645264 - }, - "Polygon": [ - { - "X": 0.22789520025253296, - "Y": 0.6942546367645264 - }, - { - "X": 0.2938794791698456, - "Y": 0.6943051815032959 - }, - { - "X": 0.2938777804374695, - "Y": 0.7021831274032593 - }, - { - "X": 0.22789330780506134, - "Y": 0.7021325826644897 - } - ] - }, - "Id": "bdbfd481-79e7-4dba-81ec-16411ff2898d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.85585021972656, - "Text": "29,983", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03724372759461403, - "Height": 0.00871921144425869, - "Left": 0.7709906697273254, - "Top": 0.6945130228996277 - }, - "Polygon": [ - { - "X": 0.770991325378418, - "Y": 0.6945130228996277 - }, - { - "X": 0.8082343935966492, - "Y": 0.6945415139198303 - }, - { - "X": 0.8082338571548462, - "Y": 0.7032322287559509 - }, - { - "X": 0.7709906697273254, - "Y": 0.7032036781311035 - } - ] - }, - "Id": "7843fb7c-5c67-4964-90b6-1102ed4011ca", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90985107421875, - "Text": "28,945", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.037096500396728516, - "Height": 0.008832123130559921, - "Left": 0.8543480038642883, - "Top": 0.6944987773895264 - }, - "Polygon": [ - { - "X": 0.8543484210968018, - "Y": 0.6944987773895264 - }, - { - "X": 0.8914445042610168, - "Y": 0.6945272088050842 - }, - { - "X": 0.891444206237793, - "Y": 0.7033308744430542 - }, - { - "X": 0.8543480038642883, - "Y": 0.7033025026321411 - } - ] - }, - "Id": "be426448-03f6-4d29-a047-01999ef26e9e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 89.21700286865234, - "Text": "22", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.011868185363709927, - "Height": 0.007125294301658869, - "Left": 0.10746223479509354, - "Top": 0.9642103910446167 - }, - "Polygon": [ - { - "X": 0.10746420174837112, - "Y": 0.9642103910446167 - }, - { - "X": 0.11933042109012604, - "Y": 0.9642195105552673 - }, - { - "X": 0.11932848393917084, - "Y": 0.9713356494903564 - }, - { - "X": 0.10746223479509354, - "Y": 0.9713265299797058 - } - ] - }, - "Id": "6226c9f3-d6a0-4f50-8cf6-a31819478fdb", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.62274169921875, - "Text": "INDITEX", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.08068589121103287, - "Height": 0.013506082817912102, - "Left": 0.8114340901374817, - "Top": 0.9584115147590637 - }, - "Polygon": [ - { - "X": 0.8114348649978638, - "Y": 0.9584115147590637 - }, - { - "X": 0.8921200037002563, - "Y": 0.9584737420082092 - }, - { - "X": 0.8921195268630981, - "Y": 0.9719176292419434 - }, - { - "X": 0.8114340901374817, - "Y": 0.9718554019927979 - } - ] - }, - "Id": "9b4c3fe5-5964-4192-8ed6-04446f14e0a5", - "Page": 1 - }, - { - "BlockType": "TABLE", - "Confidence": 99.0234375, - "Geometry": { - "BoundingBox": { - "Width": 0.795224666595459, - "Height": 0.5949826836585999, - "Left": 0.10140888392925262, - "Top": 0.11022033542394638 - }, - "Polygon": [ - { - "X": 0.10157420486211777, - "Y": 0.11022033542394638 - }, - { - "X": 0.8966335654258728, - "Y": 0.11082030832767487 - }, - { - "X": 0.8966132998466492, - "Y": 0.7052030563354492 - }, - { - "X": 0.10140888392925262, - "Y": 0.7045938968658447 - } - ] - }, - "Id": "4257b555-e9f4-4c39-b4fe-8d992614fcd9", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c1117d7b-c943-45e2-a4be-acf7d5508c6a", - "5e3d8c69-2a69-4337-b10f-5d52afc3d3e6", - "3a04d30f-b160-4b68-968c-dd17b5efd165", - "110c0911-8cb4-4b7a-833c-2415aae41e0a", - "b599e78d-5884-4212-8385-c0486abd53c3", - "9db57831-1bb6-4db2-94f8-c095e5b34cd2", - "92a14ba7-ea18-4f8a-9ac6-35ec06dd1eda", - "a2008f69-1cd5-4fc5-b3a2-d9f9e153eede", - "b9ac0e12-47f3-4bb4-a834-6b803a58834f", - "b1eb48d2-acac-4602-b932-0796a77ede89", - "0bdc450d-eff0-48c8-b98f-5acad2eaa444", - "e1bc0ff7-d4e9-425a-a8cb-63c2dc8d983a", - "261e120c-878b-467a-b064-5c2065daecd9", - "a1ba38be-93b5-4db1-af37-acede838b36a", - "adc20055-dfaa-4ff2-86a2-809a7b598885", - "057f13c8-05ef-4e6d-9835-9d9c02ab286d", - "4acf2e8b-c78d-4728-8058-de9c6cf88694", - "2e81fe15-0f1b-4ed0-a699-dc7971bf709f", - "adf2f577-0d44-499d-aedd-fc39c57aeed1", - "1c7573a7-8ce6-483a-a8c4-52d25fff7fd4", - "3cbff114-f631-4a71-ae7c-e3bf4cdf1747", - "25509bd7-07ee-4912-bc49-d9db7c2e8f3c", - "1921597f-63cf-437f-b79c-e1258a9bbb89", - "85ce2c6f-8a00-4787-89f7-1c14dd3c15c4", - "bddfaca3-6afb-47fb-b351-86b2884d047a", - "4f465750-a45b-42b9-9ace-d97948250b89", - "10736e9a-991c-4f68-9497-fa6ac71affe1", - "10e79747-1f4f-44ee-916c-2b862f91f39b", - "d2f914cd-cf17-400a-bf05-2cfcf05d4b01", - "b5685339-199a-4923-82ea-634aee289d45", - "b8dd61df-a27a-469f-8ac8-4598a1f217dc", - "ab8fadc7-f124-4414-a297-dd95fcbbbc27", - "0f25120c-ff82-4008-8d27-f30804df1401", - "959ca22c-7267-4a86-be1a-29b882cf5c7e", - "8acfe1c4-f633-4c40-a18e-3269c82243ec", - "e3e88b67-95c9-4a21-98a6-6043915feb03", - "392dcd1d-4983-4cf8-a233-442ba90c44a0", - "ce13ab0e-65c1-4c57-bd28-6ca44f0e775d", - "d21313ea-d37f-47ad-967c-3790868da97b", - "98a2e0fb-22ae-498e-b5a8-42b997faa954", - "dd5d8297-564b-4ad1-bc5f-111aac03a517", - "a1e06cd4-6d83-4e46-8239-7e81e4362214", - "13f95465-9b1a-4b08-8349-ca89713d858f", - "30fd8a5b-f4d4-4233-a99e-92367e38d95b", - "9bced437-a958-4401-a0a7-9a3ed6b41ce7", - "4a24c798-2a72-4af8-a6c8-b78c063fedce", - "f830982e-b385-47e3-862a-3f8beea647af", - "716bdd2e-9c72-4194-8fb9-04413a92302b", - "95aa1838-1f73-48be-b9dc-3a70728705c3", - "1967942b-371e-4691-90b0-f033756ca589", - "f0bd9048-9dca-47af-9043-b5c7eb433535", - "56d7d830-f720-4f2c-9892-442502120ca7", - "875295a6-721a-4a63-b694-860d26340b13", - "99fff863-ecf9-4760-ad61-6684f3894708", - "05b4448a-406f-41a1-af2e-e79aa9790d43", - "a81759f9-7c26-4b27-852f-4a0c9b981acc", - "7a519c02-7018-45d4-ab23-5f309b476036", - "f7d0bfc6-0096-4e70-8815-df6220126955", - "4f6f8d5a-d843-48f6-826b-3daac5fb0f28", - "9c431eef-bf2c-40ab-9e14-40f5e5caa0af", - "4f2ecff8-a2cd-4e2d-b3cd-6ba978f2ee9c", - "2dd6ec28-f0a5-4b35-9175-a66cc371767b", - "0c08847b-760d-459c-aaee-2225714edae7", - "715fae31-7645-4d26-b134-b34480f5721a", - "45b166ed-bccc-4e51-9954-1a8945d219b1", - "955b4edb-e987-4367-976e-11555d36bb35", - "40a559f5-9fdb-4186-af58-b8b06eafd489", - "365d055f-25fa-45b7-a8ee-ead775ed78d7", - "a7dd2978-66ca-452f-acfd-3315307e98c5", - "35eac3e7-5024-4c80-8717-df881fd72231", - "65b23a4e-f595-406f-ac56-149079ca893e", - "cc101c0b-920a-4f88-9b31-28400c4679d7", - "3e90e3f1-fac5-43b9-996c-34fba7ce9836", - "da5da43f-25f6-4c49-98b2-cc50454e1935", - "3bb781ad-dfcd-4679-a567-7786da66498d", - "c388c3ea-bd9f-44a5-878a-1344488cdd23", - "a473ce24-7049-4995-a8c1-6f409433b71b", - "02ce9973-d5f0-4f58-9ac1-a6ce83bcdd2e", - "b4baad36-18e3-4a33-9e7b-235eb08419b1", - "70bb839a-33cf-467f-90d3-906e686e5992", - "36775314-fd32-49af-910e-9630f5acde6a", - "71395337-7818-4003-8630-1478a3580191", - "bc795ea2-8c62-4be1-aa6e-40ac3bb25937", - "6b8420bc-960d-4a5a-92c8-1df2d6275a89", - "ca0f2cc4-e98a-4773-b555-7bf31b03ffec", - "36f392a6-b68a-4a38-96ff-63f9c5633456", - "68570ef2-725f-433d-8916-53a33ed68985", - "bacfc801-b233-4663-8724-ace273228753", - "b993f8d5-d6d9-467f-98b8-187852679ff4", - "f9edd6fd-bfb3-4977-bdeb-cea5b6127ae6", - "80e7b5e5-9694-45d1-9b2e-f58eee1797eb", - "def42b70-d991-48e0-bda3-6d457319e8ff", - "08d8f2e2-507a-4e99-a2a4-58ac96a31477", - "8c80f637-859d-456e-80d7-21277b994cce", - "ac3e3cf9-0273-4c00-ba93-dd02ab52eecf", - "cdbf7bb6-1c80-4b98-a384-776401f403c6", - "64f5e05a-0028-4195-b011-c7fb4e5437a4", - "e3d09038-8418-4299-a16b-0ce58a0cf634", - "df603860-9290-45b3-a9b5-926fb8347052", - "dc7f8879-d593-40ab-879c-4dca71a1e581", - "c1e0283c-95dd-45c6-9da8-554a96296353", - "f7a1357e-e48d-40a8-b86c-4342f534e62a", - "d1e0984e-ae2b-4b3f-9ded-b8d4377335f2", - "bfe3579b-706a-4b2e-ad03-f1a7dadb93e6", - "1e336e21-e03a-4bb5-9dc1-93608fdd7897", - "4c8c1c9a-8a16-4e7e-a38e-c9210214f819", - "11456565-052d-4276-8a72-58347786a958", - "ae595b1b-0b2d-4c9d-b529-5b85561b35b1", - "d31972de-418a-44a9-8b25-9db030b2358f", - "3197ed31-10dc-4e39-a90e-f247fdbae39b", - "1c2caba4-f8a4-49b3-835a-bfd8bb5a248d", - "53b599ee-ed87-4108-b942-8b6c86068907", - "f7a38cb0-e9e8-4b0a-8e90-f40d2fc16f94", - "cff811c4-97ee-47e7-acc5-3bff834e3df1", - "6a900b5c-7f77-482e-b7f9-2e74d3ef0cae", - "fe3b277b-a6bd-408e-abd4-c54e09583367", - "bdfc22bd-15ab-4fe0-a1ce-93bfb7683b07", - "aff45777-f65c-4ea6-8024-16160190dda5", - "a07df9f0-49d9-4742-a976-5f416cfb20aa", - "afabf728-bd73-4729-a3e4-c88f29c1521d", - "c8c716f4-975a-4b65-94b1-a67bed8461c7", - "62b38e16-5512-4a27-8374-1eac0827caa7", - "7c94045e-50a0-405a-b40d-2cbc81abf648", - "91b10338-3060-4a56-9081-36445f6a3c37", - "5d662167-b647-4a98-b5ac-6ba8f8b5894d", - "c264288f-549f-4fb3-9822-ad57aa81a94c", - "9bb4ae60-a582-4fd7-afbc-5d78873d6697", - "54caf1b2-8a3f-4e53-b5fe-21efeea075e0", - "cdf91b72-94f3-48ce-8efc-9646364f7057", - "c6779900-3385-44e3-9796-7a37e394e7c6", - "be578d7d-6080-41c7-8df1-efd8079f5792", - "bd30b53c-09d0-4332-8635-5a77579a77d6", - "45c22638-bc68-4032-8b0e-96c372725645", - "d2924c1e-7116-43b7-a543-1df64de042ba", - "2ae88acb-cb7d-4822-b83e-6401cce0bb62", - "58b990fd-ae03-4582-89d5-34f701296336", - "b77fd5d1-1d0e-4c11-a5b8-6b0deb226624", - "fcfb142f-9963-404a-ad59-4376c60b2163", - "a9f1da38-3bc0-4ffb-a783-8e4cb4761c8e", - "e644552b-9273-47e4-803d-88b4dc9ef5b4", - "ba96c36d-8aab-4289-a012-e006533cef3c", - "d88aa7f3-a9bd-48ea-835c-ab7b96da2dd8", - "55fb6506-9be0-46df-8178-fe434b49a485", - "2b24335a-1e4b-4eb5-bb6a-aa292e422b8f", - "552e6ff3-cd57-4637-b446-d5dd9219c1ad", - "450194ad-45bf-4824-9f94-611d6cfc9013", - "d8765730-1a0f-4f73-8eef-5aca87eb596b", - "3deb6d39-e9a6-4b68-b56f-72526b5d9b0d", - "1c033645-d454-4de4-81f5-351c8924bcd7", - "9c5bd27b-2735-4b02-b68f-c1669d17bf2d", - "ed10a6b8-0d7a-4745-8620-8a0df6835f43", - "59f6e4fa-df17-4f5d-b09e-6d7fed88992e" - ] - }, - { - "Type": "MERGED_CELL", - "Ids": [ - "e4846caf-aff8-4f32-8ab3-163377622d0b", - "dc642cb7-19ef-476b-92ff-1ac86b65e8cc" - ] - }, - { - "Type": "TABLE_TITLE", - "Ids": [ - "5e6b6bbf-9e14-4110-a0db-cdef692c4e97" - ] - } - ], - "EntityTypes": [ - "STRUCTURED_TABLE" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 86.62109375, - "RowIndex": 1, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721327066421509, - "Height": 0.017288856208324432, - "Left": 0.1015695109963417, - "Top": 0.11022033542394638 - }, - "Polygon": [ - { - "X": 0.10157420486211777, - "Y": 0.11022033542394638 - }, - { - "X": 0.6737021803855896, - "Y": 0.11065207421779633 - }, - { - "X": 0.6737004518508911, - "Y": 0.1275091916322708 - }, - { - "X": 0.1015695109963417, - "Y": 0.12707725167274475 - } - ] - }, - "Id": "c1117d7b-c943-45e2-a4be-acf7d5508c6a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "539be61f-3fd6-4c59-b0b6-d8097a3cd43d", - "3547e8db-3dc0-459d-a631-82a26ae01dec", - "b4874339-a8be-46a6-8535-4d36f09dda66", - "7032ce45-c86e-4a2a-8c03-fdcbd8edca14", - "f236c6d9-4b75-4728-93de-581f07efaad4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 75.48828125, - "RowIndex": 1, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0669015422463417, - "Height": 0.016907619312405586, - "Left": 0.6737004518508911, - "Top": 0.11065207421779633 - }, - "Polygon": [ - { - "X": 0.6737021803855896, - "Y": 0.11065207421779633 - }, - { - "X": 0.7406020164489746, - "Y": 0.11070255935192108 - }, - { - "X": 0.7406006455421448, - "Y": 0.12755969166755676 - }, - { - "X": 0.6737004518508911, - "Y": 0.1275091916322708 - } - ] - }, - "Id": "5e3d8c69-2a69-4337-b10f-5d52afc3d3e6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "437f8b1e-c7d1-4d64-ab16-c08e5ab93f60" - ] - } - ], - "EntityTypes": [ - "COLUMN_HEADER" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 85.83984375, - "RowIndex": 1, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08373429626226425, - "Height": 0.01692034862935543, - "Left": 0.7406006455421448, - "Top": 0.11070255935192108 - }, - "Polygon": [ - { - "X": 0.7406020164489746, - "Y": 0.11070255935192108 - }, - { - "X": 0.8243349194526672, - "Y": 0.11076574772596359 - }, - { - "X": 0.8243339657783508, - "Y": 0.12762290239334106 - }, - { - "X": 0.7406006455421448, - "Y": 0.12755969166755676 - } - ] - }, - "Id": "3a04d30f-b160-4b68-968c-dd17b5efd165", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ee8fd458-8783-4a83-9670-d919295a9ac0" - ] - } - ], - "EntityTypes": [ - "COLUMN_HEADER" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 84.9609375, - "RowIndex": 1, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07229959964752197, - "Height": 0.016911743208765984, - "Left": 0.8243339657783508, - "Top": 0.11076574772596359 - }, - "Polygon": [ - { - "X": 0.8243349194526672, - "Y": 0.11076574772596359 - }, - { - "X": 0.8966335654258728, - "Y": 0.11082030832767487 - }, - { - "X": 0.896632969379425, - "Y": 0.12767748534679413 - }, - { - "X": 0.8243339657783508, - "Y": 0.12762290239334106 - } - ] - }, - "Id": "110c0911-8cb4-4b7a-833c-2415aae41e0a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "dcc42672-a493-40ec-880c-e2ab165c6799" - ] - } - ], - "EntityTypes": [ - "COLUMN_HEADER" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 43.5791015625, - "RowIndex": 2, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5723171234130859, - "Height": 0.015100652351975441, - "Left": 0.10138335078954697, - "Top": 0.127077117562294 - }, - "Polygon": [ - { - "X": 0.10138743370771408, - "Y": 0.127077117562294 - }, - { - "X": 0.6737004518508911, - "Y": 0.1275091916322708 - }, - { - "X": 0.6736989617347717, - "Y": 0.1421777755022049 - }, - { - "X": 0.10138335078954697, - "Y": 0.14174553751945496 - } - ] - }, - "Id": "b599e78d-5884-4212-8385-c0486abd53c3", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "67e5da9e-cd3a-402b-af77-2488c66649b9" - ] - } - ], - "EntityTypes": [ - "TABLE_SECTION_TITLE" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 43.5791015625, - "RowIndex": 2, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690166145563126, - "Height": 0.014719109050929546, - "Left": 0.6736989617347717, - "Top": 0.1275091916322708 - }, - "Polygon": [ - { - "X": 0.6737004518508911, - "Y": 0.1275091916322708 - }, - { - "X": 0.7406006455421448, - "Y": 0.12755969166755676 - }, - { - "X": 0.7405994534492493, - "Y": 0.14222829043865204 - }, - { - "X": 0.6736989617347717, - "Y": 0.1421777755022049 - } - ] - }, - "Id": "9db57831-1bb6-4db2-94f8-c095e5b34cd2", - "EntityTypes": [ - "TABLE_SECTION_TITLE" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 43.5791015625, - "RowIndex": 2, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08373454958200455, - "Height": 0.014731841161847115, - "Left": 0.7405994534492493, - "Top": 0.12755969166755676 - }, - "Polygon": [ - { - "X": 0.7406006455421448, - "Y": 0.12755969166755676 - }, - { - "X": 0.8243339657783508, - "Y": 0.12762290239334106 - }, - { - "X": 0.824333131313324, - "Y": 0.14229153096675873 - }, - { - "X": 0.7405994534492493, - "Y": 0.14222829043865204 - } - ] - }, - "Id": "92a14ba7-ea18-4f8a-9ac6-35ec06dd1eda", - "EntityTypes": [ - "TABLE_SECTION_TITLE" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 43.5791015625, - "RowIndex": 2, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07251239567995071, - "Height": 0.014723390340805054, - "Left": 0.824333131313324, - "Top": 0.12762290239334106 - }, - "Polygon": [ - { - "X": 0.8243339657783508, - "Y": 0.12762290239334106 - }, - { - "X": 0.8968455195426941, - "Y": 0.12767764925956726 - }, - { - "X": 0.8968450427055359, - "Y": 0.14234629273414612 - }, - { - "X": 0.824333131313324, - "Y": 0.14229153096675873 - } - ] - }, - "Id": "a2008f69-1cd5-4fc5-b3a2-d9f9e153eede", - "EntityTypes": [ - "TABLE_SECTION_TITLE" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.626953125, - "RowIndex": 3, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721375942230225, - "Height": 0.015100809745490551, - "Left": 0.10156135261058807, - "Top": 0.1417456716299057 - }, - "Polygon": [ - { - "X": 0.10156543552875519, - "Y": 0.1417456716299057 - }, - { - "X": 0.6736989617347717, - "Y": 0.1421777755022049 - }, - { - "X": 0.6736974716186523, - "Y": 0.15684649348258972 - }, - { - "X": 0.10156135261058807, - "Y": 0.1564142256975174 - } - ] - }, - "Id": "b9ac0e12-47f3-4bb4-a834-6b803a58834f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "359d5fb1-8a1e-4542-9447-dabfa76302bc", - "0121ae2c-3e97-4be9-bdaa-3aa4594f070c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 80.712890625, - "RowIndex": 3, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690196692943573, - "Height": 0.014719260856509209, - "Left": 0.6736974716186523, - "Top": 0.1421777755022049 - }, - "Polygon": [ - { - "X": 0.6736989617347717, - "Y": 0.1421777755022049 - }, - { - "X": 0.7405994534492493, - "Y": 0.14222829043865204 - }, - { - "X": 0.740598201751709, - "Y": 0.15689703822135925 - }, - { - "X": 0.6736974716186523, - "Y": 0.15684649348258972 - } - ] - }, - "Id": "b1eb48d2-acac-4602-b932-0796a77ede89", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.748046875, - "RowIndex": 3, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0837349221110344, - "Height": 0.01473199762403965, - "Left": 0.740598201751709, - "Top": 0.14222829043865204 - }, - "Polygon": [ - { - "X": 0.7405994534492493, - "Y": 0.14222829043865204 - }, - { - "X": 0.824333131313324, - "Y": 0.14229153096675873 - }, - { - "X": 0.8243322968482971, - "Y": 0.15696029365062714 - }, - { - "X": 0.740598201751709, - "Y": 0.15689703822135925 - } - ] - }, - "Id": "0bdc450d-eff0-48c8-b98f-5acad2eaa444", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8e4cfab5-6cad-498e-9db5-ca33961b69c9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.8203125, - "RowIndex": 3, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230017334222794, - "Height": 0.014723382890224457, - "Left": 0.8243322968482971, - "Top": 0.14229153096675873 - }, - "Polygon": [ - { - "X": 0.824333131313324, - "Y": 0.14229153096675873 - }, - { - "X": 0.8966324925422668, - "Y": 0.14234614372253418 - }, - { - "X": 0.8966320157051086, - "Y": 0.15701492130756378 - }, - { - "X": 0.8243322968482971, - "Y": 0.15696029365062714 - } - ] - }, - "Id": "e1bc0ff7-d4e9-425a-a8cb-63c2dc8d983a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "16ed970d-ebe8-41bd-ad2b-fb76a0c2e6c1" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.5546875, - "RowIndex": 4, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721404552459717, - "Height": 0.016101259738206863, - "Left": 0.10155699402093887, - "Top": 0.1564142256975174 - }, - "Polygon": [ - { - "X": 0.10156135261058807, - "Y": 0.1564142256975174 - }, - { - "X": 0.6736974716186523, - "Y": 0.15684649348258972 - }, - { - "X": 0.6736958622932434, - "Y": 0.17251549661159515 - }, - { - "X": 0.10155699402093887, - "Y": 0.1720830649137497 - } - ] - }, - "Id": "261e120c-878b-467a-b064-5c2065daecd9", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "3a102d9a-0627-4b7e-8259-78cede4715b1", - "c103c58c-d716-404c-bc25-cbc693b116e9", - "e1da6514-ae63-4afb-921e-ba0004dfa176" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 81.54296875, - "RowIndex": 4, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690236926078796, - "Height": 0.015719566494226456, - "Left": 0.6736958622932434, - "Top": 0.15684649348258972 - }, - "Polygon": [ - { - "X": 0.6736974716186523, - "Y": 0.15684649348258972 - }, - { - "X": 0.740598201751709, - "Y": 0.15689703822135925 - }, - { - "X": 0.7405969500541687, - "Y": 0.17256605625152588 - }, - { - "X": 0.6736958622932434, - "Y": 0.17251549661159515 - } - ] - }, - "Id": "a1ba38be-93b5-4db1-af37-acede838b36a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "1f9ce0f5-afc0-4f70-9d9b-47ff4677e556" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.724609375, - "RowIndex": 4, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0837353840470314, - "Height": 0.015732310712337494, - "Left": 0.7405969500541687, - "Top": 0.15689703822135925 - }, - "Polygon": [ - { - "X": 0.740598201751709, - "Y": 0.15689703822135925 - }, - { - "X": 0.8243322968482971, - "Y": 0.15696029365062714 - }, - { - "X": 0.8243314623832703, - "Y": 0.17262934148311615 - }, - { - "X": 0.7405969500541687, - "Y": 0.17256605625152588 - } - ] - }, - "Id": "adc20055-dfaa-4ff2-86a2-809a7b598885", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "56e2eaa5-611d-4b82-a0ff-638620027171" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.796875, - "RowIndex": 4, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230056077241898, - "Height": 0.015723692253232002, - "Left": 0.8243314623832703, - "Top": 0.15696029365062714 - }, - "Polygon": [ - { - "X": 0.8243322968482971, - "Y": 0.15696029365062714 - }, - { - "X": 0.8966320157051086, - "Y": 0.15701492130756378 - }, - { - "X": 0.8966314792633057, - "Y": 0.172683984041214 - }, - { - "X": 0.8243314623832703, - "Y": 0.17262934148311615 - } - ] - }, - "Id": "057f13c8-05ef-4e6d-9835-9d9c02ab286d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "df478b79-28fa-4d66-8767-cca6ab4a8d86" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.75, - "RowIndex": 5, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721431970596313, - "Height": 0.01610158383846283, - "Left": 0.10155263543128967, - "Top": 0.1720830649137497 - }, - "Polygon": [ - { - "X": 0.10155699402093887, - "Y": 0.1720830649137497 - }, - { - "X": 0.6736958622932434, - "Y": 0.17251549661159515 - }, - { - "X": 0.6736942529678345, - "Y": 0.18818464875221252 - }, - { - "X": 0.10155263543128967, - "Y": 0.18775203824043274 - } - ] - }, - "Id": "4acf2e8b-c78d-4728-8058-de9c6cf88694", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a640ff35-1379-46ac-98e4-2f950b94c870", - "0f455c67-2824-4220-b9d4-883e29faf992", - "d728ff5d-3e13-4aeb-add9-d5cde560212f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 81.73828125, - "RowIndex": 5, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690268963575363, - "Height": 0.015719737857580185, - "Left": 0.6736942529678345, - "Top": 0.17251549661159515 - }, - "Polygon": [ - { - "X": 0.6736958622932434, - "Y": 0.17251549661159515 - }, - { - "X": 0.7405969500541687, - "Y": 0.17256605625152588 - }, - { - "X": 0.7405956387519836, - "Y": 0.18823522329330444 - }, - { - "X": 0.6736942529678345, - "Y": 0.18818464875221252 - } - ] - }, - "Id": "2e81fe15-0f1b-4ed0-a699-dc7971bf709f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2b128e48-07cf-46fa-9e98-8e8edbaa39df" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.919921875, - "RowIndex": 5, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08373578637838364, - "Height": 0.01573248580098152, - "Left": 0.7405956387519836, - "Top": 0.17256605625152588 - }, - "Polygon": [ - { - "X": 0.7405969500541687, - "Y": 0.17256605625152588 - }, - { - "X": 0.8243314623832703, - "Y": 0.17262934148311615 - }, - { - "X": 0.8243305683135986, - "Y": 0.1882985383272171 - }, - { - "X": 0.7405956387519836, - "Y": 0.18823522329330444 - } - ] - }, - "Id": "adf2f577-0d44-499d-aedd-fc39c57aeed1", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ab027485-d62e-40a9-8799-7d64d52ab433" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.943359375, - "RowIndex": 5, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230090349912643, - "Height": 0.01572386547923088, - "Left": 0.8243305683135986, - "Top": 0.17262934148311615 - }, - "Polygon": [ - { - "X": 0.8243314623832703, - "Y": 0.17262934148311615 - }, - { - "X": 0.8966314792633057, - "Y": 0.172683984041214 - }, - { - "X": 0.8966309428215027, - "Y": 0.18835321068763733 - }, - { - "X": 0.8243305683135986, - "Y": 0.1882985383272171 - } - ] - }, - "Id": "1c7573a7-8ce6-483a-a8c4-52d25fff7fd4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "bcf58699-adb6-4991-a21f-741f30a93277" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.1640625, - "RowIndex": 6, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721457004547119, - "Height": 0.015101736411452293, - "Left": 0.10154855996370316, - "Top": 0.18775203824043274 - }, - "Polygon": [ - { - "X": 0.10155263543128967, - "Y": 0.18775203824043274 - }, - { - "X": 0.6736942529678345, - "Y": 0.18818464875221252 - }, - { - "X": 0.6736927628517151, - "Y": 0.20285376906394958 - }, - { - "X": 0.10154855996370316, - "Y": 0.20242100954055786 - } - ] - }, - "Id": "3cbff114-f631-4a71-ae7c-e3bf4cdf1747", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "83fdcaea-9f6e-493a-b520-453b8252c041" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 81.25, - "RowIndex": 6, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690290570259094, - "Height": 0.014719734899699688, - "Left": 0.6736927628517151, - "Top": 0.18818464875221252 - }, - "Polygon": [ - { - "X": 0.6736942529678345, - "Y": 0.18818464875221252 - }, - { - "X": 0.7405956387519836, - "Y": 0.18823522329330444 - }, - { - "X": 0.7405944466590881, - "Y": 0.2029043734073639 - }, - { - "X": 0.6736927628517151, - "Y": 0.20285376906394958 - } - ] - }, - "Id": "25509bd7-07ee-4912-bc49-d9db7c2e8f3c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c776c3f1-196c-477d-952b-21758d349604" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.333984375, - "RowIndex": 6, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0837361067533493, - "Height": 0.014732486568391323, - "Left": 0.7405944466590881, - "Top": 0.18823522329330444 - }, - "Polygon": [ - { - "X": 0.7405956387519836, - "Y": 0.18823522329330444 - }, - { - "X": 0.8243305683135986, - "Y": 0.1882985383272171 - }, - { - "X": 0.8243297338485718, - "Y": 0.20296771824359894 - }, - { - "X": 0.7405944466590881, - "Y": 0.2029043734073639 - } - ] - }, - "Id": "1921597f-63cf-437f-b79c-e1258a9bbb89", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "41d5ff0f-1173-4a33-ba38-4743fa691fb6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.40625, - "RowIndex": 6, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230119407176971, - "Height": 0.01472386159002781, - "Left": 0.8243297338485718, - "Top": 0.1882985383272171 - }, - "Polygon": [ - { - "X": 0.8243305683135986, - "Y": 0.1882985383272171 - }, - { - "X": 0.8966309428215027, - "Y": 0.18835321068763733 - }, - { - "X": 0.8966304063796997, - "Y": 0.20302240550518036 - }, - { - "X": 0.8243297338485718, - "Y": 0.20296771824359894 - } - ] - }, - "Id": "85ce2c6f-8a00-4787-89f7-1c14dd3c15c4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "515f4fd5-5dd8-4ab7-a9f7-e26be11e2fc1" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.62890625, - "RowIndex": 7, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721484422683716, - "Height": 0.01576881855726242, - "Left": 0.10154429078102112, - "Top": 0.20242100954055786 - }, - "Polygon": [ - { - "X": 0.10154855996370316, - "Y": 0.20242100954055786 - }, - { - "X": 0.6736927628517151, - "Y": 0.20285376906394958 - }, - { - "X": 0.6736911535263062, - "Y": 0.21818982064723969 - }, - { - "X": 0.10154429078102112, - "Y": 0.21775688230991364 - } - ] - }, - "Id": "bddfaca3-6afb-47fb-b351-86b2884d047a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8af89c36-8d80-4fa0-b93d-ae1951251eaf", - "869747c4-0536-4d8f-bc9c-2a5e9d206309", - "6f2e53a4-152c-4be5-8c89-0cfbc421ead9", - "48e50e49-9400-4cf1-812b-41cc5978f00e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 82.51953125, - "RowIndex": 7, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690327823162079, - "Height": 0.015386674553155899, - "Left": 0.6736911535263062, - "Top": 0.20285376906394958 - }, - "Polygon": [ - { - "X": 0.6736927628517151, - "Y": 0.20285376906394958 - }, - { - "X": 0.7405944466590881, - "Y": 0.2029043734073639 - }, - { - "X": 0.7405931949615479, - "Y": 0.21824045479297638 - }, - { - "X": 0.6736911535263062, - "Y": 0.21818982064723969 - } - ] - }, - "Id": "4f465750-a45b-42b9-9ace-d97948250b89", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6f89dfa9-95ea-44b2-88c1-25999316f38a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.798828125, - "RowIndex": 7, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08373653888702393, - "Height": 0.015399432741105556, - "Left": 0.7405931949615479, - "Top": 0.2029043734073639 - }, - "Polygon": [ - { - "X": 0.7405944466590881, - "Y": 0.2029043734073639 - }, - { - "X": 0.8243297338485718, - "Y": 0.20296771824359894 - }, - { - "X": 0.8243288397789001, - "Y": 0.21830381453037262 - }, - { - "X": 0.7405931949615479, - "Y": 0.21824045479297638 - } - ] - }, - "Id": "10736e9a-991c-4f68-9497-fa6ac71affe1", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "51c5df9a-9c66-4518-9f97-44508ebcbb50" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.87109375, - "RowIndex": 7, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230155915021896, - "Height": 0.015390804968774319, - "Left": 0.8243288397789001, - "Top": 0.20296771824359894 - }, - "Polygon": [ - { - "X": 0.8243297338485718, - "Y": 0.20296771824359894 - }, - { - "X": 0.8966304063796997, - "Y": 0.20302240550518036 - }, - { - "X": 0.8966298699378967, - "Y": 0.21835851669311523 - }, - { - "X": 0.8243288397789001, - "Y": 0.21830381453037262 - } - ] - }, - "Id": "10e79747-1f4f-44ee-916c-2b862f91f39b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "e99761d3-7415-4a49-bc69-8e8dc96617e5" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.529296875, - "RowIndex": 8, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721509456634521, - "Height": 0.015102339908480644, - "Left": 0.1015402153134346, - "Top": 0.21775688230991364 - }, - "Polygon": [ - { - "X": 0.10154429078102112, - "Y": 0.21775688230991364 - }, - { - "X": 0.6736911535263062, - "Y": 0.21818982064723969 - }, - { - "X": 0.6736896634101868, - "Y": 0.23285922408103943 - }, - { - "X": 0.1015402153134346, - "Y": 0.23242612183094025 - } - ] - }, - "Id": "d2f914cd-cf17-400a-bf05-2cfcf05d4b01", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "69158ecd-6e47-4d5e-976d-20b67f591458", - "eb64a1bd-b2cc-477d-a90e-0904af205ff9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 80.6640625, - "RowIndex": 8, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690352410078049, - "Height": 0.01472004409879446, - "Left": 0.6736896634101868, - "Top": 0.21818982064723969 - }, - "Polygon": [ - { - "X": 0.6736911535263062, - "Y": 0.21818982064723969 - }, - { - "X": 0.7405931949615479, - "Y": 0.21824045479297638 - }, - { - "X": 0.7405920028686523, - "Y": 0.23290987312793732 - }, - { - "X": 0.6736896634101868, - "Y": 0.23285922408103943 - } - ] - }, - "Id": "b5685339-199a-4923-82ea-634aee289d45", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.69921875, - "RowIndex": 8, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08373687416315079, - "Height": 0.014732806012034416, - "Left": 0.7405920028686523, - "Top": 0.21824045479297638 - }, - "Polygon": [ - { - "X": 0.7405931949615479, - "Y": 0.21824045479297638 - }, - { - "X": 0.8243288397789001, - "Y": 0.21830381453037262 - }, - { - "X": 0.8243280649185181, - "Y": 0.23297324776649475 - }, - { - "X": 0.7405920028686523, - "Y": 0.23290987312793732 - } - ] - }, - "Id": "b8dd61df-a27a-469f-8ac8-4598a1f217dc", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "324ab35c-ce9b-4225-bf0b-a98e756f9e3c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.771484375, - "RowIndex": 8, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230186462402344, - "Height": 0.014724173583090305, - "Left": 0.8243280649185181, - "Top": 0.21830381453037262 - }, - "Polygon": [ - { - "X": 0.8243288397789001, - "Y": 0.21830381453037262 - }, - { - "X": 0.8966298699378967, - "Y": 0.21835851669311523 - }, - { - "X": 0.8966293931007385, - "Y": 0.23302797973155975 - }, - { - "X": 0.8243280649185181, - "Y": 0.23297324776649475 - } - ] - }, - "Id": "ab8fadc7-f124-4414-a297-dd95fcbbbc27", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6d3bf2b4-2b6f-4b25-a93f-ff3344053d18" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.603515625, - "RowIndex": 9, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721536874771118, - "Height": 0.015769435092806816, - "Left": 0.10153594613075256, - "Top": 0.23242612183094025 - }, - "Polygon": [ - { - "X": 0.1015402153134346, - "Y": 0.23242612183094025 - }, - { - "X": 0.6736896634101868, - "Y": 0.23285922408103943 - }, - { - "X": 0.6736881136894226, - "Y": 0.2481955587863922 - }, - { - "X": 0.10153594613075256, - "Y": 0.2477622777223587 - } - ] - }, - "Id": "0f25120c-ff82-4008-8d27-f30804df1401", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ec388662-a84f-478c-a9ad-d02b51756eff", - "918b9a82-e22d-4b82-8d54-db790c830aa8" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 81.591796875, - "RowIndex": 9, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690389662981033, - "Height": 0.015386995859444141, - "Left": 0.6736881136894226, - "Top": 0.23285922408103943 - }, - "Polygon": [ - { - "X": 0.6736896634101868, - "Y": 0.23285922408103943 - }, - { - "X": 0.7405920028686523, - "Y": 0.23290987312793732 - }, - { - "X": 0.7405907511711121, - "Y": 0.2482462227344513 - }, - { - "X": 0.6736881136894226, - "Y": 0.2481955587863922 - } - ] - }, - "Id": "959ca22c-7267-4a86-be1a-29b882cf5c7e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "887e4725-e408-4fb3-8585-8f8244fb8855" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.7734375, - "RowIndex": 9, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08373730629682541, - "Height": 0.015399763360619545, - "Left": 0.7405907511711121, - "Top": 0.23290987312793732 - }, - "Polygon": [ - { - "X": 0.7405920028686523, - "Y": 0.23290987312793732 - }, - { - "X": 0.8243280649185181, - "Y": 0.23297324776649475 - }, - { - "X": 0.8243271708488464, - "Y": 0.24830962717533112 - }, - { - "X": 0.7405907511711121, - "Y": 0.2482462227344513 - } - ] - }, - "Id": "8acfe1c4-f633-4c40-a18e-3269c82243ec", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2749bff9-ca66-4cff-a6fa-a1384d2ecc5c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.845703125, - "RowIndex": 9, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230222970247269, - "Height": 0.015391129069030285, - "Left": 0.8243271708488464, - "Top": 0.23297324776649475 - }, - "Polygon": [ - { - "X": 0.8243280649185181, - "Y": 0.23297324776649475 - }, - { - "X": 0.8966293931007385, - "Y": 0.23302797973155975 - }, - { - "X": 0.8966288566589355, - "Y": 0.2483643889427185 - }, - { - "X": 0.8243271708488464, - "Y": 0.24830962717533112 - } - ] - }, - "Id": "e3e88b67-95c9-4a21-98a6-6043915feb03", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "21959b1e-44c1-4a01-8067-db7fa10593b0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.359375, - "RowIndex": 10, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721564292907715, - "Height": 0.015769749879837036, - "Left": 0.10153168439865112, - "Top": 0.2477622777223587 - }, - "Polygon": [ - { - "X": 0.10153594613075256, - "Y": 0.2477622777223587 - }, - { - "X": 0.6736881136894226, - "Y": 0.2481955587863922 - }, - { - "X": 0.6736865043640137, - "Y": 0.26353204250335693 - }, - { - "X": 0.10153168439865112, - "Y": 0.2630985975265503 - } - ] - }, - "Id": "392dcd1d-4983-4cf8-a233-442ba90c44a0", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ed98e825-3075-48bf-a2f0-95996c35730c", - "0d70f7e9-e7cf-4987-b77c-3ae66fe0e3af", - "0b0fba3a-1aca-4bb7-afd5-174f0f9e846e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 81.396484375, - "RowIndex": 10, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0669042095541954, - "Height": 0.015387160703539848, - "Left": 0.6736865043640137, - "Top": 0.2481955587863922 - }, - "Polygon": [ - { - "X": 0.6736881136894226, - "Y": 0.2481955587863922 - }, - { - "X": 0.7405907511711121, - "Y": 0.2482462227344513 - }, - { - "X": 0.740589439868927, - "Y": 0.263582706451416 - }, - { - "X": 0.6736865043640137, - "Y": 0.26353204250335693 - } - ] - }, - "Id": "ce13ab0e-65c1-4c57-bd28-6ca44f0e775d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7ff0109b-dc13-449b-b528-a0300226c791" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.529296875, - "RowIndex": 10, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08373770117759705, - "Height": 0.015399932861328125, - "Left": 0.740589439868927, - "Top": 0.2482462227344513 - }, - "Polygon": [ - { - "X": 0.7405907511711121, - "Y": 0.2482462227344513 - }, - { - "X": 0.8243271708488464, - "Y": 0.24830962717533112 - }, - { - "X": 0.8243263363838196, - "Y": 0.2636461555957794 - }, - { - "X": 0.740589439868927, - "Y": 0.263582706451416 - } - ] - }, - "Id": "d21313ea-d37f-47ad-967c-3790868da97b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b62e2fd2-3ead-4e09-9811-b76f3c566038" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.6015625, - "RowIndex": 10, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230256497859955, - "Height": 0.015391295775771141, - "Left": 0.8243263363838196, - "Top": 0.24830962717533112 - }, - "Polygon": [ - { - "X": 0.8243271708488464, - "Y": 0.24830962717533112 - }, - { - "X": 0.8966288566589355, - "Y": 0.2483643889427185 - }, - { - "X": 0.8966283798217773, - "Y": 0.263700932264328 - }, - { - "X": 0.8243263363838196, - "Y": 0.2636461555957794 - } - ] - }, - "Id": "98a2e0fb-22ae-498e-b5a8-42b997faa954", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "cebf861f-304a-49d0-a6d7-0f3909736263" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.287109375, - "RowIndex": 11, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721589922904968, - "Height": 0.015436658635735512, - "Left": 0.10152750462293625, - "Top": 0.2630985975265503 - }, - "Polygon": [ - { - "X": 0.10153168439865112, - "Y": 0.2630985975265503 - }, - { - "X": 0.6736865043640137, - "Y": 0.26353204250335693 - }, - { - "X": 0.6736849546432495, - "Y": 0.27853524684906006 - }, - { - "X": 0.10152750462293625, - "Y": 0.2781016528606415 - } - ] - }, - "Id": "dd5d8297-564b-4ad1-bc5f-111aac03a517", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2e2ca590-4e35-4592-a6b2-40fb2b8dedcd", - "58985a13-379d-4cc1-bc06-d5a915b59400", - "fc084d6f-5810-49fe-b8b7-2cbc846cf58b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 82.177734375, - "RowIndex": 11, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690449267625809, - "Height": 0.015053917653858662, - "Left": 0.6736849546432495, - "Top": 0.26353204250335693 - }, - "Polygon": [ - { - "X": 0.6736865043640137, - "Y": 0.26353204250335693 - }, - { - "X": 0.740589439868927, - "Y": 0.263582706451416 - }, - { - "X": 0.7405882477760315, - "Y": 0.27858594059944153 - }, - { - "X": 0.6736849546432495, - "Y": 0.27853524684906006 - } - ] - }, - "Id": "a1e06cd4-6d83-4e46-8239-7e81e4362214", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "616a28a1-974f-4d3e-8520-571039530514" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.408203125, - "RowIndex": 11, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0837380662560463, - "Height": 0.015066695399582386, - "Left": 0.7405882477760315, - "Top": 0.263582706451416 - }, - "Polygon": [ - { - "X": 0.740589439868927, - "Y": 0.263582706451416 - }, - { - "X": 0.8243263363838196, - "Y": 0.2636461555957794 - }, - { - "X": 0.824325442314148, - "Y": 0.2786494195461273 - }, - { - "X": 0.7405882477760315, - "Y": 0.27858594059944153 - } - ] - }, - "Id": "13f95465-9b1a-4b08-8349-ca89713d858f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ec9fec70-cc51-4101-841e-672f7426a58c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.48046875, - "RowIndex": 11, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230288535356522, - "Height": 0.015058053657412529, - "Left": 0.824325442314148, - "Top": 0.2636461555957794 - }, - "Polygon": [ - { - "X": 0.8243263363838196, - "Y": 0.2636461555957794 - }, - { - "X": 0.8966283798217773, - "Y": 0.263700932264328 - }, - { - "X": 0.8966278433799744, - "Y": 0.2787041962146759 - }, - { - "X": 0.824325442314148, - "Y": 0.2786494195461273 - } - ] - }, - "Id": "30fd8a5b-f4d4-4233-a99e-92367e38d95b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c83f4ece-f7f9-4d1f-b5a5-a8a9a1774606" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.89453125, - "RowIndex": 12, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721615552902222, - "Height": 0.015103554353117943, - "Left": 0.10152342915534973, - "Top": 0.2781016528606415 - }, - "Polygon": [ - { - "X": 0.10152750462293625, - "Y": 0.2781016528606415 - }, - { - "X": 0.6736849546432495, - "Y": 0.27853524684906006 - }, - { - "X": 0.6736834645271301, - "Y": 0.293205201625824 - }, - { - "X": 0.10152342915534973, - "Y": 0.29277142882347107 - } - ] - }, - "Id": "9bced437-a958-4401-a0a7-9a3ed6b41ce7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c5b78bd6-9451-4176-b458-3e879c0c7b02", - "cfdb96bf-a847-447a-86b9-854b0ed503b7" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 80.126953125, - "RowIndex": 12, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690476089715958, - "Height": 0.014720665290951729, - "Left": 0.6736834645271301, - "Top": 0.27853524684906006 - }, - "Polygon": [ - { - "X": 0.6736849546432495, - "Y": 0.27853524684906006 - }, - { - "X": 0.7405882477760315, - "Y": 0.27858594059944153 - }, - { - "X": 0.740587055683136, - "Y": 0.29325592517852783 - }, - { - "X": 0.6736834645271301, - "Y": 0.293205201625824 - } - ] - }, - "Id": "4a24c798-2a72-4af8-a6c8-b78c063fedce", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.064453125, - "RowIndex": 12, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08373843133449554, - "Height": 0.014733446761965752, - "Left": 0.740587055683136, - "Top": 0.27858594059944153 - }, - "Polygon": [ - { - "X": 0.7405882477760315, - "Y": 0.27858594059944153 - }, - { - "X": 0.824325442314148, - "Y": 0.2786494195461273 - }, - { - "X": 0.8243246078491211, - "Y": 0.2933194041252136 - }, - { - "X": 0.740587055683136, - "Y": 0.29325592517852783 - } - ] - }, - "Id": "f830982e-b385-47e3-862a-3f8beea647af", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "cc4be113-d274-4860-b0e1-c711b317d4c1" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.13671875, - "RowIndex": 12, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230320572853088, - "Height": 0.01472480222582817, - "Left": 0.8243246078491211, - "Top": 0.2786494195461273 - }, - "Polygon": [ - { - "X": 0.824325442314148, - "Y": 0.2786494195461273 - }, - { - "X": 0.8966278433799744, - "Y": 0.2787041962146759 - }, - { - "X": 0.8966273665428162, - "Y": 0.2933742105960846 - }, - { - "X": 0.8243246078491211, - "Y": 0.2933194041252136 - } - ] - }, - "Id": "716bdd2e-9c72-4194-8fb9-04413a92302b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "723a4bad-9228-46fe-ada5-647af6a59881" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.775390625, - "RowIndex": 13, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721644759178162, - "Height": 0.016437498852610588, - "Left": 0.10151897370815277, - "Top": 0.29277142882347107 - }, - "Polygon": [ - { - "X": 0.10152342915534973, - "Y": 0.29277142882347107 - }, - { - "X": 0.6736834645271301, - "Y": 0.293205201625824 - }, - { - "X": 0.6736818552017212, - "Y": 0.3092089295387268 - }, - { - "X": 0.10151897370815277, - "Y": 0.3087749779224396 - } - ] - }, - "Id": "95aa1838-1f73-48be-b9dc-3a70728705c3", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5e0474cc-a69b-4d44-b893-a681cb08e895", - "336783d1-78c0-4853-b3d7-5e1afd9f2864", - "3c08bc03-2c00-4253-a5db-2ce6e1e38fdc", - "d6cb5265-f8ed-4db4-a438-4517d15152bd", - "b039343c-c6f2-4491-9abd-20a3d648cd67" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 82.666015625, - "RowIndex": 13, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0669052004814148, - "Height": 0.016054468229413033, - "Left": 0.6736818552017212, - "Top": 0.293205201625824 - }, - "Polygon": [ - { - "X": 0.6736834645271301, - "Y": 0.293205201625824 - }, - { - "X": 0.740587055683136, - "Y": 0.29325592517852783 - }, - { - "X": 0.7405857443809509, - "Y": 0.30925965309143066 - }, - { - "X": 0.6736818552017212, - "Y": 0.3092089295387268 - } - ] - }, - "Id": "1967942b-371e-4691-90b0-f033756ca589", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "94427730-db7c-46d2-ae69-5f4c33fb73c8" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.9453125, - "RowIndex": 13, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08373891562223434, - "Height": 0.016067257151007652, - "Left": 0.7405857443809509, - "Top": 0.29325592517852783 - }, - "Polygon": [ - { - "X": 0.740587055683136, - "Y": 0.29325592517852783 - }, - { - "X": 0.8243246078491211, - "Y": 0.2933194041252136 - }, - { - "X": 0.8243237137794495, - "Y": 0.30932316184043884 - }, - { - "X": 0.7405857443809509, - "Y": 0.30925965309143066 - } - ] - }, - "Id": "f0bd9048-9dca-47af-9043-b5c7eb433535", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f47033e0-6f7e-4d4f-a3dd-3db882720d9f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.96875, - "RowIndex": 13, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230360060930252, - "Height": 0.016058610752224922, - "Left": 0.8243237137794495, - "Top": 0.2933194041252136 - }, - "Polygon": [ - { - "X": 0.8243246078491211, - "Y": 0.2933194041252136 - }, - { - "X": 0.8966273665428162, - "Y": 0.2933742105960846 - }, - { - "X": 0.8966267704963684, - "Y": 0.3093779981136322 - }, - { - "X": 0.8243237137794495, - "Y": 0.30932316184043884 - } - ] - }, - "Id": "56d7d830-f720-4f2c-9892-442502120ca7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c73c0165-34ef-4f4f-9b83-d5b6d7d77c44" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.529296875, - "RowIndex": 14, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721670389175415, - "Height": 0.015437587164342403, - "Left": 0.1015148013830185, - "Top": 0.3087749779224396 - }, - "Polygon": [ - { - "X": 0.10151897370815277, - "Y": 0.3087749779224396 - }, - { - "X": 0.6736818552017212, - "Y": 0.3092089295387268 - }, - { - "X": 0.673680305480957, - "Y": 0.32421255111694336 - }, - { - "X": 0.1015148013830185, - "Y": 0.3237784206867218 - } - ] - }, - "Id": "875295a6-721a-4a63-b694-860d26340b13", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4c1f4e43-d0fd-4385-a245-3beda5f0fbb7" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 80.6640625, - "RowIndex": 14, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0669054239988327, - "Height": 0.015054398216307163, - "Left": 0.673680305480957, - "Top": 0.3092089295387268 - }, - "Polygon": [ - { - "X": 0.6736818552017212, - "Y": 0.3092089295387268 - }, - { - "X": 0.7405857443809509, - "Y": 0.30925965309143066 - }, - { - "X": 0.7405844926834106, - "Y": 0.3242633044719696 - }, - { - "X": 0.673680305480957, - "Y": 0.32421255111694336 - } - ] - }, - "Id": "99fff863-ecf9-4760-ad61-6684f3894708", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c8889ada-f53c-49fa-a41c-af00d7981a49" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.69921875, - "RowIndex": 14, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08373924344778061, - "Height": 0.015067189931869507, - "Left": 0.7405844926834106, - "Top": 0.30925965309143066 - }, - "Polygon": [ - { - "X": 0.7405857443809509, - "Y": 0.30925965309143066 - }, - { - "X": 0.8243237137794495, - "Y": 0.30932316184043884 - }, - { - "X": 0.8243228793144226, - "Y": 0.32432684302330017 - }, - { - "X": 0.7405844926834106, - "Y": 0.3242633044719696 - } - ] - }, - "Id": "05b4448a-406f-41a1-af2e-e79aa9790d43", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "25480045-9370-46da-8ea9-2ca17d854f1e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.771484375, - "RowIndex": 14, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0723038986325264, - "Height": 0.015058537945151329, - "Left": 0.8243228793144226, - "Top": 0.30932316184043884 - }, - "Polygon": [ - { - "X": 0.8243237137794495, - "Y": 0.30932316184043884 - }, - { - "X": 0.8966267704963684, - "Y": 0.3093779981136322 - }, - { - "X": 0.8966262936592102, - "Y": 0.3243817090988159 - }, - { - "X": 0.8243228793144226, - "Y": 0.32432684302330017 - } - ] - }, - "Id": "a81759f9-7c26-4b27-852f-4a0c9b981acc", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "abc62c07-1bb5-48e1-9737-a64b178393a8" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.994140625, - "RowIndex": 15, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721697807312012, - "Height": 0.01577131077647209, - "Left": 0.10151053965091705, - "Top": 0.3237784206867218 - }, - "Polygon": [ - { - "X": 0.1015148013830185, - "Y": 0.3237784206867218 - }, - { - "X": 0.673680305480957, - "Y": 0.32421255111694336 - }, - { - "X": 0.6736786961555481, - "Y": 0.3395497500896454 - }, - { - "X": 0.10151053965091705, - "Y": 0.3391154706478119 - } - ] - }, - "Id": "7a519c02-7018-45d4-ab23-5f309b476036", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ef12f359-66d8-4dc5-a6a1-0630baefd41d", - "fa3590dc-5f18-451c-9a18-5f9ceeee6f40", - "3a84c235-453a-4778-9ea7-30b1f3517492", - "8f2ed8b1-720a-4a9c-8dcd-903e4910c725" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 81.93359375, - "RowIndex": 15, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690576672554016, - "Height": 0.015387974679470062, - "Left": 0.6736786961555481, - "Top": 0.32421255111694336 - }, - "Polygon": [ - { - "X": 0.673680305480957, - "Y": 0.32421255111694336 - }, - { - "X": 0.7405844926834106, - "Y": 0.3242633044719696 - }, - { - "X": 0.7405832409858704, - "Y": 0.339600533246994 - }, - { - "X": 0.6736786961555481, - "Y": 0.3395497500896454 - } - ] - }, - "Id": "f7d0bfc6-0096-4e70-8815-df6220126955", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5239d7f8-a3de-4a9b-9ee6-8f66ea0db58c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.115234375, - "RowIndex": 15, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08373965322971344, - "Height": 0.015400771982967854, - "Left": 0.7405832409858704, - "Top": 0.3242633044719696 - }, - "Polygon": [ - { - "X": 0.7405844926834106, - "Y": 0.3242633044719696 - }, - { - "X": 0.8243228793144226, - "Y": 0.32432684302330017 - }, - { - "X": 0.8243220448493958, - "Y": 0.339664101600647 - }, - { - "X": 0.7405832409858704, - "Y": 0.339600533246994 - } - ] - }, - "Id": "4f6f8d5a-d843-48f6-826b-3daac5fb0f28", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "dcf0ca17-f8f0-4666-811e-1ae63324e452" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.1875, - "RowIndex": 15, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230425626039505, - "Height": 0.015392118133604527, - "Left": 0.8243220448493958, - "Top": 0.32432684302330017 - }, - "Polygon": [ - { - "X": 0.8243228793144226, - "Y": 0.32432684302330017 - }, - { - "X": 0.8966262936592102, - "Y": 0.3243817090988159 - }, - { - "X": 0.8966257572174072, - "Y": 0.3397189676761627 - }, - { - "X": 0.8243220448493958, - "Y": 0.339664101600647 - } - ] - }, - "Id": "9c431eef-bf2c-40ab-9e14-40f5e5caa0af", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "015e9831-2fde-4e6a-8cce-de530f746c9f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.212890625, - "RowIndex": 16, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721723437309265, - "Height": 0.015438204631209373, - "Left": 0.10150636732578278, - "Top": 0.3391154706478119 - }, - "Polygon": [ - { - "X": 0.10151053965091705, - "Y": 0.3391154706478119 - }, - { - "X": 0.6736786961555481, - "Y": 0.3395497500896454 - }, - { - "X": 0.6736772060394287, - "Y": 0.3545536696910858 - }, - { - "X": 0.10150636732578278, - "Y": 0.354119211435318 - } - ] - }, - "Id": "4f2ecff8-a2cd-4e2d-b3cd-6ba978f2ee9c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "9c7953db-7703-4c6f-87c6-794b58c919a0", - "158dd5b0-7b65-4376-bf4e-ba43f49e189d", - "898144fa-3f29-4eea-a4fe-19a91a3c1012" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 81.25, - "RowIndex": 16, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690604984760284, - "Height": 0.015054716728627682, - "Left": 0.6736772060394287, - "Top": 0.3395497500896454 - }, - "Polygon": [ - { - "X": 0.6736786961555481, - "Y": 0.3395497500896454 - }, - { - "X": 0.7405832409858704, - "Y": 0.339600533246994 - }, - { - "X": 0.7405819892883301, - "Y": 0.35460445284843445 - }, - { - "X": 0.6736772060394287, - "Y": 0.3545536696910858 - } - ] - }, - "Id": "2dd6ec28-f0a5-4b35-9175-a66cc371767b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "0a8e1ec1-5fbc-4098-9eb8-d398d03b1c9a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.3828125, - "RowIndex": 16, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374002575874329, - "Height": 0.015067518688738346, - "Left": 0.7405819892883301, - "Top": 0.339600533246994 - }, - "Polygon": [ - { - "X": 0.7405832409858704, - "Y": 0.339600533246994 - }, - { - "X": 0.8243220448493958, - "Y": 0.339664101600647 - }, - { - "X": 0.8243212103843689, - "Y": 0.3546680510044098 - }, - { - "X": 0.7405819892883301, - "Y": 0.35460445284843445 - } - ] - }, - "Id": "0c08847b-760d-459c-aaee-2225714edae7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "57193e04-9f90-4ff1-8e91-0f412218a32c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.455078125, - "RowIndex": 16, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230457663536072, - "Height": 0.015058860182762146, - "Left": 0.8243212103843689, - "Top": 0.339664101600647 - }, - "Polygon": [ - { - "X": 0.8243220448493958, - "Y": 0.339664101600647 - }, - { - "X": 0.8966257572174072, - "Y": 0.3397189676761627 - }, - { - "X": 0.8966252207756042, - "Y": 0.3547229468822479 - }, - { - "X": 0.8243212103843689, - "Y": 0.3546680510044098 - } - ] - }, - "Id": "715fae31-7645-4d26-b134-b34480f5721a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "47302927-9335-457c-8985-bad2b7d21c8c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.140625, - "RowIndex": 17, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721749663352966, - "Height": 0.015438509173691273, - "Left": 0.1015021950006485, - "Top": 0.354119211435318 - }, - "Polygon": [ - { - "X": 0.10150636732578278, - "Y": 0.354119211435318 - }, - { - "X": 0.6736772060394287, - "Y": 0.3545536696910858 - }, - { - "X": 0.6736756563186646, - "Y": 0.3695577085018158 - }, - { - "X": 0.1015021950006485, - "Y": 0.36912310123443604 - } - ] - }, - "Id": "45b166ed-bccc-4e51-9954-1a8945d219b1", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ca4ddcda-4777-4161-9d01-878c4928f2ca", - "0730225a-2d2c-413e-9daf-d87189cf3a0a", - "b839432e-3782-4cb8-8247-f30a2cb346a4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 82.080078125, - "RowIndex": 17, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690635532140732, - "Height": 0.015054874122142792, - "Left": 0.6736756563186646, - "Top": 0.3545536696910858 - }, - "Polygon": [ - { - "X": 0.6736772060394287, - "Y": 0.3545536696910858 - }, - { - "X": 0.7405819892883301, - "Y": 0.35460445284843445 - }, - { - "X": 0.7405807971954346, - "Y": 0.3696085214614868 - }, - { - "X": 0.6736756563186646, - "Y": 0.3695577085018158 - } - ] - }, - "Id": "955b4edb-e987-4367-976e-11555d36bb35", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.26171875, - "RowIndex": 17, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374040573835373, - "Height": 0.015067681670188904, - "Left": 0.7405807971954346, - "Top": 0.35460445284843445 - }, - "Polygon": [ - { - "X": 0.7405819892883301, - "Y": 0.35460445284843445 - }, - { - "X": 0.8243212103843689, - "Y": 0.3546680510044098 - }, - { - "X": 0.8243203163146973, - "Y": 0.36967214941978455 - }, - { - "X": 0.7405807971954346, - "Y": 0.3696085214614868 - } - ] - }, - "Id": "40a559f5-9fdb-4186-af58-b8b06eafd489", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f6b033ff-bce2-4a73-9914-f0b49ecc759b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.333984375, - "RowIndex": 17, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230490446090698, - "Height": 0.015059019438922405, - "Left": 0.8243203163146973, - "Top": 0.3546680510044098 - }, - "Polygon": [ - { - "X": 0.8243212103843689, - "Y": 0.3546680510044098 - }, - { - "X": 0.8966252207756042, - "Y": 0.3547229468822479 - }, - { - "X": 0.896624743938446, - "Y": 0.36972707509994507 - }, - { - "X": 0.8243203163146973, - "Y": 0.36967214941978455 - } - ] - }, - "Id": "365d055f-25fa-45b7-a8ee-ead775ed78d7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4e7b738d-2770-403d-9d32-b63710e35b2d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.45703125, - "RowIndex": 18, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721776485443115, - "Height": 0.015438814647495747, - "Left": 0.10149801522493362, - "Top": 0.36912310123443604 - }, - "Polygon": [ - { - "X": 0.1015021950006485, - "Y": 0.36912310123443604 - }, - { - "X": 0.6736756563186646, - "Y": 0.3695577085018158 - }, - { - "X": 0.6736741065979004, - "Y": 0.3845618963241577 - }, - { - "X": 0.10149801522493362, - "Y": 0.38412711024284363 - } - ] - }, - "Id": "a7dd2978-66ca-452f-acfd-3315307e98c5", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "bd9c7bda-e753-42fb-bbdd-196bc9b0b15e", - "34cbe5bf-2ce7-4d5c-8ca6-3a7f15d51d4d", - "820860ad-7319-4bda-ac2b-51a02530e437" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 81.494140625, - "RowIndex": 18, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690666824579239, - "Height": 0.015055032446980476, - "Left": 0.6736741065979004, - "Top": 0.3695577085018158 - }, - "Polygon": [ - { - "X": 0.6736756563186646, - "Y": 0.3695577085018158 - }, - { - "X": 0.7405807971954346, - "Y": 0.3696085214614868 - }, - { - "X": 0.7405795454978943, - "Y": 0.3846127390861511 - }, - { - "X": 0.6736741065979004, - "Y": 0.3845618963241577 - } - ] - }, - "Id": "35eac3e7-5024-4c80-8717-df881fd72231", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2aaf0c84-72b9-4cd5-b606-47045271d989" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.626953125, - "RowIndex": 18, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374079316854477, - "Height": 0.015067843720316887, - "Left": 0.7405795454978943, - "Top": 0.3696085214614868 - }, - "Polygon": [ - { - "X": 0.7405807971954346, - "Y": 0.3696085214614868 - }, - { - "X": 0.8243203163146973, - "Y": 0.36967214941978455 - }, - { - "X": 0.8243194818496704, - "Y": 0.38467636704444885 - }, - { - "X": 0.7405795454978943, - "Y": 0.3846127390861511 - } - ] - }, - "Id": "65b23a4e-f595-406f-ac56-149079ca893e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c260205e-04ad-452e-8a16-671e6d1ad1ff" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.69921875, - "RowIndex": 18, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230523973703384, - "Height": 0.015059178695082664, - "Left": 0.8243194818496704, - "Top": 0.36967214941978455 - }, - "Polygon": [ - { - "X": 0.8243203163146973, - "Y": 0.36967214941978455 - }, - { - "X": 0.896624743938446, - "Y": 0.36972707509994507 - }, - { - "X": 0.8966242074966431, - "Y": 0.38473132252693176 - }, - { - "X": 0.8243194818496704, - "Y": 0.38467636704444885 - } - ] - }, - "Id": "cc101c0b-920a-4f88-9b31-28400c4679d7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5b3f355d-0134-4b63-aab8-d4266128192d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.23828125, - "RowIndex": 19, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721803307533264, - "Height": 0.01577255129814148, - "Left": 0.10149375349283218, - "Top": 0.38412711024284363 - }, - "Polygon": [ - { - "X": 0.10149801522493362, - "Y": 0.38412711024284363 - }, - { - "X": 0.6736741065979004, - "Y": 0.3845618963241577 - }, - { - "X": 0.6736725568771362, - "Y": 0.3998996615409851 - }, - { - "X": 0.10149375349283218, - "Y": 0.3994646966457367 - } - ] - }, - "Id": "3e90e3f1-fac5-43b9-996c-34fba7ce9836", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ad1eb377-acd1-43f1-947e-584623fc5d57", - "faf9572c-0319-4f64-a74b-b267ec860087", - "28cc0539-6886-47d0-9d59-dbf0641a0352" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 82.12890625, - "RowIndex": 19, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690701097249985, - "Height": 0.015388621017336845, - "Left": 0.6736725568771362, - "Top": 0.3845618963241577 - }, - "Polygon": [ - { - "X": 0.6736741065979004, - "Y": 0.3845618963241577 - }, - { - "X": 0.7405795454978943, - "Y": 0.3846127390861511 - }, - { - "X": 0.740578293800354, - "Y": 0.3999505341053009 - }, - { - "X": 0.6736725568771362, - "Y": 0.3998996615409851 - } - ] - }, - "Id": "da5da43f-25f6-4c49-98b2-cc50454e1935", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "828fff47-d2dc-42c8-850e-e030d61a3e85" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.359375, - "RowIndex": 19, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0837412104010582, - "Height": 0.015401438809931278, - "Left": 0.740578293800354, - "Top": 0.3846127390861511 - }, - "Polygon": [ - { - "X": 0.7405795454978943, - "Y": 0.3846127390861511 - }, - { - "X": 0.8243194818496704, - "Y": 0.38467636704444885 - }, - { - "X": 0.8243186473846436, - "Y": 0.400014191865921 - }, - { - "X": 0.740578293800354, - "Y": 0.3999505341053009 - } - ] - }, - "Id": "3bb781ad-dfcd-4679-a567-7786da66498d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4318c44c-07dc-460b-b1f5-4eeba275a8ee" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.431640625, - "RowIndex": 19, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0723055899143219, - "Height": 0.015392770990729332, - "Left": 0.8243186473846436, - "Top": 0.38467636704444885 - }, - "Polygon": [ - { - "X": 0.8243194818496704, - "Y": 0.38467636704444885 - }, - { - "X": 0.8966242074966431, - "Y": 0.38473132252693176 - }, - { - "X": 0.8966236710548401, - "Y": 0.40006914734840393 - }, - { - "X": 0.8243186473846436, - "Y": 0.400014191865921 - } - ] - }, - "Id": "c388c3ea-bd9f-44a5-878a-1344488cdd23", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "666f4096-6409-4f87-8741-11b5f17ff464" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.23828125, - "RowIndex": 20, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.572182834148407, - "Height": 0.01510599721223116, - "Left": 0.10148967057466507, - "Top": 0.3994646966457367 - }, - "Polygon": [ - { - "X": 0.10149375349283218, - "Y": 0.3994646966457367 - }, - { - "X": 0.6736725568771362, - "Y": 0.3998996615409851 - }, - { - "X": 0.6736710071563721, - "Y": 0.414570689201355 - }, - { - "X": 0.10148967057466507, - "Y": 0.41413557529449463 - } - ] - }, - "Id": "a473ce24-7049-4995-a8c1-6f409433b71b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f653c681-c9f7-40f3-85eb-e80683ad324d", - "74879f6e-6ffb-4f80-8db9-708aa77f7615", - "9a7a344a-d4c8-4a65-a2cb-ec7e12c32e47", - "a407ae9d-79e4-4c00-947f-2b62902f608b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 82.12890625, - "RowIndex": 20, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690725684165955, - "Height": 0.014721916057169437, - "Left": 0.6736710071563721, - "Top": 0.3998996615409851 - }, - "Polygon": [ - { - "X": 0.6736725568771362, - "Y": 0.3998996615409851 - }, - { - "X": 0.740578293800354, - "Y": 0.3999505341053009 - }, - { - "X": 0.7405771017074585, - "Y": 0.41462159156799316 - }, - { - "X": 0.6736710071563721, - "Y": 0.414570689201355 - } - ] - }, - "Id": "02ce9973-d5f0-4f58-9ac1-a6ce83bcdd2e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8a729cb7-7191-441e-8736-c5e6e4485957" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.359375, - "RowIndex": 20, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374154567718506, - "Height": 0.014734737575054169, - "Left": 0.7405771017074585, - "Top": 0.3999505341053009 - }, - "Polygon": [ - { - "X": 0.740578293800354, - "Y": 0.3999505341053009 - }, - { - "X": 0.8243186473846436, - "Y": 0.400014191865921 - }, - { - "X": 0.8243178129196167, - "Y": 0.41468527913093567 - }, - { - "X": 0.7405771017074585, - "Y": 0.41462159156799316 - } - ] - }, - "Id": "b4baad36-18e3-4a33-9e7b-235eb08419b1", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8a202c5f-c8c4-4c93-afe5-2eb0bd7525d8" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.431640625, - "RowIndex": 20, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230589538812637, - "Height": 0.01472606509923935, - "Left": 0.8243178129196167, - "Top": 0.400014191865921 - }, - "Polygon": [ - { - "X": 0.8243186473846436, - "Y": 0.400014191865921 - }, - { - "X": 0.8966236710548401, - "Y": 0.40006914734840393 - }, - { - "X": 0.8966231942176819, - "Y": 0.41474026441574097 - }, - { - "X": 0.8243178129196167, - "Y": 0.41468527913093567 - } - ] - }, - "Id": "70bb839a-33cf-467f-90d3-906e686e5992", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "eb0fd689-c6ce-4604-a593-b638d03dd286" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.845703125, - "RowIndex": 21, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721856951713562, - "Height": 0.016106603667140007, - "Left": 0.10148531198501587, - "Top": 0.41413557529449463 - }, - "Polygon": [ - { - "X": 0.10148967057466507, - "Y": 0.41413557529449463 - }, - { - "X": 0.6736710071563721, - "Y": 0.414570689201355 - }, - { - "X": 0.6736693978309631, - "Y": 0.4302421808242798 - }, - { - "X": 0.10148531198501587, - "Y": 0.4298068881034851 - } - ] - }, - "Id": "36775314-fd32-49af-910e-9630f5acde6a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "1a26bc22-f283-41a2-87b0-e6c728b54ad0", - "c5861414-fc0b-4218-8a7e-263575df065f" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 80.078125, - "RowIndex": 21, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690765917301178, - "Height": 0.015722380951046944, - "Left": 0.6736693978309631, - "Top": 0.414570689201355 - }, - "Polygon": [ - { - "X": 0.6736710071563721, - "Y": 0.414570689201355 - }, - { - "X": 0.7405771017074585, - "Y": 0.41462159156799316 - }, - { - "X": 0.7405757904052734, - "Y": 0.43029308319091797 - }, - { - "X": 0.6736693978309631, - "Y": 0.4302421808242798 - } - ] - }, - "Id": "71395337-7818-4003-8630-1478a3580191", - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.015625, - "RowIndex": 21, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374200761318207, - "Height": 0.015735208988189697, - "Left": 0.7405757904052734, - "Top": 0.41462159156799316 - }, - "Polygon": [ - { - "X": 0.7405771017074585, - "Y": 0.41462159156799316 - }, - { - "X": 0.8243178129196167, - "Y": 0.41468527913093567 - }, - { - "X": 0.8243169188499451, - "Y": 0.43035680055618286 - }, - { - "X": 0.7405757904052734, - "Y": 0.43029308319091797 - } - ] - }, - "Id": "bc795ea2-8c62-4be1-aa6e-40ac3bb25937", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "205a1fea-d9a0-461d-a911-f483120cb4be" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.087890625, - "RowIndex": 21, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230627536773682, - "Height": 0.01572653464972973, - "Left": 0.8243169188499451, - "Top": 0.41468527913093567 - }, - "Polygon": [ - { - "X": 0.8243178129196167, - "Y": 0.41468527913093567 - }, - { - "X": 0.8966231942176819, - "Y": 0.41474026441574097 - }, - { - "X": 0.8966226577758789, - "Y": 0.43041178584098816 - }, - { - "X": 0.8243169188499451, - "Y": 0.43035680055618286 - } - ] - }, - "Id": "6b8420bc-960d-4a5a-92c8-1df2d6275a89", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a29811b9-ba1f-4e0d-b391-67ad13228ac1" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 72.705078125, - "RowIndex": 22, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5723755955696106, - "Height": 0.03411295637488365, - "Left": 0.10129384696483612, - "Top": 0.42980673909187317 - }, - "Polygon": [ - { - "X": 0.10130321234464645, - "Y": 0.42980673909187317 - }, - { - "X": 0.6736693978309631, - "Y": 0.4302421808242798 - }, - { - "X": 0.6736659407615662, - "Y": 0.4639196991920471 - }, - { - "X": 0.10129384696483612, - "Y": 0.46348389983177185 - } - ] - }, - "Id": "ca0f2cc4-e98a-4773-b555-7bf31b03ffec", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "3f86efde-95f0-4566-be30-79df8d288099", - "bf45fd4d-7fd3-4b2e-a1f5-128125cc1d52", - "6bcd29e1-06c8-4e73-901c-4b9c7df24072" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 72.705078125, - "RowIndex": 22, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690982729196548, - "Height": 0.0337284654378891, - "Left": 0.6736659407615662, - "Top": 0.4302421808242798 - }, - "Polygon": [ - { - "X": 0.6736693978309631, - "Y": 0.4302421808242798 - }, - { - "X": 0.7405757904052734, - "Y": 0.43029308319091797 - }, - { - "X": 0.7405730485916138, - "Y": 0.4639706611633301 - }, - { - "X": 0.6736659407615662, - "Y": 0.4639196991920471 - } - ] - }, - "Id": "36f392a6-b68a-4a38-96ff-63f9c5633456", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 72.705078125, - "RowIndex": 22, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374388515949249, - "Height": 0.03374132886528969, - "Left": 0.7405730485916138, - "Top": 0.43029308319091797 - }, - "Polygon": [ - { - "X": 0.7405757904052734, - "Y": 0.43029308319091797 - }, - { - "X": 0.8243169188499451, - "Y": 0.43035680055618286 - }, - { - "X": 0.8243150115013123, - "Y": 0.46403440833091736 - }, - { - "X": 0.7405730485916138, - "Y": 0.4639706611633301 - } - ] - }, - "Id": "68570ef2-725f-433d-8916-53a33ed68985", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 72.705078125, - "RowIndex": 22, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07252020388841629, - "Height": 0.033732835203409195, - "Left": 0.8243150115013123, - "Top": 0.43035680055618286 - }, - "Polygon": [ - { - "X": 0.8243169188499451, - "Y": 0.43035680055618286 - }, - { - "X": 0.896835207939148, - "Y": 0.4304119646549225 - }, - { - "X": 0.8968340754508972, - "Y": 0.46408963203430176 - }, - { - "X": 0.8243150115013123, - "Y": 0.46403440833091736 - } - ] - }, - "Id": "bacfc801-b233-4663-8724-ace273228753", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 86.083984375, - "RowIndex": 23, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721942186355591, - "Height": 0.015440733171999454, - "Left": 0.10147177428007126, - "Top": 0.4634840190410614 - }, - "Polygon": [ - { - "X": 0.10147594660520554, - "Y": 0.4634840190410614 - }, - { - "X": 0.6736659407615662, - "Y": 0.4639196991920471 - }, - { - "X": 0.6736644506454468, - "Y": 0.4789247512817383 - }, - { - "X": 0.10147177428007126, - "Y": 0.4784889221191406 - } - ] - }, - "Id": "b993f8d5-d6d9-467f-98b8-187852679ff4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "42d314b6-5cf9-4113-89d2-f8192d0601f9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 75.048828125, - "RowIndex": 23, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690860539674759, - "Height": 0.015056023374199867, - "Left": 0.6736644506454468, - "Top": 0.4639196991920471 - }, - "Polygon": [ - { - "X": 0.6736659407615662, - "Y": 0.4639196991920471 - }, - { - "X": 0.7405730485916138, - "Y": 0.4639706611633301 - }, - { - "X": 0.7405717968940735, - "Y": 0.47897571325302124 - }, - { - "X": 0.6736644506454468, - "Y": 0.4789247512817383 - } - ] - }, - "Id": "f9edd6fd-bfb3-4977-bdeb-cea5b6127ae6", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 85.302734375, - "RowIndex": 23, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374322205781937, - "Height": 0.015068866312503815, - "Left": 0.7405717968940735, - "Top": 0.4639706611633301 - }, - "Polygon": [ - { - "X": 0.7405730485916138, - "Y": 0.4639706611633301 - }, - { - "X": 0.8243150115013123, - "Y": 0.46403440833091736 - }, - { - "X": 0.8243141770362854, - "Y": 0.4790395200252533 - }, - { - "X": 0.7405717968940735, - "Y": 0.47897571325302124 - } - ] - }, - "Id": "80e7b5e5-9694-45d1-9b2e-f58eee1797eb", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c0721941-7269-463f-b142-e1f70f50865d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 84.423828125, - "RowIndex": 23, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230733335018158, - "Height": 0.01506018079817295, - "Left": 0.8243141770362854, - "Top": 0.46403440833091736 - }, - "Polygon": [ - { - "X": 0.8243150115013123, - "Y": 0.46403440833091736 - }, - { - "X": 0.8966215252876282, - "Y": 0.46408945322036743 - }, - { - "X": 0.8966209888458252, - "Y": 0.47909459471702576 - }, - { - "X": 0.8243141770362854, - "Y": 0.4790395200252533 - } - ] - }, - "Id": "def42b70-d991-48e0-bda3-6d457319e8ff", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "65a5e57d-49b8-4d67-88ba-70d88975206f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.408203125, - "RowIndex": 24, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.572196900844574, - "Height": 0.01577448844909668, - "Left": 0.10146750509738922, - "Top": 0.4784889221191406 - }, - "Polygon": [ - { - "X": 0.10147177428007126, - "Y": 0.4784889221191406 - }, - { - "X": 0.6736644506454468, - "Y": 0.4789247512817383 - }, - { - "X": 0.6736628413200378, - "Y": 0.4942634105682373 - }, - { - "X": 0.10146750509738922, - "Y": 0.4938274025917053 - } - ] - }, - "Id": "08d8f2e2-507a-4e99-a2a4-58ac96a31477", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f1014553-1de7-4996-8c92-6a713184c199", - "49466e3b-d26b-4d32-94bc-4dd54f754bdd", - "5ada30c7-7a76-48f9-80ed-261e9049ec2a", - "63d71e55-b3c7-40fa-b01b-85b1a1e1de60", - "8d1c9d2a-d017-4731-a405-df5c760219fd" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 81.4453125, - "RowIndex": 24, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690894812345505, - "Height": 0.015389632433652878, - "Left": 0.6736628413200378, - "Top": 0.4789247512817383 - }, - "Polygon": [ - { - "X": 0.6736644506454468, - "Y": 0.4789247512817383 - }, - { - "X": 0.7405717968940735, - "Y": 0.47897571325302124 - }, - { - "X": 0.7405705451965332, - "Y": 0.49431440234184265 - }, - { - "X": 0.6736628413200378, - "Y": 0.4942634105682373 - } - ] - }, - "Id": "8c80f637-859d-456e-80d7-21277b994cce", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.578125, - "RowIndex": 24, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0837436318397522, - "Height": 0.015402480028569698, - "Left": 0.7405705451965332, - "Top": 0.47897571325302124 - }, - "Polygon": [ - { - "X": 0.7405717968940735, - "Y": 0.47897571325302124 - }, - { - "X": 0.8243141770362854, - "Y": 0.4790395200252533 - }, - { - "X": 0.8243132829666138, - "Y": 0.4943782091140747 - }, - { - "X": 0.7405705451965332, - "Y": 0.49431440234184265 - } - ] - }, - "Id": "ac3e3cf9-0273-4c00-ba93-dd02ab52eecf", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "33468066-8bc0-4d71-80ab-4b3c9c5f5049" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.650390625, - "RowIndex": 24, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230768352746964, - "Height": 0.01539379172027111, - "Left": 0.8243132829666138, - "Top": 0.4790395200252533 - }, - "Polygon": [ - { - "X": 0.8243141770362854, - "Y": 0.4790395200252533 - }, - { - "X": 0.8966209888458252, - "Y": 0.47909459471702576 - }, - { - "X": 0.8966204524040222, - "Y": 0.49443331360816956 - }, - { - "X": 0.8243132829666138, - "Y": 0.4943782091140747 - } - ] - }, - "Id": "cdbf7bb6-1c80-4b98-a384-776401f403c6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "dbe389ad-0d4e-4ce0-94f7-12eb6b2c0c19" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.7734375, - "RowIndex": 25, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5721996426582336, - "Height": 0.0157748032361269, - "Left": 0.10146324336528778, - "Top": 0.4938274025917053 - }, - "Polygon": [ - { - "X": 0.10146750509738922, - "Y": 0.4938274025917053 - }, - { - "X": 0.6736628413200378, - "Y": 0.4942634105682373 - }, - { - "X": 0.6736612915992737, - "Y": 0.5096021890640259 - }, - { - "X": 0.10146324336528778, - "Y": 0.5091660022735596 - } - ] - }, - "Id": "64f5e05a-0028-4195-b011-c7fb4e5437a4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "afc3e6d7-6a4e-40ed-a8b9-a181ca4db8ec", - "f4d8e7e4-8414-4a72-ab74-c7c318b0b4af", - "b8ebfa6e-e190-46c1-a6a5-e207d1da20c9", - "862c1c64-1f2c-4b97-8e53-38826292e6c7", - "824444b3-f620-435b-8d8e-4d6a22877dd0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 80.908203125, - "RowIndex": 25, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690926104784012, - "Height": 0.01538979634642601, - "Left": 0.6736612915992737, - "Top": 0.4942634105682373 - }, - "Polygon": [ - { - "X": 0.6736628413200378, - "Y": 0.4942634105682373 - }, - { - "X": 0.7405705451965332, - "Y": 0.49431440234184265 - }, - { - "X": 0.7405692934989929, - "Y": 0.5096532106399536 - }, - { - "X": 0.6736612915992737, - "Y": 0.5096021890640259 - } - ] - }, - "Id": "e3d09038-8418-4299-a16b-0ce58a0cf634", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.943359375, - "RowIndex": 25, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374402672052383, - "Height": 0.015402649529278278, - "Left": 0.7405692934989929, - "Top": 0.49431440234184265 - }, - "Polygon": [ - { - "X": 0.7405705451965332, - "Y": 0.49431440234184265 - }, - { - "X": 0.8243132829666138, - "Y": 0.4943782091140747 - }, - { - "X": 0.8243124485015869, - "Y": 0.5097170472145081 - }, - { - "X": 0.7405692934989929, - "Y": 0.5096532106399536 - } - ] - }, - "Id": "df603860-9290-45b3-a9b5-926fb8347052", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "dbe06991-e0a8-4382-9ad0-0e1547df3ffc" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.015625, - "RowIndex": 25, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0723080262541771, - "Height": 0.015393957495689392, - "Left": 0.8243124485015869, - "Top": 0.4943782091140747 - }, - "Polygon": [ - { - "X": 0.8243132829666138, - "Y": 0.4943782091140747 - }, - { - "X": 0.8966204524040222, - "Y": 0.49443331360816956 - }, - { - "X": 0.896619975566864, - "Y": 0.5097721815109253 - }, - { - "X": 0.8243124485015869, - "Y": 0.5097170472145081 - } - ] - }, - "Id": "dc7f8879-d593-40ab-879c-4dca71a1e581", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5a1cc389-b5b6-4a60-b0d9-d95c8a1734bf" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.259765625, - "RowIndex": 26, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5722021460533142, - "Height": 0.015108205378055573, - "Left": 0.10145916044712067, - "Top": 0.5091660022735596 - }, - "Polygon": [ - { - "X": 0.10146324336528778, - "Y": 0.5091660022735596 - }, - { - "X": 0.6736612915992737, - "Y": 0.5096021890640259 - }, - { - "X": 0.6736598014831543, - "Y": 0.5242742300033569 - }, - { - "X": 0.10145916044712067, - "Y": 0.5238378643989563 - } - ] - }, - "Id": "c1e0283c-95dd-45c6-9da8-554a96296353", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "376206a9-51a2-40b4-ac34-46d8f1ef52c0", - "977b1f78-a646-4a56-9a48-69433408a91a" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 79.58984375, - "RowIndex": 26, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690950691699982, - "Height": 0.01472304668277502, - "Left": 0.6736598014831543, - "Top": 0.5096021890640259 - }, - "Polygon": [ - { - "X": 0.6736612915992737, - "Y": 0.5096021890640259 - }, - { - "X": 0.7405692934989929, - "Y": 0.5096532106399536 - }, - { - "X": 0.7405681014060974, - "Y": 0.5243252515792847 - }, - { - "X": 0.6736598014831543, - "Y": 0.5242742300033569 - } - ] - }, - "Id": "f7a1357e-e48d-40a8-b86c-4342f534e62a", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.4296875, - "RowIndex": 26, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0837443619966507, - "Height": 0.014735903590917587, - "Left": 0.7405681014060974, - "Top": 0.5096532106399536 - }, - "Polygon": [ - { - "X": 0.7405692934989929, - "Y": 0.5096532106399536 - }, - { - "X": 0.8243124485015869, - "Y": 0.5097170472145081 - }, - { - "X": 0.8243116140365601, - "Y": 0.5243890881538391 - }, - { - "X": 0.7405681014060974, - "Y": 0.5243252515792847 - } - ] - }, - "Id": "d1e0984e-ae2b-4b3f-9ded-b8d4377335f2", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "62230040-7572-4ae0-9832-d7175255976c" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 89.55078125, - "RowIndex": 26, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230833172798157, - "Height": 0.014727206900715828, - "Left": 0.8243116140365601, - "Top": 0.5097170472145081 - }, - "Polygon": [ - { - "X": 0.8243124485015869, - "Y": 0.5097170472145081 - }, - { - "X": 0.896619975566864, - "Y": 0.5097721815109253 - }, - { - "X": 0.896619439125061, - "Y": 0.5244442820549011 - }, - { - "X": 0.8243116140365601, - "Y": 0.5243890881538391 - } - ] - }, - "Id": "bfe3579b-706a-4b2e-ad03-f1a7dadb93e6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "20ee4928-f7a3-42a2-9ffd-2e06bb0a4b5a" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.9453125, - "RowIndex": 27, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5722048878669739, - "Height": 0.015775419771671295, - "Left": 0.10145489126443863, - "Top": 0.5238378643989563 - }, - "Polygon": [ - { - "X": 0.10145916044712067, - "Y": 0.5238378643989563 - }, - { - "X": 0.6736598014831543, - "Y": 0.5242742300033569 - }, - { - "X": 0.6736581921577454, - "Y": 0.5396133065223694 - }, - { - "X": 0.10145489126443863, - "Y": 0.5391767621040344 - } - ] - }, - "Id": "1e336e21-e03a-4bb5-9dc1-93608fdd7897", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b06259d1-a100-4e75-bd11-c42b623acd01" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 81.884765625, - "RowIndex": 27, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06690987944602966, - "Height": 0.015390117652714252, - "Left": 0.6736581921577454, - "Top": 0.5242742300033569 - }, - "Polygon": [ - { - "X": 0.6736598014831543, - "Y": 0.5242742300033569 - }, - { - "X": 0.7405681014060974, - "Y": 0.5243252515792847 - }, - { - "X": 0.7405668497085571, - "Y": 0.5396643280982971 - }, - { - "X": 0.6736581921577454, - "Y": 0.5396133065223694 - } - ] - }, - "Id": "4c8c1c9a-8a16-4e7e-a38e-c9210214f819", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "91b09e4a-675c-4e9e-b068-ee68b9e6efc5" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.115234375, - "RowIndex": 27, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374479413032532, - "Height": 0.015402981080114841, - "Left": 0.7405668497085571, - "Top": 0.5243252515792847 - }, - "Polygon": [ - { - "X": 0.7405681014060974, - "Y": 0.5243252515792847 - }, - { - "X": 0.8243116140365601, - "Y": 0.5243890881538391 - }, - { - "X": 0.8243107795715332, - "Y": 0.5397282242774963 - }, - { - "X": 0.7405668497085571, - "Y": 0.5396643280982971 - } - ] - }, - "Id": "11456565-052d-4276-8a72-58347786a958", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c7bc2c4f-4f97-4c1e-83d2-1bdb806057b5" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.138671875, - "RowIndex": 27, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230868935585022, - "Height": 0.015394282527267933, - "Left": 0.8243107795715332, - "Top": 0.5243890881538391 - }, - "Polygon": [ - { - "X": 0.8243116140365601, - "Y": 0.5243890881538391 - }, - { - "X": 0.896619439125061, - "Y": 0.5244442820549011 - }, - { - "X": 0.8966189026832581, - "Y": 0.5397834181785583 - }, - { - "X": 0.8243107795715332, - "Y": 0.5397282242774963 - } - ] - }, - "Id": "ae595b1b-0b2d-4c9d-b529-5b85561b35b1", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "590d401e-91c9-4da4-831d-6aefecbb3b63" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.724609375, - "RowIndex": 28, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.572207510471344, - "Height": 0.01544227171689272, - "Left": 0.10145071893930435, - "Top": 0.5391767621040344 - }, - "Polygon": [ - { - "X": 0.10145489126443863, - "Y": 0.5391767621040344 - }, - { - "X": 0.6736581921577454, - "Y": 0.5396133065223694 - }, - { - "X": 0.6736566424369812, - "Y": 0.5546190738677979 - }, - { - "X": 0.10145071893930435, - "Y": 0.5541824102401733 - } - ] - }, - "Id": "d31972de-418a-44a9-8b25-9db030b2358f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f984efec-848e-4181-be4c-87edc5af8bb9", - "36e5b07c-fbf2-4205-8911-5285ecf74975", - "77f9fd5f-1be2-4dd7-86b3-18e46ef323c6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 80.810546875, - "RowIndex": 28, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06691015511751175, - "Height": 0.015056818723678589, - "Left": 0.6736566424369812, - "Top": 0.5396133065223694 - }, - "Polygon": [ - { - "X": 0.6736581921577454, - "Y": 0.5396133065223694 - }, - { - "X": 0.7405668497085571, - "Y": 0.5396643280982971 - }, - { - "X": 0.7405655980110168, - "Y": 0.5546701550483704 - }, - { - "X": 0.6736566424369812, - "Y": 0.5546190738677979 - } - ] - }, - "Id": "3197ed31-10dc-4e39-a90e-f247fdbae39b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "cc66a3b1-efb9-41e9-9189-689e748f3f66" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.845703125, - "RowIndex": 28, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374516665935516, - "Height": 0.015069686807692051, - "Left": 0.7405655980110168, - "Top": 0.5396643280982971 - }, - "Polygon": [ - { - "X": 0.7405668497085571, - "Y": 0.5396643280982971 - }, - { - "X": 0.8243107795715332, - "Y": 0.5397282242774963 - }, - { - "X": 0.8243098855018616, - "Y": 0.5547340512275696 - }, - { - "X": 0.7405655980110168, - "Y": 0.5546701550483704 - } - ] - }, - "Id": "1c2caba4-f8a4-49b3-835a-bfd8bb5a248d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "92d597d4-bc82-46c0-b258-2f361b146533" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.91796875, - "RowIndex": 28, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230901718139648, - "Height": 0.01506098359823227, - "Left": 0.8243098855018616, - "Top": 0.5397282242774963 - }, - "Polygon": [ - { - "X": 0.8243107795715332, - "Y": 0.5397282242774963 - }, - { - "X": 0.8966189026832581, - "Y": 0.5397834181785583 - }, - { - "X": 0.8966184258460999, - "Y": 0.5547892451286316 - }, - { - "X": 0.8243098855018616, - "Y": 0.5547340512275696 - } - ] - }, - "Id": "53b599ee-ed87-4108-b942-8b6c86068907", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "10c4d30a-4972-4483-9eb2-9f77a92179d9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.115234375, - "RowIndex": 29, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5722101926803589, - "Height": 0.015776043757796288, - "Left": 0.10144645720720291, - "Top": 0.5541824102401733 - }, - "Polygon": [ - { - "X": 0.10145071893930435, - "Y": 0.5541824102401733 - }, - { - "X": 0.6736566424369812, - "Y": 0.5546190738677979 - }, - { - "X": 0.673655092716217, - "Y": 0.5699584484100342 - }, - { - "X": 0.10144645720720291, - "Y": 0.5695215463638306 - } - ] - }, - "Id": "f7a38cb0-e9e8-4b0a-8e90-f40d2fc16f94", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "35833a5b-aa13-42e6-8440-8c9d27e3f832", - "078c6ed2-8d8c-4355-a038-90db08ab09a0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 81.201171875, - "RowIndex": 29, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06691049784421921, - "Height": 0.015390443615615368, - "Left": 0.673655092716217, - "Top": 0.5546190738677979 - }, - "Polygon": [ - { - "X": 0.6736566424369812, - "Y": 0.5546190738677979 - }, - { - "X": 0.7405655980110168, - "Y": 0.5546701550483704 - }, - { - "X": 0.7405643463134766, - "Y": 0.5700095295906067 - }, - { - "X": 0.673655092716217, - "Y": 0.5699584484100342 - } - ] - }, - "Id": "cff811c4-97ee-47e7-acc5-3bff834e3df1", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "284c79a4-ff7e-4e54-a67c-57380293789f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.28515625, - "RowIndex": 29, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.083745576441288, - "Height": 0.015403316356241703, - "Left": 0.7405643463134766, - "Top": 0.5546701550483704 - }, - "Polygon": [ - { - "X": 0.7405655980110168, - "Y": 0.5546701550483704 - }, - { - "X": 0.8243098855018616, - "Y": 0.5547340512275696 - }, - { - "X": 0.8243090510368347, - "Y": 0.5700734257698059 - }, - { - "X": 0.7405643463134766, - "Y": 0.5700095295906067 - } - ] - }, - "Id": "6a900b5c-7f77-482e-b7f9-2e74d3ef0cae", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4dbc7648-6a9e-40da-98fd-03447574427a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.357421875, - "RowIndex": 29, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07230936735868454, - "Height": 0.015394610352814198, - "Left": 0.8243090510368347, - "Top": 0.5547340512275696 - }, - "Polygon": [ - { - "X": 0.8243098855018616, - "Y": 0.5547340512275696 - }, - { - "X": 0.8966184258460999, - "Y": 0.5547892451286316 - }, - { - "X": 0.8966178894042969, - "Y": 0.5701286196708679 - }, - { - "X": 0.8243090510368347, - "Y": 0.5700734257698059 - } - ] - }, - "Id": "fe3b277b-a6bd-408e-abd4-c54e09583367", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "da4cdcf3-97de-4d53-9e0b-23fa95cdc22a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.48046875, - "RowIndex": 30, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5722128748893738, - "Height": 0.015776358544826508, - "Left": 0.10144218802452087, - "Top": 0.5695215463638306 - }, - "Polygon": [ - { - "X": 0.10144645720720291, - "Y": 0.5695215463638306 - }, - { - "X": 0.673655092716217, - "Y": 0.5699584484100342 - }, - { - "X": 0.6736535429954529, - "Y": 0.5852979421615601 - }, - { - "X": 0.10144218802452087, - "Y": 0.5848609209060669 - } - ] - }, - "Id": "bdfc22bd-15ab-4fe0-a1ce-93bfb7683b07", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "74ec8eda-a769-46a7-8616-36045aa3faa6", - "596924ce-b2aa-4320-8f57-fad2904e8d6f", - "f6b43a2f-8c4a-4c55-aa77-456a1c873c9f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 80.615234375, - "RowIndex": 30, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06691081821918488, - "Height": 0.0153906075283885, - "Left": 0.6736535429954529, - "Top": 0.5699584484100342 - }, - "Polygon": [ - { - "X": 0.673655092716217, - "Y": 0.5699584484100342 - }, - { - "X": 0.7405643463134766, - "Y": 0.5700095295906067 - }, - { - "X": 0.7405630946159363, - "Y": 0.5853490233421326 - }, - { - "X": 0.6736535429954529, - "Y": 0.5852979421615601 - } - ] - }, - "Id": "aff45777-f65c-4ea6-8024-16160190dda5", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "18e8346d-7750-4b8b-a1a8-ac9a435c794f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.650390625, - "RowIndex": 30, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374597132205963, - "Height": 0.015403485856950283, - "Left": 0.7405630946159363, - "Top": 0.5700095295906067 - }, - "Polygon": [ - { - "X": 0.7405643463134766, - "Y": 0.5700095295906067 - }, - { - "X": 0.8243090510368347, - "Y": 0.5700734257698059 - }, - { - "X": 0.8243081569671631, - "Y": 0.5854129791259766 - }, - { - "X": 0.7405630946159363, - "Y": 0.5853490233421326 - } - ] - }, - "Id": "a07df9f0-49d9-4742-a976-5f416cfb20aa", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c4022190-b42f-447e-bac4-2d6604c2e3dd" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.72265625, - "RowIndex": 30, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0723097026348114, - "Height": 0.015394776128232479, - "Left": 0.8243081569671631, - "Top": 0.5700734257698059 - }, - "Polygon": [ - { - "X": 0.8243090510368347, - "Y": 0.5700734257698059 - }, - { - "X": 0.8966178894042969, - "Y": 0.5701286196708679 - }, - { - "X": 0.8966173529624939, - "Y": 0.5854682326316833 - }, - { - "X": 0.8243081569671631, - "Y": 0.5854129791259766 - } - ] - }, - "Id": "afabf728-bd73-4729-a3e4-c88f29c1521d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b54203e7-39f5-484a-aea4-0631c1cb2776" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.384765625, - "RowIndex": 31, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5722154378890991, - "Height": 0.015109729021787643, - "Left": 0.10143810510635376, - "Top": 0.5848609209060669 - }, - "Polygon": [ - { - "X": 0.10144218802452087, - "Y": 0.5848609209060669 - }, - { - "X": 0.6736535429954529, - "Y": 0.5852979421615601 - }, - { - "X": 0.6736519932746887, - "Y": 0.5999706387519836 - }, - { - "X": 0.10143810510635376, - "Y": 0.5995334386825562 - } - ] - }, - "Id": "c8c716f4-975a-4b65-94b1-a67bed8461c7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "877e7291-5f8e-4e90-9546-3129e985cd35", - "bc59d6f9-eda8-4211-80f3-01e0369d0443", - "26fe6a59-e6cd-46d5-be73-7ae21012bee9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 82.275390625, - "RowIndex": 31, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06691106408834457, - "Height": 0.014723827131092548, - "Left": 0.6736519932746887, - "Top": 0.5852979421615601 - }, - "Polygon": [ - { - "X": 0.6736535429954529, - "Y": 0.5852979421615601 - }, - { - "X": 0.7405630946159363, - "Y": 0.5853490233421326 - }, - { - "X": 0.740561842918396, - "Y": 0.6000217795372009 - }, - { - "X": 0.6736519932746887, - "Y": 0.5999706387519836 - } - ] - }, - "Id": "62b38e16-5512-4a27-8374-1eac0827caa7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4ac74d84-a5d6-47d1-a5c8-aeb0186bf082" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.505859375, - "RowIndex": 31, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374631404876709, - "Height": 0.014736708253622055, - "Left": 0.740561842918396, - "Top": 0.5853490233421326 - }, - "Polygon": [ - { - "X": 0.7405630946159363, - "Y": 0.5853490233421326 - }, - { - "X": 0.8243081569671631, - "Y": 0.5854129791259766 - }, - { - "X": 0.824307382106781, - "Y": 0.6000857353210449 - }, - { - "X": 0.740561842918396, - "Y": 0.6000217795372009 - } - ] - }, - "Id": "7c94045e-50a0-405a-b40d-2cbc81abf648", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c3870537-35ed-4087-bb59-6b36929c6564" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.578125, - "RowIndex": 31, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07231000810861588, - "Height": 0.014727994799613953, - "Left": 0.824307382106781, - "Top": 0.5854129791259766 - }, - "Polygon": [ - { - "X": 0.8243081569671631, - "Y": 0.5854129791259766 - }, - { - "X": 0.8966173529624939, - "Y": 0.5854682326316833 - }, - { - "X": 0.8966168761253357, - "Y": 0.6001409888267517 - }, - { - "X": 0.824307382106781, - "Y": 0.6000857353210449 - } - ] - }, - "Id": "91b10338-3060-4a56-9081-36445f6a3c37", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "abff8e37-1f2e-4bde-a671-8678a838addd" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 89.94140625, - "RowIndex": 32, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5722181797027588, - "Height": 0.015776975080370903, - "Left": 0.10143384337425232, - "Top": 0.5995334386825562 - }, - "Polygon": [ - { - "X": 0.10143810510635376, - "Y": 0.5995334386825562 - }, - { - "X": 0.6736519932746887, - "Y": 0.5999706387519836 - }, - { - "X": 0.6736504435539246, - "Y": 0.6153104305267334 - }, - { - "X": 0.10143384337425232, - "Y": 0.6148730516433716 - } - ] - }, - "Id": "5d662167-b647-4a98-b5ac-6ba8f8b5894d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c6981826-12bc-4d6f-b4ae-3a5aa0e8cfcb", - "fbf2c23a-72b1-4191-b6d3-1f87436a82c8" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 78.41796875, - "RowIndex": 32, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06691142916679382, - "Height": 0.015390928834676743, - "Left": 0.6736504435539246, - "Top": 0.5999706387519836 - }, - "Polygon": [ - { - "X": 0.6736519932746887, - "Y": 0.5999706387519836 - }, - { - "X": 0.740561842918396, - "Y": 0.6000217795372009 - }, - { - "X": 0.7405605912208557, - "Y": 0.6153615713119507 - }, - { - "X": 0.6736504435539246, - "Y": 0.6153104305267334 - } - ] - }, - "Id": "c264288f-549f-4fb3-9822-ad57aa81a94c", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 89.111328125, - "RowIndex": 32, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374674618244171, - "Height": 0.015403817407786846, - "Left": 0.7405605912208557, - "Top": 0.6000217795372009 - }, - "Polygon": [ - { - "X": 0.740561842918396, - "Y": 0.6000217795372009 - }, - { - "X": 0.824307382106781, - "Y": 0.6000857353210449 - }, - { - "X": 0.8243064880371094, - "Y": 0.6154255867004395 - }, - { - "X": 0.7405605912208557, - "Y": 0.6153615713119507 - } - ] - }, - "Id": "9bb4ae60-a582-4fd7-afbc-5d78873d6697", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5704fa56-820d-49fb-b058-e1416acd5228" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.232421875, - "RowIndex": 32, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07231037318706512, - "Height": 0.01539510115981102, - "Left": 0.8243064880371094, - "Top": 0.6000857353210449 - }, - "Polygon": [ - { - "X": 0.824307382106781, - "Y": 0.6000857353210449 - }, - { - "X": 0.8966168761253357, - "Y": 0.6001409888267517 - }, - { - "X": 0.8966163396835327, - "Y": 0.6154808402061462 - }, - { - "X": 0.8243064880371094, - "Y": 0.6154255867004395 - } - ] - }, - "Id": "54caf1b2-8a3f-4e53-b5fe-21efeea075e0", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a5d4d6b7-87e5-4c8c-ac07-1f163b245d46" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.82421875, - "RowIndex": 33, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5722208619117737, - "Height": 0.015777289867401123, - "Left": 0.10142957419157028, - "Top": 0.6148730516433716 - }, - "Polygon": [ - { - "X": 0.10143384337425232, - "Y": 0.6148730516433716 - }, - { - "X": 0.6736504435539246, - "Y": 0.6153104305267334 - }, - { - "X": 0.6736488938331604, - "Y": 0.6306503415107727 - }, - { - "X": 0.10142957419157028, - "Y": 0.6302128434181213 - } - ] - }, - "Id": "cdf91b72-94f3-48ce-8efc-9646364f7057", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "25d13ae2-b783-44a5-9e52-ee76d436ced7", - "e82df9ef-2502-4283-b08d-beb2de063b72" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 82.666015625, - "RowIndex": 33, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06691174954175949, - "Height": 0.01539109367877245, - "Left": 0.6736488938331604, - "Top": 0.6153104305267334 - }, - "Polygon": [ - { - "X": 0.6736504435539246, - "Y": 0.6153104305267334 - }, - { - "X": 0.7405605912208557, - "Y": 0.6153615713119507 - }, - { - "X": 0.7405593395233154, - "Y": 0.6307015419006348 - }, - { - "X": 0.6736488938331604, - "Y": 0.6306503415107727 - } - ] - }, - "Id": "c6779900-3385-44e3-9796-7a37e394e7c6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "3627c961-fa08-4412-a529-d3d58e2dd5ac" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.994140625, - "RowIndex": 33, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374713361263275, - "Height": 0.015403985977172852, - "Left": 0.7405593395233154, - "Top": 0.6153615713119507 - }, - "Polygon": [ - { - "X": 0.7405605912208557, - "Y": 0.6153615713119507 - }, - { - "X": 0.8243064880371094, - "Y": 0.6154255867004395 - }, - { - "X": 0.8243056535720825, - "Y": 0.6307655572891235 - }, - { - "X": 0.7405593395233154, - "Y": 0.6307015419006348 - } - ] - }, - "Id": "be578d7d-6080-41c7-8df1-efd8079f5792", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "da9b6f8c-0514-4e0b-afc6-45d782f96276" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.017578125, - "RowIndex": 33, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07231070846319199, - "Height": 0.015395266935229301, - "Left": 0.8243056535720825, - "Top": 0.6154255867004395 - }, - "Polygon": [ - { - "X": 0.8243064880371094, - "Y": 0.6154255867004395 - }, - { - "X": 0.8966163396835327, - "Y": 0.6154808402061462 - }, - { - "X": 0.8966158032417297, - "Y": 0.6308208703994751 - }, - { - "X": 0.8243056535720825, - "Y": 0.6307655572891235 - } - ] - }, - "Id": "bd30b53c-09d0-4332-8635-5a77579a77d6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "fb9267a1-1aab-49e4-9f28-e6654608c399" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.724609375, - "RowIndex": 34, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5722234845161438, - "Height": 0.015444123186171055, - "Left": 0.101425401866436, - "Top": 0.6302128434181213 - }, - "Polygon": [ - { - "X": 0.10142957419157028, - "Y": 0.6302128434181213 - }, - { - "X": 0.6736488938331604, - "Y": 0.6306503415107727 - }, - { - "X": 0.6736473441123962, - "Y": 0.645656943321228 - }, - { - "X": 0.101425401866436, - "Y": 0.6452192664146423 - } - ] - }, - "Id": "45c22638-bc68-4032-8b0e-96c372725645", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "af6c5f52-0561-47ad-b6a8-0a70d4eaeaa5", - "75b8fda5-855e-4649-ad8b-4c91f63151fe", - "b9f22324-872b-498c-82fc-4b9090578bce" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 80.810546875, - "RowIndex": 34, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06691202521324158, - "Height": 0.015057776123285294, - "Left": 0.6736473441123962, - "Top": 0.6306503415107727 - }, - "Polygon": [ - { - "X": 0.6736488938331604, - "Y": 0.6306503415107727 - }, - { - "X": 0.7405593395233154, - "Y": 0.6307015419006348 - }, - { - "X": 0.7405581474304199, - "Y": 0.6457081437110901 - }, - { - "X": 0.6736473441123962, - "Y": 0.645656943321228 - } - ] - }, - "Id": "d2924c1e-7116-43b7-a543-1df64de042ba", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "27ea8930-6ad3-4c14-9fcb-fc408d41ac0b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.845703125, - "RowIndex": 34, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0837475061416626, - "Height": 0.015070673078298569, - "Left": 0.7405581474304199, - "Top": 0.6307015419006348 - }, - "Polygon": [ - { - "X": 0.7405593395233154, - "Y": 0.6307015419006348 - }, - { - "X": 0.8243056535720825, - "Y": 0.6307655572891235 - }, - { - "X": 0.8243047595024109, - "Y": 0.6457722187042236 - }, - { - "X": 0.7405581474304199, - "Y": 0.6457081437110901 - } - ] - }, - "Id": "2ae88acb-cb7d-4822-b83e-6401cce0bb62", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "9d70ef2d-51d1-482b-afab-72b3a8383446" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.91796875, - "RowIndex": 34, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07231103628873825, - "Height": 0.01506195031106472, - "Left": 0.8243047595024109, - "Top": 0.6307655572891235 - }, - "Polygon": [ - { - "X": 0.8243056535720825, - "Y": 0.6307655572891235 - }, - { - "X": 0.8966158032417297, - "Y": 0.6308208703994751 - }, - { - "X": 0.8966153264045715, - "Y": 0.6458275318145752 - }, - { - "X": 0.8243047595024109, - "Y": 0.6457722187042236 - } - ] - }, - "Id": "58b990fd-ae03-4582-89d5-34f701296336", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4836ce5a-cb7d-417f-a80d-55262d40ae66" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.43359375, - "RowIndex": 35, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5722262859344482, - "Height": 0.016111398115754128, - "Left": 0.1014210432767868, - "Top": 0.6452192664146423 - }, - "Polygon": [ - { - "X": 0.101425401866436, - "Y": 0.6452192664146423 - }, - { - "X": 0.6736473441123962, - "Y": 0.645656943321228 - }, - { - "X": 0.6736457347869873, - "Y": 0.6613306403160095 - }, - { - "X": 0.1014210432767868, - "Y": 0.6608927845954895 - } - ] - }, - "Id": "b77fd5d1-1d0e-4c11-a5b8-6b0deb226624", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b736c8f9-fceb-45ff-9c3d-13117040f39b", - "885e5147-c9ac-4a90-8e86-b69f8c82e0ce", - "342c6447-8148-4ea8-a287-fb2aa185bb29" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 82.32421875, - "RowIndex": 35, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06691240519285202, - "Height": 0.015724902972579002, - "Left": 0.6736457347869873, - "Top": 0.645656943321228 - }, - "Polygon": [ - { - "X": 0.6736473441123962, - "Y": 0.645656943321228 - }, - { - "X": 0.7405581474304199, - "Y": 0.6457081437110901 - }, - { - "X": 0.7405568361282349, - "Y": 0.6613818407058716 - }, - { - "X": 0.6736457347869873, - "Y": 0.6613306403160095 - } - ] - }, - "Id": "fcfb142f-9963-404a-ad59-4376c60b2163", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "97fafd12-00a1-4c71-bd91-11e81d493464" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.5546875, - "RowIndex": 35, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374794572591782, - "Height": 0.015737807378172874, - "Left": 0.7405568361282349, - "Top": 0.6457081437110901 - }, - "Polygon": [ - { - "X": 0.7405581474304199, - "Y": 0.6457081437110901 - }, - { - "X": 0.8243047595024109, - "Y": 0.6457722187042236 - }, - { - "X": 0.824303925037384, - "Y": 0.6614459156990051 - }, - { - "X": 0.7405568361282349, - "Y": 0.6613818407058716 - } - ] - }, - "Id": "a9f1da38-3bc0-4ffb-a783-8e4cb4761c8e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "689239c2-07f3-48c5-8201-9cfe4652e006" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.626953125, - "RowIndex": 35, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0723114013671875, - "Height": 0.015729080885648727, - "Left": 0.824303925037384, - "Top": 0.6457722187042236 - }, - "Polygon": [ - { - "X": 0.8243047595024109, - "Y": 0.6457722187042236 - }, - { - "X": 0.8966153264045715, - "Y": 0.6458275318145752 - }, - { - "X": 0.8966147899627686, - "Y": 0.6615012884140015 - }, - { - "X": 0.824303925037384, - "Y": 0.6614459156990051 - } - ] - }, - "Id": "e644552b-9273-47e4-803d-88b4dc9ef5b4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "447d5593-51e3-4c96-88f7-984d6c4e9462" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.408203125, - "RowIndex": 36, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5722288489341736, - "Height": 0.015444747172296047, - "Left": 0.10141686350107193, - "Top": 0.6608927845954895 - }, - "Polygon": [ - { - "X": 0.1014210432767868, - "Y": 0.6608927845954895 - }, - { - "X": 0.6736457347869873, - "Y": 0.6613306403160095 - }, - { - "X": 0.6736441850662231, - "Y": 0.6763375401496887 - }, - { - "X": 0.10141686350107193, - "Y": 0.6758995056152344 - } - ] - }, - "Id": "ba96c36d-8aab-4289-a012-e006533cef3c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f80134bc-81b9-4e86-b6f7-2707824e5114", - "e747c945-5e7e-486e-bbe1-64d78fb1201a", - "32bdad76-453b-4037-8674-c39c726c5429" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 81.4453125, - "RowIndex": 36, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06691265851259232, - "Height": 0.01505809836089611, - "Left": 0.6736441850662231, - "Top": 0.6613306403160095 - }, - "Polygon": [ - { - "X": 0.6736457347869873, - "Y": 0.6613306403160095 - }, - { - "X": 0.7405568361282349, - "Y": 0.6613818407058716 - }, - { - "X": 0.7405555844306946, - "Y": 0.6763887405395508 - }, - { - "X": 0.6736441850662231, - "Y": 0.6763375401496887 - } - ] - }, - "Id": "d88aa7f3-a9bd-48ea-835c-ab7b96da2dd8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4737fa29-2112-4265-bc30-87e64c23e5bd" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.578125, - "RowIndex": 36, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374828845262527, - "Height": 0.015071005560457706, - "Left": 0.7405555844306946, - "Top": 0.6613818407058716 - }, - "Polygon": [ - { - "X": 0.7405568361282349, - "Y": 0.6613818407058716 - }, - { - "X": 0.824303925037384, - "Y": 0.6614459156990051 - }, - { - "X": 0.8243030309677124, - "Y": 0.6764528751373291 - }, - { - "X": 0.7405555844306946, - "Y": 0.6763887405395508 - } - ] - }, - "Id": "55fb6506-9be0-46df-8178-fe434b49a485", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a60f69d4-8565-47ad-9071-dfd271d581b0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.650390625, - "RowIndex": 36, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07231171429157257, - "Height": 0.015062276273965836, - "Left": 0.8243030309677124, - "Top": 0.6614459156990051 - }, - "Polygon": [ - { - "X": 0.824303925037384, - "Y": 0.6614459156990051 - }, - { - "X": 0.8966147899627686, - "Y": 0.6615012884140015 - }, - { - "X": 0.8966142535209656, - "Y": 0.6765081882476807 - }, - { - "X": 0.8243030309677124, - "Y": 0.6764528751373291 - } - ] - }, - "Id": "2b24335a-1e4b-4eb5-bb6a-aa292e422b8f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d748c50f-9e8b-454c-ab54-c4738028d6f1" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.873046875, - "RowIndex": 37, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5722315907478333, - "Height": 0.015778543427586555, - "Left": 0.10141260176897049, - "Top": 0.6758995056152344 - }, - "Polygon": [ - { - "X": 0.10141686350107193, - "Y": 0.6758995056152344 - }, - { - "X": 0.6736441850662231, - "Y": 0.6763375401496887 - }, - { - "X": 0.673642635345459, - "Y": 0.6916780471801758 - }, - { - "X": 0.10141260176897049, - "Y": 0.6912398338317871 - } - ] - }, - "Id": "552e6ff3-cd57-4637-b446-d5dd9219c1ad", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "924e5562-b2dd-4792-ba01-cdb9e98a8cd1", - "e3fb12e8-cd85-49b2-afff-f0c744fa1bf9", - "e923fb05-08eb-4bcc-bae1-963cddc26d45", - "0f2897db-78d2-49ec-8f07-83aea013560c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 82.71484375, - "RowIndex": 37, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06691300123929977, - "Height": 0.01539174746721983, - "Left": 0.673642635345459, - "Top": 0.6763375401496887 - }, - "Polygon": [ - { - "X": 0.6736441850662231, - "Y": 0.6763375401496887 - }, - { - "X": 0.7405555844306946, - "Y": 0.6763887405395508 - }, - { - "X": 0.7405543327331543, - "Y": 0.6917293071746826 - }, - { - "X": 0.673642635345459, - "Y": 0.6916780471801758 - } - ] - }, - "Id": "450194ad-45bf-4824-9f94-611d6cfc9013", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4b71bdbc-9577-4884-8638-82ef0f09d65f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.04296875, - "RowIndex": 37, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0837487056851387, - "Height": 0.015404660254716873, - "Left": 0.7405543327331543, - "Top": 0.6763887405395508 - }, - "Polygon": [ - { - "X": 0.7405555844306946, - "Y": 0.6763887405395508 - }, - { - "X": 0.8243030309677124, - "Y": 0.6764528751373291 - }, - { - "X": 0.8243021965026855, - "Y": 0.6917934417724609 - }, - { - "X": 0.7405543327331543, - "Y": 0.6917293071746826 - } - ] - }, - "Id": "d8765730-1a0f-4f73-8eef-5aca87eb596b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b705e131-03ff-4306-8fe1-9c142d1807ca" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.06640625, - "RowIndex": 37, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07231206446886063, - "Height": 0.015395927242934704, - "Left": 0.8243021965026855, - "Top": 0.6764528751373291 - }, - "Polygon": [ - { - "X": 0.8243030309677124, - "Y": 0.6764528751373291 - }, - { - "X": 0.8966142535209656, - "Y": 0.6765081882476807 - }, - { - "X": 0.8966137170791626, - "Y": 0.6918488144874573 - }, - { - "X": 0.8243021965026855, - "Y": 0.6917934417724609 - } - ] - }, - "Id": "3deb6d39-e9a6-4b68-b56f-72526b5d9b0d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d4e3a4ac-f368-4f56-a852-f7de0f267389" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.873046875, - "RowIndex": 38, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5722337365150452, - "Height": 0.013792388141155243, - "Left": 0.10140888392925262, - "Top": 0.6912398338317871 - }, - "Polygon": [ - { - "X": 0.10141260176897049, - "Y": 0.6912398338317871 - }, - { - "X": 0.673642635345459, - "Y": 0.6916780471801758 - }, - { - "X": 0.6736412644386292, - "Y": 0.705032229423523 - }, - { - "X": 0.10140888392925262, - "Y": 0.7045938968658447 - } - ] - }, - "Id": "1c033645-d454-4de4-81f5-351c8924bcd7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "48ccb87b-6175-42e3-93d3-0c19f939f25a", - "0ac3aeab-b980-4903-ad4c-4b0efdecb33d", - "d47d8a32-92cc-4b07-9bbe-8d2b67b0eeab", - "bdbfd481-79e7-4dba-81ec-16411ff2898d" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 82.71484375, - "RowIndex": 38, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06691311299800873, - "Height": 0.01340543944388628, - "Left": 0.6736412644386292, - "Top": 0.6916780471801758 - }, - "Polygon": [ - { - "X": 0.673642635345459, - "Y": 0.6916780471801758 - }, - { - "X": 0.7405543327331543, - "Y": 0.6917293071746826 - }, - { - "X": 0.7405532598495483, - "Y": 0.7050834894180298 - }, - { - "X": 0.6736412644386292, - "Y": 0.705032229423523 - } - ] - }, - "Id": "9c5bd27b-2735-4b02-b68f-c1669d17bf2d", - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.04296875, - "RowIndex": 38, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08374893665313721, - "Height": 0.013418354094028473, - "Left": 0.7405532598495483, - "Top": 0.6917293071746826 - }, - "Polygon": [ - { - "X": 0.7405543327331543, - "Y": 0.6917293071746826 - }, - { - "X": 0.8243021965026855, - "Y": 0.6917934417724609 - }, - { - "X": 0.8243014216423035, - "Y": 0.7051476240158081 - }, - { - "X": 0.7405532598495483, - "Y": 0.7050834894180298 - } - ] - }, - "Id": "ed10a6b8-0d7a-4745-8620-8a0df6835f43", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7843fb7c-5c67-4964-90b6-1102ed4011ca" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.06640625, - "RowIndex": 38, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07231229543685913, - "Height": 0.013409614562988281, - "Left": 0.8243014216423035, - "Top": 0.6917934417724609 - }, - "Polygon": [ - { - "X": 0.8243021965026855, - "Y": 0.6917934417724609 - }, - { - "X": 0.8966137170791626, - "Y": 0.6918488144874573 - }, - { - "X": 0.8966132998466492, - "Y": 0.7052030563354492 - }, - { - "X": 0.8243014216423035, - "Y": 0.7051476240158081 - } - ] - }, - "Id": "59f6e4fa-df17-4f5d-b09e-6d7fed88992e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "be426448-03f6-4d29-a047-01999ef26e9e" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "MERGED_CELL", - "Confidence": 43.5791015625, - "RowIndex": 2, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 4, - "Geometry": { - "BoundingBox": { - "Width": 0.795067548751831, - "Height": 0.015268881805241108, - "Left": 0.10156543552875519, - "Top": 0.12707725167274475 - }, - "Polygon": [ - { - "X": 0.1015695109963417, - "Y": 0.12707725167274475 - }, - { - "X": 0.896632969379425, - "Y": 0.12767748534679413 - }, - { - "X": 0.8966324925422668, - "Y": 0.14234614372253418 - }, - { - "X": 0.10156543552875519, - "Y": 0.1417456716299057 - } - ] - }, - "Id": "e4846caf-aff8-4f32-8ab3-163377622d0b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b599e78d-5884-4212-8385-c0486abd53c3", - "9db57831-1bb6-4db2-94f8-c095e5b34cd2", - "92a14ba7-ea18-4f8a-9ac6-35ec06dd1eda", - "a2008f69-1cd5-4fc5-b3a2-d9f9e153eede" - ] - } - ], - "EntityTypes": [ - "TABLE_SECTION_TITLE" - ], - "Page": 1 - }, - { - "BlockType": "MERGED_CELL", - "Confidence": 72.705078125, - "RowIndex": 22, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 4, - "Geometry": { - "BoundingBox": { - "Width": 0.7951467037200928, - "Height": 0.03428258001804352, - "Left": 0.10147594660520554, - "Top": 0.4298068881034851 - }, - "Polygon": [ - { - "X": 0.10148531198501587, - "Y": 0.4298068881034851 - }, - { - "X": 0.8966226577758789, - "Y": 0.43041178584098816 - }, - { - "X": 0.8966215252876282, - "Y": 0.46408945322036743 - }, - { - "X": 0.10147594660520554, - "Y": 0.4634840190410614 - } - ] - }, - "Id": "dc642cb7-19ef-476b-92ff-1ac86b65e8cc", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ca0f2cc4-e98a-4773-b555-7bf31b03ffec", - "36f392a6-b68a-4a38-96ff-63f9c5633456", - "68570ef2-725f-433d-8916-53a33ed68985", - "bacfc801-b233-4663-8724-ace273228753" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "TABLE_TITLE", - "Confidence": 79.443359375, - "Geometry": { - "BoundingBox": { - "Width": 0.28457996249198914, - "Height": 0.007763265166431665, - "Left": 0.10244961082935333, - "Top": 0.046387042850255966 - }, - "Polygon": [ - { - "X": 0.10245170444250107, - "Y": 0.046387042850255966 - }, - { - "X": 0.3870295584201813, - "Y": 0.046601444482803345 - }, - { - "X": 0.38702812790870667, - "Y": 0.054150309413671494 - }, - { - "X": 0.10244961082935333, - "Y": 0.05393586307764053 - } - ] - }, - "Id": "5e6b6bbf-9e14-4110-a0db-cdef692c4e97", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "0298b06b-1eca-4a54-8d82-84207c1fbf7d", - "227624f2-0341-45ff-8868-3547e7e81a16", - "d7602e54-dac3-47f1-a8eb-f99a7e57ce7e", - "e7fa0bb0-5046-4e77-a6da-b3141c45608b", - "462d8ff0-0771-4f7d-914b-68ae135f3cd5", - "5d428d25-4c8f-4197-b7e0-0d038231cd39", - "f0ab7c4d-d861-4b35-b394-8fc78a93dc66", - "e3394e67-442f-4dee-be2e-62c7332730dd" - ] - } - ], - "Page": 1 - } - ], - "AnalyzeDocumentModelVersion": "1.0" -} \ No newline at end of file
--- a/main.py Wed May 31 20:19:26 2023 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,184 +0,0 @@ -import json -from datetime import datetime -from collections import defaultdict - - -def main(): - data = defaultdict(dict) - date_index = defaultdict(dict) - - with open('santander.json') as f: - doc = json.load(f) - - if doc['JobStatus'] != 'SUCCEEDED': - print(f"JOB STATUS: {doc['JobStatus']}") - - return - - blocks = doc['Blocks'] - - # Get format - lines = filter_blocks(blocks, 'BlockType', 'LINE') - for line in lines: - format = get_format(line['Text']) - data['format'] = format - if format: - break - - # Find dates value and position - cells = filter_blocks(blocks, 'BlockType', 'CELL') - for cell in cells: - child_ids = extract_child_ids(cell) - - # Get `Text` from `CELL` block - cell_text = '' - for index, child_id in enumerate(child_ids): - word_block = filter_blocks(blocks, 'Id', child_id)[0] - cell_text += word_block['Text'] - - date_string = is_date(cell_text) - if date_string: - cell_text = date_string - date_index[date_string]['column'] = cell['ColumnIndex'] - date_index[date_string]['row'] = cell['RowIndex'] - - - cell_row_index = cell['RowIndex'] - cell_column_index = cell['ColumnIndex'] - data['rows'][cell_row_index][cell_column_index] = cell_text - - # Delete unused rows - for year in date_index: - for row in data['rows']: - print(row) - exit() - if year[row] < row: - del data[row] - - print(data) - - - - - - print(data) - - - - """ - # Get table - table = filter_blocks(blocks, 'BlockType', 'TABLE')[0] - table_child_ids = extract_child_ids(table) - - # Iterate over childs and get `CELL` blocks - for table_child_id in table_child_ids: - cell = filter_blocks(blocks, 'Id', table_child_id)[0] - cell_child_ids = extract_child_ids(cell) - - # Get `Text` from `CELL` block - cell_text = '' - for cell_child_id in cell_child_ids: - word_block = filter_blocks(blocks, 'Id', cell_child_id)[0] - cell_text += word_block['Text'] - - # Check if cell_text could be a date - date_string = is_date(cell_text) - if date_string: - date_column_index = cell['ColumnIndex'] - data[date_column_index] = {'year': date_string} - """ - - -def filter_blocks(blocks, block_key, block_value): - """ - Extract a block by key-value from array of blocks - """ - - return [block for block in blocks if block[block_key] == block_value] - - -def extract_child_ids(block): - """ - Extract child Ids from a block - """ - - if not 'Relationships' in block: - return [] - - return [r['Ids'] for r in block['Relationships'] if r['Type'] == 'CHILD'][0] - - -def is_date(string_date): - """ - Verify if a string could be a date - """ - - formats_allowed = ['%d-%m-%Y', '%d_%m_%Y', '%d/%m/%Y', '%d.%m.%Y', '%Y'] - - for format_allowed in formats_allowed: - try: - date = datetime.strptime(string_date, format_allowed) - - return date.strftime("%Y") - except ValueError: - - # Try removing characters from the beginning and end - options = [string_date[:-1], string_date[1:], string_date[1:-1]] - for option in options: - try: - date = datetime.strptime(option, format_allowed) - - return date.strftime("%Y") - except ValueError: - continue - - return - - -def get_format(phrase): - """ - Given a phrase verify if it is specified the amount format - """ - - amount_formats = ['thousand', 'million', 'billion'] - - for amount_format in amount_formats: - plural_amount_format = f'{amount_format}s' - - if amount_format in phrase or plural_amount_format in phrase: - return amount_format - - -def clean(string_type, string): - characters = ['.', ',', '-', ' '] - - clean_string = string - for character in characters: - clean_string = clean_string.replace(character, '') - - return clean_string - - -def format_amount(string_amount): - pass - - -if __name__ == '__main__': - main() - -""" -Assumptions: -- Thousand separator is `,` -- Supported date formats '%d-%m-%Y', '%d_%m_%Y', '%d/%m/%Y', '%d.%m.%Y', '%Y' -- Accounting values are in the same column and below the date. -+-------+-------+ -| 2022 | 2023 | -+-------+-------+ -| 3,000 | 3,100 | -+-------+-------+ -| 120 | 150 | -+-------+-------+ -| 789 | 800 | -+-------+-------+ -- Account names must be in column index 1 -""" \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/process_document/app.py Thu Jun 01 18:51:18 2023 +0100 @@ -0,0 +1,150 @@ +import json +import boto3 +from datetime import datetime +from collections import defaultdict + +s3_client = boto3.client('s3') +textract_client = boto3.client('textract') + + +def lambda_handler(event, context): + for record in event['Records']: + metadata = record['s3'] + bucket_name = metadata['bucket']['name'] + object_key = metadata['object']['key'] + + doc = textract_client.analyze_document( + Document={'S3Object': {'Bucket': bucket_name, 'Name': object_key}}, + FeatureTypes=['TABLES'] + ) + + # Analyze document + result = defaultdict(dict) + blocks = doc['Blocks'] + + # Get format + lines = filter_blocks(blocks, 'BlockType', 'LINE') + for line in lines: + amount_format = get_format(line['Text']) + result['format'] = amount_format + if amount_format: + break + + # Find dates value and position + data = defaultdict(dict) + cells = filter_blocks(blocks, 'BlockType', 'CELL') + for cell in cells: + if not 'Relationships' in cell: + continue + + child_ids = [r['Ids'] for r in cell['Relationships'] if r['Type'] == 'CHILD'][0] + + # Get `Text` from `CELL` block + cell_text = '' + for index, child_id in enumerate(child_ids): + word_block = filter_blocks(blocks, 'Id', child_id)[0] + cell_text += word_block['Text'] + + if index < len(child_ids) - 1: + cell_text += '_' + + # Verify if `Text` could be a valid date + date_string = is_date(cell_text) + if date_string: + cell_text = date_string + result['dateRow'] = cell['RowIndex'] + result['dateColumns'][cell['ColumnIndex']] = date_string + + cell_row_index = cell['RowIndex'] + cell_column_index = cell['ColumnIndex'] + data[cell_row_index][cell_column_index] = clean(cell_text) + + # Delete unused row and columns + for row_index in list(data.keys()): + if row_index > result['dateRow']: + row = data[row_index] + for column_index in list(row.keys()): + if column_index not in result['dateColumns'] and column_index != 1: + del row[column_index] + + if len(row) > 1: + result['data'][row_index] = row + + print(f'RESULT: {result}') + + return { + "statusCode": 200, + "body": json.dumps({ + "message": "ok" + }), + } + + +def filter_blocks(blocks, block_key, block_value): + """ + Extract a block by key-value from array of blocks + """ + + return [block for block in blocks if block[block_key] == block_value] + + +def is_date(string_date): + """ + Verify if a string could be a date. + + -> Funciona pero es un desastre <- + """ + + formats_allowed = ['%d-%m-%Y', '%d_%m_%Y', '%d/%m/%Y', '%d.%m.%Y', '%Y'] + + for format_allowed in formats_allowed: + try: + date = datetime.strptime(string_date, format_allowed) + + if date.year > datetime.now().year or date.year < 1900: + return # Fecha fuera de rango + + return date.strftime("%Y") + except ValueError: + + # Try removing characters from the beginning and end + options = [string_date[:-1], string_date[1:], string_date[1:-1]] + for option in options: + try: + date = datetime.strptime(option, format_allowed) + + if date.year > datetime.now().year or date.year < 1900: + return # Fecha fuera de rango + + return date.strftime("%Y") + except ValueError: + continue + + return + + +def get_format(phrase): + """ + Given a phrase verify if it is specified the amount format + """ + + amount_formats = ['thousand', 'million', 'billion'] + + for amount_format in amount_formats: + plural_amount_format = f'{amount_format}s' + + if amount_format in phrase or plural_amount_format in phrase: + return amount_format + + +def clean(text): + """" + Remove bad characters from word + """ + + characters = ['.', ',', '-', ' '] + + for character in characters: + text = text.replace(character, '') + + return text.lower()
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/process_document/requirements.txt Thu Jun 01 18:51:18 2023 +0100 @@ -0,0 +1,1 @@ +boto3 \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/samconfig.toml Thu Jun 01 18:51:18 2023 +0100 @@ -0,0 +1,31 @@ +# More information about the configuration file can be found here: +# https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-config.html +version = 0.1 + +[default] +[default.global.parameters] +stack_name = "finance-parser" + +[default.build.parameters] +cached = true +parallel = true + +[default.validate.parameters] +lint = true + +[default.deploy.parameters] +capabilities = "CAPABILITY_IAM" +confirm_changeset = true +resolve_s3 = true + +[default.package.parameters] +resolve_s3 = true + +[default.sync.parameters] +watch = true + +[default.local_start_api.parameters] +warm_containers = "EAGER" + +[default.local_start_lambda.parameters] +warm_containers = "EAGER"
--- a/santander.json Wed May 31 20:19:26 2023 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,28687 +0,0 @@ -{ - "DocumentMetadata": { - "Pages": 1 - }, - "JobStatus": "SUCCEEDED", - "Blocks": [ - { - "BlockType": "PAGE", - "Geometry": { - "BoundingBox": { - "Width": 1, - "Height": 1, - "Left": 0, - "Top": 0 - }, - "Polygon": [ - { - "X": 6.190993673271805e-8, - "Y": 0 - }, - { - "X": 1, - "Y": 1.659790314079146e-7 - }, - { - "X": 1, - "Y": 1 - }, - { - "X": 0, - "Y": 1 - } - ] - }, - "Id": "b2c87276-84bc-4e0b-bf31-8fa76de3fd78", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f45531e5-70f5-44bb-833f-573a79d8c584", - "e150b7cf-f682-4c86-a41e-4f0270bf1cc8", - "37f0985f-4ad8-4f42-9453-0f568df3234b", - "750fe00e-1af0-47d8-9bbb-cb65c270a62b", - "9f8edf24-70c8-4ae6-b0e4-985741ec8c15", - "9419bf1e-82e0-4fbf-9fe0-04e571a927cd", - "87254283-66bc-4175-b02b-bb75a52b8359", - "48be3c22-1a1c-49f3-afd7-a14b720a64d3", - "2b1b1133-456c-411a-9fc7-eeadff9ddf5a", - "c975b9d8-17d6-4984-9501-a64ca25ab402", - "108e56e0-ce95-4eba-8ee6-b9f45d8575d8", - "5b7bbc5c-44b9-4287-868d-a4be583b1f49", - "1d36be3a-28bf-4d87-8803-7a05cfe85ed2", - "cac5b65a-9787-4c8e-8e2f-55a8945cb307", - "9cb6a3a6-c80d-4470-8aa6-ae4298304bff", - "a02f238b-1a37-4855-aa36-58a46809df79", - "2c6fb515-b35b-47e8-8c18-f780cde6182e", - "963f665e-97b4-4cfd-82f0-b5c5285f0fb8", - "231b1390-f66e-4161-9c81-49d3b21156b6", - "3a984e36-e1e7-4309-96d4-1d9e797db9c0", - "7fa05a52-a155-4bca-8b03-69175b2a4ecb", - "5944d9dd-b766-44cc-837d-5ea9c1bd67fb", - "803af144-845d-4294-aada-b7ae68c83f1e", - "dfb961fd-16f1-4834-9d28-4175e28426be", - "220dbd7a-4448-4bfc-b003-797c949c7e4f", - "72003b07-b03f-4a37-8bad-0e68b8a4edd4", - "16567fc9-6b92-4310-9fea-1100b0b2ff4b", - "7c74d2d9-03a7-4bff-a561-f35c61c8724d", - "644236b3-aac6-4683-9db8-f96740732f63", - "87aee601-bacd-43fb-8f80-92bd4d4f3215", - "8840f7fe-4ea8-4c89-b279-20f6724086bb", - "fb6bb8d6-3779-4f30-8fad-95d9c058ab88", - "b1af0809-ceb4-4339-ba6a-caafba4af410", - "705c5cfe-2d77-4c0f-915d-3e36ba8370ce", - "d8bb3b44-72bd-4f7d-aabd-01f98d4026e7", - "fa092afa-63c8-4245-bcdd-52b3ac746bf7", - "4b52035c-27cf-45d3-a966-439a6eb7d131", - "3328e1fe-6fa9-41be-9856-38245409b84b", - "6df83b9b-3b91-4094-ac13-8d6d0d694935", - "aca7a0a7-962c-4636-ab63-1f1f9035be1d", - "a5b036f1-1fc7-4b42-b68b-274797f344f9", - "f04862e6-0562-488a-b590-07e2c5909eab", - "ade4b3d4-33ce-4c86-aed3-d12ef4b6909d", - "4ae3e45c-ae2a-4e84-8831-aaea7443b058", - "121b110e-f5bf-48ee-9a8b-15ef5a98c2f0", - "02ae3088-7892-470b-a14d-2cb15f6f5900", - "be4db0f6-6f48-406e-a0b1-11e4962b2c7a", - "824e2c01-7a04-4231-9116-0a0082cd4569", - "cee1ed00-b2c1-4cb2-825f-a4b5d192f5fc", - "3d5b28c9-d30c-4899-b4fa-6cbef51b05ae", - "5e7e0c9a-cae0-4614-8ca6-b871132564b6", - "e9030710-0cd0-48e5-8995-d6b88e468835", - "e004e757-13d4-49bb-b4fd-8fb2c6178e01", - "e14854cc-15d9-430b-af64-068c6c36ed38", - "02bb3815-2f78-4ff6-8640-6478b0530f5f", - "75094bb5-dc91-45ee-b628-cf55c1a07e2e", - "77113806-e8bb-44f5-a5dc-de2da12e095b", - "b9c17b12-05ee-48a5-b2c0-17ad5a970708", - "24349173-3880-4704-bcb6-41cce37b5236", - "abb5c6c5-0f68-4100-ac19-d4f7af9928f0", - "eb7063b0-badc-4e36-9bd7-c8fb80db860f", - "e3deff2a-14d6-4a86-8ef6-74e21691f57a", - "1252aed3-12b7-408a-9691-b4cade82eb32", - "2854432b-767c-45d9-9f30-ac5deaad16f0", - "ab21a6cd-23ef-459b-b4ff-3e938eb15472", - "fcd3eba4-e9f7-47c9-b97a-42cb339d3553", - "244f5c41-0485-4bd1-beb5-c12f185ae696", - "9361a07e-4a93-48f2-ad73-23eaf2b64754", - "bb4e38f7-155f-4b33-a7ca-56d5ef1756fb", - "bb775482-0035-4051-8b02-13de3685a410", - "f6458641-0702-4788-b01d-827270796a02", - "e3fb1926-60d2-4448-99e8-7281ad6ef1aa", - "809c2900-395e-435e-8670-591b11f4a2d6", - "03faefbe-e61b-4a27-ba86-78177d8f36f9", - "a1186811-602c-47c4-bf18-7b8dc23c0754", - "bf930aaa-bf60-4872-be6c-e53339c14a25", - "eb769ee1-2dda-45fd-9e07-6a05f7fa763d", - "13cc415a-c978-4657-860c-fabf9daf3783", - "5efc1083-3597-4ece-8601-e94129f897ba", - "7fed3628-1132-4dde-af30-bb20e06aff47", - "23cadb40-ca16-4052-855f-91411e77bc2d", - "09eaf1ce-c867-445b-b580-1dd574ad19b8", - "c3e413a9-c669-47a5-aab1-def7693e7542", - "07f3d617-d700-4fd0-b36e-3e8ad9c5e10f", - "4fc7317d-d22d-48d9-ae34-88e99186bfbf", - "c8870530-88f4-4e35-bbc4-6da48c6780d3", - "6516311b-1ee1-430d-8b99-ec2705e19877", - "cb19a213-1b2b-4cb5-bc6c-178b5945e588", - "765f6ea8-6a6c-46e5-8e23-7e76685f76eb", - "eab27eb1-b8ae-4b90-a1c8-7c2fe2f4b328", - "8d310666-d967-498c-9598-e4bff193a46f", - "4756abd3-d7a7-48ef-96f7-3d4cdfdaeaaf", - "2d90c2af-7c3d-42c9-95d5-77ca4fee9897", - "e8ae484f-0b3d-431b-81b2-ada6068a239e", - "20612e97-279e-4257-8dab-fabd7400f533", - "1135e2fc-84c6-4a50-85e3-d9a420823ef4", - "0538e5a9-d390-4e09-9d4e-9e2019f019e5", - "ef5b6106-650d-47c4-be93-fcf83f03124b", - "de8fe178-2ddb-40b1-a838-55e551f4176e", - "fd611a5d-088c-4100-9337-f9f8b3f49a92", - "ad1088d7-2474-4ac2-a17f-610827cece3c", - "2acfe456-91d5-4407-9193-7eec6eee7a23", - "6fc7c616-c59b-4195-b130-b429ef67cf1a", - "c151b2f3-336e-4f9e-81c4-9610d70d5cde", - "bd946d3e-2f83-4323-b563-f4b5042ca9d9", - "77bee746-6cb1-4de9-8a4d-d20a1e1148ed", - "7b73ee34-b337-44ce-9672-389247c4dc9d", - "18b020db-fbcf-4da8-88d3-0ae046979fcc", - "693e85b6-affe-4b5a-abc5-3a03cdb300ce", - "6dba3f04-a6d3-497a-8875-fefb6074b282", - "ce87a62f-33b0-4363-93dd-4f08f0811fb5", - "e161a270-3294-481d-b7a3-cd05bc039ce3", - "06e690ff-190c-4e97-a7b0-e35d6a93086e", - "13b0dee6-0a47-499d-bde6-4974153919eb", - "44facd1c-8371-4ef6-95a5-8720d4a15bcd", - "99c7f76f-ee8a-4748-856f-0e533fa691a7", - "ae8c0904-b060-4f74-b424-05b0eb1fda6c", - "714f07f6-da79-4616-83b9-d37dd29ab77e", - "979dd65d-ddca-4380-959e-6dda5d858e87", - "f2a6fed5-8d44-409c-8740-76291afa9578", - "5cbe7d55-3f90-4651-b1b6-adf64f7f6b64", - "66f69ab0-839a-45e2-a57a-f98e5b0846d7", - "da8f7399-1847-41ee-acf2-2a41149c6d1c", - "463649f3-a275-4f1f-b4dc-fe9be132a4e3", - "d3c65efd-3d24-4441-95cb-cce8f9c09ab8", - "812e73f1-b023-4e13-9e2b-4852216972d8", - "3123082c-04a3-426e-8fe7-f5b549b69ed6", - "209036f2-0a3f-476a-9e86-d8cf2ae4846b", - "a0d3e1e4-672c-426a-b647-6332bcc8501c", - "329688b7-b0ae-4c87-8d9c-72c3e9c602c6", - "43b2ac3c-beba-44bf-8538-0a3a2655f419", - "62732dce-735a-47a4-a06d-04b02b4b5eb8", - "d64bd369-ac51-4a45-9966-03f1032b81ad", - "0c2b84a1-a81f-4bc7-91de-726c7296ed67", - "c0a4ea14-7ef9-4a9a-b014-55003b7943a8", - "ca32bd6c-7cf0-4d90-b208-604713464fdd", - "0cb0f71a-8c30-4c76-bc15-c80deed5638a", - "8b0bdb33-ef3a-4841-a129-4e84ac1dc4e6", - "2d3aa714-db5a-46ba-9b30-e4c4cefcdf08", - "39645673-2ed5-41e8-a587-631d277781d6", - "e04f4bfc-1aaf-404e-9cd9-cb5d38d6f708", - "79434c2e-3072-475c-97ab-861543d65241", - "f844dd3c-5775-477e-8f04-ac1f3463ee15", - "4cb346fd-718f-4ceb-b490-d8463e9c9726", - "813a2c07-9aaa-483a-860b-b17401d952ef", - "7691949c-d9cc-43d7-8874-a5342c53f1ba", - "904af824-95fe-41e0-8455-21f2e8066c3f", - "ce369bd0-1fb1-492e-8ea9-1332571a481a", - "31d388ba-24e5-46d6-a9a9-642114750c2e", - "273ea820-e99f-40bb-9e3c-70e5504e7ba8", - "a8198f01-ecd8-4080-8cd8-2be45ca4f679", - "c198f14e-51e2-46e4-972f-bd45c57e3ed3", - "b9aaf3e8-59d2-4837-ae82-c91f28c87fb0", - "d49b9d79-a89f-43a0-852b-7638f03131d4", - "986d81b8-a047-431a-8e30-d9eeffedd080", - "3ce6dfdd-9f5f-4576-b922-27a57d8b18c0", - "cb9d98f5-b3be-42c6-8762-f1f15c07f79f", - "086fd32a-3c30-4720-9c84-5336595f469d", - "3b2eece5-0096-471e-9d9a-5ee1da11971d", - "1b9ee889-84ef-4da3-a618-5d6ec2801641", - "20d6ddc3-88c9-42c8-9b29-138923baf354", - "8c0c5195-c811-4455-bf11-522a56d46567", - "6b57ac07-3aa6-487f-87aa-5b452a1b73f5", - "81ad0788-21aa-4b69-873f-97db9d8e73ea", - "229a1b17-60d7-4523-831e-39a929303c48", - "e6dfefe7-458b-44bd-8681-1c42e5a54d98", - "e43c850a-ecf1-47f2-93f3-fdf9626e06d2", - "d5b0470b-ea0c-4c2b-8f74-475ae66830e8", - "ef1a9b17-7911-4683-a4f2-d2b34c8a2f84", - "5c82a2e7-a38c-4f22-8c6b-e0911144976d", - "7dd723d7-75c1-4a2f-aa4c-2a7c7f771179", - "71e6bd55-cf08-4655-9994-0366827eae1b", - "e0032f40-8e2c-4e2e-8aad-28853c100154", - "6144dd66-8ab0-41ad-84f3-57d71c3526d6", - "5d84e084-a8c7-49b1-b0cb-9f481ebc6656", - "0e3c3a8c-5d26-4e18-8349-6298bed69eea", - "e582c0e1-8caa-4388-bf91-daf06d8db5f1", - "93a18663-a07b-4bb9-97e6-899db6d79d67", - "19266646-47a2-4724-89cf-7ff5f169fa47", - "33d7b300-1ecb-4591-bf70-fdccb7ed3501", - "34bf559b-f2a7-4145-8b6e-c147abf75448", - "1b4c4f90-65fb-4d3c-bf01-065d3afc437f", - "edb4889c-22f7-4b64-b3cb-d5542b4e7837", - "8502bdaf-9224-4939-9388-a71269d66f77", - "70bfda7e-51b4-455d-8124-6b23193ed3a7", - "0d1c3f2b-4f93-4d8e-b23f-daf6df32f424", - "196427af-4870-44a9-b490-a7e742bfee71", - "55a4c7dc-de62-46cf-bc05-830a5d4eebea", - "539511c6-bae1-4708-a32c-7e300b2f33f4", - "31cb7b80-a0fe-472d-bb87-576fdf61988c", - "2fcece96-d1fb-4b9e-a047-c9aecb1e6e99", - "0a113af9-9b04-45a6-92e6-40d33b7dbd15", - "7a939f4e-4f81-4a1a-9c44-4a0a49fc2a09", - "f5339a3f-2d91-4624-8560-a61385736f08" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9423828125, - "Text": "2022 Annual report", - "Geometry": { - "BoundingBox": { - "Width": 0.09057048708200455, - "Height": 0.007855975069105625, - "Left": 0.11482781916856766, - "Top": 0.03517994284629822 - }, - "Polygon": [ - { - "X": 0.11482944339513779, - "Y": 0.03517994284629822 - }, - { - "X": 0.2053983062505722, - "Y": 0.035204850137233734 - }, - { - "X": 0.20539681613445282, - "Y": 0.04303591698408127 - }, - { - "X": 0.11482781916856766, - "Y": 0.043010927736759186 - } - ] - }, - "Id": "f45531e5-70f5-44bb-833f-573a79d8c584", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "90838d79-ae87-4a89-9db4-9efdfd95fac0", - "cb7c182c-8ed9-47e2-83a0-f98e8df18e20", - "33a3362e-0938-43a7-8098-8e847b3d56d4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.89167022705078, - "Text": "Contents", - "Geometry": { - "BoundingBox": { - "Width": 0.040003981441259384, - "Height": 0.0068016196601092815, - "Left": 0.3082900941371918, - "Top": 0.034473154693841934 - }, - "Polygon": [ - { - "X": 0.3082912564277649, - "Y": 0.034473154693841934 - }, - { - "X": 0.34829407930374146, - "Y": 0.034484151750802994 - }, - { - "X": 0.3482929468154907, - "Y": 0.0412747748196125 - }, - { - "X": 0.3082900941371918, - "Y": 0.041263747960329056 - } - ] - }, - "Id": "e150b7cf-f682-4c86-a41e-4f0270bf1cc8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "eed1e4d9-e1c7-44d1-86f7-145403939680" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.94671630859375, - "Text": "Auditor's report", - "Geometry": { - "BoundingBox": { - "Width": 0.0700216293334961, - "Height": 0.00806988775730133, - "Left": 0.3725019097328186, - "Top": 0.03449578210711479 - }, - "Polygon": [ - { - "X": 0.3725031912326813, - "Y": 0.03449578210711479 - }, - { - "X": 0.4425235390663147, - "Y": 0.034515030682086945 - }, - { - "X": 0.4425223469734192, - "Y": 0.04256566986441612 - }, - { - "X": 0.3725019097328186, - "Y": 0.0425463542342186 - } - ] - }, - "Id": "37f0985f-4ad8-4f42-9453-0f568df3234b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "545d8835-01fd-4baf-9373-a75639744dd5", - "ad43d4f9-8655-422c-a158-bed7e2a40ad8" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.88167572021484, - "Text": "Consolidated financial statements", - "Geometry": { - "BoundingBox": { - "Width": 0.15819838643074036, - "Height": 0.006929513067007065, - "Left": 0.4555876553058624, - "Top": 0.03437860682606697 - }, - "Polygon": [ - { - "X": 0.4555886685848236, - "Y": 0.03437860682606697 - }, - { - "X": 0.6137860417366028, - "Y": 0.03442209213972092 - }, - { - "X": 0.6137852072715759, - "Y": 0.041308119893074036 - }, - { - "X": 0.4555876553058624, - "Y": 0.041264504194259644 - } - ] - }, - "Id": "750fe00e-1af0-47d8-9bbb-cb65c270a62b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "64a73370-d8ad-469a-a0bd-8a3802df03a7", - "4dd3e25d-6820-4936-8419-7d40287b84b2", - "c1ff7403-af6b-467f-9aae-c1c0467f081d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92723083496094, - "Text": "Notes to the consolidated financial statements", - "Geometry": { - "BoundingBox": { - "Width": 0.2068391740322113, - "Height": 0.007115072570741177, - "Left": 0.6265391707420349, - "Top": 0.034268490970134735 - }, - "Polygon": [ - { - "X": 0.626539945602417, - "Y": 0.034268490970134735 - }, - { - "X": 0.8333783149719238, - "Y": 0.03432534262537956 - }, - { - "X": 0.8333777785301208, - "Y": 0.04138356074690819 - }, - { - "X": 0.6265391707420349, - "Y": 0.04132653400301933 - } - ] - }, - "Id": "9f8edf24-70c8-4ae6-b0e4-985741ec8c15", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "73ad4b4e-eb6a-4a3e-bf12-873044597180", - "893c444b-195a-4b97-a288-8f7e0bf4e1d6", - "4e76ffee-a2d3-40f9-88f8-4147a6bfef6b", - "a594c291-4026-48a9-bce0-faf3e1091a2f", - "afea97cd-8fea-4253-81c7-9e4b41089121", - "fb64183b-f5d8-473b-8466-831a113b1d98" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.46775817871094, - "Text": "Appendix", - "Geometry": { - "BoundingBox": { - "Width": 0.04237174242734909, - "Height": 0.007997668348252773, - "Left": 0.8428107500076294, - "Top": 0.03454897925257683 - }, - "Polygon": [ - { - "X": 0.8428113460540771, - "Y": 0.03454897925257683 - }, - { - "X": 0.8851824998855591, - "Y": 0.03456062823534012 - }, - { - "X": 0.8851819634437561, - "Y": 0.042546648532152176 - }, - { - "X": 0.8428107500076294, - "Y": 0.0425349622964859 - } - ] - }, - "Id": "9419bf1e-82e0-4fbf-9fe0-04e571a927cd", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7a238fca-6a55-4856-930c-d18baf4a1fa8" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.44259643554688, - "Text": "Translation of the consolidated annual accounts originally issued in Spanish and prepared in accordance with the regulatory financial reporting framework applicable to the Group in Spain (see Notes 1", - "Geometry": { - "BoundingBox": { - "Width": 0.761518120765686, - "Height": 0.007799447979778051, - "Left": 0.11076628416776657, - "Top": 0.10692361742258072 - }, - "Polygon": [ - { - "X": 0.11076787114143372, - "Y": 0.10692361742258072 - }, - { - "X": 0.8722844123840332, - "Y": 0.10713954269886017 - }, - { - "X": 0.8722838759422302, - "Y": 0.11472306400537491 - }, - { - "X": 0.11076628416776657, - "Y": 0.11450645327568054 - } - ] - }, - "Id": "87254283-66bc-4175-b02b-bb75a52b8359", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "01ab74c6-03c8-4120-a318-f6c6f8d2fa91", - "8fabe648-f539-4e3d-b03a-944993693bf4", - "b32a1296-111c-487f-91be-64350ebda785", - "3b2814b0-ba16-49da-a6aa-42dbc0470f9c", - "3be213f1-65af-49f1-910f-53600d5566fd", - "a59bd2e7-1a39-4c50-87e2-811f2a5d4fb9", - "9eb5165a-796b-44f6-b309-8d9a312ac9cd", - "0d562725-ef82-4e49-8d00-2c00bea9bd5e", - "f1d0a3bf-c06c-4b77-810c-4de2a0b55f52", - "94a2a237-2786-4c66-8ff0-7acf48f3fae5", - "dd73acad-a445-4e86-af27-22d6cfd6479f", - "80094812-ad46-4195-b4f8-69733660cde2", - "ea04ccfa-f6ad-4fa0-ab78-f2dfd3656fae", - "9ad060d0-b28e-46dc-851e-74e2e8906c32", - "888944df-9dea-49e3-8334-6e77b101c784", - "5bfda903-8cd7-4d06-99a0-7c54de016851", - "682a4326-3292-4bb1-8606-e073913c891a", - "2c6dc337-d8fc-40b3-82d4-4c9ae3592592", - "8b847366-7050-43f9-9411-019b0a5dfdd2", - "62182509-f345-4e75-829d-a35142dda722", - "46d4ee12-a97d-41c6-a36b-2ca147df83c5", - "af13163f-22d7-4b58-b8c7-d56aa6969d9c", - "36a5f5e5-4ce6-46d0-aecd-9e56ef54d344", - "7a09ce2d-c190-464a-8bbd-d8706a3b42e0", - "ad87dc28-31f3-4e0c-9834-55f11bc831b3", - "71147a4b-951a-454b-9ac3-ad2d051fa2b0", - "28165901-be86-44cd-9739-2adff1d5ef37", - "f4425192-74b2-45ed-b0f2-d4daa9767b5e", - "9f38a403-2507-4012-9084-c34b128f7b4c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 98.85511016845703, - "Text": "and 54). In the event of a discrepancy, the Spanish- version prevails.", - "Geometry": { - "BoundingBox": { - "Width": 0.2587953805923462, - "Height": 0.00753288809210062, - "Left": 0.11011253297328949, - "Top": 0.11528494209051132 - }, - "Polygon": [ - { - "X": 0.11011408269405365, - "Y": 0.11528494209051132 - }, - { - "X": 0.3689078986644745, - "Y": 0.11535857617855072 - }, - { - "X": 0.368906706571579, - "Y": 0.12281782925128937 - }, - { - "X": 0.11011253297328949, - "Y": 0.12274396419525146 - } - ] - }, - "Id": "48be3c22-1a1c-49f3-afd7-a14b720a64d3", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "0c62e96b-a764-44e5-bd34-3548ad9d1dee", - "3042032c-8a16-44a2-8d08-5d9aa56fba5c", - "2051389a-39d1-4ae8-aac0-496048fe08bd", - "185e60c9-e13b-4f48-86a2-5cc0f7e055ad", - "ab31caa1-f7a7-43a9-819b-d078e902c0ee", - "f3e3ccf7-5aa9-4482-a1eb-bca9e2117ed4", - "5e8b2d9c-f0a0-4995-80c5-95cffcf92b3d", - "aab16b09-8715-4fc4-90e1-c310f1a867b9", - "d7bf3151-87c9-419d-b43d-acf75b0fb0b8", - "2d38e0c1-72b7-48d7-9ca4-75c76033dd45", - "99755850-78d5-4f41-8de7-d1bb9b3288b5", - "8e9ef034-7848-40fb-ab0b-102b7a638013" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 98.87293243408203, - "Text": "Grupo Santander", - "Geometry": { - "BoundingBox": { - "Width": 0.14425289630889893, - "Height": 0.0159462783485651, - "Left": 0.11039610207080841, - "Top": 0.14189493656158447 - }, - "Polygon": [ - { - "X": 0.11039941757917404, - "Y": 0.14189493656158447 - }, - { - "X": 0.25464898347854614, - "Y": 0.14193643629550934 - }, - { - "X": 0.25464609265327454, - "Y": 0.15784122049808502 - }, - { - "X": 0.11039610207080841, - "Y": 0.15779943764209747 - } - ] - }, - "Id": "2b1b1133-456c-411a-9fc7-eeadff9ddf5a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "893aa4a8-12ca-4323-82a0-8897499251a2", - "a851ed17-0744-422d-b73f-82f1eae793bd" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93378448486328, - "Text": "CONSOLIDATED BALANCE SHEETS AS OF 31 DECEMBER 2022, 2021 AND 2020", - "Geometry": { - "BoundingBox": { - "Width": 0.4691337049007416, - "Height": 0.009820839390158653, - "Left": 0.1144094169139862, - "Top": 0.18036986887454987 - }, - "Polygon": [ - { - "X": 0.11441142857074738, - "Y": 0.18036986887454987 - }, - { - "X": 0.5835431218147278, - "Y": 0.18050698935985565 - }, - { - "X": 0.5835419297218323, - "Y": 0.19019070267677307 - }, - { - "X": 0.1144094169139862, - "Y": 0.1900530457496643 - } - ] - }, - "Id": "c975b9d8-17d6-4984-9501-a64ca25ab402", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "32deb9cd-7295-4b73-b00b-7d5a6b160638", - "5b43f1b7-6cfb-4310-a728-b5007a9cde9e", - "26a7bd7e-de49-4ed8-be36-f057f5d187df", - "f300e238-a949-45a1-8506-2b2911d0df90", - "effe7c34-5474-4562-bc0f-8d39b581b662", - "85b45a58-4172-41b3-b0d1-12ceed41c5cc", - "4b9f8aee-227d-4511-bb36-dd57925f4242", - "f15d1b4c-c3e3-4de3-acc8-f19abd2c0af4", - "02829d12-7099-4111-87d3-ef798377d13e", - "461f1766-b233-4759-bf72-e4149690f720", - "c51d8d8e-83b3-4736-aada-43e7d312bec8" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.69822692871094, - "Text": "EUR million", - "Geometry": { - "BoundingBox": { - "Width": 0.0558321438729763, - "Height": 0.007329938001930714, - "Left": 0.11452721804380417, - "Top": 0.19566918909549713 - }, - "Polygon": [ - { - "X": 0.11452873796224594, - "Y": 0.19566918909549713 - }, - { - "X": 0.17035935819149017, - "Y": 0.19568561017513275 - }, - { - "X": 0.17035792768001556, - "Y": 0.20299912989139557 - }, - { - "X": 0.11452721804380417, - "Y": 0.20298266410827637 - } - ] - }, - "Id": "108e56e0-ce95-4eba-8ee6-b9f45d8575d8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "324daa3f-ccb5-4b2a-a0d5-cd33c79e4205", - "d87f85ed-daf1-4ca7-8073-0cf802e70e50" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92911529541016, - "Text": "ASSETS", - "Geometry": { - "BoundingBox": { - "Width": 0.0404212512075901, - "Height": 0.007525451481342316, - "Left": 0.11379318684339523, - "Top": 0.22878509759902954 - }, - "Polygon": [ - { - "X": 0.11379475146532059, - "Y": 0.22878509759902954 - }, - { - "X": 0.15421444177627563, - "Y": 0.22879715263843536 - }, - { - "X": 0.15421293675899506, - "Y": 0.23631055653095245 - }, - { - "X": 0.11379318684339523, - "Y": 0.23629847168922424 - } - ] - }, - "Id": "5b7bbc5c-44b9-4287-868d-a4be583b1f49", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "60d1e7a3-be03-4c3c-880f-beb8d9355efe" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9632568359375, - "Text": "Note", - "Geometry": { - "BoundingBox": { - "Width": 0.0252684336155653, - "Height": 0.007400344591587782, - "Left": 0.6339773535728455, - "Top": 0.22889038920402527 - }, - "Polygon": [ - { - "X": 0.6339781880378723, - "Y": 0.22889038920402527 - }, - { - "X": 0.6592457890510559, - "Y": 0.22889792919158936 - }, - { - "X": 0.659244954586029, - "Y": 0.23629073798656464 - }, - { - "X": 0.6339773535728455, - "Y": 0.23628318309783936 - } - ] - }, - "Id": "1d36be3a-28bf-4d87-8803-7a05cfe85ed2", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a1bb1089-2f87-4ef4-b3f1-8b95b78ff709" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96760559082031, - "Text": "2022", - "Geometry": { - "BoundingBox": { - "Width": 0.02647084929049015, - "Height": 0.007554627023637295, - "Left": 0.7073765397071838, - "Top": 0.22868841886520386 - }, - "Polygon": [ - { - "X": 0.7073773145675659, - "Y": 0.22868841886520386 - }, - { - "X": 0.7338473796844482, - "Y": 0.2286963164806366 - }, - { - "X": 0.7338466644287109, - "Y": 0.23624305427074432 - }, - { - "X": 0.7073765397071838, - "Y": 0.2362351417541504 - } - ] - }, - "Id": "cac5b65a-9787-4c8e-8e2f-55a8945cb307", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6dd83f3d-1aa1-4c83-9df1-b597703120c0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 62.5267219543457, - "Text": "20214", - "Geometry": { - "BoundingBox": { - "Width": 0.029922444373369217, - "Height": 0.009449858218431473, - "Left": 0.7770820260047913, - "Top": 0.22689448297023773 - }, - "Polygon": [ - { - "X": 0.7770828604698181, - "Y": 0.22689448297023773 - }, - { - "X": 0.807004451751709, - "Y": 0.22690339386463165 - }, - { - "X": 0.8070036768913269, - "Y": 0.2363443374633789 - }, - { - "X": 0.7770820260047913, - "Y": 0.2363353967666626 - } - ] - }, - "Id": "9cb6a3a6-c80d-4470-8aa6-ae4298304bff", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d1ed1ad8-dfa6-45fa-b72c-31985dc69ec3" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 84.45470428466797, - "Text": "2020A", - "Geometry": { - "BoundingBox": { - "Width": 0.03149137273430824, - "Height": 0.010066589340567589, - "Left": 0.8519260883331299, - "Top": 0.22636070847511292 - }, - "Polygon": [ - { - "X": 0.8519268035888672, - "Y": 0.22636070847511292 - }, - { - "X": 0.8834174275398254, - "Y": 0.22637008130550385 - }, - { - "X": 0.8834167718887329, - "Y": 0.23642729222774506 - }, - { - "X": 0.8519260883331299, - "Y": 0.23641787469387054 - } - ] - }, - "Id": "a02f238b-1a37-4855-aa36-58a46809df79", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5dd2be0e-d70b-4a5a-82a5-d05932a76167" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.49505615234375, - "Text": "CASH, CASH BALANCES AT CENTRAL BANKS AND OTHER DEPOSITS ON DEMAND", - "Geometry": { - "BoundingBox": { - "Width": 0.4291359484195709, - "Height": 0.008957985788583755, - "Left": 0.11432512104511261, - "Top": 0.2437298446893692 - }, - "Polygon": [ - { - "X": 0.11432695388793945, - "Y": 0.2437298446893692 - }, - { - "X": 0.5434610843658447, - "Y": 0.24385851621627808 - }, - { - "X": 0.543459951877594, - "Y": 0.25268781185150146 - }, - { - "X": 0.11432512104511261, - "Y": 0.25255870819091797 - } - ] - }, - "Id": "2c6fb515-b35b-47e8-8c18-f780cde6182e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "9dfd9a42-ea0b-4458-9013-c8a7a739b290", - "4ef4725a-2c27-439a-8505-593e374ecc05", - "cd9f6928-3aeb-4812-8a93-a66c82e98837", - "15776b98-7fb9-45ab-9080-89737f701e0c", - "06ad110e-0eb7-45c9-a65a-9f06d47c93d8", - "cdaafde3-b7d3-46d8-bb67-66b0a65e2402", - "8472b50b-86b1-4a1a-a007-c9ac6ff08b02", - "b1504613-463a-4409-8b29-e290b75d5f10", - "802ca123-3eed-4efc-b45d-62996710b066", - "341b66b0-28ab-4e95-88d5-d683655cf1a7", - "26aae6f0-ebb7-483d-8240-0fbc14b69434" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.61522674560547, - "Text": "223,073", - "Geometry": { - "BoundingBox": { - "Width": 0.043289124965667725, - "Height": 0.008589999750256538, - "Left": 0.689119815826416, - "Top": 0.24393188953399658 - }, - "Polygon": [ - { - "X": 0.6891207098960876, - "Y": 0.24393188953399658 - }, - { - "X": 0.7324089407920837, - "Y": 0.24394486844539642 - }, - { - "X": 0.7324081063270569, - "Y": 0.25252190232276917 - }, - { - "X": 0.689119815826416, - "Y": 0.25250887870788574 - } - ] - }, - "Id": "963f665e-97b4-4cfd-82f0-b5c5285f0fb8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4b92dcf8-235b-46b7-a41a-2eea153294be" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.77078247070312, - "Text": "210,689", - "Geometry": { - "BoundingBox": { - "Width": 0.04396512359380722, - "Height": 0.008548342622816563, - "Left": 0.7639565467834473, - "Top": 0.2438611537218094 - }, - "Polygon": [ - { - "X": 0.7639573216438293, - "Y": 0.2438611537218094 - }, - { - "X": 0.8079216480255127, - "Y": 0.24387434124946594 - }, - { - "X": 0.8079209327697754, - "Y": 0.2524094879627228 - }, - { - "X": 0.7639565467834473, - "Y": 0.25239625573158264 - } - ] - }, - "Id": "231b1390-f66e-4161-9c81-49d3b21156b6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d5473145-7aee-40a0-830e-438160811347" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.83033752441406, - "Text": "153,839", - "Geometry": { - "BoundingBox": { - "Width": 0.043369363993406296, - "Height": 0.008677063509821892, - "Left": 0.8394829034805298, - "Top": 0.24382032454013824 - }, - "Polygon": [ - { - "X": 0.8394835591316223, - "Y": 0.24382032454013824 - }, - { - "X": 0.8828522562980652, - "Y": 0.24383333325386047 - }, - { - "X": 0.8828516602516174, - "Y": 0.2524973750114441 - }, - { - "X": 0.8394829034805298, - "Y": 0.25248435139656067 - } - ] - }, - "Id": "3a984e36-e1e7-4309-96d4-1d9e797db9c0", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "47741783-3639-4c50-995e-ee35d2fcb0b9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.90778350830078, - "Text": "FINANCIAL ASSETS HELD FOR TRADING", - "Geometry": { - "BoundingBox": { - "Width": 0.20939931273460388, - "Height": 0.007612939458340406, - "Left": 0.11470629274845123, - "Top": 0.2590031921863556 - }, - "Polygon": [ - { - "X": 0.11470785737037659, - "Y": 0.2590031921863556 - }, - { - "X": 0.3241056203842163, - "Y": 0.2590663433074951 - }, - { - "X": 0.32410433888435364, - "Y": 0.2666161060333252 - }, - { - "X": 0.11470629274845123, - "Y": 0.26655277609825134 - } - ] - }, - "Id": "7fa05a52-a155-4bca-8b03-69175b2a4ecb", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f2620ef6-8737-48c0-92fb-4aa8f0decc9a", - "b9eb22e2-8402-4ccd-af77-07236c62dc8f", - "88a5b9a2-9dce-440d-b090-59c52631bd34", - "85a18c5e-c5f0-4ed7-a0b7-631f6cf497ba", - "993f3005-f90b-4714-924d-4232ec53ce1b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.86213684082031, - "Text": "156,118", - "Geometry": { - "BoundingBox": { - "Width": 0.043516479432582855, - "Height": 0.008861089125275612, - "Left": 0.689704179763794, - "Top": 0.2589060962200165 - }, - "Polygon": [ - { - "X": 0.6897051334381104, - "Y": 0.2589060962200165 - }, - { - "X": 0.7332206964492798, - "Y": 0.25891923904418945 - }, - { - "X": 0.7332198619842529, - "Y": 0.26776719093322754 - }, - { - "X": 0.689704179763794, - "Y": 0.2677540183067322 - } - ] - }, - "Id": "5944d9dd-b766-44cc-837d-5ea9c1bd67fb", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8e2c37aa-6b83-4417-9c9d-69130da0a0b2" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.87952423095703, - "Text": "116,953", - "Geometry": { - "BoundingBox": { - "Width": 0.04282016679644585, - "Height": 0.008725927211344242, - "Left": 0.7647391557693481, - "Top": 0.25903645157814026 - }, - "Polygon": [ - { - "X": 0.7647399306297302, - "Y": 0.25903645157814026 - }, - { - "X": 0.8075593113899231, - "Y": 0.25904935598373413 - }, - { - "X": 0.8075585961341858, - "Y": 0.2677623927593231 - }, - { - "X": 0.7647391557693481, - "Y": 0.2677494287490845 - } - ] - }, - "Id": "803af144-845d-4294-aada-b7ae68c83f1e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "41ea88e2-6b7f-4911-8654-a7d2028cf427" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.94640350341797, - "Text": "114,945", - "Geometry": { - "BoundingBox": { - "Width": 0.04282919690012932, - "Height": 0.008804485201835632, - "Left": 0.8396908044815063, - "Top": 0.25892359018325806 - }, - "Polygon": [ - { - "X": 0.8396914601325989, - "Y": 0.25892359018325806 - }, - { - "X": 0.8825200200080872, - "Y": 0.2589365243911743 - }, - { - "X": 0.8825194239616394, - "Y": 0.2677280902862549 - }, - { - "X": 0.8396908044815063, - "Y": 0.26771512627601624 - } - ] - }, - "Id": "dfb961fd-16f1-4834-9d28-4175e28426be", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "39fb0053-7a05-474b-9db2-e05bca57d6b5" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.77191925048828, - "Text": "Derivatives", - "Geometry": { - "BoundingBox": { - "Width": 0.057427674531936646, - "Height": 0.007860708050429821, - "Left": 0.12506026029586792, - "Top": 0.27396735548973083 - }, - "Polygon": [ - { - "X": 0.12506186962127686, - "Y": 0.27396735548973083 - }, - { - "X": 0.18248793482780457, - "Y": 0.27398478984832764 - }, - { - "X": 0.1824864000082016, - "Y": 0.2818280756473541 - }, - { - "X": 0.12506026029586792, - "Y": 0.28181058168411255 - } - ] - }, - "Id": "220dbd7a-4448-4bfc-b003-797c949c7e4f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "04d5e7f2-8ca6-4c08-8fe4-cebc1f1e875b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.94876861572266, - "Text": "9 and 11", - "Geometry": { - "BoundingBox": { - "Width": 0.04349368065595627, - "Height": 0.007806987967342138, - "Left": 0.614509105682373, - "Top": 0.2740687429904938 - }, - "Polygon": [ - { - "X": 0.6145099997520447, - "Y": 0.2740687429904938 - }, - { - "X": 0.6580027937889099, - "Y": 0.2740819454193115 - }, - { - "X": 0.6580018997192383, - "Y": 0.28187572956085205 - }, - { - "X": 0.614509105682373, - "Y": 0.2818624973297119 - } - ] - }, - "Id": "72003b07-b03f-4a37-8bad-0e68b8a4edd4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4cdf5657-e6a0-4a64-a831-30425bf72214", - "6a7077ad-8b2f-432e-a84e-63cf2867a90b", - "8b783bd9-3602-4f3a-8235-e630c10c1e7e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.87843322753906, - "Text": "67,002", - "Geometry": { - "BoundingBox": { - "Width": 0.03646380081772804, - "Height": 0.008769279345870018, - "Left": 0.6961599588394165, - "Top": 0.27411025762557983 - }, - "Polygon": [ - { - "X": 0.6961608529090881, - "Y": 0.27411025762557983 - }, - { - "X": 0.7326237559318542, - "Y": 0.27412131428718567 - }, - { - "X": 0.7326229214668274, - "Y": 0.2828795313835144 - }, - { - "X": 0.6961599588394165, - "Y": 0.2828684449195862 - } - ] - }, - "Id": "16567fc9-6b92-4310-9fea-1100b0b2ff4b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "0669c86f-f66b-4f40-a9f0-4e1cd292241b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.88883209228516, - "Text": "54,292", - "Geometry": { - "BoundingBox": { - "Width": 0.036019809544086456, - "Height": 0.00851927138864994, - "Left": 0.7715299129486084, - "Top": 0.27416184544563293 - }, - "Polygon": [ - { - "X": 0.7715306282043457, - "Y": 0.27416184544563293 - }, - { - "X": 0.8075497150421143, - "Y": 0.27417275309562683 - }, - { - "X": 0.807548999786377, - "Y": 0.28268110752105713 - }, - { - "X": 0.7715299129486084, - "Y": 0.28267014026641846 - } - ] - }, - "Id": "7c74d2d9-03a7-4bff-a561-f35c61c8724d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ae111885-7e71-4581-945b-7c5c5b01e833" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92777252197266, - "Text": "67,137", - "Geometry": { - "BoundingBox": { - "Width": 0.036777887493371964, - "Height": 0.00865253433585167, - "Left": 0.845851480960846, - "Top": 0.27412059903144836 - }, - "Polygon": [ - { - "X": 0.8458521366119385, - "Y": 0.27412059903144836 - }, - { - "X": 0.88262939453125, - "Y": 0.27413177490234375 - }, - { - "X": 0.8826287984848022, - "Y": 0.28277313709259033 - }, - { - "X": 0.845851480960846, - "Y": 0.28276193141937256 - } - ] - }, - "Id": "644236b3-aac6-4683-9db8-f96740732f63", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "af59685f-e79e-457e-b7e6-be37abf86a0f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.80217742919922, - "Text": "Equity instruments", - "Geometry": { - "BoundingBox": { - "Width": 0.09786670655012131, - "Height": 0.009374218061566353, - "Left": 0.1251252293586731, - "Top": 0.28929492831230164 - }, - "Polygon": [ - { - "X": 0.1251271516084671, - "Y": 0.28929492831230164 - }, - { - "X": 0.2229919284582138, - "Y": 0.2893247902393341 - }, - { - "X": 0.22299017012119293, - "Y": 0.29866912961006165 - }, - { - "X": 0.1251252293586731, - "Y": 0.2986391484737396 - } - ] - }, - "Id": "87aee601-bacd-43fb-8f80-92bd4d4f3215", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d23d0e87-4c63-45a0-a1b3-f5e791efa807", - "022fd29d-f1cb-4ca3-ba20-e94ee46daed7" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95458221435547, - "Text": "8", - "Geometry": { - "BoundingBox": { - "Width": 0.006500164978206158, - "Height": 0.0075710914097726345, - "Left": 0.6501794457435608, - "Top": 0.2894745469093323 - }, - "Polygon": [ - { - "X": 0.6501802802085876, - "Y": 0.2894745469093323 - }, - { - "X": 0.6566795706748962, - "Y": 0.28947654366493225 - }, - { - "X": 0.6566787958145142, - "Y": 0.29704564809799194 - }, - { - "X": 0.6501794457435608, - "Y": 0.29704365134239197 - } - ] - }, - "Id": "8840f7fe-4ea8-4c89-b279-20f6724086bb", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "64df94de-a482-467d-914b-d5ac2991044a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.83443450927734, - "Text": "10,066", - "Geometry": { - "BoundingBox": { - "Width": 0.0361800342798233, - "Height": 0.008811406791210175, - "Left": 0.696730375289917, - "Top": 0.2892386317253113 - }, - "Polygon": [ - { - "X": 0.6967312693595886, - "Y": 0.2892386317253113 - }, - { - "X": 0.7329104542732239, - "Y": 0.2892496585845947 - }, - { - "X": 0.732909619808197, - "Y": 0.29805001616477966 - }, - { - "X": 0.696730375289917, - "Y": 0.29803892970085144 - } - ] - }, - "Id": "fb6bb8d6-3779-4f30-8fad-95d9c058ab88", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b270a7be-590e-4197-a5a3-94375585c01e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.88036346435547, - "Text": "15,077", - "Geometry": { - "BoundingBox": { - "Width": 0.03593789413571358, - "Height": 0.008615630678832531, - "Left": 0.7719631195068359, - "Top": 0.28930261731147766 - }, - "Polygon": [ - { - "X": 0.7719638347625732, - "Y": 0.28930261731147766 - }, - { - "X": 0.8079009652137756, - "Y": 0.28931358456611633 - }, - { - "X": 0.8079003095626831, - "Y": 0.2979182302951813 - }, - { - "X": 0.7719631195068359, - "Y": 0.2979072332382202 - } - ] - }, - "Id": "b1af0809-ceb4-4339-ba6a-caafba4af410", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "52b8d422-02c9-4647-9853-363e51935569" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.84469604492188, - "Text": "9,615", - "Geometry": { - "BoundingBox": { - "Width": 0.029469819739460945, - "Height": 0.008629144169390202, - "Left": 0.8530312180519104, - "Top": 0.2893236577510834 - }, - "Polygon": [ - { - "X": 0.8530318737030029, - "Y": 0.2893236577510834 - }, - { - "X": 0.8825010657310486, - "Y": 0.28933265805244446 - }, - { - "X": 0.8825004696846008, - "Y": 0.297952800989151 - }, - { - "X": 0.8530312180519104, - "Y": 0.29794377088546753 - } - ] - }, - "Id": "705c5cfe-2d77-4c0f-915d-3e36ba8370ce", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "24c12832-d712-4002-8de8-a782fcf0331f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93303680419922, - "Text": "Debt securities", - "Geometry": { - "BoundingBox": { - "Width": 0.07659854739904404, - "Height": 0.007610459346324205, - "Left": 0.12507492303848267, - "Top": 0.3045169711112976 - }, - "Polygon": [ - { - "X": 0.12507648766040802, - "Y": 0.3045169711112976 - }, - { - "X": 0.2016734629869461, - "Y": 0.3045405149459839 - }, - { - "X": 0.2016720175743103, - "Y": 0.3121274411678314 - }, - { - "X": 0.12507492303848267, - "Y": 0.31210383772850037 - } - ] - }, - "Id": "d8bb3b44-72bd-4f7d-aabd-01f98d4026e7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "3818d3e0-1c5a-4b5f-999a-b80a9f3f4b6c", - "60a359f6-bf56-425f-9610-0cd90c63cba7" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93464660644531, - "Text": "7", - "Geometry": { - "BoundingBox": { - "Width": 0.006326254922896624, - "Height": 0.0073687369003891945, - "Left": 0.6500588655471802, - "Top": 0.3045688271522522 - }, - "Polygon": [ - { - "X": 0.650059700012207, - "Y": 0.3045688271522522 - }, - { - "X": 0.6563851237297058, - "Y": 0.3045707643032074 - }, - { - "X": 0.656384289264679, - "Y": 0.311937540769577 - }, - { - "X": 0.6500588655471802, - "Y": 0.3119356036186218 - } - ] - }, - "Id": "fa092afa-63c8-4245-bcdd-52b3ac746bf7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2c57d7f6-ca9c-4d2f-9d5d-711f36a92f3b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95294952392578, - "Text": "41,403", - "Geometry": { - "BoundingBox": { - "Width": 0.03661200404167175, - "Height": 0.008546596392989159, - "Left": 0.6960592269897461, - "Top": 0.30451178550720215 - }, - "Polygon": [ - { - "X": 0.6960601210594177, - "Y": 0.30451178550720215 - }, - { - "X": 0.7326712608337402, - "Y": 0.3045230209827423 - }, - { - "X": 0.7326704263687134, - "Y": 0.31305837631225586 - }, - { - "X": 0.6960592269897461, - "Y": 0.3130470812320709 - } - ] - }, - "Id": "4b52035c-27cf-45d3-a966-439a6eb7d131", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "3c12e978-ace7-4206-b32e-43c921bee34b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92908477783203, - "Text": "26,750", - "Geometry": { - "BoundingBox": { - "Width": 0.036773160099983215, - "Height": 0.008418305777013302, - "Left": 0.7711862325668335, - "Top": 0.3046106994152069 - }, - "Polygon": [ - { - "X": 0.7711869478225708, - "Y": 0.3046106994152069 - }, - { - "X": 0.8079593777656555, - "Y": 0.30462199449539185 - }, - { - "X": 0.8079586625099182, - "Y": 0.3130289912223816 - }, - { - "X": 0.7711862325668335, - "Y": 0.31301766633987427 - } - ] - }, - "Id": "3328e1fe-6fa9-41be-9856-38245409b84b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b2e80104-d368-4ae2-8c3f-e8c0090007b8" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96219635009766, - "Text": "37,894", - "Geometry": { - "BoundingBox": { - "Width": 0.03700361028313637, - "Height": 0.008534186519682407, - "Left": 0.8461146950721741, - "Top": 0.3045662045478821 - }, - "Polygon": [ - { - "X": 0.8461152911186218, - "Y": 0.3045662045478821 - }, - { - "X": 0.8831182718276978, - "Y": 0.3045775890350342 - }, - { - "X": 0.8831177353858948, - "Y": 0.3131003975868225 - }, - { - "X": 0.8461146950721741, - "Y": 0.3130890130996704 - } - ] - }, - "Id": "6df83b9b-3b91-4094-ac13-8d6d0d694935", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a961965e-6a1d-49d4-9666-4344785b7d61" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.90441131591797, - "Text": "Loans and advances", - "Geometry": { - "BoundingBox": { - "Width": 0.1025041714310646, - "Height": 0.007474577520042658, - "Left": 0.12496434152126312, - "Top": 0.3194506764411926 - }, - "Polygon": [ - { - "X": 0.12496587634086609, - "Y": 0.3194506764411926 - }, - { - "X": 0.22746852040290833, - "Y": 0.31948232650756836 - }, - { - "X": 0.2274671196937561, - "Y": 0.32692524790763855 - }, - { - "X": 0.12496434152126312, - "Y": 0.32689347863197327 - } - ] - }, - "Id": "aca7a0a7-962c-4636-ab63-1f1f9035be1d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "38166f8c-2201-4341-9d4e-cfeaed46317b", - "035e1162-ddfd-446c-8661-01aa87a4b2fe", - "3964e7a6-265a-4193-a15e-ca5855c381fa" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.89124298095703, - "Text": "37,647", - "Geometry": { - "BoundingBox": { - "Width": 0.03658881038427353, - "Height": 0.008619682863354683, - "Left": 0.6962635517120361, - "Top": 0.319316565990448 - }, - "Polygon": [ - { - "X": 0.6962644457817078, - "Y": 0.319316565990448 - }, - { - "X": 0.7328523993492126, - "Y": 0.31932786107063293 - }, - { - "X": 0.7328515648841858, - "Y": 0.32793623208999634 - }, - { - "X": 0.6962635517120361, - "Y": 0.327924907207489 - } - ] - }, - "Id": "a5b036f1-1fc7-4b42-b68b-274797f344f9", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "0a428070-ab47-443b-a274-bdf8e35a9215" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92562866210938, - "Text": "20,834", - "Geometry": { - "BoundingBox": { - "Width": 0.03698571398854256, - "Height": 0.008495516143739223, - "Left": 0.7711707353591919, - "Top": 0.31944015622138977 - }, - "Polygon": [ - { - "X": 0.7711714506149292, - "Y": 0.31944015622138977 - }, - { - "X": 0.808156430721283, - "Y": 0.31945157051086426 - }, - { - "X": 0.8081557154655457, - "Y": 0.32793566584587097 - }, - { - "X": 0.7711707353591919, - "Y": 0.3279242217540741 - } - ] - }, - "Id": "f04862e6-0562-488a-b590-07e2c5909eab", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "1b5c9f87-4e58-4763-a86a-f3b8b39683f4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.94889831542969, - "Text": "299", - "Geometry": { - "BoundingBox": { - "Width": 0.01998450979590416, - "Height": 0.007636436726897955, - "Left": 0.8627454042434692, - "Top": 0.3194434344768524 - }, - "Polygon": [ - { - "X": 0.8627459406852722, - "Y": 0.3194434344768524 - }, - { - "X": 0.8827298879623413, - "Y": 0.31944960355758667 - }, - { - "X": 0.8827294111251831, - "Y": 0.3270798921585083 - }, - { - "X": 0.8627454042434692, - "Y": 0.32707369327545166 - } - ] - }, - "Id": "ade4b3d4-33ce-4c86-aed3-d12ef4b6909d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f80fae21-8c37-479f-8cbc-9a6a5ecd2066" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92683410644531, - "Text": "Central banks", - "Geometry": { - "BoundingBox": { - "Width": 0.07085396349430084, - "Height": 0.007596574258059263, - "Left": 0.1316239982843399, - "Top": 0.3345426023006439 - }, - "Polygon": [ - { - "X": 0.13162554800510406, - "Y": 0.3345426023006439 - }, - { - "X": 0.20247796177864075, - "Y": 0.3345646262168884 - }, - { - "X": 0.20247651636600494, - "Y": 0.34213918447494507 - }, - { - "X": 0.1316239982843399, - "Y": 0.3421171009540558 - } - ] - }, - "Id": "4ae3e45c-ae2a-4e84-8831-aaea7443b058", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "decd1a23-b262-4659-bc5b-629fd729e834", - "7fc881ec-e823-4f8e-86b4-512a1d1dbc9f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97211456298828, - "Text": "6", - "Geometry": { - "BoundingBox": { - "Width": 0.006801379378885031, - "Height": 0.00757175125181675, - "Left": 0.6499885320663452, - "Top": 0.33447346091270447 - }, - "Polygon": [ - { - "X": 0.6499893665313721, - "Y": 0.33447346091270447 - }, - { - "X": 0.6567899584770203, - "Y": 0.334475576877594 - }, - { - "X": 0.6567891240119934, - "Y": 0.34204521775245667 - }, - { - "X": 0.6499885320663452, - "Y": 0.34204310178756714 - } - ] - }, - "Id": "121b110e-f5bf-48ee-9a8b-15ef5a98c2f0", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "bf3ff109-3686-407c-91ec-b659f64e0dc5" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93379974365234, - "Text": "11,595", - "Geometry": { - "BoundingBox": { - "Width": 0.0357930026948452, - "Height": 0.008547461591660976, - "Left": 0.6967487335205078, - "Top": 0.3344831168651581 - }, - "Polygon": [ - { - "X": 0.6967495679855347, - "Y": 0.3344831168651581 - }, - { - "X": 0.7325416803359985, - "Y": 0.3344942331314087 - }, - { - "X": 0.7325409054756165, - "Y": 0.34303057193756104 - }, - { - "X": 0.6967487335205078, - "Y": 0.34301942586898804 - } - ] - }, - "Id": "02ae3088-7892-470b-a14d-2cb15f6f5900", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "60fe4d54-5999-417b-9728-f9c509e7088f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92793273925781, - "Text": "3,608", - "Geometry": { - "BoundingBox": { - "Width": 0.029675127938389778, - "Height": 0.008426481857895851, - "Left": 0.7781224846839905, - "Top": 0.33456680178642273 - }, - "Polygon": [ - { - "X": 0.7781231999397278, - "Y": 0.33456680178642273 - }, - { - "X": 0.8077976107597351, - "Y": 0.3345760107040405 - }, - { - "X": 0.8077969551086426, - "Y": 0.34299328923225403 - }, - { - "X": 0.7781224846839905, - "Y": 0.34298402070999146 - } - ] - }, - "Id": "be4db0f6-6f48-406e-a0b1-11e4962b2c7a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ab4257d0-1750-4a94-9768-2ac8554ce74a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 93.70692443847656, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.010815231129527092, - "Height": 0.0017409438733011484, - "Left": 0.871825098991394, - "Top": 0.33781978487968445 - }, - "Polygon": [ - { - "X": 0.8718252182006836, - "Y": 0.33781978487968445 - }, - { - "X": 0.8826403021812439, - "Y": 0.33782315254211426 - }, - { - "X": 0.8826401829719543, - "Y": 0.33956074714660645 - }, - { - "X": 0.871825098991394, - "Y": 0.33955737948417664 - } - ] - }, - "Id": "824e2c01-7a04-4231-9116-0a0082cd4569", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "292e0cde-fd59-4b7d-a74c-f8acf518070a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.7353286743164, - "Text": "Credit institutions", - "Geometry": { - "BoundingBox": { - "Width": 0.09205012023448944, - "Height": 0.007627060171216726, - "Left": 0.13164149224758148, - "Top": 0.3496047258377075 - }, - "Polygon": [ - { - "X": 0.13164305686950684, - "Y": 0.3496047258377075 - }, - { - "X": 0.22369162738323212, - "Y": 0.34963348507881165 - }, - { - "X": 0.2236901968717575, - "Y": 0.3572317957878113 - }, - { - "X": 0.13164149224758148, - "Y": 0.35720294713974 - } - ] - }, - "Id": "cee1ed00-b2c1-4cb2-825f-a4b5d192f5fc", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7c53b13f-b9c0-4839-b78d-7270786b8d9d", - "16929518-1e10-430c-91c4-038c4cb8bbd6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96317291259766, - "Text": "6", - "Geometry": { - "BoundingBox": { - "Width": 0.006694692187011242, - "Height": 0.007476476952433586, - "Left": 0.6500639319419861, - "Top": 0.3496769666671753 - }, - "Polygon": [ - { - "X": 0.6500647664070129, - "Y": 0.3496769666671753 - }, - { - "X": 0.6567586660385132, - "Y": 0.34967905282974243 - }, - { - "X": 0.6567578315734863, - "Y": 0.35715344548225403 - }, - { - "X": 0.6500639319419861, - "Y": 0.3571513593196869 - } - ] - }, - "Id": "3d5b28c9-d30c-4899-b4fa-6cbef51b05ae", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f5c510a7-e5c8-4ade-a6cb-e2fcd2e760ef" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.807373046875, - "Text": "16,502", - "Geometry": { - "BoundingBox": { - "Width": 0.035793110728263855, - "Height": 0.008618969470262527, - "Left": 0.6968721151351929, - "Top": 0.34957629442214966 - }, - "Polygon": [ - { - "X": 0.6968729496002197, - "Y": 0.34957629442214966 - }, - { - "X": 0.7326652407646179, - "Y": 0.34958747029304504 - }, - { - "X": 0.7326644062995911, - "Y": 0.3581952750682831 - }, - { - "X": 0.6968721151351929, - "Y": 0.3581840395927429 - } - ] - }, - "Id": "5e7e0c9a-cae0-4614-8ca6-b871132564b6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "24d4f037-d783-49aa-b114-d7fb3c56376d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92012023925781, - "Text": "10,397", - "Geometry": { - "BoundingBox": { - "Width": 0.035934578627347946, - "Height": 0.00837418157607317, - "Left": 0.771908164024353, - "Top": 0.34972766041755676 - }, - "Polygon": [ - { - "X": 0.7719088792800903, - "Y": 0.34972766041755676 - }, - { - "X": 0.8078427314758301, - "Y": 0.3497388958930969 - }, - { - "X": 0.8078420758247375, - "Y": 0.35810184478759766 - }, - { - "X": 0.771908164024353, - "Y": 0.3580905795097351 - } - ] - }, - "Id": "e9030710-0cd0-48e5-8995-d6b88e468835", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "518106a3-b8f1-47d1-a5a8-4c5e458be998" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.91044616699219, - "Text": "3", - "Geometry": { - "BoundingBox": { - "Width": 0.006025179289281368, - "Height": 0.007562789134681225, - "Left": 0.8765010237693787, - "Top": 0.3498157262802124 - }, - "Polygon": [ - { - "X": 0.8765015602111816, - "Y": 0.3498157262802124 - }, - { - "X": 0.8825262188911438, - "Y": 0.3498176038265228 - }, - { - "X": 0.8825256824493408, - "Y": 0.3573785126209259 - }, - { - "X": 0.8765010237693787, - "Y": 0.3573766350746155 - } - ] - }, - "Id": "e004e757-13d4-49bb-b4fd-8fb2c6178e01", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d55832a9-3d75-4969-a6ed-f61d1e3d5fbd" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.8940658569336, - "Text": "Customers", - "Geometry": { - "BoundingBox": { - "Width": 0.05560743436217308, - "Height": 0.007427931763231754, - "Left": 0.1317802220582962, - "Top": 0.36499831080436707 - }, - "Polygon": [ - { - "X": 0.13178174197673798, - "Y": 0.36499831080436707 - }, - { - "X": 0.18738766014575958, - "Y": 0.36501580476760864 - }, - { - "X": 0.18738621473312378, - "Y": 0.37242624163627625 - }, - { - "X": 0.1317802220582962, - "Y": 0.3724087178707123 - } - ] - }, - "Id": "e14854cc-15d9-430b-af64-068c6c36ed38", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "e4769f31-0399-48c4-8c60-12572aee7c1d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.98458862304688, - "Text": "10", - "Geometry": { - "BoundingBox": { - "Width": 0.0125358235090971, - "Height": 0.007474049925804138, - "Left": 0.6441501975059509, - "Top": 0.3648471534252167 - }, - "Polygon": [ - { - "X": 0.644150972366333, - "Y": 0.3648471534252167 - }, - { - "X": 0.656686007976532, - "Y": 0.36485108733177185 - }, - { - "X": 0.6566851735115051, - "Y": 0.3723211884498596 - }, - { - "X": 0.6441501975059509, - "Y": 0.37231725454330444 - } - ] - }, - "Id": "02bb3815-2f78-4ff6-8640-6478b0530f5f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a4c3b153-b73c-4ba8-ac42-1c5fae78e03d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95221710205078, - "Text": "9,550", - "Geometry": { - "BoundingBox": { - "Width": 0.029693955555558205, - "Height": 0.008365783840417862, - "Left": 0.7032366991043091, - "Top": 0.3650336265563965 - }, - "Polygon": [ - { - "X": 0.7032375335693359, - "Y": 0.3650336265563965 - }, - { - "X": 0.7329306602478027, - "Y": 0.36504295468330383 - }, - { - "X": 0.7329298257827759, - "Y": 0.37339940667152405 - }, - { - "X": 0.7032366991043091, - "Y": 0.3733900487422943 - } - ] - }, - "Id": "75094bb5-dc91-45ee-b628-cf55c1a07e2e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ee1474db-0c35-4548-8881-0ad11eab332c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.7564697265625, - "Text": "6,829", - "Geometry": { - "BoundingBox": { - "Width": 0.029363149777054787, - "Height": 0.008386599831283092, - "Left": 0.7781544923782349, - "Top": 0.3647787570953369 - }, - "Polygon": [ - { - "X": 0.7781552672386169, - "Y": 0.3647787570953369 - }, - { - "X": 0.8075176477432251, - "Y": 0.3647879660129547 - }, - { - "X": 0.8075169920921326, - "Y": 0.3731653392314911 - }, - { - "X": 0.7781544923782349, - "Y": 0.3731561005115509 - } - ] - }, - "Id": "77113806-e8bb-44f5-a5dc-de2da12e095b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "bf27293a-dea7-4feb-a0c6-a069da0750cc" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9874267578125, - "Text": "296", - "Geometry": { - "BoundingBox": { - "Width": 0.020008444786071777, - "Height": 0.0075329928658902645, - "Left": 0.862771213054657, - "Top": 0.36489781737327576 - }, - "Polygon": [ - { - "X": 0.86277174949646, - "Y": 0.36489781737327576 - }, - { - "X": 0.8827796578407288, - "Y": 0.36490410566329956 - }, - { - "X": 0.8827791810035706, - "Y": 0.37243080139160156 - }, - { - "X": 0.862771213054657, - "Y": 0.37242448329925537 - } - ] - }, - "Id": "b9c17b12-05ee-48a5-b2c0-17ad5a970708", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "0dcb493a-de5f-43d8-bc9f-305e89d60352" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.8055419921875, - "Text": "NON-TRADING FINANCIAL ASSETS MANDATORILY AT", - "Geometry": { - "BoundingBox": { - "Width": 0.2836415767669678, - "Height": 0.0075989896431565285, - "Left": 0.11482879519462585, - "Top": 0.3800300657749176 - }, - "Polygon": [ - { - "X": 0.11483035236597061, - "Y": 0.3800300657749176 - }, - { - "X": 0.39847037196159363, - "Y": 0.3801197111606598 - }, - { - "X": 0.3984691798686981, - "Y": 0.38762906193733215 - }, - { - "X": 0.11482879519462585, - "Y": 0.3875391483306885 - } - ] - }, - "Id": "24349173-3880-4704-bcb6-41cce37b5236", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "08d65216-f49a-4640-9150-365556319ce6", - "54f2f376-f21a-490a-97a6-bdf1051f7b0e", - "d9a21c53-fd17-435b-bc85-8d2a3f20f797", - "6cf1e9fc-2226-45a4-802d-7611840ecd4a", - "3db7756c-51a4-4bd6-a4d6-3304f07b7004" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.86658477783203, - "Text": "FAIR VALUE THROUGH PROFIT OR LOSS", - "Geometry": { - "BoundingBox": { - "Width": 0.21143333613872528, - "Height": 0.007281854748725891, - "Left": 0.11471504718065262, - "Top": 0.39021509885787964 - }, - "Polygon": [ - { - "X": 0.1147165521979332, - "Y": 0.39021509885787964 - }, - { - "X": 0.3261483907699585, - "Y": 0.39028218388557434 - }, - { - "X": 0.3261471688747406, - "Y": 0.39749693870544434 - }, - { - "X": 0.11471504718065262, - "Y": 0.3974296748638153 - } - ] - }, - "Id": "abb5c6c5-0f68-4100-ac19-d4f7af9928f0", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "54895872-51d4-41f7-bcf0-719b0148a5ad", - "93820c03-3de4-42ef-ad9c-d9abd5b706ba", - "374101a0-8b28-4239-94c2-77929988192f", - "88606bf3-08e4-4b40-9b46-f7c7b82e5003", - "744fc997-45e0-4b26-a80e-27fa973cbfdc", - "b3a4fa87-aae9-43e5-9768-b9976774a250" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.85318756103516, - "Text": "5,713", - "Geometry": { - "BoundingBox": { - "Width": 0.028952958062291145, - "Height": 0.008429151028394699, - "Left": 0.7035402655601501, - "Top": 0.3901265263557434 - }, - "Polygon": [ - { - "X": 0.703541100025177, - "Y": 0.3901265263557434 - }, - { - "X": 0.7324932217597961, - "Y": 0.3901357054710388 - }, - { - "X": 0.7324923872947693, - "Y": 0.3985556662082672 - }, - { - "X": 0.7035402655601501, - "Y": 0.3985464572906494 - } - ] - }, - "Id": "eb7063b0-badc-4e36-9bd7-c8fb80db860f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f0847923-1c56-4941-91aa-e95d3348f715" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.79682159423828, - "Text": "5,536", - "Geometry": { - "BoundingBox": { - "Width": 0.030053621158003807, - "Height": 0.008423835039138794, - "Left": 0.7778223752975464, - "Top": 0.39017218351364136 - }, - "Polygon": [ - { - "X": 0.7778230905532837, - "Y": 0.39017218351364136 - }, - { - "X": 0.8078759908676147, - "Y": 0.3901817202568054 - }, - { - "X": 0.8078752756118774, - "Y": 0.39859601855278015 - }, - { - "X": 0.7778223752975464, - "Y": 0.3985864520072937 - } - ] - }, - "Id": "e3deff2a-14d6-4a86-8ef6-74e21691f57a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5e715b61-1d0a-408d-a263-2c2db8f861de" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.90840148925781, - "Text": "4,486", - "Geometry": { - "BoundingBox": { - "Width": 0.030642269179224968, - "Height": 0.008396000601351261, - "Left": 0.8524119257926941, - "Top": 0.3900205194950104 - }, - "Polygon": [ - { - "X": 0.8524125218391418, - "Y": 0.3900205194950104 - }, - { - "X": 0.8830541968345642, - "Y": 0.39003026485443115 - }, - { - "X": 0.8830536603927612, - "Y": 0.39841651916503906 - }, - { - "X": 0.8524119257926941, - "Y": 0.3984067738056183 - } - ] - }, - "Id": "1252aed3-12b7-408a-9691-b4cade82eb32", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "234cd9e3-104f-4fa5-9d90-b7cfaede0c40" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.81415557861328, - "Text": "Equity instruments", - "Geometry": { - "BoundingBox": { - "Width": 0.09756118804216385, - "Height": 0.009161994792521, - "Left": 0.12521865963935852, - "Top": 0.40528541803359985 - }, - "Polygon": [ - { - "X": 0.12522053718566895, - "Y": 0.40528541803359985 - }, - { - "X": 0.22277984023094177, - "Y": 0.4053165316581726 - }, - { - "X": 0.22277812659740448, - "Y": 0.4144473969936371 - }, - { - "X": 0.12521865963935852, - "Y": 0.4144161641597748 - } - ] - }, - "Id": "2854432b-767c-45d9-9f30-ac5deaad16f0", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "071e64e2-3bf4-40ce-a2b3-337cca5fcbb8", - "bc53d4d5-fd64-467a-a832-7374742dfd6d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93412780761719, - "Text": "8", - "Geometry": { - "BoundingBox": { - "Width": 0.006754094269126654, - "Height": 0.007253038231283426, - "Left": 0.6526448726654053, - "Top": 0.40538790822029114 - }, - "Polygon": [ - { - "X": 0.6526456475257874, - "Y": 0.40538790822029114 - }, - { - "X": 0.6593989729881287, - "Y": 0.40539008378982544 - }, - { - "X": 0.6593981981277466, - "Y": 0.4126409590244293 - }, - { - "X": 0.6526448726654053, - "Y": 0.412638783454895 - } - ] - }, - "Id": "ab21a6cd-23ef-459b-b4ff-3e938eb15472", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a2c8c5e5-9264-446d-80f5-6bfc6d0b4116" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.47230529785156, - "Text": "3,711", - "Geometry": { - "BoundingBox": { - "Width": 0.028474953025579453, - "Height": 0.008481782861053944, - "Left": 0.7030772566795349, - "Top": 0.40516403317451477 - }, - "Polygon": [ - { - "X": 0.7030780911445618, - "Y": 0.40516403317451477 - }, - { - "X": 0.7315521836280823, - "Y": 0.405173122882843 - }, - { - "X": 0.7315514087677002, - "Y": 0.41364580392837524 - }, - { - "X": 0.7030772566795349, - "Y": 0.4136366844177246 - } - ] - }, - "Id": "fcd3eba4-e9f7-47c9-b97a-42cb339d3553", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "0c59b9a8-2ca4-4406-9546-ece40083d540" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92478942871094, - "Text": "4,042", - "Geometry": { - "BoundingBox": { - "Width": 0.02945718914270401, - "Height": 0.008231273852288723, - "Left": 0.7781260013580322, - "Top": 0.4052489995956421 - }, - "Polygon": [ - { - "X": 0.7781267166137695, - "Y": 0.4052489995956421 - }, - { - "X": 0.8075831532478333, - "Y": 0.4052583873271942 - }, - { - "X": 0.8075824975967407, - "Y": 0.413480281829834 - }, - { - "X": 0.7781260013580322, - "Y": 0.4134708344936371 - } - ] - }, - "Id": "244f5c41-0485-4bd1-beb5-c12f185ae696", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d58b266d-f1bf-481c-8c7c-1ceb72b67953" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.8553466796875, - "Text": "3,234", - "Geometry": { - "BoundingBox": { - "Width": 0.029908139258623123, - "Height": 0.008283162489533424, - "Left": 0.8531408309936523, - "Top": 0.40526723861694336 - }, - "Polygon": [ - { - "X": 0.8531414270401001, - "Y": 0.40526723861694336 - }, - { - "X": 0.883048951625824, - "Y": 0.4052767753601074 - }, - { - "X": 0.883048415184021, - "Y": 0.41355040669441223 - }, - { - "X": 0.8531408309936523, - "Y": 0.4135408401489258 - } - ] - }, - "Id": "9361a07e-4a93-48f2-ad73-23eaf2b64754", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "1aa6257a-ec95-45f4-a7df-dcf8ad403308" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93507385253906, - "Text": "Debt securities", - "Geometry": { - "BoundingBox": { - "Width": 0.07671421021223068, - "Height": 0.007457992061972618, - "Left": 0.12524928152561188, - "Top": 0.4202108085155487 - }, - "Polygon": [ - { - "X": 0.12525080144405365, - "Y": 0.4202108085155487 - }, - { - "X": 0.20196348428726196, - "Y": 0.42023542523384094 - }, - { - "X": 0.20196205377578735, - "Y": 0.42766880989074707 - }, - { - "X": 0.12524928152561188, - "Y": 0.42764413356781006 - } - ] - }, - "Id": "bb4e38f7-155f-4b33-a7ca-56d5ef1756fb", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "63ebbe63-52c4-41ac-abf3-0ac8332887fd", - "d55e03cd-8808-41a6-99a0-197b3bd61971" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93795013427734, - "Text": "7", - "Geometry": { - "BoundingBox": { - "Width": 0.006497852969914675, - "Height": 0.007181223481893539, - "Left": 0.6528176665306091, - "Top": 0.4201682209968567 - }, - "Polygon": [ - { - "X": 0.6528184413909912, - "Y": 0.4201682209968567 - }, - { - "X": 0.6593155264854431, - "Y": 0.42017027735710144 - }, - { - "X": 0.659314751625061, - "Y": 0.42734941840171814 - }, - { - "X": 0.6528176665306091, - "Y": 0.427347332239151 - } - ] - }, - "Id": "bb775482-0035-4051-8b02-13de3685a410", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "101d22fe-fea9-4a06-ace2-64f706aa5a21" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.79142761230469, - "Text": "1,134", - "Geometry": { - "BoundingBox": { - "Width": 0.02925797924399376, - "Height": 0.008436854928731918, - "Left": 0.7038064002990723, - "Top": 0.41999930143356323 - }, - "Polygon": [ - { - "X": 0.7038072347640991, - "Y": 0.41999930143356323 - }, - { - "X": 0.7330644130706787, - "Y": 0.42000868916511536 - }, - { - "X": 0.7330635786056519, - "Y": 0.42843616008758545 - }, - { - "X": 0.7038064002990723, - "Y": 0.42842674255371094 - } - ] - }, - "Id": "f6458641-0702-4788-b01d-827270796a02", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "960007b5-2361-48a1-aa1d-6a5f6426b80e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9832534790039, - "Text": "957", - "Geometry": { - "BoundingBox": { - "Width": 0.020104272291064262, - "Height": 0.00739561440423131, - "Left": 0.7876257300376892, - "Top": 0.4201411306858063 - }, - "Polygon": [ - { - "X": 0.787626326084137, - "Y": 0.4201411306858063 - }, - { - "X": 0.8077300190925598, - "Y": 0.4201475977897644 - }, - { - "X": 0.8077293634414673, - "Y": 0.4275367558002472 - }, - { - "X": 0.7876257300376892, - "Y": 0.42753028869628906 - } - ] - }, - "Id": "e3fb1926-60d2-4448-99e8-7281ad6ef1aa", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8e81cc23-5593-497b-a96b-344ce77ae90b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9925765991211, - "Text": "700", - "Geometry": { - "BoundingBox": { - "Width": 0.0201333686709404, - "Height": 0.007415682077407837, - "Left": 0.8626888990402222, - "Top": 0.42007508873939514 - }, - "Polygon": [ - { - "X": 0.8626894354820251, - "Y": 0.42007508873939514 - }, - { - "X": 0.8828222751617432, - "Y": 0.4200815260410309 - }, - { - "X": 0.882821798324585, - "Y": 0.427490770816803 - }, - { - "X": 0.8626888990402222, - "Y": 0.42748427391052246 - } - ] - }, - "Id": "809c2900-395e-435e-8670-591b11f4a2d6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "fd2996b5-43fe-4556-81fb-8e97ad027a2d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.89986419677734, - "Text": "Loans and advances", - "Geometry": { - "BoundingBox": { - "Width": 0.10231592506170273, - "Height": 0.0073257433250546455, - "Left": 0.12519393861293793, - "Top": 0.43526124954223633 - }, - "Polygon": [ - { - "X": 0.1251954287290573, - "Y": 0.43526124954223633 - }, - { - "X": 0.22750985622406006, - "Y": 0.4352942705154419 - }, - { - "X": 0.22750848531723022, - "Y": 0.4425870180130005 - }, - { - "X": 0.12519393861293793, - "Y": 0.44255390763282776 - } - ] - }, - "Id": "03faefbe-e61b-4a27-ba86-78177d8f36f9", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b5add48c-df3a-4ac8-b218-ec7fb5de48c3", - "8a2d55f6-5ac2-4ca3-abc1-ec7cc7eeff19", - "4cd975b7-78ba-4756-a671-09220e4ac4b9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97428131103516, - "Text": "868", - "Geometry": { - "BoundingBox": { - "Width": 0.02020128443837166, - "Height": 0.00742700882256031, - "Left": 0.7129546999931335, - "Top": 0.43512269854545593 - }, - "Polygon": [ - { - "X": 0.7129554748535156, - "Y": 0.43512269854545593 - }, - { - "X": 0.7331560254096985, - "Y": 0.43512919545173645 - }, - { - "X": 0.7331553101539612, - "Y": 0.4425497055053711 - }, - { - "X": 0.7129546999931335, - "Y": 0.4425431787967682 - } - ] - }, - "Id": "a1186811-602c-47c4-bf18-7b8dc23c0754", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6b7fe0ca-b462-4259-b8ee-0d793a828333" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97291564941406, - "Text": "537", - "Geometry": { - "BoundingBox": { - "Width": 0.019856980070471764, - "Height": 0.007441255729645491, - "Left": 0.7879264950752258, - "Top": 0.43514102697372437 - }, - "Polygon": [ - { - "X": 0.7879271507263184, - "Y": 0.43514102697372437 - }, - { - "X": 0.8077834844589233, - "Y": 0.4351474344730377 - }, - { - "X": 0.8077828884124756, - "Y": 0.44258227944374084 - }, - { - "X": 0.7879264950752258, - "Y": 0.4425758421421051 - } - ] - }, - "Id": "bf930aaa-bf60-4872-be6c-e53339c14a25", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a11f8960-8667-45c6-ae4a-45f18b1ffb15" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95845794677734, - "Text": "552", - "Geometry": { - "BoundingBox": { - "Width": 0.019245168194174767, - "Height": 0.00744263082742691, - "Left": 0.8630558848381042, - "Top": 0.43512383103370667 - }, - "Polygon": [ - { - "X": 0.8630563616752625, - "Y": 0.43512383103370667 - }, - { - "X": 0.8823010325431824, - "Y": 0.4351300597190857 - }, - { - "X": 0.8823004961013794, - "Y": 0.44256648421287537 - }, - { - "X": 0.8630558848381042, - "Y": 0.44256025552749634 - } - ] - }, - "Id": "eb769ee1-2dda-45fd-9e07-6a05f7fa763d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4180c6da-5206-470a-9f70-d569256ece43" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.89070129394531, - "Text": "Central banks", - "Geometry": { - "BoundingBox": { - "Width": 0.07071076333522797, - "Height": 0.007353026885539293, - "Left": 0.13182131946086884, - "Top": 0.4503936469554901 - }, - "Polygon": [ - { - "X": 0.13182280957698822, - "Y": 0.4503936469554901 - }, - { - "X": 0.2025320827960968, - "Y": 0.45041656494140625 - }, - { - "X": 0.20253068208694458, - "Y": 0.4577466547489166 - }, - { - "X": 0.13182131946086884, - "Y": 0.4577236473560333 - } - ] - }, - "Id": "13cc415a-c978-4657-860c-fabf9daf3783", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "44f65fa7-024a-4652-87cf-b0e398796c5f", - "16d5bd5f-ae48-4ca0-8685-96cca0447c4e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97679901123047, - "Text": "6", - "Geometry": { - "BoundingBox": { - "Width": 0.006649145856499672, - "Height": 0.007312118075788021, - "Left": 0.652606725692749, - "Top": 0.4504343867301941 - }, - "Polygon": [ - { - "X": 0.6526075005531311, - "Y": 0.4504343867301941 - }, - { - "X": 0.659255862236023, - "Y": 0.4504365622997284 - }, - { - "X": 0.6592550873756409, - "Y": 0.4577465057373047 - }, - { - "X": 0.652606725692749, - "Y": 0.4577443599700928 - } - ] - }, - "Id": "5efc1083-3597-4ece-8601-e94129f897ba", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "346fb2d4-3b85-4849-990c-12edb3e4b423" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 96.85152435302734, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.011259706690907478, - "Height": 0.0019709677435457706, - "Left": 0.7219870686531067, - "Top": 0.4535057544708252 - }, - "Polygon": [ - { - "X": 0.721987247467041, - "Y": 0.4535057544708252 - }, - { - "X": 0.7332468032836914, - "Y": 0.4535094201564789 - }, - { - "X": 0.7332465648651123, - "Y": 0.4554767310619354 - }, - { - "X": 0.7219870686531067, - "Y": 0.45547306537628174 - } - ] - }, - "Id": "7fed3628-1132-4dde-af30-bb20e06aff47", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b2d2fc2a-2158-446d-8710-d647dd0d5887" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 96.23677825927734, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.010979464277625084, - "Height": 0.0018600599141791463, - "Left": 0.7967638969421387, - "Top": 0.4534994959831238 - }, - "Polygon": [ - { - "X": 0.796764075756073, - "Y": 0.4534994959831238 - }, - { - "X": 0.8077433705329895, - "Y": 0.4535030722618103 - }, - { - "X": 0.8077431917190552, - "Y": 0.455359548330307 - }, - { - "X": 0.7967638969421387, - "Y": 0.45535600185394287 - } - ] - }, - "Id": "23cadb40-ca16-4052-855f-91411e77bc2d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2a58b9fe-aaac-45e3-aa3e-64c428c86a26" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 95.12261962890625, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.011419418267905712, - "Height": 0.001883388147689402, - "Left": 0.8715899586677551, - "Top": 0.45351290702819824 - }, - "Polygon": [ - { - "X": 0.8715900778770447, - "Y": 0.45351290702819824 - }, - { - "X": 0.8830093741416931, - "Y": 0.4535166025161743 - }, - { - "X": 0.8830092549324036, - "Y": 0.45539629459381104 - }, - { - "X": 0.8715899586677551, - "Y": 0.4553925693035126 - } - ] - }, - "Id": "09eaf1ce-c867-445b-b580-1dd574ad19b8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "17257393-177a-4092-b408-474aed175b60" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.75334167480469, - "Text": "Credit institutions", - "Geometry": { - "BoundingBox": { - "Width": 0.09148098528385162, - "Height": 0.007518167141824961, - "Left": 0.1319892704486847, - "Top": 0.46537670493125916 - }, - "Polygon": [ - { - "X": 0.13199080526828766, - "Y": 0.46537670493125916 - }, - { - "X": 0.22347025573253632, - "Y": 0.46540653705596924 - }, - { - "X": 0.2234688550233841, - "Y": 0.4728948771953583 - }, - { - "X": 0.1319892704486847, - "Y": 0.47286495566368103 - } - ] - }, - "Id": "c3e413a9-c669-47a5-aab1-def7693e7542", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "dce860e8-ef52-47ba-a29f-2a71d8d8909f", - "2d9252f7-cd0f-4f23-9565-9fb7c2b75713" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96986389160156, - "Text": "6", - "Geometry": { - "BoundingBox": { - "Width": 0.006619635038077831, - "Height": 0.007237485144287348, - "Left": 0.6526841521263123, - "Top": 0.46556535363197327 - }, - "Polygon": [ - { - "X": 0.6526849269866943, - "Y": 0.46556535363197327 - }, - { - "X": 0.6593037843704224, - "Y": 0.46556752920150757 - }, - { - "X": 0.6593030095100403, - "Y": 0.4728028476238251 - }, - { - "X": 0.6526841521263123, - "Y": 0.47280067205429077 - } - ] - }, - "Id": "07f3d617-d700-4fd0-b36e-3e8ad9c5e10f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2acad2ca-2fac-4b74-9a30-b5538952f867" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 94.79869842529297, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.010935220867395401, - "Height": 0.0015178670873865485, - "Left": 0.7223008275032043, - "Top": 0.46890875697135925 - }, - "Polygon": [ - { - "X": 0.7223009467124939, - "Y": 0.46890875697135925 - }, - { - "X": 0.7332360148429871, - "Y": 0.4689123332500458 - }, - { - "X": 0.7332358956336975, - "Y": 0.47042661905288696 - }, - { - "X": 0.7223008275032043, - "Y": 0.47042304277420044 - } - ] - }, - "Id": "4fc7317d-d22d-48d9-ae34-88e99186bfbf", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ba24baec-d367-403b-9c87-1a3c4eed488c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 95.32463836669922, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.010953599587082863, - "Height": 0.001736013451591134, - "Left": 0.7967885136604309, - "Top": 0.46872177720069885 - }, - "Polygon": [ - { - "X": 0.7967886924743652, - "Y": 0.46872177720069885 - }, - { - "X": 0.8077421188354492, - "Y": 0.4687253534793854 - }, - { - "X": 0.8077419996261597, - "Y": 0.4704577922821045 - }, - { - "X": 0.7967885136604309, - "Y": 0.4704541862010956 - } - ] - }, - "Id": "c8870530-88f4-4e35-bbc4-6da48c6780d3", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "74dc4b19-f9f9-4053-a6b1-0cb447c413f5" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 93.33809661865234, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.011266450397670269, - "Height": 0.0017534771468490362, - "Left": 0.8718171119689941, - "Top": 0.468715637922287 - }, - "Polygon": [ - { - "X": 0.8718172311782837, - "Y": 0.468715637922287 - }, - { - "X": 0.8830835819244385, - "Y": 0.46871933341026306 - }, - { - "X": 0.8830834627151489, - "Y": 0.4704691171646118 - }, - { - "X": 0.8718171119689941, - "Y": 0.47046545147895813 - } - ] - }, - "Id": "6516311b-1ee1-430d-8b99-ec2705e19877", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "453068b9-44b3-4a69-bbf9-125ca397e9e5" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.86734008789062, - "Text": "Customers", - "Geometry": { - "BoundingBox": { - "Width": 0.055579278618097305, - "Height": 0.0073247309774160385, - "Left": 0.13174383342266083, - "Top": 0.48076680302619934 - }, - "Polygon": [ - { - "X": 0.1317453235387802, - "Y": 0.48076680302619934 - }, - { - "X": 0.18732310831546783, - "Y": 0.4807850122451782 - }, - { - "X": 0.18732169270515442, - "Y": 0.48809152841567993 - }, - { - "X": 0.13174383342266083, - "Y": 0.4880732297897339 - } - ] - }, - "Id": "cb19a213-1b2b-4cb5-bc6c-178b5945e588", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "722e77e1-f28f-42a1-8233-7cc2b88bd56e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97560119628906, - "Text": "10", - "Geometry": { - "BoundingBox": { - "Width": 0.012321686372160912, - "Height": 0.0073943790048360825, - "Left": 0.647010862827301, - "Top": 0.48061397671699524 - }, - "Polygon": [ - { - "X": 0.6470116972923279, - "Y": 0.48061397671699524 - }, - { - "X": 0.6593325734138489, - "Y": 0.4806180000305176 - }, - { - "X": 0.6593317985534668, - "Y": 0.4880083501338959 - }, - { - "X": 0.647010862827301, - "Y": 0.48800429701805115 - } - ] - }, - "Id": "765f6ea8-6a6c-46e5-8e23-7e76685f76eb", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "0360f7b2-bbfe-4038-8dc2-739c9f9d54d5" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96659088134766, - "Text": "868", - "Geometry": { - "BoundingBox": { - "Width": 0.019795887172222137, - "Height": 0.007310533430427313, - "Left": 0.713088870048523, - "Top": 0.48076847195625305 - }, - "Polygon": [ - { - "X": 0.7130895853042603, - "Y": 0.48076847195625305 - }, - { - "X": 0.7328847646713257, - "Y": 0.48077496886253357 - }, - { - "X": 0.7328840494155884, - "Y": 0.4880790114402771 - }, - { - "X": 0.713088870048523, - "Y": 0.4880724847316742 - } - ] - }, - "Id": "eab27eb1-b8ae-4b90-a1c8-7c2fe2f4b328", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "513b7745-009e-4655-b5fd-21b9b0f4c3b1" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97230529785156, - "Text": "537", - "Geometry": { - "BoundingBox": { - "Width": 0.019502829760313034, - "Height": 0.007477203384041786, - "Left": 0.7881724238395691, - "Top": 0.48071345686912537 - }, - "Polygon": [ - { - "X": 0.7881730794906616, - "Y": 0.48071345686912537 - }, - { - "X": 0.8076752424240112, - "Y": 0.4807198643684387 - }, - { - "X": 0.8076746463775635, - "Y": 0.4881906509399414 - }, - { - "X": 0.7881724238395691, - "Y": 0.48818424344062805 - } - ] - }, - "Id": "8d310666-d967-498c-9598-e4bff193a46f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "87d14b08-25ff-482b-b63c-8b7229d25a34" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9623794555664, - "Text": "552", - "Geometry": { - "BoundingBox": { - "Width": 0.0190215315669775, - "Height": 0.007374703884124756, - "Left": 0.8631916642189026, - "Top": 0.48073017597198486 - }, - "Polygon": [ - { - "X": 0.8631922006607056, - "Y": 0.48073017597198486 - }, - { - "X": 0.8822132349014282, - "Y": 0.4807364046573639 - }, - { - "X": 0.8822126984596252, - "Y": 0.4881048798561096 - }, - { - "X": 0.8631916642189026, - "Y": 0.4880986213684082 - } - ] - }, - "Id": "4756abd3-d7a7-48ef-96f7-3d4cdfdaeaaf", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "25c0ea8d-9613-4590-acc2-e84585b9a6fb" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.85491180419922, - "Text": "FINANCIAL ASSETS DESIGNATED AT FAIR VALUE THROUGH PROFIT OR LOSS", - "Geometry": { - "BoundingBox": { - "Width": 0.40501758456230164, - "Height": 0.007449960336089134, - "Left": 0.11479432880878448, - "Top": 0.4957740306854248 - }, - "Polygon": [ - { - "X": 0.11479584872722626, - "Y": 0.4957740306854248 - }, - { - "X": 0.5198119282722473, - "Y": 0.49590763449668884 - }, - { - "X": 0.5198109149932861, - "Y": 0.5032239556312561 - }, - { - "X": 0.11479432880878448, - "Y": 0.5030900239944458 - } - ] - }, - "Id": "2d90c2af-7c3d-42c9-95d5-77ca4fee9897", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "eba00871-a716-4966-bae9-892d313cf618", - "822a5373-4823-4f26-aff6-e9f078b3f7c7", - "fa558b14-60a8-42c2-99da-a86724194cbf", - "c57a5908-2f84-49c3-801f-02a130d9ddfd", - "01358668-e051-437b-9b96-52e10aa27941", - "21be9aa3-d636-4503-9e07-b70ae9dce9ac", - "51f16976-c296-4d9b-a9ea-48062bd39ef4", - "7821683d-4ffe-4697-9777-f8dfb2b83950", - "43718f96-3ead-4df9-b86d-0db0dcaf9b64", - "def51cce-51cd-4718-a715-db8217ebba1d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.60012817382812, - "Text": "8,989", - "Geometry": { - "BoundingBox": { - "Width": 0.030120356008410454, - "Height": 0.008365850895643234, - "Left": 0.7027929425239563, - "Top": 0.49594417214393616 - }, - "Polygon": [ - { - "X": 0.7027937769889832, - "Y": 0.49594417214393616 - }, - { - "X": 0.7329132556915283, - "Y": 0.49595409631729126 - }, - { - "X": 0.7329124808311462, - "Y": 0.5043100118637085 - }, - { - "X": 0.7027929425239563, - "Y": 0.504300057888031 - } - ] - }, - "Id": "e8ae484f-0b3d-431b-81b2-ada6068a239e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6450e5e9-7ee3-4e8c-8b25-222574d68975" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.81291198730469, - "Text": "15,957", - "Geometry": { - "BoundingBox": { - "Width": 0.036352694034576416, - "Height": 0.008377631194889545, - "Left": 0.7715314030647278, - "Top": 0.4958772361278534 - }, - "Polygon": [ - { - "X": 0.7715321183204651, - "Y": 0.4958772361278534 - }, - { - "X": 0.8078840970993042, - "Y": 0.49588921666145325 - }, - { - "X": 0.8078834414482117, - "Y": 0.5042548775672913 - }, - { - "X": 0.7715314030647278, - "Y": 0.5042428374290466 - } - ] - }, - "Id": "20612e97-279e-4257-8dab-fabd7400f533", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "bee97080-36c5-4632-b820-38663f3c6e27" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.8211669921875, - "Text": "48,717", - "Geometry": { - "BoundingBox": { - "Width": 0.037188198417425156, - "Height": 0.00843307375907898, - "Left": 0.8457964062690735, - "Top": 0.49581438302993774 - }, - "Polygon": [ - { - "X": 0.8457970023155212, - "Y": 0.49581438302993774 - }, - { - "X": 0.8829845786094666, - "Y": 0.4958266317844391 - }, - { - "X": 0.8829840421676636, - "Y": 0.5042474269866943 - }, - { - "X": 0.8457964062690735, - "Y": 0.5042351484298706 - } - ] - }, - "Id": "1135e2fc-84c6-4a50-85e3-d9a420823ef4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f8114c3b-60ae-428c-a397-cda6359a78b3" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9541244506836, - "Text": "Debt securities", - "Geometry": { - "BoundingBox": { - "Width": 0.07707010954618454, - "Height": 0.007515170611441135, - "Left": 0.1252060830593109, - "Top": 0.5109419822692871 - }, - "Polygon": [ - { - "X": 0.12520761787891388, - "Y": 0.5109419822692871 - }, - { - "X": 0.20227618515491486, - "Y": 0.5109675526618958 - }, - { - "X": 0.20227475464344025, - "Y": 0.5184571146965027 - }, - { - "X": 0.1252060830593109, - "Y": 0.5184314846992493 - } - ] - }, - "Id": "0538e5a9-d390-4e09-9d4e-9e2019f019e5", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "270e9c9a-fa15-4bc8-8147-f0ffe3c006e3", - "1dc567fb-b034-4e8a-bd3d-8ca44ddb5a4c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.91413116455078, - "Text": "7", - "Geometry": { - "BoundingBox": { - "Width": 0.0064126597717404366, - "Height": 0.00713935773819685, - "Left": 0.6500169634819031, - "Top": 0.5109813213348389 - }, - "Polygon": [ - { - "X": 0.6500177979469299, - "Y": 0.5109813213348389 - }, - { - "X": 0.656429648399353, - "Y": 0.5109834671020508 - }, - { - "X": 0.656428873538971, - "Y": 0.5181207060813904 - }, - { - "X": 0.6500169634819031, - "Y": 0.5181185603141785 - } - ] - }, - "Id": "ef5b6106-650d-47c4-be93-fcf83f03124b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "360d215f-8286-4e57-b42d-b42a980e6c64" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.94251251220703, - "Text": "2,542", - "Geometry": { - "BoundingBox": { - "Width": 0.029822377488017082, - "Height": 0.008410804904997349, - "Left": 0.702832043170929, - "Top": 0.5110063552856445 - }, - "Polygon": [ - { - "X": 0.7028328776359558, - "Y": 0.5110063552856445 - }, - { - "X": 0.7326543927192688, - "Y": 0.5110162496566772 - }, - { - "X": 0.7326536178588867, - "Y": 0.5194171667098999 - }, - { - "X": 0.702832043170929, - "Y": 0.5194072723388672 - } - ] - }, - "Id": "de8fe178-2ddb-40b1-a838-55e551f4176e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "cfb50ca1-0720-423a-802d-ea1b08def361" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.68671417236328, - "Text": "2,516", - "Geometry": { - "BoundingBox": { - "Width": 0.03002113103866577, - "Height": 0.008510340005159378, - "Left": 0.7778343558311462, - "Top": 0.5109171271324158 - }, - "Polygon": [ - { - "X": 0.7778350710868835, - "Y": 0.5109171271324158 - }, - { - "X": 0.807855486869812, - "Y": 0.5109270811080933 - }, - { - "X": 0.8078547716140747, - "Y": 0.5194274187088013 - }, - { - "X": 0.7778343558311462, - "Y": 0.5194174647331238 - } - ] - }, - "Id": "fd611a5d-088c-4100-9337-f9f8b3f49a92", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "722f2c15-e199-4364-9a9e-be0f70f0787e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.83644104003906, - "Text": "2,979", - "Geometry": { - "BoundingBox": { - "Width": 0.03008722886443138, - "Height": 0.008365233428776264, - "Left": 0.852748453617096, - "Top": 0.51100093126297 - }, - "Polygon": [ - { - "X": 0.8527490496635437, - "Y": 0.51100093126297 - }, - { - "X": 0.8828356862068176, - "Y": 0.5110109448432922 - }, - { - "X": 0.8828351497650146, - "Y": 0.5193662047386169 - }, - { - "X": 0.852748453617096, - "Y": 0.5193561911582947 - } - ] - }, - "Id": "ad1088d7-2474-4ac2-a17f-610827cece3c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "3631bf3c-cee1-4067-bd77-c4ac5177babf" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9490737915039, - "Text": "Loans and advances", - "Geometry": { - "BoundingBox": { - "Width": 0.10263906419277191, - "Height": 0.007379561197012663, - "Left": 0.12515169382095337, - "Top": 0.5260736346244812 - }, - "Polygon": [ - { - "X": 0.12515321373939514, - "Y": 0.5260736346244812 - }, - { - "X": 0.22779075801372528, - "Y": 0.526107907295227 - }, - { - "X": 0.22778938710689545, - "Y": 0.5334532260894775 - }, - { - "X": 0.12515169382095337, - "Y": 0.5334188938140869 - } - ] - }, - "Id": "2acfe456-91d5-4407-9193-7eec6eee7a23", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7cffa99d-73f5-4846-a34c-c2c21a150350", - "2b3e6812-fa39-4fa6-9839-203decf029e4", - "a70b5fe2-1d02-4a98-ba41-29cfb0283444" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.8790512084961, - "Text": "6,447", - "Geometry": { - "BoundingBox": { - "Width": 0.02973332069814205, - "Height": 0.008461610414087772, - "Left": 0.7030842304229736, - "Top": 0.5260525941848755 - }, - "Polygon": [ - { - "X": 0.7030850648880005, - "Y": 0.5260525941848755 - }, - { - "X": 0.732817530632019, - "Y": 0.5260624885559082 - }, - { - "X": 0.7328166961669922, - "Y": 0.5345141887664795 - }, - { - "X": 0.7030842304229736, - "Y": 0.534504234790802 - } - ] - }, - "Id": "6fc7c616-c59b-4195-b130-b429ef67cf1a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ccae67f8-5762-405f-9fec-d195fa17c7c1" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.85919952392578, - "Text": "13,441", - "Geometry": { - "BoundingBox": { - "Width": 0.03485959395766258, - "Height": 0.008471986278891563, - "Left": 0.7718759179115295, - "Top": 0.5260507464408875 - }, - "Polygon": [ - { - "X": 0.7718766331672668, - "Y": 0.5260507464408875 - }, - { - "X": 0.8067355155944824, - "Y": 0.5260623693466187 - }, - { - "X": 0.8067348003387451, - "Y": 0.5345227718353271 - }, - { - "X": 0.7718759179115295, - "Y": 0.5345110893249512 - } - ] - }, - "Id": "c151b2f3-336e-4f9e-81c4-9610d70d5cde", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "888960ad-3596-4299-9f24-7dfa5a2bba90" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93121337890625, - "Text": "45,738", - "Geometry": { - "BoundingBox": { - "Width": 0.036745768040418625, - "Height": 0.008381317369639874, - "Left": 0.8460904955863953, - "Top": 0.5261275768280029 - }, - "Polygon": [ - { - "X": 0.846091091632843, - "Y": 0.5261275768280029 - }, - { - "X": 0.8828362226486206, - "Y": 0.5261398553848267 - }, - { - "X": 0.8828356862068176, - "Y": 0.5345088839530945 - }, - { - "X": 0.8460904955863953, - "Y": 0.5344966053962708 - } - ] - }, - "Id": "bd946d3e-2f83-4323-b563-f4b5042ca9d9", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b9922aa0-dcec-4d6a-a866-9e7460072297" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92991638183594, - "Text": "Central banks", - "Geometry": { - "BoundingBox": { - "Width": 0.07083562761545181, - "Height": 0.007436039391905069, - "Left": 0.13192224502563477, - "Top": 0.5411993861198425 - }, - "Polygon": [ - { - "X": 0.13192376494407654, - "Y": 0.5411993861198425 - }, - { - "X": 0.20275788009166718, - "Y": 0.5412231683731079 - }, - { - "X": 0.20275644958019257, - "Y": 0.5486354231834412 - }, - { - "X": 0.13192224502563477, - "Y": 0.5486116409301758 - } - ] - }, - "Id": "77bee746-6cb1-4de9-8a4d-d20a1e1148ed", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7603e8bd-11fa-43c8-b79f-9f5e4576b14a", - "57adb560-6a5c-4c02-b694-775878b677dd" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97249603271484, - "Text": "6", - "Geometry": { - "BoundingBox": { - "Width": 0.006529270205646753, - "Height": 0.00729870842769742, - "Left": 0.6503164172172546, - "Top": 0.5412048101425171 - }, - "Polygon": [ - { - "X": 0.6503171920776367, - "Y": 0.5412048101425171 - }, - { - "X": 0.6568456888198853, - "Y": 0.5412070155143738 - }, - { - "X": 0.6568448543548584, - "Y": 0.5485035181045532 - }, - { - "X": 0.6503164172172546, - "Y": 0.5485013127326965 - } - ] - }, - "Id": "7b73ee34-b337-44ce-9672-389247c4dc9d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f1377d78-9f2d-47b8-9ccc-95207a41d1b3" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 93.68412780761719, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.01133376732468605, - "Height": 0.002138331066817045, - "Left": 0.7219733595848083, - "Top": 0.5443692803382874 - }, - "Polygon": [ - { - "X": 0.7219735383987427, - "Y": 0.5443692803382874 - }, - { - "X": 0.7333071231842041, - "Y": 0.544373095035553 - }, - { - "X": 0.733306884765625, - "Y": 0.5465075969696045 - }, - { - "X": 0.7219733595848083, - "Y": 0.5465037822723389 - } - ] - }, - "Id": "18b020db-fbcf-4da8-88d3-0ae046979fcc", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f26d985e-e8ed-4417-89a8-452e2059bbc6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 95.42289733886719, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.011272890493273735, - "Height": 0.002121594035997987, - "Left": 0.7968409657478333, - "Top": 0.5443605780601501 - }, - "Polygon": [ - { - "X": 0.7968411445617676, - "Y": 0.5443605780601501 - }, - { - "X": 0.8081138730049133, - "Y": 0.5443643927574158 - }, - { - "X": 0.808113694190979, - "Y": 0.5464822053909302 - }, - { - "X": 0.7968409657478333, - "Y": 0.5464783906936646 - } - ] - }, - "Id": "693e85b6-affe-4b5a-abc5-3a03cdb300ce", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "3c5d00d8-b7df-417d-97af-8efdbac55bc2" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95563507080078, - "Text": "9,481", - "Geometry": { - "BoundingBox": { - "Width": 0.028809841722249985, - "Height": 0.008454873226583004, - "Left": 0.8527771830558777, - "Top": 0.541197657585144 - }, - "Polygon": [ - { - "X": 0.8527778387069702, - "Y": 0.541197657585144 - }, - { - "X": 0.881587028503418, - "Y": 0.5412073135375977 - }, - { - "X": 0.881586492061615, - "Y": 0.5496525764465332 - }, - { - "X": 0.8527771830558777, - "Y": 0.5496428608894348 - } - ] - }, - "Id": "6dba3f04-a6d3-497a-8875-fefb6074b282", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b333b460-d8b0-40de-b187-012c71d036c4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.83879089355469, - "Text": "Credit institutions", - "Geometry": { - "BoundingBox": { - "Width": 0.0914480909705162, - "Height": 0.007511700037866831, - "Left": 0.1318337470293045, - "Top": 0.556272029876709 - }, - "Polygon": [ - { - "X": 0.13183528184890747, - "Y": 0.556272029876709 - }, - { - "X": 0.2232818454504013, - "Y": 0.5563028454780579 - }, - { - "X": 0.22328044474124908, - "Y": 0.5637837052345276 - }, - { - "X": 0.1318337470293045, - "Y": 0.5637528300285339 - } - ] - }, - "Id": "ce87a62f-33b0-4363-93dd-4f08f0811fb5", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6b7bd945-b4ca-4ea2-84bc-be75b5dc0f6a", - "0218ebec-702d-4f81-bf85-77964c9c7ad6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96711730957031, - "Text": "6", - "Geometry": { - "BoundingBox": { - "Width": 0.006473932880908251, - "Height": 0.007281151600182056, - "Left": 0.6503013372421265, - "Top": 0.5563573241233826 - }, - "Polygon": [ - { - "X": 0.6503021717071533, - "Y": 0.5563573241233826 - }, - { - "X": 0.6567752957344055, - "Y": 0.5563595294952393 - }, - { - "X": 0.6567744612693787, - "Y": 0.56363844871521 - }, - { - "X": 0.6503013372421265, - "Y": 0.563636302947998 - } - ] - }, - "Id": "e161a270-3294-481d-b7a3-cd05bc039ce3", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "80dca8de-4e14-4c53-94bd-4a312c7fb617" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96759796142578, - "Text": "673", - "Geometry": { - "BoundingBox": { - "Width": 0.019524142146110535, - "Height": 0.007380248047411442, - "Left": 0.7130638360977173, - "Top": 0.556433916091919 - }, - "Polygon": [ - { - "X": 0.7130645513534546, - "Y": 0.556433916091919 - }, - { - "X": 0.7325879335403442, - "Y": 0.5564404726028442 - }, - { - "X": 0.7325872778892517, - "Y": 0.5638141632080078 - }, - { - "X": 0.7130638360977173, - "Y": 0.5638075470924377 - } - ] - }, - "Id": "06e690ff-190c-4e97-a7b0-e35d6a93086e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8618f54a-f685-4e4f-980e-d198945c7e63" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.80934143066406, - "Text": "3,152", - "Geometry": { - "BoundingBox": { - "Width": 0.029425276443362236, - "Height": 0.008385189808905125, - "Left": 0.7780212163925171, - "Top": 0.5564129948616028 - }, - "Polygon": [ - { - "X": 0.7780219316482544, - "Y": 0.5564129948616028 - }, - { - "X": 0.8074464797973633, - "Y": 0.5564228892326355 - }, - { - "X": 0.807445764541626, - "Y": 0.5647981762886047 - }, - { - "X": 0.7780212163925171, - "Y": 0.5647882223129272 - } - ] - }, - "Id": "13b0dee6-0a47-499d-bde6-4974153919eb", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7be3cc14-5dc2-4cfb-93ce-eefa2b3b3295" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.78661346435547, - "Text": "12,136", - "Geometry": { - "BoundingBox": { - "Width": 0.03634166345000267, - "Height": 0.008354449644684792, - "Left": 0.8465899229049683, - "Top": 0.5563536286354065 - }, - "Polygon": [ - { - "X": 0.846590518951416, - "Y": 0.5563536286354065 - }, - { - "X": 0.8829315900802612, - "Y": 0.5563658475875854 - }, - { - "X": 0.8829309940338135, - "Y": 0.5647080540657043 - }, - { - "X": 0.8465899229049683, - "Y": 0.5646957755088806 - } - ] - }, - "Id": "44facd1c-8371-4ef6-95a5-8720d4a15bcd", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a885111d-fb67-48f4-9556-68a2deeab242" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.79243469238281, - "Text": "Customers", - "Geometry": { - "BoundingBox": { - "Width": 0.05516909807920456, - "Height": 0.00734432740136981, - "Left": 0.13205763697624207, - "Top": 0.5715366005897522 - }, - "Polygon": [ - { - "X": 0.13205912709236145, - "Y": 0.5715366005897522 - }, - { - "X": 0.18722672760486603, - "Y": 0.5715552568435669 - }, - { - "X": 0.1872253119945526, - "Y": 0.5788809061050415 - }, - { - "X": 0.13205763697624207, - "Y": 0.578862190246582 - } - ] - }, - "Id": "99c7f76f-ee8a-4748-856f-0e533fa691a7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c68467cb-e2df-436e-97a5-ce583c66b56d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97606658935547, - "Text": "10", - "Geometry": { - "BoundingBox": { - "Width": 0.012527067214250565, - "Height": 0.007447596173733473, - "Left": 0.6441622376441956, - "Top": 0.5714057683944702 - }, - "Polygon": [ - { - "X": 0.6441630721092224, - "Y": 0.5714057683944702 - }, - { - "X": 0.6566892862319946, - "Y": 0.5714100003242493 - }, - { - "X": 0.6566885113716125, - "Y": 0.5788533687591553 - }, - { - "X": 0.6441622376441956, - "Y": 0.5788491368293762 - } - ] - }, - "Id": "ae8c0904-b060-4f74-b424-05b0eb1fda6c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "1a5c4249-741f-434a-bbbe-3d190ea13796" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.85902404785156, - "Text": "5,774", - "Geometry": { - "BoundingBox": { - "Width": 0.02973521500825882, - "Height": 0.008581465110182762, - "Left": 0.7033918499946594, - "Top": 0.5714877247810364 - }, - "Polygon": [ - { - "X": 0.7033926844596863, - "Y": 0.5714877247810364 - }, - { - "X": 0.7331270575523376, - "Y": 0.5714977979660034 - }, - { - "X": 0.7331262230873108, - "Y": 0.5800691843032837 - }, - { - "X": 0.7033918499946594, - "Y": 0.5800591111183167 - } - ] - }, - "Id": "714f07f6-da79-4616-83b9-d37dd29ab77e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "e9299d91-6aa7-42fb-b178-5292485aa1c8" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.94288635253906, - "Text": "10,289", - "Geometry": { - "BoundingBox": { - "Width": 0.035773199051618576, - "Height": 0.008568602614104748, - "Left": 0.7720422148704529, - "Top": 0.5714811682701111 - }, - "Polygon": [ - { - "X": 0.772042989730835, - "Y": 0.5714811682701111 - }, - { - "X": 0.807815432548523, - "Y": 0.5714932680130005 - }, - { - "X": 0.8078147172927856, - "Y": 0.5800497531890869 - }, - { - "X": 0.7720422148704529, - "Y": 0.5800375938415527 - } - ] - }, - "Id": "979dd65d-ddca-4380-959e-6dda5d858e87", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "762f8d17-cc7a-4d23-a208-ea08c852a9fd" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.77922821044922, - "Text": "24,121", - "Geometry": { - "BoundingBox": { - "Width": 0.03568044677376747, - "Height": 0.00849404651671648, - "Left": 0.8458840847015381, - "Top": 0.5714809894561768 - }, - "Polygon": [ - { - "X": 0.8458847403526306, - "Y": 0.5714809894561768 - }, - { - "X": 0.8815645575523376, - "Y": 0.5714930295944214 - }, - { - "X": 0.8815639615058899, - "Y": 0.5799750089645386 - }, - { - "X": 0.8458840847015381, - "Y": 0.5799629092216492 - } - ] - }, - "Id": "f2a6fed5-8d44-409c-8740-76291afa9578", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ff5338eb-30f7-4678-9b7e-081dddc9a8a0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.7442626953125, - "Text": "FINANCIAL ASSETS AT FAIR VALUE THROUGH OTHER COMPREHENSIVE INCOME", - "Geometry": { - "BoundingBox": { - "Width": 0.4270389676094055, - "Height": 0.007796884514391422, - "Left": 0.11474528163671494, - "Top": 0.5863545536994934 - }, - "Polygon": [ - { - "X": 0.11474687606096268, - "Y": 0.5863545536994934 - }, - { - "X": 0.5417842864990234, - "Y": 0.5865000486373901 - }, - { - "X": 0.5417832732200623, - "Y": 0.5941514372825623 - }, - { - "X": 0.11474528163671494, - "Y": 0.5940055847167969 - } - ] - }, - "Id": "5cbe7d55-3f90-4651-b1b6-adf64f7f6b64", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7c8561a5-dabe-4c1f-97f2-18262d13affd", - "74034be8-76b0-430b-a2ce-5e4e6d0206c2", - "cd8ae1f7-b25e-45e5-b062-cee0fa14405a", - "7f562b8f-dd99-46c6-bab6-fb582e56789a", - "1e60fdf6-7cf2-4db1-a614-9ad541592ea1", - "a9928d9d-367f-414b-afee-acc4c930fa59", - "66e84204-393e-40ea-8b08-8516276c81fc", - "6d75f9fe-7e9f-4941-9b7a-7e8e4dc8007d", - "45647270-1f22-4670-a1eb-0584e0de3661" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.85578918457031, - "Text": "85,239", - "Geometry": { - "BoundingBox": { - "Width": 0.0367993600666523, - "Height": 0.008622615598142147, - "Left": 0.696071445941925, - "Top": 0.5866791605949402 - }, - "Polygon": [ - { - "X": 0.6960723400115967, - "Y": 0.5866791605949402 - }, - { - "X": 0.7328708171844482, - "Y": 0.586691677570343 - }, - { - "X": 0.7328699827194214, - "Y": 0.5953017473220825 - }, - { - "X": 0.696071445941925, - "Y": 0.5952891707420349 - } - ] - }, - "Id": "66f69ab0-839a-45e2-a57a-f98e5b0846d7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "90e04356-f4d5-4ecd-b534-6c37bbf8999b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93054962158203, - "Text": "108,038", - "Geometry": { - "BoundingBox": { - "Width": 0.043234921991825104, - "Height": 0.008558837696909904, - "Left": 0.764670193195343, - "Top": 0.5866981744766235 - }, - "Polygon": [ - { - "X": 0.7646709084510803, - "Y": 0.5866981744766235 - }, - { - "X": 0.8079050779342651, - "Y": 0.5867128968238831 - }, - { - "X": 0.8079044222831726, - "Y": 0.5952569842338562 - }, - { - "X": 0.764670193195343, - "Y": 0.5952422022819519 - } - ] - }, - "Id": "da8f7399-1847-41ee-acf2-2a41149c6d1c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6cfe220a-cee6-4bc0-90de-405df52798a6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.84355163574219, - "Text": "120,953", - "Geometry": { - "BoundingBox": { - "Width": 0.04298046976327896, - "Height": 0.008610256016254425, - "Left": 0.8395532965660095, - "Top": 0.5866989493370056 - }, - "Polygon": [ - { - "X": 0.839553952217102, - "Y": 0.5866989493370056 - }, - { - "X": 0.8825337886810303, - "Y": 0.5867135524749756 - }, - { - "X": 0.8825331926345825, - "Y": 0.5953091979026794 - }, - { - "X": 0.8395532965660095, - "Y": 0.5952944755554199 - } - ] - }, - "Id": "463649f3-a275-4f1f-b4dc-fe9be132a4e3", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "55128237-7a49-4954-970f-c203f93a1e49" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.75927734375, - "Text": "Equity instruments", - "Geometry": { - "BoundingBox": { - "Width": 0.09749308973550797, - "Height": 0.009451846592128277, - "Left": 0.12515081465244293, - "Top": 0.6017706990242004 - }, - "Polygon": [ - { - "X": 0.12515275180339813, - "Y": 0.6017706990242004 - }, - { - "X": 0.2226439118385315, - "Y": 0.6018041372299194 - }, - { - "X": 0.22264213860034943, - "Y": 0.6112225651741028 - }, - { - "X": 0.12515081465244293, - "Y": 0.611189067363739 - } - ] - }, - "Id": "d3c65efd-3d24-4441-95cb-cce8f9c09ab8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "cd6c75f5-8671-4570-8b17-d2ccaa012407", - "00cf5e64-7385-473b-8131-8a6fc8bdb9a4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95357513427734, - "Text": "8", - "Geometry": { - "BoundingBox": { - "Width": 0.006690292619168758, - "Height": 0.00732707092538476, - "Left": 0.6527271270751953, - "Top": 0.601814329624176 - }, - "Polygon": [ - { - "X": 0.6527279019355774, - "Y": 0.601814329624176 - }, - { - "X": 0.6594173908233643, - "Y": 0.6018165946006775 - }, - { - "X": 0.6594166159629822, - "Y": 0.6091414093971252 - }, - { - "X": 0.6527271270751953, - "Y": 0.609139084815979 - } - ] - }, - "Id": "812e73f1-b023-4e13-9e2b-4852216972d8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "39a3ea94-e02a-448c-99dc-5a81b4063c6e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.77373504638672, - "Text": "1,941", - "Geometry": { - "BoundingBox": { - "Width": 0.027771402150392532, - "Height": 0.008545933291316032, - "Left": 0.703954815864563, - "Top": 0.6017673015594482 - }, - "Polygon": [ - { - "X": 0.7039557099342346, - "Y": 0.6017673015594482 - }, - { - "X": 0.7317262291908264, - "Y": 0.6017768383026123 - }, - { - "X": 0.7317253947257996, - "Y": 0.6103132367134094 - }, - { - "X": 0.703954815864563, - "Y": 0.6103036999702454 - } - ] - }, - "Id": "3123082c-04a3-426e-8fe7-f5b549b69ed6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "14d30b92-666b-492f-87bf-99d98c15aaf6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9311294555664, - "Text": "2,453", - "Geometry": { - "BoundingBox": { - "Width": 0.02970004267990589, - "Height": 0.008549969643354416, - "Left": 0.7777761220932007, - "Top": 0.6018043756484985 - }, - "Polygon": [ - { - "X": 0.777776837348938, - "Y": 0.6018043756484985 - }, - { - "X": 0.8074761629104614, - "Y": 0.6018145680427551 - }, - { - "X": 0.8074754476547241, - "Y": 0.6103543639183044 - }, - { - "X": 0.7777761220932007, - "Y": 0.6103441119194031 - } - ] - }, - "Id": "209036f2-0a3f-476a-9e86-d8cf2ae4846b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "86eeeab8-5f08-4ef9-b4ec-7a9b96bab8f9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.91474914550781, - "Text": "2,783", - "Geometry": { - "BoundingBox": { - "Width": 0.029688959941267967, - "Height": 0.008490019477903843, - "Left": 0.8527840375900269, - "Top": 0.6018283367156982 - }, - "Polygon": [ - { - "X": 0.8527846932411194, - "Y": 0.6018283367156982 - }, - { - "X": 0.8824729919433594, - "Y": 0.6018384695053101 - }, - { - "X": 0.8824724555015564, - "Y": 0.6103183031082153 - }, - { - "X": 0.8527840375900269, - "Y": 0.6103081107139587 - } - ] - }, - "Id": "a0d3e1e4-672c-426a-b647-6332bcc8501c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "aba26bd5-bb67-47b4-8196-6b0995c2ab85" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9384765625, - "Text": "Debt securities", - "Geometry": { - "BoundingBox": { - "Width": 0.0765402689576149, - "Height": 0.007509409915655851, - "Left": 0.1253022402524948, - "Top": 0.6168993711471558 - }, - "Polygon": [ - { - "X": 0.12530378997325897, - "Y": 0.6168993711471558 - }, - { - "X": 0.2018425166606903, - "Y": 0.6169257164001465 - }, - { - "X": 0.2018410861492157, - "Y": 0.6244087815284729 - }, - { - "X": 0.1253022402524948, - "Y": 0.6243823766708374 - } - ] - }, - "Id": "329688b7-b0ae-4c87-8d9c-72c3e9c602c6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "243b806b-695c-42df-bedf-873fad347c54", - "04abc43e-9b35-4ffc-b365-3efc22944be6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.90827178955078, - "Text": "7", - "Geometry": { - "BoundingBox": { - "Width": 0.006651706527918577, - "Height": 0.007189925294369459, - "Left": 0.6526191234588623, - "Top": 0.6169538497924805 - }, - "Polygon": [ - { - "X": 0.6526198983192444, - "Y": 0.6169538497924805 - }, - { - "X": 0.6592708230018616, - "Y": 0.6169561743736267 - }, - { - "X": 0.6592700481414795, - "Y": 0.6241437792778015 - }, - { - "X": 0.6526191234588623, - "Y": 0.6241415143013 - } - ] - }, - "Id": "43b2ac3c-beba-44bf-8538-0a3a2655f419", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "66472a94-fee6-4b4c-b9b3-50afd32f35fa" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95621490478516, - "Text": "75,083", - "Geometry": { - "BoundingBox": { - "Width": 0.0360046848654747, - "Height": 0.008710362017154694, - "Left": 0.6965510845184326, - "Top": 0.6169186234474182 - }, - "Polygon": [ - { - "X": 0.6965519189834595, - "Y": 0.6169186234474182 - }, - { - "X": 0.7325557470321655, - "Y": 0.6169310212135315 - }, - { - "X": 0.7325549125671387, - "Y": 0.6256290078163147 - }, - { - "X": 0.6965510845184326, - "Y": 0.6256165504455566 - } - ] - }, - "Id": "62732dce-735a-47a4-a06d-04b02b4b5eb8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "dfc710a1-a60d-49c1-818c-63ef5e2274d1" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.90464782714844, - "Text": "97,922", - "Geometry": { - "BoundingBox": { - "Width": 0.03620056435465813, - "Height": 0.008447983302175999, - "Left": 0.7713397145271301, - "Top": 0.61702561378479 - }, - "Polygon": [ - { - "X": 0.7713404893875122, - "Y": 0.61702561378479 - }, - { - "X": 0.8075402975082397, - "Y": 0.6170380711555481 - }, - { - "X": 0.8075395822525024, - "Y": 0.6254736185073853 - }, - { - "X": 0.7713397145271301, - "Y": 0.6254611015319824 - } - ] - }, - "Id": "d64bd369-ac51-4a45-9966-03f1032b81ad", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "65bc22b6-286d-41ef-9e79-c5679d5ea3ce" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96163177490234, - "Text": "108,903", - "Geometry": { - "BoundingBox": { - "Width": 0.04222090542316437, - "Height": 0.008680976927280426, - "Left": 0.8401570916175842, - "Top": 0.6169323325157166 - }, - "Polygon": [ - { - "X": 0.8401577472686768, - "Y": 0.6169323325157166 - }, - { - "X": 0.8823779821395874, - "Y": 0.6169468760490417 - }, - { - "X": 0.8823773860931396, - "Y": 0.6256133317947388 - }, - { - "X": 0.8401570916175842, - "Y": 0.6255987286567688 - } - ] - }, - "Id": "0c2b84a1-a81f-4bc7-91de-726c7296ed67", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6c282055-5dc8-401e-8b0b-05ec5992de73" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.91152954101562, - "Text": "Loans and advances", - "Geometry": { - "BoundingBox": { - "Width": 0.10249600559473038, - "Height": 0.007350921630859375, - "Left": 0.1250423640012741, - "Top": 0.6321653723716736 - }, - "Polygon": [ - { - "X": 0.1250438690185547, - "Y": 0.6321653723716736 - }, - { - "X": 0.22753837704658508, - "Y": 0.6322008371353149 - }, - { - "X": 0.22753700613975525, - "Y": 0.639516294002533 - }, - { - "X": 0.1250423640012741, - "Y": 0.639480710029602 - } - ] - }, - "Id": "c0a4ea14-7ef9-4a9a-b014-55003b7943a8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "946b0a1d-f726-4bc1-87ea-4705c39eb756", - "1289d7e3-c4ff-4189-9b5e-694acf30a561", - "df7d7cae-419c-41ca-97c5-a2e7a40080c3" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.51339721679688, - "Text": "8,215", - "Geometry": { - "BoundingBox": { - "Width": 0.029549922794103622, - "Height": 0.00862329825758934, - "Left": 0.702965259552002, - "Top": 0.6320362687110901 - }, - "Polygon": [ - { - "X": 0.7029661536216736, - "Y": 0.6320362687110901 - }, - { - "X": 0.7325152158737183, - "Y": 0.6320465207099915 - }, - { - "X": 0.7325143814086914, - "Y": 0.6406595706939697 - }, - { - "X": 0.702965259552002, - "Y": 0.6406493186950684 - } - ] - }, - "Id": "ca32bd6c-7cf0-4d90-b208-604713464fdd", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "35b5889e-b223-4c01-9c7a-b17d390a84bf" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.8868179321289, - "Text": "7,663", - "Geometry": { - "BoundingBox": { - "Width": 0.029487857595086098, - "Height": 0.008600427769124508, - "Left": 0.7778672575950623, - "Top": 0.6320545673370361 - }, - "Polygon": [ - { - "X": 0.7778680324554443, - "Y": 0.6320545673370361 - }, - { - "X": 0.8073551058769226, - "Y": 0.6320648193359375 - }, - { - "X": 0.8073544502258301, - "Y": 0.6406550407409668 - }, - { - "X": 0.7778672575950623, - "Y": 0.6406447887420654 - } - ] - }, - "Id": "0cb0f71a-8c30-4c76-bc15-c80deed5638a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "abbfcb54-10de-4c43-b588-eb61416878a0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.91912841796875, - "Text": "9,267", - "Geometry": { - "BoundingBox": { - "Width": 0.030049104243516922, - "Height": 0.008539088070392609, - "Left": 0.8526327013969421, - "Top": 0.6320547461509705 - }, - "Polygon": [ - { - "X": 0.8526332974433899, - "Y": 0.6320547461509705 - }, - { - "X": 0.8826817870140076, - "Y": 0.6320651769638062 - }, - { - "X": 0.8826811909675598, - "Y": 0.6405938863754272 - }, - { - "X": 0.8526327013969421, - "Y": 0.6405834555625916 - } - ] - }, - "Id": "8b0bdb33-ef3a-4841-a129-4e84ac1dc4e6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6e232efb-c030-4e8c-a88b-5dc543ac8b87" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.91568756103516, - "Text": "Central banks", - "Geometry": { - "BoundingBox": { - "Width": 0.07079426199197769, - "Height": 0.007575687486678362, - "Left": 0.13172262907028198, - "Top": 0.6471455693244934 - }, - "Polygon": [ - { - "X": 0.13172416388988495, - "Y": 0.6471455693244934 - }, - { - "X": 0.20251688361167908, - "Y": 0.6471702456474304 - }, - { - "X": 0.20251543819904327, - "Y": 0.6547212600708008 - }, - { - "X": 0.13172262907028198, - "Y": 0.6546965837478638 - } - ] - }, - "Id": "2d3aa714-db5a-46ba-9b30-e4c4cefcdf08", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "aabca007-e3e2-44b8-8edb-af4b52c39c7b", - "ef23ae0a-6a4e-4dcc-ae39-d37016e73462" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.978271484375, - "Text": "6", - "Geometry": { - "BoundingBox": { - "Width": 0.006692297291010618, - "Height": 0.007313791662454605, - "Left": 0.6525951027870178, - "Top": 0.6472141146659851 - }, - "Polygon": [ - { - "X": 0.6525958776473999, - "Y": 0.6472141146659851 - }, - { - "X": 0.6592873930931091, - "Y": 0.6472164392471313 - }, - { - "X": 0.6592865586280823, - "Y": 0.6545279026031494 - }, - { - "X": 0.6525951027870178, - "Y": 0.6545255780220032 - } - ] - }, - "Id": "39645673-2ed5-41e8-a587-631d277781d6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "31fc9295-23a8-40ae-89f3-3f986881f28f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 96.24384307861328, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.011128240264952183, - "Height": 0.0017543284920975566, - "Left": 0.7218730449676514, - "Top": 0.6506903171539307 - }, - "Polygon": [ - { - "X": 0.7218732237815857, - "Y": 0.6506903171539307 - }, - { - "X": 0.7330012917518616, - "Y": 0.6506941914558411 - }, - { - "X": 0.7330011129379272, - "Y": 0.6524446606636047 - }, - { - "X": 0.7218730449676514, - "Y": 0.6524407863616943 - } - ] - }, - "Id": "e04f4bfc-1aaf-404e-9cd9-cb5d38d6f708", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8434297f-eb4e-4b98-aa8f-16695dc0610a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 96.37555694580078, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.010357539169490337, - "Height": 0.0016728375339880586, - "Left": 0.7973360419273376, - "Top": 0.6507489085197449 - }, - "Polygon": [ - { - "X": 0.797336220741272, - "Y": 0.6507489085197449 - }, - { - "X": 0.807693600654602, - "Y": 0.6507524847984314 - }, - { - "X": 0.8076934814453125, - "Y": 0.6524217128753662 - }, - { - "X": 0.7973360419273376, - "Y": 0.6524181365966797 - } - ] - }, - "Id": "79434c2e-3072-475c-97ab-861543d65241", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "e2a68384-4279-4d5e-9755-d5f8a27efe5a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 94.79002380371094, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.011319384910166264, - "Height": 0.0017337804893031716, - "Left": 0.8715929388999939, - "Top": 0.6506853699684143 - }, - "Polygon": [ - { - "X": 0.8715930581092834, - "Y": 0.6506853699684143 - }, - { - "X": 0.8829123377799988, - "Y": 0.6506893038749695 - }, - { - "X": 0.8829122185707092, - "Y": 0.6524191498756409 - }, - { - "X": 0.8715929388999939, - "Y": 0.6524152159690857 - } - ] - }, - "Id": "f844dd3c-5775-477e-8f04-ac1f3463ee15", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "679840b4-f7b2-4906-a4ab-ff56bb2c8905" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.70246124267578, - "Text": "Credit institutions", - "Geometry": { - "BoundingBox": { - "Width": 0.09169988334178925, - "Height": 0.007634043227881193, - "Left": 0.13161207735538483, - "Top": 0.6622447371482849 - }, - "Polygon": [ - { - "X": 0.131613627076149, - "Y": 0.6622447371482849 - }, - { - "X": 0.22331196069717407, - "Y": 0.6622768044471741 - }, - { - "X": 0.22331053018569946, - "Y": 0.6698787808418274 - }, - { - "X": 0.13161207735538483, - "Y": 0.6698465943336487 - } - ] - }, - "Id": "4cb346fd-718f-4ceb-b490-d8463e9c9726", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5f7cbbcf-1975-4454-9391-1622baf9fb1a", - "ecb37291-9fa6-4b44-99de-85d9872902c4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97321319580078, - "Text": "6", - "Geometry": { - "BoundingBox": { - "Width": 0.0065468172542750835, - "Height": 0.007347672246396542, - "Left": 0.652605414390564, - "Top": 0.6622901558876038 - }, - "Polygon": [ - { - "X": 0.6526062488555908, - "Y": 0.6622901558876038 - }, - { - "X": 0.6591522693634033, - "Y": 0.66229248046875 - }, - { - "X": 0.6591514348983765, - "Y": 0.6696378588676453 - }, - { - "X": 0.652605414390564, - "Y": 0.669635534286499 - } - ] - }, - "Id": "813a2c07-9aaa-483a-860b-b17401d952ef", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5dd3e2b7-101d-4394-9ab2-1b77b632e72a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 93.29541778564453, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.01107827853411436, - "Height": 0.0015963035402819514, - "Left": 0.721893310546875, - "Top": 0.6658743023872375 - }, - "Polygon": [ - { - "X": 0.7218934297561646, - "Y": 0.6658743023872375 - }, - { - "X": 0.7329716086387634, - "Y": 0.6658782362937927 - }, - { - "X": 0.7329714298248291, - "Y": 0.6674706339836121 - }, - { - "X": 0.721893310546875, - "Y": 0.6674667596817017 - } - ] - }, - "Id": "7691949c-d9cc-43d7-8874-a5342c53f1ba", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "852da136-8038-4284-b4d9-272bea327409" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 94.49736785888672, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.010499738156795502, - "Height": 0.001489629503339529, - "Left": 0.7973257899284363, - "Top": 0.665901780128479 - }, - "Polygon": [ - { - "X": 0.7973259091377258, - "Y": 0.665901780128479 - }, - { - "X": 0.80782550573349, - "Y": 0.6659054160118103 - }, - { - "X": 0.8078253865242004, - "Y": 0.6673913598060608 - }, - { - "X": 0.7973257899284363, - "Y": 0.6673877239227295 - } - ] - }, - "Id": "904af824-95fe-41e0-8455-21f2e8066c3f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6efe996d-ded1-4039-8bfa-21fea8cee9e0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 93.7078857421875, - "Text": "-", - "Geometry": { - "BoundingBox": { - "Width": 0.011441195383667946, - "Height": 0.00164589483756572, - "Left": 0.8715003132820129, - "Top": 0.6658644676208496 - }, - "Polygon": [ - { - "X": 0.8715003728866577, - "Y": 0.6658644676208496 - }, - { - "X": 0.882941484451294, - "Y": 0.6658685207366943 - }, - { - "X": 0.8829413652420044, - "Y": 0.6675103902816772 - }, - { - "X": 0.8715003132820129, - "Y": 0.6675063967704773 - } - ] - }, - "Id": "ce369bd0-1fb1-492e-8ea9-1332571a481a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b25028d6-bf12-4bec-b8a5-97034803e809" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.85043334960938, - "Text": "Customers", - "Geometry": { - "BoundingBox": { - "Width": 0.05559011921286583, - "Height": 0.007459100801497698, - "Left": 0.13173355162143707, - "Top": 0.6775487065315247 - }, - "Polygon": [ - { - "X": 0.13173507153987885, - "Y": 0.6775487065315247 - }, - { - "X": 0.187323659658432, - "Y": 0.677568256855011 - }, - { - "X": 0.1873222142457962, - "Y": 0.6850078105926514 - }, - { - "X": 0.13173355162143707, - "Y": 0.6849882006645203 - } - ] - }, - "Id": "31d388ba-24e5-46d6-a9a9-642114750c2e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "53f6c92b-93e7-4dbe-93ac-9089fe2942c7" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.98832702636719, - "Text": "10", - "Geometry": { - "BoundingBox": { - "Width": 0.012461140751838684, - "Height": 0.007338972296565771, - "Left": 0.6468415856361389, - "Top": 0.6775076985359192 - }, - "Polygon": [ - { - "X": 0.646842360496521, - "Y": 0.6775076985359192 - }, - { - "X": 0.6593027114868164, - "Y": 0.6775120496749878 - }, - { - "X": 0.6593018770217896, - "Y": 0.6848466396331787 - }, - { - "X": 0.6468415856361389, - "Y": 0.6848422884941101 - } - ] - }, - "Id": "273ea820-e99f-40bb-9e3c-70e5504e7ba8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "991fe477-e64c-4c10-886b-4223cc42a5e2" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 97.45384216308594, - "Text": "8,215", - "Geometry": { - "BoundingBox": { - "Width": 0.029029488563537598, - "Height": 0.008380516432225704, - "Left": 0.7033839821815491, - "Top": 0.6773679852485657 - }, - "Polygon": [ - { - "X": 0.7033848166465759, - "Y": 0.6773679852485657 - }, - { - "X": 0.7324134707450867, - "Y": 0.6773781776428223 - }, - { - "X": 0.7324126362800598, - "Y": 0.6857485175132751 - }, - { - "X": 0.7033839821815491, - "Y": 0.6857382655143738 - } - ] - }, - "Id": "a8198f01-ecd8-4080-8cd8-2be45ca4f679", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "54ffef28-39ce-4940-8812-6c518953082d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.80819702148438, - "Text": "7,663", - "Geometry": { - "BoundingBox": { - "Width": 0.029092751443386078, - "Height": 0.00856398232281208, - "Left": 0.7782652974128723, - "Top": 0.6774032115936279 - }, - "Polygon": [ - { - "X": 0.7782660126686096, - "Y": 0.6774032115936279 - }, - { - "X": 0.8073580265045166, - "Y": 0.6774134635925293 - }, - { - "X": 0.8073573112487793, - "Y": 0.685967206954956 - }, - { - "X": 0.7782652974128723, - "Y": 0.6859569549560547 - } - ] - }, - "Id": "c198f14e-51e2-46e4-972f-bd45c57e3ed3", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "705c678b-da52-42eb-98fa-e5c35055e95d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.69364929199219, - "Text": "9,267", - "Geometry": { - "BoundingBox": { - "Width": 0.029751043766736984, - "Height": 0.00834817998111248, - "Left": 0.8528011441230774, - "Top": 0.6775243282318115 - }, - "Polygon": [ - { - "X": 0.8528017401695251, - "Y": 0.6775243282318115 - }, - { - "X": 0.8825522065162659, - "Y": 0.677534818649292 - }, - { - "X": 0.8825516104698181, - "Y": 0.685872495174408 - }, - { - "X": 0.8528011441230774, - "Y": 0.6858620047569275 - } - ] - }, - "Id": "b9aaf3e8-59d2-4837-ae82-c91f28c87fb0", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d8b8f6c4-36e0-4904-816f-cb547a326c3f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.81879425048828, - "Text": "FINANCIAL ASSETS AT AMORTIZED COST", - "Geometry": { - "BoundingBox": { - "Width": 0.2175532579421997, - "Height": 0.007491180207580328, - "Left": 0.11456732451915741, - "Top": 0.6923174858093262 - }, - "Polygon": [ - { - "X": 0.11456886678934097, - "Y": 0.6923174858093262 - }, - { - "X": 0.3321205973625183, - "Y": 0.6923943758010864 - }, - { - "X": 0.332119345664978, - "Y": 0.6998087167739868 - }, - { - "X": 0.11456732451915741, - "Y": 0.6997316479682922 - } - ] - }, - "Id": "d49b9d79-a89f-43a0-852b-7638f03131d4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "16eb063f-1b9e-4da1-b438-9279394ee711", - "4ceae035-46fa-4821-850a-c78b9c88ee20", - "25f9ef68-9619-4211-bd51-158e7e4178ca", - "dd28e374-aa55-4713-a4d5-6c8e5237490c", - "12884ef4-64bd-4152-88a8-49d2fbb04cf9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.85432434082031, - "Text": "1,147,044", - "Geometry": { - "BoundingBox": { - "Width": 0.0533536858856678, - "Height": 0.0089208222925663, - "Left": 0.6798027753829956, - "Top": 0.6921937465667725 - }, - "Polygon": [ - { - "X": 0.6798036694526672, - "Y": 0.6921937465667725 - }, - { - "X": 0.7331564426422119, - "Y": 0.6922125816345215 - }, - { - "X": 0.7331556081771851, - "Y": 0.7011145353317261 - }, - { - "X": 0.6798027753829956, - "Y": 0.7010956406593323 - } - ] - }, - "Id": "986d81b8-a047-431a-8e30-d9eeffedd080", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "97a54efb-3f6d-41dc-ad53-bc710d0fbb26" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92536163330078, - "Text": "1,037,898", - "Geometry": { - "BoundingBox": { - "Width": 0.053182002156972885, - "Height": 0.008732465095818043, - "Left": 0.7548166513442993, - "Top": 0.6923858523368835 - }, - "Polygon": [ - { - "X": 0.7548174858093262, - "Y": 0.6923858523368835 - }, - { - "X": 0.8079986572265625, - "Y": 0.6924046874046326 - }, - { - "X": 0.8079979419708252, - "Y": 0.7011183500289917 - }, - { - "X": 0.7548166513442993, - "Y": 0.7010995149612427 - } - ] - }, - "Id": "3ce6dfdd-9f5f-4576-b922-27a57d8b18c0", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "1eee7f65-372a-4620-a281-a9d20392cbe6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92517852783203, - "Text": "958,378", - "Geometry": { - "BoundingBox": { - "Width": 0.043858468532562256, - "Height": 0.008585826493799686, - "Left": 0.8390216827392578, - "Top": 0.6924328804016113 - }, - "Polygon": [ - { - "X": 0.8390223383903503, - "Y": 0.6924328804016113 - }, - { - "X": 0.8828801512718201, - "Y": 0.6924483776092529 - }, - { - "X": 0.8828796148300171, - "Y": 0.7010186910629272 - }, - { - "X": 0.8390216827392578, - "Y": 0.7010031938552856 - } - ] - }, - "Id": "cb9d98f5-b3be-42c6-8762-f1f15c07f79f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2dc5dedf-141c-453c-b65e-f2bf8c8b53e0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95282745361328, - "Text": "Debt securities", - "Geometry": { - "BoundingBox": { - "Width": 0.07640255987644196, - "Height": 0.007467843126505613, - "Left": 0.1250889003276825, - "Top": 0.7075408101081848 - }, - "Polygon": [ - { - "X": 0.12509042024612427, - "Y": 0.7075408101081848 - }, - { - "X": 0.20149146020412445, - "Y": 0.7075679302215576 - }, - { - "X": 0.20149002969264984, - "Y": 0.7150086760520935 - }, - { - "X": 0.1250889003276825, - "Y": 0.7149814963340759 - } - ] - }, - "Id": "086fd32a-3c30-4720-9c84-5336595f469d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d4a1be8d-af9e-4643-9391-f3a392b8e3f2", - "a5a59c35-ff04-46bf-b4e2-2041a2ed9afa" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.79710388183594, - "Text": "7", - "Geometry": { - "BoundingBox": { - "Width": 0.006375459022819996, - "Height": 0.007129502948373556, - "Left": 0.652693510055542, - "Top": 0.707603394985199 - }, - "Polygon": [ - { - "X": 0.6526942849159241, - "Y": 0.707603394985199 - }, - { - "X": 0.6590689420700073, - "Y": 0.7076056599617004 - }, - { - "X": 0.6590681672096252, - "Y": 0.7147329449653625 - }, - { - "X": 0.652693510055542, - "Y": 0.7147306203842163 - } - ] - }, - "Id": "3b2eece5-0096-471e-9d9a-5ee1da11971d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8f05ea14-7071-4dc3-91da-22817e536e93" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.86854553222656, - "Text": "73,554", - "Geometry": { - "BoundingBox": { - "Width": 0.036817438900470734, - "Height": 0.008371059782803059, - "Left": 0.6962824463844299, - "Top": 0.7076406478881836 - }, - "Polygon": [ - { - "X": 0.6962832808494568, - "Y": 0.7076406478881836 - }, - { - "X": 0.7330998778343201, - "Y": 0.7076537013053894 - }, - { - "X": 0.733099102973938, - "Y": 0.7160117030143738 - }, - { - "X": 0.6962824463844299, - "Y": 0.7159985899925232 - } - ] - }, - "Id": "1b9ee889-84ef-4da3-a618-5d6ec2801641", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "62aa68b5-67c8-4c5b-87b8-7c8ca8346d9a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9367904663086, - "Text": "35,708", - "Geometry": { - "BoundingBox": { - "Width": 0.036591921001672745, - "Height": 0.00841519609093666, - "Left": 0.7712523937225342, - "Top": 0.7076395153999329 - }, - "Polygon": [ - { - "X": 0.7712531089782715, - "Y": 0.7076395153999329 - }, - { - "X": 0.8078442811965942, - "Y": 0.7076525092124939 - }, - { - "X": 0.8078436255455017, - "Y": 0.7160546779632568 - }, - { - "X": 0.7712523937225342, - "Y": 0.7160416841506958 - } - ] - }, - "Id": "20d6ddc3-88c9-42c8-9b29-138923baf354", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8741f4b5-0a12-4673-97d7-11ec22ee254f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93939208984375, - "Text": "26,078", - "Geometry": { - "BoundingBox": { - "Width": 0.03694090619683266, - "Height": 0.008578364737331867, - "Left": 0.8459944725036621, - "Top": 0.7074975371360779 - }, - "Polygon": [ - { - "X": 0.8459951281547546, - "Y": 0.7074975371360779 - }, - { - "X": 0.8829354047775269, - "Y": 0.7075106501579285 - }, - { - "X": 0.8829348087310791, - "Y": 0.7160758972167969 - }, - { - "X": 0.8459944725036621, - "Y": 0.7160627245903015 - } - ] - }, - "Id": "8c0c5195-c811-4455-bf11-522a56d46567", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5d0491e1-c24b-4185-a065-e9639b445b4f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.94657135009766, - "Text": "Loans and advances", - "Geometry": { - "BoundingBox": { - "Width": 0.10236338526010513, - "Height": 0.007507117930799723, - "Left": 0.12492763251066208, - "Top": 0.7227168083190918 - }, - "Polygon": [ - { - "X": 0.12492916733026505, - "Y": 0.7227168083190918 - }, - { - "X": 0.2272910177707672, - "Y": 0.7227533459663391 - }, - { - "X": 0.227289617061615, - "Y": 0.7302238941192627 - }, - { - "X": 0.12492763251066208, - "Y": 0.7301872968673706 - } - ] - }, - "Id": "6b57ac07-3aa6-487f-87aa-5b452a1b73f5", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a0ac11f6-76da-4aa2-8487-a86b87f91777", - "7eb40bfb-b9f7-4b89-bd69-1f21b798f358", - "bb0724d0-a17d-4538-a7d8-8ca9ac45c6c4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95313262939453, - "Text": "1,073,490", - "Geometry": { - "BoundingBox": { - "Width": 0.05262758955359459, - "Height": 0.008669929578900337, - "Left": 0.6804468035697937, - "Top": 0.7227131724357605 - }, - "Polygon": [ - { - "X": 0.6804476976394653, - "Y": 0.7227131724357605 - }, - { - "X": 0.7330743670463562, - "Y": 0.7227319478988647 - }, - { - "X": 0.7330735325813293, - "Y": 0.7313830852508545 - }, - { - "X": 0.6804468035697937, - "Y": 0.7313642501831055 - } - ] - }, - "Id": "81ad0788-21aa-4b69-873f-97db9d8e73ea", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "96374bce-89b5-4e8d-99a8-6bfbe3a19031" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.93336486816406, - "Text": "1,002,190", - "Geometry": { - "BoundingBox": { - "Width": 0.05231843143701553, - "Height": 0.008820241317152977, - "Left": 0.7554953694343567, - "Top": 0.7226662635803223 - }, - "Polygon": [ - { - "X": 0.7554962038993835, - "Y": 0.7226662635803223 - }, - { - "X": 0.807813823223114, - "Y": 0.722684919834137 - }, - { - "X": 0.8078131079673767, - "Y": 0.7314864993095398 - }, - { - "X": 0.7554953694343567, - "Y": 0.7314677834510803 - } - ] - }, - "Id": "229a1b17-60d7-4523-831e-39a929303c48", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "421f4a0a-8436-4794-8697-c6bfa9fd8424" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.9691162109375, - "Text": "932,300", - "Geometry": { - "BoundingBox": { - "Width": 0.04351923242211342, - "Height": 0.008508015424013138, - "Left": 0.8392648100852966, - "Top": 0.7226927280426025 - }, - "Polygon": [ - { - "X": 0.8392654061317444, - "Y": 0.7226927280426025 - }, - { - "X": 0.8827840089797974, - "Y": 0.7227082848548889 - }, - { - "X": 0.8827834129333496, - "Y": 0.7312007546424866 - }, - { - "X": 0.8392648100852966, - "Y": 0.7311851978302002 - } - ] - }, - "Id": "e6dfefe7-458b-44bd-8681-1c42e5a54d98", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "764f3506-6ecf-4ede-8881-790269f3533e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92340087890625, - "Text": "Central banks", - "Geometry": { - "BoundingBox": { - "Width": 0.07092326879501343, - "Height": 0.007681804243475199, - "Left": 0.13175423443317413, - "Top": 0.7378029823303223 - }, - "Polygon": [ - { - "X": 0.1317557990550995, - "Y": 0.7378029823303223 - }, - { - "X": 0.20267750322818756, - "Y": 0.7378284335136414 - }, - { - "X": 0.20267604291439056, - "Y": 0.7454848289489746 - }, - { - "X": 0.13175423443317413, - "Y": 0.7454593181610107 - } - ] - }, - "Id": "e43c850a-ecf1-47f2-93f3-fdf9626e06d2", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c4d85d5f-49e5-4b87-9f46-c1dae4311239", - "2056ee53-8fb7-468d-bfe3-31cc08792c8c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97172546386719, - "Text": "6", - "Geometry": { - "BoundingBox": { - "Width": 0.00662572355940938, - "Height": 0.007361236959695816, - "Left": 0.6525965332984924, - "Top": 0.7377825975418091 - }, - "Polygon": [ - { - "X": 0.6525973677635193, - "Y": 0.7377825975418091 - }, - { - "X": 0.6592222452163696, - "Y": 0.7377849817276001 - }, - { - "X": 0.6592214703559875, - "Y": 0.7451438307762146 - }, - { - "X": 0.6525965332984924, - "Y": 0.7451414465904236 - } - ] - }, - "Id": "d5b0470b-ea0c-4c2b-8f74-475ae66830e8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "bd716a7f-d6b3-4d41-80d0-4194b9df43fe" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.86213684082031, - "Text": "15,375", - "Geometry": { - "BoundingBox": { - "Width": 0.03558929264545441, - "Height": 0.008524853736162186, - "Left": 0.697010338306427, - "Top": 0.7378292679786682 - }, - "Polygon": [ - { - "X": 0.6970111727714539, - "Y": 0.7378292679786682 - }, - { - "X": 0.7325996160507202, - "Y": 0.7378420829772949 - }, - { - "X": 0.7325987815856934, - "Y": 0.7463541626930237 - }, - { - "X": 0.697010338306427, - "Y": 0.746341347694397 - } - ] - }, - "Id": "ef1a9b17-7911-4683-a4f2-d2b34c8a2f84", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "36f69fd4-36d4-4c3f-8a48-d4f837074c48" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.860595703125, - "Text": "15,657", - "Geometry": { - "BoundingBox": { - "Width": 0.03561997041106224, - "Height": 0.008554342202842236, - "Left": 0.7720420360565186, - "Top": 0.7378462553024292 - }, - "Polygon": [ - { - "X": 0.7720428109169006, - "Y": 0.7378462553024292 - }, - { - "X": 0.8076620101928711, - "Y": 0.7378590703010559 - }, - { - "X": 0.8076612949371338, - "Y": 0.7464005947113037 - }, - { - "X": 0.7720420360565186, - "Y": 0.746387779712677 - } - ] - }, - "Id": "5c82a2e7-a38c-4f22-8c6b-e0911144976d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5ec69330-d3e9-4033-b732-e99d77363f5d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.94308471679688, - "Text": "12,499", - "Geometry": { - "BoundingBox": { - "Width": 0.035979680716991425, - "Height": 0.008526123128831387, - "Left": 0.8467933535575867, - "Top": 0.7377901077270508 - }, - "Polygon": [ - { - "X": 0.8467940092086792, - "Y": 0.7377901077270508 - }, - { - "X": 0.8827730417251587, - "Y": 0.7378029823303223 - }, - { - "X": 0.8827724456787109, - "Y": 0.7463161945343018 - }, - { - "X": 0.8467933535575867, - "Y": 0.7463032603263855 - } - ] - }, - "Id": "7dd723d7-75c1-4a2f-aa4c-2a7c7f771179", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "efb592aa-3b64-4ce9-8707-57f7c404bdd6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.69668579101562, - "Text": "Credit institutions", - "Geometry": { - "BoundingBox": { - "Width": 0.09169738739728928, - "Height": 0.007708945777267218, - "Left": 0.13180966675281525, - "Top": 0.7528451681137085 - }, - "Polygon": [ - { - "X": 0.1318112313747406, - "Y": 0.7528451681137085 - }, - { - "X": 0.22350704669952393, - "Y": 0.7528782486915588 - }, - { - "X": 0.22350561618804932, - "Y": 0.7605541348457336 - }, - { - "X": 0.13180966675281525, - "Y": 0.7605209946632385 - } - ] - }, - "Id": "71e6bd55-cf08-4655-9994-0366827eae1b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4a46be61-d057-4edf-811d-0bca8b3dbc21", - "016cb3f7-3358-4534-9ce8-e2c251e28175" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97900390625, - "Text": "6", - "Geometry": { - "BoundingBox": { - "Width": 0.006655652541667223, - "Height": 0.0075333090499043465, - "Left": 0.6526105403900146, - "Top": 0.7529337406158447 - }, - "Polygon": [ - { - "X": 0.6526113748550415, - "Y": 0.7529337406158447 - }, - { - "X": 0.6592662334442139, - "Y": 0.7529361248016357 - }, - { - "X": 0.659265398979187, - "Y": 0.7604670524597168 - }, - { - "X": 0.6526105403900146, - "Y": 0.7604646682739258 - } - ] - }, - "Id": "e0032f40-8e2c-4e2e-8aad-28853c100154", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f0074e21-589b-4e92-8099-1275cbfe0581" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95398712158203, - "Text": "46,518", - "Geometry": { - "BoundingBox": { - "Width": 0.036846719682216644, - "Height": 0.008694740943610668, - "Left": 0.696173369884491, - "Top": 0.7529095411300659 - }, - "Polygon": [ - { - "X": 0.6961742639541626, - "Y": 0.7529095411300659 - }, - { - "X": 0.7330201268196106, - "Y": 0.7529228329658508 - }, - { - "X": 0.7330192923545837, - "Y": 0.7616043090820312 - }, - { - "X": 0.696173369884491, - "Y": 0.7615909576416016 - } - ] - }, - "Id": "6144dd66-8ab0-41ad-84f3-57d71c3526d6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "3b83280b-17a7-47e8-9224-90afa34f71c1" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.91046905517578, - "Text": "39,169", - "Geometry": { - "BoundingBox": { - "Width": 0.03630439564585686, - "Height": 0.008701138198375702, - "Left": 0.7714996337890625, - "Top": 0.7529589533805847 - }, - "Polygon": [ - { - "X": 0.7715004086494446, - "Y": 0.7529589533805847 - }, - { - "X": 0.8078039884567261, - "Y": 0.7529720067977905 - }, - { - "X": 0.8078033328056335, - "Y": 0.761660099029541 - }, - { - "X": 0.7714996337890625, - "Y": 0.7616469264030457 - } - ] - }, - "Id": "5d84e084-a8c7-49b1-b0cb-9f481ebc6656", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "be6964ae-66a9-475c-a853-247ade42e5a6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.91537475585938, - "Text": "37,838", - "Geometry": { - "BoundingBox": { - "Width": 0.03691496327519417, - "Height": 0.008635221049189568, - "Left": 0.8461048007011414, - "Top": 0.7529929876327515 - }, - "Polygon": [ - { - "X": 0.8461053967475891, - "Y": 0.7529929876327515 - }, - { - "X": 0.883019745349884, - "Y": 0.7530062794685364 - }, - { - "X": 0.8830191493034363, - "Y": 0.7616282105445862 - }, - { - "X": 0.8461048007011414, - "Y": 0.7616148591041565 - } - ] - }, - "Id": "0e3c3a8c-5d26-4e18-8349-6298bed69eea", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7671a80f-d64d-4537-81c9-8eba5d4052f2" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.86566162109375, - "Text": "Customers", - "Geometry": { - "BoundingBox": { - "Width": 0.054750893265008926, - "Height": 0.00777082284912467, - "Left": 0.1319243311882019, - "Top": 0.7681893706321716 - }, - "Polygon": [ - { - "X": 0.13192592561244965, - "Y": 0.7681893706321716 - }, - { - "X": 0.18667523562908173, - "Y": 0.7682092189788818 - }, - { - "X": 0.18667373061180115, - "Y": 0.7759602069854736 - }, - { - "X": 0.1319243311882019, - "Y": 0.7759402990341187 - } - ] - }, - "Id": "e582c0e1-8caa-4388-bf91-daf06d8db5f1", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a08ebd21-3e33-4cc5-b3f9-c710ed194e84" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.97896575927734, - "Text": "10", - "Geometry": { - "BoundingBox": { - "Width": 0.012492736801505089, - "Height": 0.007541504688560963, - "Left": 0.6469603180885315, - "Top": 0.7680309414863586 - }, - "Polygon": [ - { - "X": 0.6469611525535583, - "Y": 0.7680309414863586 - }, - { - "X": 0.6594530344009399, - "Y": 0.7680354714393616 - }, - { - "X": 0.6594522595405579, - "Y": 0.7755724191665649 - }, - { - "X": 0.6469603180885315, - "Y": 0.775567889213562 - } - ] - }, - "Id": "93a18663-a07b-4bb9-97e6-899db6d79d67", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b4e31c5b-4c01-48cc-a771-98b8aabd668a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.88700103759766, - "Text": "1,011,597", - "Geometry": { - "BoundingBox": { - "Width": 0.05222789943218231, - "Height": 0.008836928755044937, - "Left": 0.6805717349052429, - "Top": 0.7679874897003174 - }, - "Polygon": [ - { - "X": 0.6805726289749146, - "Y": 0.7679874897003174 - }, - { - "X": 0.7327995896339417, - "Y": 0.7680063843727112 - }, - { - "X": 0.7327987551689148, - "Y": 0.776824414730072 - }, - { - "X": 0.6805717349052429, - "Y": 0.7768054008483887 - } - ] - }, - "Id": "19266646-47a2-4724-89cf-7ff5f169fa47", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d2babb38-eb5e-4615-99e0-863c4d7962a0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.98001861572266, - "Text": "947,364", - "Geometry": { - "BoundingBox": { - "Width": 0.043640635907649994, - "Height": 0.00875798985362053, - "Left": 0.7644582390785217, - "Top": 0.7680754661560059 - }, - "Polygon": [ - { - "X": 0.7644590139389038, - "Y": 0.7680754661560059 - }, - { - "X": 0.8080988526344299, - "Y": 0.7680912613868713 - }, - { - "X": 0.8080981373786926, - "Y": 0.7768334150314331 - }, - { - "X": 0.7644582390785217, - "Y": 0.7768175601959229 - } - ] - }, - "Id": "33d7b300-1ecb-4591-bf70-fdccb7ed3501", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ef66c987-e4ef-4387-bb3d-7ec79b5a0d4b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.94171905517578, - "Text": "881,963", - "Geometry": { - "BoundingBox": { - "Width": 0.04331837221980095, - "Height": 0.008768538013100624, - "Left": 0.8393073081970215, - "Top": 0.7679983973503113 - }, - "Polygon": [ - { - "X": 0.839307963848114, - "Y": 0.7679983973503113 - }, - { - "X": 0.8826256990432739, - "Y": 0.7680140733718872 - }, - { - "X": 0.8826251029968262, - "Y": 0.7767669558525085 - }, - { - "X": 0.8393073081970215, - "Y": 0.7767511606216431 - } - ] - }, - "Id": "34bf559b-f2a7-4145-8b6e-c147abf75448", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7c7f88f0-1d83-455a-be7c-39588e7a7bdb" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.73529052734375, - "Text": "HEDGING DERIVATIVES", - "Geometry": { - "BoundingBox": { - "Width": 0.12471531331539154, - "Height": 0.0073258355259895325, - "Left": 0.11470451205968857, - "Top": 0.7826986908912659 - }, - "Polygon": [ - { - "X": 0.11470602452754974, - "Y": 0.7826986908912659 - }, - { - "X": 0.2394198179244995, - "Y": 0.7827441096305847 - }, - { - "X": 0.23941847681999207, - "Y": 0.7900245189666748 - }, - { - "X": 0.11470451205968857, - "Y": 0.7899790406227112 - } - ] - }, - "Id": "1b4c4f90-65fb-4d3c-bf01-065d3afc437f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4b246391-e967-48e1-995e-29bff6dcf363", - "8c36254b-122d-4ec7-aa8e-1d9a26ec2c3b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95671844482422, - "Text": "36", - "Geometry": { - "BoundingBox": { - "Width": 0.013431929051876068, - "Height": 0.007688429206609726, - "Left": 0.64605712890625, - "Top": 0.7831624746322632 - }, - "Polygon": [ - { - "X": 0.6460579633712769, - "Y": 0.7831624746322632 - }, - { - "X": 0.6594890356063843, - "Y": 0.7831673622131348 - }, - { - "X": 0.6594882011413574, - "Y": 0.7908508777618408 - }, - { - "X": 0.64605712890625, - "Y": 0.7908459901809692 - } - ] - }, - "Id": "edb4889c-22f7-4b64-b3cb-d5542b4e7837", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "27654ccf-4b87-43ac-b3f6-9d9570c34d01" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.83551025390625, - "Text": "8,069", - "Geometry": { - "BoundingBox": { - "Width": 0.030142104253172874, - "Height": 0.00866728089749813, - "Left": 0.702852725982666, - "Top": 0.7832396626472473 - }, - "Polygon": [ - { - "X": 0.7028535604476929, - "Y": 0.7832396626472473 - }, - { - "X": 0.732994794845581, - "Y": 0.783250629901886 - }, - { - "X": 0.732994019985199, - "Y": 0.7919069528579712 - }, - { - "X": 0.702852725982666, - "Y": 0.7918959259986877 - } - ] - }, - "Id": "8502bdaf-9224-4939-9388-a71269d66f77", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "086c3b7e-398a-4c7d-b5e6-70245b3d5b7f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.74830627441406, - "Text": "4,761", - "Geometry": { - "BoundingBox": { - "Width": 0.029070178046822548, - "Height": 0.008728212676942348, - "Left": 0.7776021957397461, - "Top": 0.783148467540741 - }, - "Polygon": [ - { - "X": 0.7776029706001282, - "Y": 0.783148467540741 - }, - { - "X": 0.8066723942756653, - "Y": 0.7831590175628662 - }, - { - "X": 0.806671679019928, - "Y": 0.7918766736984253 - }, - { - "X": 0.7776021957397461, - "Y": 0.7918660640716553 - } - ] - }, - "Id": "70bfda7e-51b4-455d-8124-6b23193ed3a7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "629d29be-fac4-4e2a-ad59-f955de3695f4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.74189758300781, - "Text": "8,325", - "Geometry": { - "BoundingBox": { - "Width": 0.02992994524538517, - "Height": 0.008664018474519253, - "Left": 0.8526815176010132, - "Top": 0.7832197546958923 - }, - "Polygon": [ - { - "X": 0.8526821732521057, - "Y": 0.7832197546958923 - }, - { - "X": 0.8826114535331726, - "Y": 0.7832306623458862 - }, - { - "X": 0.8826109170913696, - "Y": 0.7918837666511536 - }, - { - "X": 0.8526815176010132, - "Y": 0.7918728590011597 - } - ] - }, - "Id": "0d1c3f2b-4f93-4d8e-b23f-daf6df32f424", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "12b41928-e17d-4e76-bb49-5a16c683b0c4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.92499542236328, - "Text": "CHANGES IN THE FAIR VALUE OF HEDGED ITEMS IN", - "Geometry": { - "BoundingBox": { - "Width": 0.2753213942050934, - "Height": 0.007595768664032221, - "Left": 0.11448752880096436, - "Top": 0.7977455258369446 - }, - "Polygon": [ - { - "X": 0.11448908597230911, - "Y": 0.7977455258369446 - }, - { - "X": 0.38980892300605774, - "Y": 0.797846257686615 - }, - { - "X": 0.38980773091316223, - "Y": 0.8053413033485413 - }, - { - "X": 0.11448752880096436, - "Y": 0.8052403330802917 - } - ] - }, - "Id": "196427af-4870-44a9-b490-a7e742bfee71", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ca1c8094-e665-4a83-9e38-455c452565d8", - "b394194c-86b2-42f3-9ac9-4db403df6392", - "089b788a-5a2b-40ff-906b-f17b7d2a58fc", - "597f7e1f-2779-409d-b6b4-8358bc2ed2b5", - "b50cb8c2-7a2d-44b2-a2a5-3dd7d4c3faf0", - "abf11e03-7030-458f-8f2a-7ce07f5bc91e", - "123b0b8d-cd74-474d-97af-6c4478bb6ce0", - "75dd3522-4e01-4393-94d7-cc0184d99e15", - "41d57626-4e91-4911-be27-228c2c5f122b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.86034393310547, - "Text": "PORTFOLIO HEDGES OF INTEREST RATE RISK", - "Geometry": { - "BoundingBox": { - "Width": 0.24045312404632568, - "Height": 0.007820536382496357, - "Left": 0.11463723331689835, - "Top": 0.8077609539031982 - }, - "Polygon": [ - { - "X": 0.11463884264230728, - "Y": 0.8077609539031982 - }, - { - "X": 0.35509034991264343, - "Y": 0.8078492283821106 - }, - { - "X": 0.35508909821510315, - "Y": 0.8155815005302429 - }, - { - "X": 0.11463723331689835, - "Y": 0.8154929876327515 - } - ] - }, - "Id": "55a4c7dc-de62-46cf-bc05-830a5d4eebea", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "959a0bb1-c95b-4ea3-ba3b-de106a0c9d6b", - "9a516445-dd33-43c0-9250-a8834f5df7f3", - "09f765be-fa72-4add-95ed-03f2f72f2870", - "166c37f5-f8cc-4100-979b-76352df27c6c", - "2f455de3-f908-4b84-8925-dcbaec6839cd", - "6e23db7c-5c16-42d8-a72f-c055d5b7ca4d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.95004272460938, - "Text": "36", - "Geometry": { - "BoundingBox": { - "Width": 0.013341622427105904, - "Height": 0.007630109321326017, - "Left": 0.6461083889007568, - "Top": 0.8080154061317444 - }, - "Polygon": [ - { - "X": 0.6461092233657837, - "Y": 0.8080154061317444 - }, - { - "X": 0.6594499945640564, - "Y": 0.808020293712616 - }, - { - "X": 0.6594491600990295, - "Y": 0.8156455159187317 - }, - { - "X": 0.6461083889007568, - "Y": 0.8156406283378601 - } - ] - }, - "Id": "539511c6-bae1-4708-a32c-7e300b2f33f4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2ded1484-7cc9-4666-8b1f-8222d9a6ff58" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.94950103759766, - "Text": "(3,749)", - "Geometry": { - "BoundingBox": { - "Width": 0.037662323564291, - "Height": 0.010255632922053337, - "Left": 0.6990572810173035, - "Top": 0.8071799874305725 - }, - "Polygon": [ - { - "X": 0.6990583539009094, - "Y": 0.8071799874305725 - }, - { - "X": 0.7367196083068848, - "Y": 0.8071938157081604 - }, - { - "X": 0.7367186546325684, - "Y": 0.817435622215271 - }, - { - "X": 0.6990572810173035, - "Y": 0.8174217343330383 - } - ] - }, - "Id": "31cb7b80-a0fe-472d-bb87-576fdf61988c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "39671a1f-0b57-4df1-a8b8-6338e935dc12" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.98963165283203, - "Text": "410", - "Geometry": { - "BoundingBox": { - "Width": 0.02040279656648636, - "Height": 0.007580057717859745, - "Left": 0.7875750064849854, - "Top": 0.807858407497406 - }, - "Polygon": [ - { - "X": 0.7875756621360779, - "Y": 0.807858407497406 - }, - { - "X": 0.8079777956008911, - "Y": 0.8078659176826477 - }, - { - "X": 0.8079771995544434, - "Y": 0.8154385089874268 - }, - { - "X": 0.7875750064849854, - "Y": 0.8154309988021851 - } - ] - }, - "Id": "2fcece96-d1fb-4b9e-a047-c9aecb1e6e99", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8a3ca4cb-846d-4590-9eaa-32fb74567ade" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.96022033691406, - "Text": "1,980", - "Geometry": { - "BoundingBox": { - "Width": 0.02984589897096157, - "Height": 0.00883201789110899, - "Left": 0.8530718684196472, - "Top": 0.8080450296401978 - }, - "Polygon": [ - { - "X": 0.8530725240707397, - "Y": 0.8080450296401978 - }, - { - "X": 0.8829177618026733, - "Y": 0.8080559968948364 - }, - { - "X": 0.8829171657562256, - "Y": 0.8168770670890808 - }, - { - "X": 0.8530718684196472, - "Y": 0.8168660402297974 - } - ] - }, - "Id": "0a113af9-9b04-45a6-92e6-40d33b7dbd15", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "809ef3c6-b394-4500-b4e3-b1e565835ad4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "LINE", - "Confidence": 99.45649719238281, - "Text": "Santander 514", - "Geometry": { - "BoundingBox": { - "Width": 0.09929278492927551, - "Height": 0.00886391382664442, - "Left": 0.7858330011367798, - "Top": 0.9682803153991699 - }, - "Polygon": [ - { - "X": 0.7858337759971619, - "Y": 0.9682803153991699 - }, - { - "X": 0.8851258158683777, - "Y": 0.9683186411857605 - }, - { - "X": 0.8851252198219299, - "Y": 0.9771442413330078 - }, - { - "X": 0.7858330011367798, - "Y": 0.9771057963371277 - } - ] - }, - "Id": "7a939f4e-4f81-4a1a-9c44-4a0a49fc2a09", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "0e302495-0a97-469f-91ec-01d0bd3fbbc5", - "ad42e142-82f6-4635-89af-0aacad982803" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90585327148438, - "Text": "2022", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.023420317098498344, - "Height": 0.006400973070412874, - "Left": 0.11482811719179153, - "Top": 0.03517994284629822 - }, - "Polygon": [ - { - "X": 0.11482944339513779, - "Y": 0.03517994284629822 - }, - { - "X": 0.13824842870235443, - "Y": 0.03518638387322426 - }, - { - "X": 0.13824713230133057, - "Y": 0.0415809191763401 - }, - { - "X": 0.11482811719179153, - "Y": 0.04157445952296257 - } - ] - }, - "Id": "90838d79-ae87-4a89-9db4-9efdfd95fac0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96022033691406, - "Text": "Annual", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03306613117456436, - "Height": 0.006801318842917681, - "Left": 0.1406734734773636, - "Top": 0.03519069403409958 - }, - "Polygon": [ - { - "X": 0.14067485928535461, - "Y": 0.03519069403409958 - }, - { - "X": 0.17373961210250854, - "Y": 0.035199787467718124 - }, - { - "X": 0.1737382709980011, - "Y": 0.04199201241135597 - }, - { - "X": 0.1406734734773636, - "Y": 0.04198289290070534 - } - ] - }, - "Id": "cb7c182c-8ed9-47e2-83a0-f98e8df18e20", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96109008789062, - "Text": "report", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02894379198551178, - "Height": 0.007490663789212704, - "Left": 0.17645445466041565, - "Top": 0.03554525598883629 - }, - "Polygon": [ - { - "X": 0.17645591497421265, - "Y": 0.03554525598883629 - }, - { - "X": 0.20539824664592743, - "Y": 0.0355532169342041 - }, - { - "X": 0.20539681613445282, - "Y": 0.04303591698408127 - }, - { - "X": 0.17645445466041565, - "Y": 0.043027933686971664 - } - ] - }, - "Id": "33a3362e-0938-43a7-8098-8e847b3d56d4", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.89167022705078, - "Text": "Contents", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.040003981441259384, - "Height": 0.0068016196601092815, - "Left": 0.3082900941371918, - "Top": 0.034473154693841934 - }, - "Polygon": [ - { - "X": 0.3082912564277649, - "Y": 0.034473154693841934 - }, - { - "X": 0.34829407930374146, - "Y": 0.034484151750802994 - }, - { - "X": 0.3482929468154907, - "Y": 0.0412747748196125 - }, - { - "X": 0.3082900941371918, - "Y": 0.041263747960329056 - } - ] - }, - "Id": "eed1e4d9-e1c7-44d1-86f7-145403939680", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9529037475586, - "Text": "Auditor's", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04014190658926964, - "Height": 0.006850843783468008, - "Left": 0.37250208854675293, - "Top": 0.03449578210711479 - }, - "Polygon": [ - { - "X": 0.3725031912326813, - "Y": 0.03449578210711479 - }, - { - "X": 0.41264399886131287, - "Y": 0.034506816416978836 - }, - { - "X": 0.4126429557800293, - "Y": 0.04134662449359894 - }, - { - "X": 0.37250208854675293, - "Y": 0.04133555665612221 - } - ] - }, - "Id": "545d8835-01fd-4baf-9373-a75639744dd5", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94053649902344, - "Text": "report", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.027467671781778336, - "Height": 0.007457640953361988, - "Left": 0.4150557816028595, - "Top": 0.03510802984237671 - }, - "Polygon": [ - { - "X": 0.41505691409111023, - "Y": 0.03510802984237671 - }, - { - "X": 0.44252344965934753, - "Y": 0.03511558100581169 - }, - { - "X": 0.4425223469734192, - "Y": 0.04256566986441612 - }, - { - "X": 0.4150557816028595, - "Y": 0.04255809262394905 - } - ] - }, - "Id": "ad43d4f9-8655-422c-a158-bed7e2a40ad8", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92811584472656, - "Text": "Consolidated", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06058867648243904, - "Height": 0.006821569986641407, - "Left": 0.4555876851081848, - "Top": 0.03437860682606697 - }, - "Polygon": [ - { - "X": 0.4555886685848236, - "Y": 0.03437860682606697 - }, - { - "X": 0.5161763429641724, - "Y": 0.034395258873701096 - }, - { - "X": 0.5161754488945007, - "Y": 0.0412001758813858 - }, - { - "X": 0.4555876851081848, - "Y": 0.0411834716796875 - } - ] - }, - "Id": "64a73370-d8ad-469a-a0bd-8a3802df03a7", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.79924011230469, - "Text": "financial", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03953349590301514, - "Height": 0.0066396440379321575, - "Left": 0.5188615322113037, - "Top": 0.03441304713487625 - }, - "Polygon": [ - { - "X": 0.5188624262809753, - "Y": 0.03441304713487625 - }, - { - "X": 0.5583950281143188, - "Y": 0.034423913806676865 - }, - { - "X": 0.558394193649292, - "Y": 0.041052691638469696 - }, - { - "X": 0.5188615322113037, - "Y": 0.041041795164346695 - } - ] - }, - "Id": "4dd3e25d-6820-4936-8419-7d40287b84b2", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91767120361328, - "Text": "statements", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.052853573113679886, - "Height": 0.00674437964335084, - "Left": 0.560932457447052, - "Top": 0.034563738852739334 - }, - "Polygon": [ - { - "X": 0.5609332919120789, - "Y": 0.034563738852739334 - }, - { - "X": 0.6137860417366028, - "Y": 0.034578267484903336 - }, - { - "X": 0.6137852072715759, - "Y": 0.041308119893074036 - }, - { - "X": 0.560932457447052, - "Y": 0.04129354655742645 - } - ] - }, - "Id": "c1ff7403-af6b-467f-9aae-c1c0467f081d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97669219970703, - "Text": "Notes", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.025779185816645622, - "Height": 0.006538440939038992, - "Left": 0.6265391707420349, - "Top": 0.034717854112386703 - }, - "Polygon": [ - { - "X": 0.6265398859977722, - "Y": 0.034717854112386703 - }, - { - "X": 0.6523183584213257, - "Y": 0.03472493961453438 - }, - { - "X": 0.6523176431655884, - "Y": 0.041256293654441833 - }, - { - "X": 0.6265391707420349, - "Y": 0.04124918580055237 - } - ] - }, - "Id": "73ad4b4e-eb6a-4a3e-bf12-873044597180", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95364379882812, - "Text": "to", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.009201522916555405, - "Height": 0.006128540728241205, - "Left": 0.6546785831451416, - "Top": 0.0350707471370697 - }, - "Polygon": [ - { - "X": 0.6546792387962341, - "Y": 0.0350707471370697 - }, - { - "X": 0.6638801097869873, - "Y": 0.03507327660918236 - }, - { - "X": 0.6638794541358948, - "Y": 0.04119928926229477 - }, - { - "X": 0.6546785831451416, - "Y": 0.04119675233960152 - } - ] - }, - "Id": "893c444b-195a-4b97-a288-8f7e0bf4e1d6", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.99055480957031, - "Text": "the", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.014806686900556087, - "Height": 0.006442963611334562, - "Left": 0.6660062074661255, - "Top": 0.03471445292234421 - }, - "Polygon": [ - { - "X": 0.6660069227218628, - "Y": 0.03471445292234421 - }, - { - "X": 0.6808128952980042, - "Y": 0.03471852093935013 - }, - { - "X": 0.6808122396469116, - "Y": 0.04115741699934006 - }, - { - "X": 0.6660062074661255, - "Y": 0.04115333408117294 - } - ] - }, - "Id": "4e76ffee-a2d3-40f9-88f8-4147a6bfef6b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90593719482422, - "Text": "consolidated", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.056726980954408646, - "Height": 0.006965657230466604, - "Left": 0.6835476756095886, - "Top": 0.034284159541130066 - }, - "Polygon": [ - { - "X": 0.6835483908653259, - "Y": 0.034284159541130066 - }, - { - "X": 0.7402746677398682, - "Y": 0.03429974988102913 - }, - { - "X": 0.7402740120887756, - "Y": 0.04124981537461281 - }, - { - "X": 0.6835476756095886, - "Y": 0.041234176605939865 - } - ] - }, - "Id": "a594c291-4026-48a9-bce0-faf3e1091a2f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.81913757324219, - "Text": "financial", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03749518841505051, - "Height": 0.006426515989005566, - "Left": 0.7425979375839233, - "Top": 0.03458232432603836 - }, - "Polygon": [ - { - "X": 0.7425985336303711, - "Y": 0.03458232432603836 - }, - { - "X": 0.7800931334495544, - "Y": 0.034592632204294205 - }, - { - "X": 0.7800925970077515, - "Y": 0.0410088412463665 - }, - { - "X": 0.7425979375839233, - "Y": 0.04099850356578827 - } - ] - }, - "Id": "afea97cd-8fea-4253-81c7-9e4b41089121", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91742706298828, - "Text": "statements", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.050963643938302994, - "Height": 0.006720901932567358, - "Left": 0.7824146747589111, - "Top": 0.03466266021132469 - }, - "Polygon": [ - { - "X": 0.7824152112007141, - "Y": 0.03466266021132469 - }, - { - "X": 0.8333783149719238, - "Y": 0.03467667102813721 - }, - { - "X": 0.8333777785301208, - "Y": 0.04138356074690819 - }, - { - "X": 0.7824146747589111, - "Y": 0.04136951267719269 - } - ] - }, - "Id": "fb64183b-f5d8-473b-8466-831a113b1d98", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.46775817871094, - "Text": "Appendix", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04237174242734909, - "Height": 0.007997668348252773, - "Left": 0.8428107500076294, - "Top": 0.03454897925257683 - }, - "Polygon": [ - { - "X": 0.8428113460540771, - "Y": 0.03454897925257683 - }, - { - "X": 0.8851824998855591, - "Y": 0.03456062823534012 - }, - { - "X": 0.8851819634437561, - "Y": 0.042546648532152176 - }, - { - "X": 0.8428107500076294, - "Y": 0.0425349622964859 - } - ] - }, - "Id": "7a238fca-6a55-4856-930c-d18baf4a1fa8", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.61447143554688, - "Text": "Translation", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04304122179746628, - "Height": 0.005807876121252775, - "Left": 0.11076656728982925, - "Top": 0.10736460983753204 - }, - "Polygon": [ - { - "X": 0.11076777428388596, - "Y": 0.10736460983753204 - }, - { - "X": 0.15380778908729553, - "Y": 0.1073768213391304 - }, - { - "X": 0.1538066267967224, - "Y": 0.1131724864244461 - }, - { - "X": 0.11076656728982925, - "Y": 0.11316025257110596 - } - ] - }, - "Id": "01ab74c6-03c8-4120-a318-f6c6f8d2fa91", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91458129882812, - "Text": "of", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.008146936073899269, - "Height": 0.00573060242459178, - "Left": 0.15589947998523712, - "Top": 0.10729511827230453 - }, - "Polygon": [ - { - "X": 0.15590062737464905, - "Y": 0.10729511827230453 - }, - { - "X": 0.16404642164707184, - "Y": 0.10729742795228958 - }, - { - "X": 0.1640452742576599, - "Y": 0.1130257174372673 - }, - { - "X": 0.15589947998523712, - "Y": 0.11302340775728226 - } - ] - }, - "Id": "8fabe648-f539-4e3d-b03a-944993693bf4", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97234344482422, - "Text": "the", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.012769821099936962, - "Height": 0.005619981791824102, - "Left": 0.16543878614902496, - "Top": 0.10747797042131424 - }, - "Polygon": [ - { - "X": 0.1654399037361145, - "Y": 0.10747797042131424 - }, - { - "X": 0.1782086044549942, - "Y": 0.10748159140348434 - }, - { - "X": 0.17820750176906586, - "Y": 0.11309795826673508 - }, - { - "X": 0.16543878614902496, - "Y": 0.11309432238340378 - } - ] - }, - "Id": "b32a1296-111c-487f-91be-64350ebda785", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.74287414550781, - "Text": "consolidated", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.049509063363075256, - "Height": 0.005816327407956123, - "Left": 0.18008841574192047, - "Top": 0.10737188905477524 - }, - "Polygon": [ - { - "X": 0.1800895482301712, - "Y": 0.10737188905477524 - }, - { - "X": 0.22959747910499573, - "Y": 0.10738592594861984 - }, - { - "X": 0.22959639132022858, - "Y": 0.11318821460008621 - }, - { - "X": 0.18008841574192047, - "Y": 0.11317414045333862 - } - ] - }, - "Id": "3b2814b0-ba16-49da-a6aa-42dbc0470f9c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 97.57364654541016, - "Text": "annual", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.026842817664146423, - "Height": 0.00552153866738081, - "Left": 0.23112109303474426, - "Top": 0.10749507695436478 - }, - "Polygon": [ - { - "X": 0.23112212121486664, - "Y": 0.10749507695436478 - }, - { - "X": 0.2579639256000519, - "Y": 0.10750268399715424 - }, - { - "X": 0.2579629123210907, - "Y": 0.11301661282777786 - }, - { - "X": 0.23112109303474426, - "Y": 0.11300898343324661 - } - ] - }, - "Id": "3be213f1-65af-49f1-910f-53600d5566fd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.83918762207031, - "Text": "accounts", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03418664634227753, - "Height": 0.00549709377810359, - "Left": 0.25989919900894165, - "Top": 0.1078064888715744 - }, - "Polygon": [ - { - "X": 0.25990018248558044, - "Y": 0.1078064888715744 - }, - { - "X": 0.294085830450058, - "Y": 0.107816182076931 - }, - { - "X": 0.2940848767757416, - "Y": 0.11330357939004898 - }, - { - "X": 0.25989919900894165, - "Y": 0.11329386383295059 - } - ] - }, - "Id": "a59bd2e7-1a39-4c50-87e2-811f2a5d4fb9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.88837432861328, - "Text": "originally", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.036745335906744, - "Height": 0.007182913366705179, - "Left": 0.2960142195224762, - "Top": 0.10738668590784073 - }, - "Polygon": [ - { - "X": 0.2960154712200165, - "Y": 0.10738668590784073 - }, - { - "X": 0.3327595591545105, - "Y": 0.10739710927009583 - }, - { - "X": 0.3327583372592926, - "Y": 0.11456959694623947 - }, - { - "X": 0.2960142195224762, - "Y": 0.11455915123224258 - } - ] - }, - "Id": "9eb5165a-796b-44f6-b309-8d9a312ac9cd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.82646942138672, - "Text": "issued", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0253048837184906, - "Height": 0.005920743104070425, - "Left": 0.33366456627845764, - "Top": 0.10725568979978561 - }, - "Polygon": [ - { - "X": 0.33366554975509644, - "Y": 0.10725568979978561 - }, - { - "X": 0.35896944999694824, - "Y": 0.10726286470890045 - }, - { - "X": 0.35896849632263184, - "Y": 0.11317643523216248 - }, - { - "X": 0.33366456627845764, - "Y": 0.11316923797130585 - } - ] - }, - "Id": "0d562725-ef82-4e49-8d00-2c00bea9bd5e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94615173339844, - "Text": "in", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006697110366076231, - "Height": 0.005617531016469002, - "Left": 0.3607708513736725, - "Top": 0.10734259337186813 - }, - "Polygon": [ - { - "X": 0.3607717752456665, - "Y": 0.10734259337186813 - }, - { - "X": 0.3674679696559906, - "Y": 0.10734449326992035 - }, - { - "X": 0.3674670457839966, - "Y": 0.11296012252569199 - }, - { - "X": 0.3607708513736725, - "Y": 0.11295821517705917 - } - ] - }, - "Id": "f1d0a3bf-c06c-4b77-810c-4de2a0b55f52", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.8215103149414, - "Text": "Spanish", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.030001305043697357, - "Height": 0.006945483852177858, - "Left": 0.3694526255130768, - "Top": 0.10730434954166412 - }, - "Polygon": [ - { - "X": 0.3694537281990051, - "Y": 0.10730434954166412 - }, - { - "X": 0.39945393800735474, - "Y": 0.10731285810470581 - }, - { - "X": 0.3994528353214264, - "Y": 0.1142498329281807 - }, - { - "X": 0.3694526255130768, - "Y": 0.11424130201339722 - } - ] - }, - "Id": "94a2a237-2786-4c66-8ff0-7acf48f3fae5", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97345733642578, - "Text": "and", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.014647554606199265, - "Height": 0.005608521401882172, - "Left": 0.4015652537345886, - "Top": 0.10745644569396973 - }, - "Polygon": [ - { - "X": 0.40156614780426025, - "Y": 0.10745644569396973 - }, - { - "X": 0.4162128269672394, - "Y": 0.10746059566736221 - }, - { - "X": 0.41621196269989014, - "Y": 0.1130649670958519 - }, - { - "X": 0.4015652537345886, - "Y": 0.11306080222129822 - } - ] - }, - "Id": "dd73acad-a445-4e86-af27-22d6cfd6479f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.81887817382812, - "Text": "prepared", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03443218395113945, - "Height": 0.006804530508816242, - "Left": 0.4181484580039978, - "Top": 0.10749778896570206 - }, - "Polygon": [ - { - "X": 0.41814950108528137, - "Y": 0.10749778896570206 - }, - { - "X": 0.45258066058158875, - "Y": 0.10750755667686462 - }, - { - "X": 0.45257964730262756, - "Y": 0.11430232226848602 - }, - { - "X": 0.4181484580039978, - "Y": 0.11429252475500107 - } - ] - }, - "Id": "80094812-ad46-4195-b4f8-69733660cde2", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94659423828125, - "Text": "in", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.00687361741438508, - "Height": 0.005653256084769964, - "Left": 0.454772025346756, - "Top": 0.10736336559057236 - }, - "Polygon": [ - { - "X": 0.45477283000946045, - "Y": 0.10736336559057236 - }, - { - "X": 0.46164563298225403, - "Y": 0.10736531764268875 - }, - { - "X": 0.46164482831954956, - "Y": 0.11301662027835846 - }, - { - "X": 0.454772025346756, - "Y": 0.11301466822624207 - } - ] - }, - "Id": "ea04ccfa-f6ad-4fa0-ab78-f2dfd3656fae", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.82320404052734, - "Text": "accordance", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04336129128932953, - "Height": 0.005639411509037018, - "Left": 0.4637424647808075, - "Top": 0.10743234306573868 - }, - "Polygon": [ - { - "X": 0.46374326944351196, - "Y": 0.10743234306573868 - }, - { - "X": 0.5071037411689758, - "Y": 0.1074446365237236 - }, - { - "X": 0.5071030259132385, - "Y": 0.1130717545747757 - }, - { - "X": 0.4637424647808075, - "Y": 0.11305942386388779 - } - ] - }, - "Id": "9ad060d0-b28e-46dc-851e-74e2e8906c32", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98001098632812, - "Text": "with", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.016895731911063194, - "Height": 0.005746612790971994, - "Left": 0.5092573165893555, - "Top": 0.10738271474838257 - }, - "Polygon": [ - { - "X": 0.5092581510543823, - "Y": 0.10738271474838257 - }, - { - "X": 0.5261530876159668, - "Y": 0.10738750547170639 - }, - { - "X": 0.5261523127555847, - "Y": 0.11312932521104813 - }, - { - "X": 0.5092573165893555, - "Y": 0.11312452703714371 - } - ] - }, - "Id": "888944df-9dea-49e3-8334-6e77b101c784", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98363494873047, - "Text": "the", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.012513717636466026, - "Height": 0.005625973921269178, - "Left": 0.5281919836997986, - "Top": 0.10752633959054947 - }, - "Polygon": [ - { - "X": 0.5281926989555359, - "Y": 0.10752633959054947 - }, - { - "X": 0.540705680847168, - "Y": 0.1075298860669136 - }, - { - "X": 0.5407049655914307, - "Y": 0.11315231025218964 - }, - { - "X": 0.5281919836997986, - "Y": 0.1131487563252449 - } - ] - }, - "Id": "5bfda903-8cd7-4d06-99a0-7c54de016851", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.7841796875, - "Text": "regulatory", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03978131338953972, - "Height": 0.006876666564494371, - "Left": 0.5433040261268616, - "Top": 0.10762504488229752 - }, - "Polygon": [ - { - "X": 0.5433049201965332, - "Y": 0.10762504488229752 - }, - { - "X": 0.5830853581428528, - "Y": 0.10763632506132126 - }, - { - "X": 0.5830845236778259, - "Y": 0.1145017147064209 - }, - { - "X": 0.5433040261268616, - "Y": 0.11449039727449417 - } - ] - }, - "Id": "682a4326-3292-4bb1-8606-e073913c891a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.44654083251953, - "Text": "financial", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03329228237271309, - "Height": 0.0059692454524338245, - "Left": 0.585148274898529, - "Top": 0.1072116419672966 - }, - "Polygon": [ - { - "X": 0.5851490497589111, - "Y": 0.1072116419672966 - }, - { - "X": 0.618440568447113, - "Y": 0.1072210818529129 - }, - { - "X": 0.6184399127960205, - "Y": 0.11318088322877884 - }, - { - "X": 0.585148274898529, - "Y": 0.11317142099142075 - } - ] - }, - "Id": "2c6dc337-d8fc-40b3-82d4-4c9ae3592592", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.38542938232422, - "Text": "reporting", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03518824279308319, - "Height": 0.006954729091376066, - "Left": 0.6200419068336487, - "Top": 0.10742823779582977 - }, - "Polygon": [ - { - "X": 0.6200426816940308, - "Y": 0.10742823779582977 - }, - { - "X": 0.6552301645278931, - "Y": 0.10743821412324905 - }, - { - "X": 0.655229389667511, - "Y": 0.11438296735286713 - }, - { - "X": 0.6200419068336487, - "Y": 0.11437296122312546 - } - ] - }, - "Id": "8b847366-7050-43f9-9411-019b0a5dfdd2", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 98.06184387207031, - "Text": "framework", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04290618747472763, - "Height": 0.005788071546703577, - "Left": 0.6572923064231873, - "Top": 0.10730237513780594 - }, - "Polygon": [ - { - "X": 0.657292902469635, - "Y": 0.10730237513780594 - }, - { - "X": 0.7001984715461731, - "Y": 0.10731454193592072 - }, - { - "X": 0.7001978754997253, - "Y": 0.11309044808149338 - }, - { - "X": 0.6572923064231873, - "Y": 0.11307825148105621 - } - ] - }, - "Id": "62182509-f345-4e75-829d-a35142dda722", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.40631103515625, - "Text": "applicable", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03938210755586624, - "Height": 0.006941445171833038, - "Left": 0.7021353244781494, - "Top": 0.1074579730629921 - }, - "Polygon": [ - { - "X": 0.7021360397338867, - "Y": 0.1074579730629921 - }, - { - "X": 0.7415174245834351, - "Y": 0.10746914148330688 - }, - { - "X": 0.7415168285369873, - "Y": 0.11439941823482513 - }, - { - "X": 0.7021353244781494, - "Y": 0.11438821256160736 - } - ] - }, - "Id": "46d4ee12-a97d-41c6-a36b-2ca147df83c5", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96697235107422, - "Text": "to", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.008006534539163113, - "Height": 0.005333029665052891, - "Left": 0.7435163259506226, - "Top": 0.10774951428174973 - }, - "Polygon": [ - { - "X": 0.7435168027877808, - "Y": 0.10774951428174973 - }, - { - "X": 0.7515228390693665, - "Y": 0.10775178670883179 - }, - { - "X": 0.7515223622322083, - "Y": 0.11308254301548004 - }, - { - "X": 0.7435163259506226, - "Y": 0.11308027058839798 - } - ] - }, - "Id": "af13163f-22d7-4b58-b8c7-d56aa6969d9c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98637390136719, - "Text": "the", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.012475359253585339, - "Height": 0.005612332373857498, - "Left": 0.7532685399055481, - "Top": 0.10756552964448929 - }, - "Polygon": [ - { - "X": 0.7532690763473511, - "Y": 0.10756552964448929 - }, - { - "X": 0.7657439112663269, - "Y": 0.10756906867027283 - }, - { - "X": 0.7657434344291687, - "Y": 0.11317786574363708 - }, - { - "X": 0.7532685399055481, - "Y": 0.11317431926727295 - } - ] - }, - "Id": "36a5f5e5-4ce6-46d0-aecd-9e56ef54d344", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92412567138672, - "Text": "Group", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0231475867331028, - "Height": 0.006826478987932205, - "Left": 0.7680350542068481, - "Top": 0.107420913875103 - }, - "Polygon": [ - { - "X": 0.7680357098579407, - "Y": 0.107420913875103 - }, - { - "X": 0.7911826372146606, - "Y": 0.10742747783660889 - }, - { - "X": 0.7911821007728577, - "Y": 0.1142473965883255 - }, - { - "X": 0.7680350542068481, - "Y": 0.11424081027507782 - } - ] - }, - "Id": "7a09ce2d-c190-464a-8bbd-d8706a3b42e0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96963500976562, - "Text": "in", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0068113068118691444, - "Height": 0.005697914864867926, - "Left": 0.7934727668762207, - "Top": 0.10739647597074509 - }, - "Polygon": [ - { - "X": 0.7934732437133789, - "Y": 0.10739647597074509 - }, - { - "X": 0.8002840280532837, - "Y": 0.10739840567111969 - }, - { - "X": 0.8002835512161255, - "Y": 0.11309438943862915 - }, - { - "X": 0.7934727668762207, - "Y": 0.11309245228767395 - } - ] - }, - "Id": "ad87dc28-31f3-4e0c-9834-55f11bc831b3", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.89674377441406, - "Text": "Spain", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.021308155730366707, - "Height": 0.007032296154648066, - "Left": 0.802295446395874, - "Top": 0.10732469707727432 - }, - "Polygon": [ - { - "X": 0.8022960424423218, - "Y": 0.10732469707727432 - }, - { - "X": 0.8236035704612732, - "Y": 0.10733073949813843 - }, - { - "X": 0.8236030340194702, - "Y": 0.11435699462890625 - }, - { - "X": 0.802295446395874, - "Y": 0.11435092985630035 - } - ] - }, - "Id": "71147a4b-951a-454b-9ac3-ad2d051fa2b0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.80587005615234, - "Text": "(see", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01583641767501831, - "Height": 0.007138699293136597, - "Left": 0.825783908367157, - "Top": 0.10712635517120361 - }, - "Polygon": [ - { - "X": 0.8257845044136047, - "Y": 0.10712635517120361 - }, - { - "X": 0.8416203260421753, - "Y": 0.10713084787130356 - }, - { - "X": 0.8416197896003723, - "Y": 0.11426505446434021 - }, - { - "X": 0.825783908367157, - "Y": 0.11426055431365967 - } - ] - }, - "Id": "28165901-be86-44cd-9739-2adff1d5ef37", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.58832550048828, - "Text": "Notes", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02234739437699318, - "Height": 0.00569703197106719, - "Left": 0.8437185883522034, - "Top": 0.10747987031936646 - }, - "Polygon": [ - { - "X": 0.8437190055847168, - "Y": 0.10747987031936646 - }, - { - "X": 0.8660659790039062, - "Y": 0.10748621076345444 - }, - { - "X": 0.8660655617713928, - "Y": 0.11317690461874008 - }, - { - "X": 0.8437185883522034, - "Y": 0.1131705492734909 - } - ] - }, - "Id": "f4425192-74b2-45ed-b0f2-d4daa9767b5e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 92.94760131835938, - "Text": "1", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.003944148309528828, - "Height": 0.005646401550620794, - "Left": 0.868340253829956, - "Top": 0.10736092925071716 - }, - "Polygon": [ - { - "X": 0.8683406710624695, - "Y": 0.10736092925071716 - }, - { - "X": 0.8722844123840332, - "Y": 0.1073620468378067 - }, - { - "X": 0.8722839951515198, - "Y": 0.1130073294043541 - }, - { - "X": 0.868340253829956, - "Y": 0.11300621181726456 - } - ] - }, - "Id": "9f38a403-2507-4012-9084-c34b128f7b4c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94050598144531, - "Text": "and", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.014763683080673218, - "Height": 0.005809253081679344, - "Left": 0.11011277139186859, - "Top": 0.11579635739326477 - }, - "Polygon": [ - { - "X": 0.11011397838592529, - "Y": 0.11579635739326477 - }, - { - "X": 0.12487645447254181, - "Y": 0.11580055952072144 - }, - { - "X": 0.1248752549290657, - "Y": 0.12160560488700867 - }, - { - "X": 0.11011277139186859, - "Y": 0.1216013953089714 - } - ] - }, - "Id": "0c62e96b-a764-44e5-bd34-3548ad9d1dee", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.884033203125, - "Text": "54).", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.014519475400447845, - "Height": 0.00712336553260684, - "Left": 0.12696656584739685, - "Top": 0.11528974026441574 - }, - "Polygon": [ - { - "X": 0.12696802616119385, - "Y": 0.11528974026441574 - }, - { - "X": 0.1414860486984253, - "Y": 0.11529386788606644 - }, - { - "X": 0.1414846032857895, - "Y": 0.12241309881210327 - }, - { - "X": 0.12696656584739685, - "Y": 0.12240895628929138 - } - ] - }, - "Id": "3042032c-8a16-44a2-8d08-5d9aa56fba5c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.6197280883789, - "Text": "In", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006918146274983883, - "Height": 0.005580895114690065, - "Left": 0.14433108270168304, - "Top": 0.11569034308195114 - }, - "Polygon": [ - { - "X": 0.14433221518993378, - "Y": 0.11569034308195114 - }, - { - "X": 0.1512492299079895, - "Y": 0.11569231748580933 - }, - { - "X": 0.15124811232089996, - "Y": 0.12127123773097992 - }, - { - "X": 0.14433108270168304, - "Y": 0.12126927077770233 - } - ] - }, - "Id": "2051389a-39d1-4ae8-aac0-496048fe08bd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97631072998047, - "Text": "the", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.012439468875527382, - "Height": 0.005782687105238438, - "Left": 0.15332463383674622, - "Top": 0.11566517502069473 - }, - "Polygon": [ - { - "X": 0.15332578122615814, - "Y": 0.11566517502069473 - }, - { - "X": 0.16576409339904785, - "Y": 0.11566871404647827 - }, - { - "X": 0.16576294600963593, - "Y": 0.1214478611946106 - }, - { - "X": 0.15332463383674622, - "Y": 0.12144430726766586 - } - ] - }, - "Id": "185e60c9-e13b-4f48-86a2-5cc0f7e055ad", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.917236328125, - "Text": "event", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.021170049905776978, - "Height": 0.005306186154484749, - "Left": 0.167824849486351, - "Top": 0.11613401770591736 - }, - "Polygon": [ - { - "X": 0.16782590746879578, - "Y": 0.11613401770591736 - }, - { - "X": 0.188994899392128, - "Y": 0.11614004522562027 - }, - { - "X": 0.18899387121200562, - "Y": 0.12144020944833755 - }, - { - "X": 0.167824849486351, - "Y": 0.12143416702747345 - } - ] - }, - "Id": "ab31caa1-f7a7-43a9-819b-d078e902c0ee", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95806884765625, - "Text": "of", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.008301851339638233, - "Height": 0.005687390919774771, - "Left": 0.19107724726200104, - "Top": 0.11563700437545776 - }, - "Polygon": [ - { - "X": 0.1910783350467682, - "Y": 0.11563700437545776 - }, - { - "X": 0.1993790864944458, - "Y": 0.11563936620950699 - }, - { - "X": 0.19937799870967865, - "Y": 0.12132439762353897 - }, - { - "X": 0.19107724726200104, - "Y": 0.12132202833890915 - } - ] - }, - "Id": "f3e3ccf7-5aa9-4482-a1eb-bca9e2117ed4", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.73611450195312, - "Text": "a", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.004686830099672079, - "Height": 0.004664169624447823, - "Left": 0.2008637636899948, - "Top": 0.11674491316080093 - }, - "Polygon": [ - { - "X": 0.20086465775966644, - "Y": 0.11674491316080093 - }, - { - "X": 0.20555059611797333, - "Y": 0.11674624681472778 - }, - { - "X": 0.2055497020483017, - "Y": 0.12140908092260361 - }, - { - "X": 0.2008637636899948, - "Y": 0.12140774726867676 - } - ] - }, - "Id": "5e8b2d9c-f0a0-4995-80c5-95cffcf92b3d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.27095794677734, - "Text": "discrepancy,", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04726522043347359, - "Height": 0.007198202423751354, - "Left": 0.20744723081588745, - "Top": 0.1155870333313942 - }, - "Polygon": [ - { - "X": 0.20744860172271729, - "Y": 0.1155870333313942 - }, - { - "X": 0.25471246242523193, - "Y": 0.11560048162937164 - }, - { - "X": 0.2547111511230469, - "Y": 0.12278523296117783 - }, - { - "X": 0.20744723081588745, - "Y": 0.1227717474102974 - } - ] - }, - "Id": "aab16b09-8715-4fc4-90e1-c310f1a867b9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9813461303711, - "Text": "the", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.012631302699446678, - "Height": 0.00579594261944294, - "Left": 0.2571583092212677, - "Top": 0.11571396887302399 - }, - "Polygon": [ - { - "X": 0.25715938210487366, - "Y": 0.11571396887302399 - }, - { - "X": 0.26978960633277893, - "Y": 0.1157175600528717 - }, - { - "X": 0.26978859305381775, - "Y": 0.12150990962982178 - }, - { - "X": 0.2571583092212677, - "Y": 0.12150630354881287 - } - ] - }, - "Id": "d7bf3151-87c9-419d-b43d-acf75b0fb0b8", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.42720031738281, - "Text": "Spanish-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03427021950483322, - "Height": 0.006958468351513147, - "Left": 0.2718626856803894, - "Top": 0.11561106145381927 - }, - "Polygon": [ - { - "X": 0.2718639373779297, - "Y": 0.11561106145381927 - }, - { - "X": 0.3061329126358032, - "Y": 0.11562081426382065 - }, - { - "X": 0.3061317205429077, - "Y": 0.12256953120231628 - }, - { - "X": 0.2718626856803894, - "Y": 0.12255974858999252 - } - ] - }, - "Id": "2d38e0c1-72b7-48d7-9ca4-75c76033dd45", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 89.14032745361328, - "Text": "version", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.027309387922286987, - "Height": 0.005918744020164013, - "Left": 0.30721718072891235, - "Top": 0.11559503525495529 - }, - "Polygon": [ - { - "X": 0.30721819400787354, - "Y": 0.11559503525495529 - }, - { - "X": 0.33452656865119934, - "Y": 0.11560280621051788 - }, - { - "X": 0.33452558517456055, - "Y": 0.12151378393173218 - }, - { - "X": 0.30721718072891235, - "Y": 0.1215059906244278 - } - ] - }, - "Id": "99755850-78d5-4f41-8de7-d1bb9b3288b5", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.40949249267578, - "Text": "prevails.", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0322975255548954, - "Height": 0.0069913724437355995, - "Left": 0.3366103172302246, - "Top": 0.11568475514650345 - }, - "Polygon": [ - { - "X": 0.33661147952079773, - "Y": 0.11568475514650345 - }, - { - "X": 0.3689078390598297, - "Y": 0.11569394171237946 - }, - { - "X": 0.368906706571579, - "Y": 0.12267612665891647 - }, - { - "X": 0.3366103172302246, - "Y": 0.12266691029071808 - } - ] - }, - "Id": "8e9ef034-7848-40fb-ab0b-102b7a638013", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.45720672607422, - "Text": "Grupo", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05142904445528984, - "Height": 0.015910755842924118, - "Left": 0.11039610207080841, - "Top": 0.1419035792350769 - }, - "Polygon": [ - { - "X": 0.11039941012859344, - "Y": 0.1419035792350769 - }, - { - "X": 0.16182515025138855, - "Y": 0.1419183760881424 - }, - { - "X": 0.16182197630405426, - "Y": 0.15781433880329132 - }, - { - "X": 0.11039610207080841, - "Y": 0.15779943764209747 - } - ] - }, - "Id": "893aa4a8-12ca-4323-82a0-8897499251a2", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 98.28865814208984, - "Text": "Santander", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.08834408223628998, - "Height": 0.012598917819559574, - "Left": 0.16630490124225616, - "Top": 0.14191102981567383 - }, - "Polygon": [ - { - "X": 0.16630740463733673, - "Y": 0.14191102981567383 - }, - { - "X": 0.25464898347854614, - "Y": 0.14193643629550934 - }, - { - "X": 0.2546466886997223, - "Y": 0.15450994670391083 - }, - { - "X": 0.16630490124225616, - "Y": 0.15448439121246338 - } - ] - }, - "Id": "a851ed17-0744-422d-b73f-82f1eae793bd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.87867736816406, - "Text": "CONSOLIDATED", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.09648680686950684, - "Height": 0.0080010537058115, - "Left": 0.11440972983837128, - "Top": 0.1805948168039322 - }, - "Polygon": [ - { - "X": 0.1144113838672638, - "Y": 0.1805948168039322 - }, - { - "X": 0.2108965367078781, - "Y": 0.18062300980091095 - }, - { - "X": 0.21089501678943634, - "Y": 0.18859586119651794 - }, - { - "X": 0.11440972983837128, - "Y": 0.18856756389141083 - } - ] - }, - "Id": "32deb9cd-7295-4b73-b00b-7d5a6b160638", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.86004638671875, - "Text": "BALANCE", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05597971752285957, - "Height": 0.007212393451482058, - "Left": 0.21417921781539917, - "Top": 0.18055537343025208 - }, - "Polygon": [ - { - "X": 0.2141805738210678, - "Y": 0.18055537343025208 - }, - { - "X": 0.27015894651412964, - "Y": 0.18057173490524292 - }, - { - "X": 0.2701576352119446, - "Y": 0.18776777386665344 - }, - { - "X": 0.21417921781539917, - "Y": 0.18775136768817902 - } - ] - }, - "Id": "5b43f1b7-6cfb-4310-a728-b5007a9cde9e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96575927734375, - "Text": "SHEETS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04590494558215141, - "Height": 0.008233020082116127, - "Left": 0.27361491322517395, - "Top": 0.18041640520095825 - }, - "Polygon": [ - { - "X": 0.27361637353897095, - "Y": 0.18041640520095825 - }, - { - "X": 0.31951987743377686, - "Y": 0.18042981624603271 - }, - { - "X": 0.31951847672462463, - "Y": 0.18864941596984863 - }, - { - "X": 0.27361491322517395, - "Y": 0.1886359602212906 - } - ] - }, - "Id": "26a7bd7e-de49-4ed8-be36-f057f5d187df", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92534637451172, - "Text": "AS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.016301942989230156, - "Height": 0.007907487452030182, - "Left": 0.32233625650405884, - "Top": 0.18062910437583923 - }, - "Polygon": [ - { - "X": 0.3223375976085663, - "Y": 0.18062910437583923 - }, - { - "X": 0.33863818645477295, - "Y": 0.18063387274742126 - }, - { - "X": 0.3386368751525879, - "Y": 0.18853659927845 - }, - { - "X": 0.32233625650405884, - "Y": 0.1885318160057068 - } - ] - }, - "Id": "f300e238-a949-45a1-8506-2b2911d0df90", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98365020751953, - "Text": "OF", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.016718057915568352, - "Height": 0.007918578572571278, - "Left": 0.3421269953250885, - "Top": 0.18056894838809967 - }, - "Polygon": [ - { - "X": 0.34212830662727356, - "Y": 0.18056894838809967 - }, - { - "X": 0.358845055103302, - "Y": 0.18057383596897125 - }, - { - "X": 0.35884377360343933, - "Y": 0.18848751485347748 - }, - { - "X": 0.3421269953250885, - "Y": 0.1884826123714447 - } - ] - }, - "Id": "effe7c34-5474-4562-bc0f-8d39b581b662", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94600677490234, - "Text": "31", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.013287736102938652, - "Height": 0.008045141585171223, - "Left": 0.3624083995819092, - "Top": 0.18045467138290405 - }, - "Polygon": [ - { - "X": 0.36240971088409424, - "Y": 0.18045467138290405 - }, - { - "X": 0.3756961226463318, - "Y": 0.18045856058597565 - }, - { - "X": 0.3756948411464691, - "Y": 0.1884998083114624 - }, - { - "X": 0.3624083995819092, - "Y": 0.1884959191083908 - } - ] - }, - "Id": "85b45a58-4172-41b3-b0d1-12ceed41c5cc", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93821716308594, - "Text": "DECEMBER", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06810642033815384, - "Height": 0.007941481657326221, - "Left": 0.3807978630065918, - "Top": 0.1805523931980133 - }, - "Polygon": [ - { - "X": 0.38079914450645447, - "Y": 0.1805523931980133 - }, - { - "X": 0.4489043056964874, - "Y": 0.1805723011493683 - }, - { - "X": 0.4489031434059143, - "Y": 0.18849387764930725 - }, - { - "X": 0.3807978630065918, - "Y": 0.1884739100933075 - } - ] - }, - "Id": "4b9f8aee-227d-4511-bb36-dd57925f4242", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91361236572266, - "Text": "2022,", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.033163368701934814, - "Height": 0.009627625346183777, - "Left": 0.4519716799259186, - "Top": 0.18053419888019562 - }, - "Polygon": [ - { - "X": 0.4519730806350708, - "Y": 0.18053419888019562 - }, - { - "X": 0.4851350486278534, - "Y": 0.1805438995361328 - }, - { - "X": 0.48513370752334595, - "Y": 0.1901618242263794 - }, - { - "X": 0.4519716799259186, - "Y": 0.1901520937681198 - } - ] - }, - "Id": "f15d1b4c-c3e3-4de3-acc8-f19abd2c0af4", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95533752441406, - "Text": "2021", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02875892072916031, - "Height": 0.007947245612740517, - "Left": 0.4891420602798462, - "Top": 0.18052345514297485 - }, - "Polygon": [ - { - "X": 0.48914316296577454, - "Y": 0.18052345514297485 - }, - { - "X": 0.5179010033607483, - "Y": 0.18053185939788818 - }, - { - "X": 0.5178999304771423, - "Y": 0.18847069144248962 - }, - { - "X": 0.4891420602798462, - "Y": 0.1884622573852539 - } - ] - }, - "Id": "02829d12-7099-4111-87d3-ef798377d13e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9365005493164, - "Text": "AND", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.027320627123117447, - "Height": 0.007861115038394928, - "Left": 0.5223580598831177, - "Top": 0.18059544265270233 - }, - "Polygon": [ - { - "X": 0.5223591327667236, - "Y": 0.18059544265270233 - }, - { - "X": 0.5496786832809448, - "Y": 0.18060342967510223 - }, - { - "X": 0.5496777296066284, - "Y": 0.18845656514167786 - }, - { - "X": 0.5223580598831177, - "Y": 0.18844854831695557 - } - ] - }, - "Id": "461f1766-b233-4759-bf72-e4149690f720", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96847534179688, - "Text": "2020", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.030211567878723145, - "Height": 0.00807015597820282, - "Left": 0.5533315539360046, - "Top": 0.18051080405712128 - }, - "Polygon": [ - { - "X": 0.5533325672149658, - "Y": 0.18051080405712128 - }, - { - "X": 0.5835431218147278, - "Y": 0.18051962554454803 - }, - { - "X": 0.5835421085357666, - "Y": 0.1885809600353241 - }, - { - "X": 0.5533315539360046, - "Y": 0.18857209384441376 - } - ] - }, - "Id": "c51d8d8e-83b3-4736-aada-43e7d312bec8", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.42449188232422, - "Text": "EUR", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019475789740681648, - "Height": 0.006819976959377527, - "Left": 0.11452725529670715, - "Top": 0.19599156081676483 - }, - "Polygon": [ - { - "X": 0.11452867090702057, - "Y": 0.19599156081676483 - }, - { - "X": 0.13400304317474365, - "Y": 0.19599729776382446 - }, - { - "X": 0.13400165736675262, - "Y": 0.20281153917312622 - }, - { - "X": 0.11452725529670715, - "Y": 0.2028058022260666 - } - ] - }, - "Id": "324daa3f-ccb5-4b2a-a0d5-cd33c79e4205", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97196197509766, - "Text": "million", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03360901400446892, - "Height": 0.007323401980102062, - "Left": 0.13675035536289215, - "Top": 0.19567573070526123 - }, - "Polygon": [ - { - "X": 0.13675184547901154, - "Y": 0.19567573070526123 - }, - { - "X": 0.17035935819149017, - "Y": 0.19568561017513275 - }, - { - "X": 0.17035792768001556, - "Y": 0.20299912989139557 - }, - { - "X": 0.13675035536289215, - "Y": 0.20298922061920166 - } - ] - }, - "Id": "d87f85ed-daf1-4ca7-8073-0cf802e70e50", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92911529541016, - "Text": "ASSETS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0404212512075901, - "Height": 0.007525451481342316, - "Left": 0.11379318684339523, - "Top": 0.22878509759902954 - }, - "Polygon": [ - { - "X": 0.11379475146532059, - "Y": 0.22878509759902954 - }, - { - "X": 0.15421444177627563, - "Y": 0.22879715263843536 - }, - { - "X": 0.15421293675899506, - "Y": 0.23631055653095245 - }, - { - "X": 0.11379318684339523, - "Y": 0.23629847168922424 - } - ] - }, - "Id": "60d1e7a3-be03-4c3c-880f-beb8d9355efe", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9632568359375, - "Text": "Note", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0252684336155653, - "Height": 0.007400344591587782, - "Left": 0.6339773535728455, - "Top": 0.22889038920402527 - }, - "Polygon": [ - { - "X": 0.6339781880378723, - "Y": 0.22889038920402527 - }, - { - "X": 0.6592457890510559, - "Y": 0.22889792919158936 - }, - { - "X": 0.659244954586029, - "Y": 0.23629073798656464 - }, - { - "X": 0.6339773535728455, - "Y": 0.23628318309783936 - } - ] - }, - "Id": "a1bb1089-2f87-4ef4-b3f1-8b95b78ff709", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96760559082031, - "Text": "2022", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02647084929049015, - "Height": 0.007554627023637295, - "Left": 0.7073765397071838, - "Top": 0.22868841886520386 - }, - "Polygon": [ - { - "X": 0.7073773145675659, - "Y": 0.22868841886520386 - }, - { - "X": 0.7338473796844482, - "Y": 0.2286963164806366 - }, - { - "X": 0.7338466644287109, - "Y": 0.23624305427074432 - }, - { - "X": 0.7073765397071838, - "Y": 0.2362351417541504 - } - ] - }, - "Id": "6dd83f3d-1aa1-4c83-9df1-b597703120c0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 62.5267219543457, - "Text": "20214", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029922444373369217, - "Height": 0.009449858218431473, - "Left": 0.7770820260047913, - "Top": 0.22689448297023773 - }, - "Polygon": [ - { - "X": 0.7770828604698181, - "Y": 0.22689448297023773 - }, - { - "X": 0.807004451751709, - "Y": 0.22690339386463165 - }, - { - "X": 0.8070036768913269, - "Y": 0.2363443374633789 - }, - { - "X": 0.7770820260047913, - "Y": 0.2363353967666626 - } - ] - }, - "Id": "d1ed1ad8-dfa6-45fa-b72c-31985dc69ec3", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 84.45470428466797, - "Text": "2020A", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03149137273430824, - "Height": 0.010066589340567589, - "Left": 0.8519260883331299, - "Top": 0.22636070847511292 - }, - "Polygon": [ - { - "X": 0.8519268035888672, - "Y": 0.22636070847511292 - }, - { - "X": 0.8834174275398254, - "Y": 0.22637008130550385 - }, - { - "X": 0.8834167718887329, - "Y": 0.23642729222774506 - }, - { - "X": 0.8519260883331299, - "Y": 0.23641787469387054 - } - ] - }, - "Id": "5dd2be0e-d70b-4a5a-82a5-d05932a76167", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 95.35832977294922, - "Text": "CASH,", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03201562911272049, - "Height": 0.008753549307584763, - "Left": 0.11432512104511261, - "Top": 0.24381478130817413 - }, - "Polygon": [ - { - "X": 0.11432693153619766, - "Y": 0.24381478130817413 - }, - { - "X": 0.1463407427072525, - "Y": 0.24382437765598297 - }, - { - "X": 0.14633898437023163, - "Y": 0.2525683343410492 - }, - { - "X": 0.11432512104511261, - "Y": 0.25255870819091797 - } - ] - }, - "Id": "9dfd9a42-ea0b-4458-9013-c8a7a739b290", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97056579589844, - "Text": "CASH", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.028865855187177658, - "Height": 0.007496413309127092, - "Left": 0.14990408718585968, - "Top": 0.24393606185913086 - }, - "Polygon": [ - { - "X": 0.14990559220314026, - "Y": 0.24393606185913086 - }, - { - "X": 0.17876994609832764, - "Y": 0.24394471943378448 - }, - { - "X": 0.17876848578453064, - "Y": 0.25143247842788696 - }, - { - "X": 0.14990408718585968, - "Y": 0.25142380595207214 - } - ] - }, - "Id": "4ef4725a-2c27-439a-8505-593e374ecc05", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.83869934082031, - "Text": "BALANCES", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05628593638539314, - "Height": 0.007601724471896887, - "Left": 0.1821065992116928, - "Top": 0.2437501698732376 - }, - "Polygon": [ - { - "X": 0.1821080893278122, - "Y": 0.2437501698732376 - }, - { - "X": 0.23839253187179565, - "Y": 0.24376703798770905 - }, - { - "X": 0.23839113116264343, - "Y": 0.25135189294815063 - }, - { - "X": 0.1821065992116928, - "Y": 0.2513349652290344 - } - ] - }, - "Id": "cd9f6928-3aeb-4812-8a93-a66c82e98837", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9043960571289, - "Text": "AT", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.014531823806464672, - "Height": 0.0074506159871816635, - "Left": 0.24099688231945038, - "Top": 0.24387945234775543 - }, - "Polygon": [ - { - "X": 0.2409982681274414, - "Y": 0.24387945234775543 - }, - { - "X": 0.2555287182331085, - "Y": 0.24388380348682404 - }, - { - "X": 0.2555273473262787, - "Y": 0.25133007764816284 - }, - { - "X": 0.24099688231945038, - "Y": 0.25132569670677185 - } - ] - }, - "Id": "15776b98-7fb9-45ab-9080-89737f701e0c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94058227539062, - "Text": "CENTRAL", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04880380630493164, - "Height": 0.007308328058570623, - "Left": 0.25844526290893555, - "Top": 0.2439352124929428 - }, - "Polygon": [ - { - "X": 0.258446604013443, - "Y": 0.2439352124929428 - }, - { - "X": 0.3072490692138672, - "Y": 0.24394984543323517 - }, - { - "X": 0.3072478175163269, - "Y": 0.251243531703949 - }, - { - "X": 0.25844526290893555, - "Y": 0.25122886896133423 - } - ] - }, - "Id": "06ad110e-0eb7-45c9-a65a-9f06d47c93d8", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.7095947265625, - "Text": "BANKS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.036882348358631134, - "Height": 0.0074697756208479404, - "Left": 0.310138076543808, - "Top": 0.24390409886837006 - }, - "Polygon": [ - { - "X": 0.31013935804367065, - "Y": 0.24390409886837006 - }, - { - "X": 0.3470204174518585, - "Y": 0.2439151555299759 - }, - { - "X": 0.34701916575431824, - "Y": 0.25137385725975037 - }, - { - "X": 0.310138076543808, - "Y": 0.25136277079582214 - } - ] - }, - "Id": "cdaafde3-b7d3-46d8-bb67-66b0a65e2402", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96380615234375, - "Text": "AND", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.024163879454135895, - "Height": 0.007339430507272482, - "Left": 0.34973469376564026, - "Top": 0.24396583437919617 - }, - "Polygon": [ - { - "X": 0.34973591566085815, - "Y": 0.24396583437919617 - }, - { - "X": 0.37389856576919556, - "Y": 0.24397309124469757 - }, - { - "X": 0.37389740347862244, - "Y": 0.2513052821159363 - }, - { - "X": 0.34973469376564026, - "Y": 0.2512980103492737 - } - ] - }, - "Id": "8472b50b-86b1-4a1a-a007-c9ac6ff08b02", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96273040771484, - "Text": "OTHER", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03728283941745758, - "Height": 0.007441049907356501, - "Left": 0.37727388739585876, - "Top": 0.24392302334308624 - }, - "Polygon": [ - { - "X": 0.3772750794887543, - "Y": 0.24392302334308624 - }, - { - "X": 0.41455671191215515, - "Y": 0.24393419921398163 - }, - { - "X": 0.4145555794239044, - "Y": 0.2513640820980072 - }, - { - "X": 0.37727388739585876, - "Y": 0.25135287642478943 - } - ] - }, - "Id": "b1504613-463a-4409-8b29-e290b75d5f10", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91778564453125, - "Text": "DEPOSITS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05312607064843178, - "Height": 0.00747844111174345, - "Left": 0.41781601309776306, - "Top": 0.24390709400177002 - }, - "Polygon": [ - { - "X": 0.4178171455860138, - "Y": 0.24390709400177002 - }, - { - "X": 0.47094208002090454, - "Y": 0.24392302334308624 - }, - { - "X": 0.4709410071372986, - "Y": 0.25138553977012634 - }, - { - "X": 0.41781601309776306, - "Y": 0.25136956572532654 - } - ] - }, - "Id": "802ca123-3eed-4efc-b45d-62996710b066", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96749877929688, - "Text": "ON", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.016480321064591408, - "Height": 0.007304922677576542, - "Left": 0.47419923543930054, - "Top": 0.24402351677417755 - }, - "Polygon": [ - { - "X": 0.4742002785205841, - "Y": 0.24402351677417755 - }, - { - "X": 0.4906795620918274, - "Y": 0.2440284639596939 - }, - { - "X": 0.4906785488128662, - "Y": 0.2513284385204315 - }, - { - "X": 0.47419923543930054, - "Y": 0.25132349133491516 - } - ] - }, - "Id": "341b66b0-28ab-4e95-88d5-d683655cf1a7", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91156768798828, - "Text": "DEMAND", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04917078837752342, - "Height": 0.007443567737936974, - "Left": 0.494290292263031, - "Top": 0.24386794865131378 - }, - "Polygon": [ - { - "X": 0.4942913055419922, - "Y": 0.24386794865131378 - }, - { - "X": 0.5434610843658447, - "Y": 0.2438827008008957 - }, - { - "X": 0.5434601306915283, - "Y": 0.2513115108013153 - }, - { - "X": 0.494290292263031, - "Y": 0.251296728849411 - } - ] - }, - "Id": "26aae6f0-ebb7-483d-8240-0fbc14b69434", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.61522674560547, - "Text": "223,073", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.043289124965667725, - "Height": 0.008589999750256538, - "Left": 0.689119815826416, - "Top": 0.24393188953399658 - }, - "Polygon": [ - { - "X": 0.6891207098960876, - "Y": 0.24393188953399658 - }, - { - "X": 0.7324089407920837, - "Y": 0.24394486844539642 - }, - { - "X": 0.7324081063270569, - "Y": 0.25252190232276917 - }, - { - "X": 0.689119815826416, - "Y": 0.25250887870788574 - } - ] - }, - "Id": "4b92dcf8-235b-46b7-a41a-2eea153294be", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.77078247070312, - "Text": "210,689", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04396512359380722, - "Height": 0.008548342622816563, - "Left": 0.7639565467834473, - "Top": 0.2438611537218094 - }, - "Polygon": [ - { - "X": 0.7639573216438293, - "Y": 0.2438611537218094 - }, - { - "X": 0.8079216480255127, - "Y": 0.24387434124946594 - }, - { - "X": 0.8079209327697754, - "Y": 0.2524094879627228 - }, - { - "X": 0.7639565467834473, - "Y": 0.25239625573158264 - } - ] - }, - "Id": "d5473145-7aee-40a0-830e-438160811347", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.83033752441406, - "Text": "153,839", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.043369363993406296, - "Height": 0.008677063509821892, - "Left": 0.8394829034805298, - "Top": 0.24382032454013824 - }, - "Polygon": [ - { - "X": 0.8394835591316223, - "Y": 0.24382032454013824 - }, - { - "X": 0.8828522562980652, - "Y": 0.24383333325386047 - }, - { - "X": 0.8828516602516174, - "Y": 0.2524973750114441 - }, - { - "X": 0.8394829034805298, - "Y": 0.25248435139656067 - } - ] - }, - "Id": "47741783-3639-4c50-995e-ee35d2fcb0b9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.87240600585938, - "Text": "FINANCIAL", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05806056037545204, - "Height": 0.0072638061828911304, - "Left": 0.11470630019903183, - "Top": 0.2592422664165497 - }, - "Polygon": [ - { - "X": 0.11470780521631241, - "Y": 0.2592422664165497 - }, - { - "X": 0.17276686429977417, - "Y": 0.25925979018211365 - }, - { - "X": 0.17276543378829956, - "Y": 0.2665060758590698 - }, - { - "X": 0.11470630019903183, - "Y": 0.2664884924888611 - } - ] - }, - "Id": "f2620ef6-8737-48c0-92fb-4aa8f0decc9a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91517639160156, - "Text": "ASSETS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04028821736574173, - "Height": 0.007467578165233135, - "Left": 0.17471332848072052, - "Top": 0.2591155171394348 - }, - "Polygon": [ - { - "X": 0.1747148036956787, - "Y": 0.2591155171394348 - }, - { - "X": 0.21500155329704285, - "Y": 0.259127676486969 - }, - { - "X": 0.21500013768672943, - "Y": 0.266583114862442 - }, - { - "X": 0.17471332848072052, - "Y": 0.26657092571258545 - } - ] - }, - "Id": "b9eb22e2-8402-4ccd-af77-07236c62dc8f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94329833984375, - "Text": "HELD", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02833246998488903, - "Height": 0.007259827107191086, - "Left": 0.21825768053531647, - "Top": 0.2592162489891052 - }, - "Polygon": [ - { - "X": 0.2182590514421463, - "Y": 0.2592162489891052 - }, - { - "X": 0.24659015238285065, - "Y": 0.2592247724533081 - }, - { - "X": 0.2465888261795044, - "Y": 0.2664760649204254 - }, - { - "X": 0.21825768053531647, - "Y": 0.26646748185157776 - } - ] - }, - "Id": "88a5b9a2-9dce-440d-b090-59c52631bd34", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.87126922607422, - "Text": "FOR", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.021907245740294456, - "Height": 0.007298603188246489, - "Left": 0.25013110041618347, - "Top": 0.25922316312789917 - }, - "Polygon": [ - { - "X": 0.25013241171836853, - "Y": 0.25922316312789917 - }, - { - "X": 0.2720383405685425, - "Y": 0.25922977924346924 - }, - { - "X": 0.2720370292663574, - "Y": 0.26652178168296814 - }, - { - "X": 0.25013110041618347, - "Y": 0.2665151357650757 - } - ] - }, - "Id": "85a18c5e-c5f0-4ed7-a0b7-631f6cf497ba", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93678283691406, - "Text": "TRADING", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04959731549024582, - "Height": 0.007465536240488291, - "Left": 0.2745082974433899, - "Top": 0.2590513825416565 - }, - "Polygon": [ - { - "X": 0.27450960874557495, - "Y": 0.2590513825416565 - }, - { - "X": 0.3241056203842163, - "Y": 0.2590663433074951 - }, - { - "X": 0.32410433888435364, - "Y": 0.26651692390441895 - }, - { - "X": 0.2745082974433899, - "Y": 0.26650190353393555 - } - ] - }, - "Id": "993f3005-f90b-4714-924d-4232ec53ce1b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.86213684082031, - "Text": "156,118", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.043516479432582855, - "Height": 0.008861089125275612, - "Left": 0.689704179763794, - "Top": 0.2589060962200165 - }, - "Polygon": [ - { - "X": 0.6897051334381104, - "Y": 0.2589060962200165 - }, - { - "X": 0.7332206964492798, - "Y": 0.25891923904418945 - }, - { - "X": 0.7332198619842529, - "Y": 0.26776719093322754 - }, - { - "X": 0.689704179763794, - "Y": 0.2677540183067322 - } - ] - }, - "Id": "8e2c37aa-6b83-4417-9c9d-69130da0a0b2", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.87952423095703, - "Text": "116,953", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04282016679644585, - "Height": 0.008725927211344242, - "Left": 0.7647391557693481, - "Top": 0.25903645157814026 - }, - "Polygon": [ - { - "X": 0.7647399306297302, - "Y": 0.25903645157814026 - }, - { - "X": 0.8075593113899231, - "Y": 0.25904935598373413 - }, - { - "X": 0.8075585961341858, - "Y": 0.2677623927593231 - }, - { - "X": 0.7647391557693481, - "Y": 0.2677494287490845 - } - ] - }, - "Id": "41ea88e2-6b7f-4911-8654-a7d2028cf427", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94640350341797, - "Text": "114,945", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04282919690012932, - "Height": 0.008804485201835632, - "Left": 0.8396908044815063, - "Top": 0.25892359018325806 - }, - "Polygon": [ - { - "X": 0.8396914601325989, - "Y": 0.25892359018325806 - }, - { - "X": 0.8825200200080872, - "Y": 0.2589365243911743 - }, - { - "X": 0.8825194239616394, - "Y": 0.2677280902862549 - }, - { - "X": 0.8396908044815063, - "Y": 0.26771512627601624 - } - ] - }, - "Id": "39fb0053-7a05-474b-9db2-e05bca57d6b5", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.77191925048828, - "Text": "Derivatives", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.057427674531936646, - "Height": 0.007860708050429821, - "Left": 0.12506026029586792, - "Top": 0.27396735548973083 - }, - "Polygon": [ - { - "X": 0.12506186962127686, - "Y": 0.27396735548973083 - }, - { - "X": 0.18248793482780457, - "Y": 0.27398478984832764 - }, - { - "X": 0.1824864000082016, - "Y": 0.2818280756473541 - }, - { - "X": 0.12506026029586792, - "Y": 0.28181058168411255 - } - ] - }, - "Id": "04d5e7f2-8ca6-4c08-8fe4-cebc1f1e875b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94570922851562, - "Text": "9", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006335812155157328, - "Height": 0.007399486843496561, - "Left": 0.614509105682373, - "Top": 0.2744649350643158 - }, - "Polygon": [ - { - "X": 0.6145099401473999, - "Y": 0.2744649350643158 - }, - { - "X": 0.6208449006080627, - "Y": 0.274466872215271 - }, - { - "X": 0.6208440661430359, - "Y": 0.2818644344806671 - }, - { - "X": 0.614509105682373, - "Y": 0.2818624973297119 - } - ] - }, - "Id": "4cdf5657-e6a0-4a64-a831-30425bf72214", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9896240234375, - "Text": "and", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019011151045560837, - "Height": 0.007448178716003895, - "Left": 0.6238923072814941, - "Top": 0.27425417304039 - }, - "Polygon": [ - { - "X": 0.623893141746521, - "Y": 0.27425417304039 - }, - { - "X": 0.6429034471511841, - "Y": 0.27425992488861084 - }, - { - "X": 0.6429026126861572, - "Y": 0.28170233964920044 - }, - { - "X": 0.6238923072814941, - "Y": 0.2816965579986572 - } - ] - }, - "Id": "6a7077ad-8b2f-432e-a84e-63cf2867a90b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9109878540039, - "Text": "11", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.011288458481431007, - "Height": 0.0075606429018080235, - "Left": 0.6467143297195435, - "Top": 0.27407851815223694 - }, - "Polygon": [ - { - "X": 0.6467151641845703, - "Y": 0.27407851815223694 - }, - { - "X": 0.6580027937889099, - "Y": 0.2740819454193115 - }, - { - "X": 0.6580019593238831, - "Y": 0.2816391587257385 - }, - { - "X": 0.6467143297195435, - "Y": 0.28163573145866394 - } - ] - }, - "Id": "8b783bd9-3602-4f3a-8235-e630c10c1e7e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.87843322753906, - "Text": "67,002", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03646380081772804, - "Height": 0.008769279345870018, - "Left": 0.6961599588394165, - "Top": 0.27411025762557983 - }, - "Polygon": [ - { - "X": 0.6961608529090881, - "Y": 0.27411025762557983 - }, - { - "X": 0.7326237559318542, - "Y": 0.27412131428718567 - }, - { - "X": 0.7326229214668274, - "Y": 0.2828795313835144 - }, - { - "X": 0.6961599588394165, - "Y": 0.2828684449195862 - } - ] - }, - "Id": "0669c86f-f66b-4f40-a9f0-4e1cd292241b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.88883209228516, - "Text": "54,292", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.036019809544086456, - "Height": 0.00851927138864994, - "Left": 0.7715299129486084, - "Top": 0.27416184544563293 - }, - "Polygon": [ - { - "X": 0.7715306282043457, - "Y": 0.27416184544563293 - }, - { - "X": 0.8075497150421143, - "Y": 0.27417275309562683 - }, - { - "X": 0.807548999786377, - "Y": 0.28268110752105713 - }, - { - "X": 0.7715299129486084, - "Y": 0.28267014026641846 - } - ] - }, - "Id": "ae111885-7e71-4581-945b-7c5c5b01e833", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92777252197266, - "Text": "67,137", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.036777887493371964, - "Height": 0.00865253433585167, - "Left": 0.845851480960846, - "Top": 0.27412059903144836 - }, - "Polygon": [ - { - "X": 0.8458521366119385, - "Y": 0.27412059903144836 - }, - { - "X": 0.88262939453125, - "Y": 0.27413177490234375 - }, - { - "X": 0.8826287984848022, - "Y": 0.28277313709259033 - }, - { - "X": 0.845851480960846, - "Y": 0.28276193141937256 - } - ] - }, - "Id": "af59685f-e79e-457e-b7e6-be37abf86a0f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96173095703125, - "Text": "Equity", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03220377489924431, - "Height": 0.00915774516761303, - "Left": 0.1251252293586731, - "Top": 0.2894912660121918 - }, - "Polygon": [ - { - "X": 0.12512710690498352, - "Y": 0.2894912660121918 - }, - { - "X": 0.1573290079832077, - "Y": 0.2895011007785797 - }, - { - "X": 0.15732717514038086, - "Y": 0.29864901304244995 - }, - { - "X": 0.1251252293586731, - "Y": 0.2986391484737396 - } - ] - }, - "Id": "d23d0e87-4c63-45a0-a1b3-f5e791efa807", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.64261627197266, - "Text": "instruments", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06355757266283035, - "Height": 0.0077486890368163586, - "Left": 0.15943434834480286, - "Top": 0.2893053889274597 - }, - "Polygon": [ - { - "X": 0.15943589806556702, - "Y": 0.2893053889274597 - }, - { - "X": 0.2229919284582138, - "Y": 0.2893247902393341 - }, - { - "X": 0.222990483045578, - "Y": 0.29705408215522766 - }, - { - "X": 0.15943434834480286, - "Y": 0.2970346212387085 - } - ] - }, - "Id": "022fd29d-f1cb-4ca3-ba20-e94ee46daed7", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95458221435547, - "Text": "8", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006500164978206158, - "Height": 0.0075710914097726345, - "Left": 0.6501794457435608, - "Top": 0.2894745469093323 - }, - "Polygon": [ - { - "X": 0.6501802802085876, - "Y": 0.2894745469093323 - }, - { - "X": 0.6566795706748962, - "Y": 0.28947654366493225 - }, - { - "X": 0.6566787958145142, - "Y": 0.29704564809799194 - }, - { - "X": 0.6501794457435608, - "Y": 0.29704365134239197 - } - ] - }, - "Id": "64df94de-a482-467d-914b-d5ac2991044a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.83443450927734, - "Text": "10,066", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0361800342798233, - "Height": 0.008811406791210175, - "Left": 0.696730375289917, - "Top": 0.2892386317253113 - }, - "Polygon": [ - { - "X": 0.6967312693595886, - "Y": 0.2892386317253113 - }, - { - "X": 0.7329104542732239, - "Y": 0.2892496585845947 - }, - { - "X": 0.732909619808197, - "Y": 0.29805001616477966 - }, - { - "X": 0.696730375289917, - "Y": 0.29803892970085144 - } - ] - }, - "Id": "b270a7be-590e-4197-a5a3-94375585c01e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.88036346435547, - "Text": "15,077", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03593789413571358, - "Height": 0.008615630678832531, - "Left": 0.7719631195068359, - "Top": 0.28930261731147766 - }, - "Polygon": [ - { - "X": 0.7719638347625732, - "Y": 0.28930261731147766 - }, - { - "X": 0.8079009652137756, - "Y": 0.28931358456611633 - }, - { - "X": 0.8079003095626831, - "Y": 0.2979182302951813 - }, - { - "X": 0.7719631195068359, - "Y": 0.2979072332382202 - } - ] - }, - "Id": "52b8d422-02c9-4647-9853-363e51935569", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.84469604492188, - "Text": "9,615", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029469819739460945, - "Height": 0.008629144169390202, - "Left": 0.8530312180519104, - "Top": 0.2893236577510834 - }, - "Polygon": [ - { - "X": 0.8530318737030029, - "Y": 0.2893236577510834 - }, - { - "X": 0.8825010657310486, - "Y": 0.28933265805244446 - }, - { - "X": 0.8825004696846008, - "Y": 0.297952800989151 - }, - { - "X": 0.8530312180519104, - "Y": 0.29794377088546753 - } - ] - }, - "Id": "24c12832-d712-4002-8de8-a782fcf0331f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.89327239990234, - "Text": "Debt", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.024572327733039856, - "Height": 0.007518913596868515, - "Left": 0.12507493793964386, - "Top": 0.3045513927936554 - }, - "Polygon": [ - { - "X": 0.12507647275924683, - "Y": 0.3045513927936554 - }, - { - "X": 0.14964726567268372, - "Y": 0.3045589327812195 - }, - { - "X": 0.14964574575424194, - "Y": 0.3120703101158142 - }, - { - "X": 0.12507493793964386, - "Y": 0.31206274032592773 - } - ] - }, - "Id": "3818d3e0-1c5a-4b5f-999a-b80a9f3f4b6c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97281646728516, - "Text": "securities", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04922819882631302, - "Height": 0.007602054160088301, - "Left": 0.15244527161121368, - "Top": 0.30452537536621094 - }, - "Polygon": [ - { - "X": 0.15244679152965546, - "Y": 0.30452537536621094 - }, - { - "X": 0.2016734629869461, - "Y": 0.3045405149459839 - }, - { - "X": 0.2016720175743103, - "Y": 0.3121274411678314 - }, - { - "X": 0.15244527161121368, - "Y": 0.3121122717857361 - } - ] - }, - "Id": "60a359f6-bf56-425f-9610-0cd90c63cba7", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93464660644531, - "Text": "7", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006326254922896624, - "Height": 0.0073687369003891945, - "Left": 0.6500588655471802, - "Top": 0.3045688271522522 - }, - "Polygon": [ - { - "X": 0.650059700012207, - "Y": 0.3045688271522522 - }, - { - "X": 0.6563851237297058, - "Y": 0.3045707643032074 - }, - { - "X": 0.656384289264679, - "Y": 0.311937540769577 - }, - { - "X": 0.6500588655471802, - "Y": 0.3119356036186218 - } - ] - }, - "Id": "2c57d7f6-ca9c-4d2f-9d5d-711f36a92f3b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95294952392578, - "Text": "41,403", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03661200404167175, - "Height": 0.008546596392989159, - "Left": 0.6960592269897461, - "Top": 0.30451178550720215 - }, - "Polygon": [ - { - "X": 0.6960601210594177, - "Y": 0.30451178550720215 - }, - { - "X": 0.7326712608337402, - "Y": 0.3045230209827423 - }, - { - "X": 0.7326704263687134, - "Y": 0.31305837631225586 - }, - { - "X": 0.6960592269897461, - "Y": 0.3130470812320709 - } - ] - }, - "Id": "3c12e978-ace7-4206-b32e-43c921bee34b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92908477783203, - "Text": "26,750", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.036773160099983215, - "Height": 0.008418305777013302, - "Left": 0.7711862325668335, - "Top": 0.3046106994152069 - }, - "Polygon": [ - { - "X": 0.7711869478225708, - "Y": 0.3046106994152069 - }, - { - "X": 0.8079593777656555, - "Y": 0.30462199449539185 - }, - { - "X": 0.8079586625099182, - "Y": 0.3130289912223816 - }, - { - "X": 0.7711862325668335, - "Y": 0.31301766633987427 - } - ] - }, - "Id": "b2e80104-d368-4ae2-8c3f-e8c0090007b8", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96219635009766, - "Text": "37,894", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03700361028313637, - "Height": 0.008534186519682407, - "Left": 0.8461146950721741, - "Top": 0.3045662045478821 - }, - "Polygon": [ - { - "X": 0.8461152911186218, - "Y": 0.3045662045478821 - }, - { - "X": 0.8831182718276978, - "Y": 0.3045775890350342 - }, - { - "X": 0.8831177353858948, - "Y": 0.3131003975868225 - }, - { - "X": 0.8461146950721741, - "Y": 0.3130890130996704 - } - ] - }, - "Id": "a961965e-6a1d-49d4-9666-4344785b7d61", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.88349914550781, - "Text": "Loans", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029491132125258446, - "Height": 0.007291085552424192, - "Left": 0.12496434152126312, - "Top": 0.3196115493774414 - }, - "Polygon": [ - { - "X": 0.1249658390879631, - "Y": 0.3196115493774414 - }, - { - "X": 0.15445546805858612, - "Y": 0.31962063908576965 - }, - { - "X": 0.15445400774478912, - "Y": 0.3269026279449463 - }, - { - "X": 0.12496434152126312, - "Y": 0.32689347863197327 - } - ] - }, - "Id": "38166f8c-2201-4341-9d4e-cfeaed46317b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.87478637695312, - "Text": "and", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.018938865512609482, - "Height": 0.0072926487773656845, - "Left": 0.15749916434288025, - "Top": 0.3195185959339142 - }, - "Polygon": [ - { - "X": 0.15750062465667725, - "Y": 0.3195185959339142 - }, - { - "X": 0.17643803358078003, - "Y": 0.31952446699142456 - }, - { - "X": 0.17643660306930542, - "Y": 0.3268112540245056 - }, - { - "X": 0.15749916434288025, - "Y": 0.32680538296699524 - } - ] - }, - "Id": "035e1162-ddfd-446c-8661-01aa87a4b2fe", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95494842529297, - "Text": "advances", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04782036691904068, - "Height": 0.007415976841002703, - "Left": 0.17964814603328705, - "Top": 0.31946754455566406 - }, - "Polygon": [ - { - "X": 0.17964959144592285, - "Y": 0.31946754455566406 - }, - { - "X": 0.22746852040290833, - "Y": 0.31948232650756836 - }, - { - "X": 0.2274671345949173, - "Y": 0.3268835246562958 - }, - { - "X": 0.17964814603328705, - "Y": 0.3268687129020691 - } - ] - }, - "Id": "3964e7a6-265a-4193-a15e-ca5855c381fa", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.89124298095703, - "Text": "37,647", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03658881038427353, - "Height": 0.008619682863354683, - "Left": 0.6962635517120361, - "Top": 0.319316565990448 - }, - "Polygon": [ - { - "X": 0.6962644457817078, - "Y": 0.319316565990448 - }, - { - "X": 0.7328523993492126, - "Y": 0.31932786107063293 - }, - { - "X": 0.7328515648841858, - "Y": 0.32793623208999634 - }, - { - "X": 0.6962635517120361, - "Y": 0.327924907207489 - } - ] - }, - "Id": "0a428070-ab47-443b-a274-bdf8e35a9215", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92562866210938, - "Text": "20,834", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03698571398854256, - "Height": 0.008495516143739223, - "Left": 0.7711707353591919, - "Top": 0.31944015622138977 - }, - "Polygon": [ - { - "X": 0.7711714506149292, - "Y": 0.31944015622138977 - }, - { - "X": 0.808156430721283, - "Y": 0.31945157051086426 - }, - { - "X": 0.8081557154655457, - "Y": 0.32793566584587097 - }, - { - "X": 0.7711707353591919, - "Y": 0.3279242217540741 - } - ] - }, - "Id": "1b5c9f87-4e58-4763-a86a-f3b8b39683f4", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94889831542969, - "Text": "299", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01998450979590416, - "Height": 0.007636436726897955, - "Left": 0.8627454042434692, - "Top": 0.3194434344768524 - }, - "Polygon": [ - { - "X": 0.8627459406852722, - "Y": 0.3194434344768524 - }, - { - "X": 0.8827298879623413, - "Y": 0.31944960355758667 - }, - { - "X": 0.8827294111251831, - "Y": 0.3270798921585083 - }, - { - "X": 0.8627454042434692, - "Y": 0.32707369327545166 - } - ] - }, - "Id": "f80fae21-8c37-479f-8cbc-9a6a5ecd2066", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91481018066406, - "Text": "Central", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03745260834693909, - "Height": 0.007578533608466387, - "Left": 0.1316239982843399, - "Top": 0.33455023169517517 - }, - "Polygon": [ - { - "X": 0.13162554800510406, - "Y": 0.33455023169517517 - }, - { - "X": 0.169076606631279, - "Y": 0.33456188440322876 - }, - { - "X": 0.1690751165151596, - "Y": 0.34212878346443176 - }, - { - "X": 0.1316239982843399, - "Y": 0.3421171009540558 - } - ] - }, - "Id": "decd1a23-b262-4659-bc5b-629fd729e834", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93885040283203, - "Text": "banks", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.030489321798086166, - "Height": 0.00749422051012516, - "Left": 0.17198865115642548, - "Top": 0.33455514907836914 - }, - "Polygon": [ - { - "X": 0.17199012637138367, - "Y": 0.33455514907836914 - }, - { - "X": 0.20247796177864075, - "Y": 0.3345646262168884 - }, - { - "X": 0.20247653126716614, - "Y": 0.34204936027526855 - }, - { - "X": 0.17198865115642548, - "Y": 0.3420398533344269 - } - ] - }, - "Id": "7fc881ec-e823-4f8e-86b4-512a1d1dbc9f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97211456298828, - "Text": "6", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006801379378885031, - "Height": 0.00757175125181675, - "Left": 0.6499885320663452, - "Top": 0.33447346091270447 - }, - "Polygon": [ - { - "X": 0.6499893665313721, - "Y": 0.33447346091270447 - }, - { - "X": 0.6567899584770203, - "Y": 0.334475576877594 - }, - { - "X": 0.6567891240119934, - "Y": 0.34204521775245667 - }, - { - "X": 0.6499885320663452, - "Y": 0.34204310178756714 - } - ] - }, - "Id": "bf3ff109-3686-407c-91ec-b659f64e0dc5", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93379974365234, - "Text": "11,595", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0357930026948452, - "Height": 0.008547461591660976, - "Left": 0.6967487335205078, - "Top": 0.3344831168651581 - }, - "Polygon": [ - { - "X": 0.6967495679855347, - "Y": 0.3344831168651581 - }, - { - "X": 0.7325416803359985, - "Y": 0.3344942331314087 - }, - { - "X": 0.7325409054756165, - "Y": 0.34303057193756104 - }, - { - "X": 0.6967487335205078, - "Y": 0.34301942586898804 - } - ] - }, - "Id": "60fe4d54-5999-417b-9728-f9c509e7088f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92793273925781, - "Text": "3,608", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029675127938389778, - "Height": 0.008426481857895851, - "Left": 0.7781224846839905, - "Top": 0.33456680178642273 - }, - "Polygon": [ - { - "X": 0.7781231999397278, - "Y": 0.33456680178642273 - }, - { - "X": 0.8077976107597351, - "Y": 0.3345760107040405 - }, - { - "X": 0.8077969551086426, - "Y": 0.34299328923225403 - }, - { - "X": 0.7781224846839905, - "Y": 0.34298402070999146 - } - ] - }, - "Id": "ab4257d0-1750-4a94-9768-2ac8554ce74a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 93.70692443847656, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.010815231129527092, - "Height": 0.0017409438733011484, - "Left": 0.871825098991394, - "Top": 0.33781978487968445 - }, - "Polygon": [ - { - "X": 0.8718252182006836, - "Y": 0.33781978487968445 - }, - { - "X": 0.8826403021812439, - "Y": 0.33782315254211426 - }, - { - "X": 0.8826401829719543, - "Y": 0.33956074714660645 - }, - { - "X": 0.871825098991394, - "Y": 0.33955737948417664 - } - ] - }, - "Id": "292e0cde-fd59-4b7d-a74c-f8acf518070a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.88236999511719, - "Text": "Credit", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0307631753385067, - "Height": 0.007431363221257925, - "Left": 0.13164150714874268, - "Top": 0.34974437952041626 - }, - "Polygon": [ - { - "X": 0.13164302706718445, - "Y": 0.34974437952041626 - }, - { - "X": 0.16240468621253967, - "Y": 0.3497539758682251 - }, - { - "X": 0.16240321099758148, - "Y": 0.3571757376194 - }, - { - "X": 0.13164150714874268, - "Y": 0.3571660816669464 - } - ] - }, - "Id": "7c53b13f-b9c0-4839-b78d-7270786b8d9d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.58828735351562, - "Text": "institutions", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05792887136340141, - "Height": 0.007616398390382528, - "Left": 0.1657627522945404, - "Top": 0.3496153950691223 - }, - "Polygon": [ - { - "X": 0.16576425731182098, - "Y": 0.3496153950691223 - }, - { - "X": 0.22369162738323212, - "Y": 0.34963348507881165 - }, - { - "X": 0.2236901968717575, - "Y": 0.3572317957878113 - }, - { - "X": 0.1657627522945404, - "Y": 0.3572136461734772 - } - ] - }, - "Id": "16929518-1e10-430c-91c4-038c4cb8bbd6", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96317291259766, - "Text": "6", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006694692187011242, - "Height": 0.007476476952433586, - "Left": 0.6500639319419861, - "Top": 0.3496769666671753 - }, - "Polygon": [ - { - "X": 0.6500647664070129, - "Y": 0.3496769666671753 - }, - { - "X": 0.6567586660385132, - "Y": 0.34967905282974243 - }, - { - "X": 0.6567578315734863, - "Y": 0.35715344548225403 - }, - { - "X": 0.6500639319419861, - "Y": 0.3571513593196869 - } - ] - }, - "Id": "f5c510a7-e5c8-4ade-a6cb-e2fcd2e760ef", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.807373046875, - "Text": "16,502", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.035793110728263855, - "Height": 0.008618969470262527, - "Left": 0.6968721151351929, - "Top": 0.34957629442214966 - }, - "Polygon": [ - { - "X": 0.6968729496002197, - "Y": 0.34957629442214966 - }, - { - "X": 0.7326652407646179, - "Y": 0.34958747029304504 - }, - { - "X": 0.7326644062995911, - "Y": 0.3581952750682831 - }, - { - "X": 0.6968721151351929, - "Y": 0.3581840395927429 - } - ] - }, - "Id": "24d4f037-d783-49aa-b114-d7fb3c56376d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92012023925781, - "Text": "10,397", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.035934578627347946, - "Height": 0.00837418157607317, - "Left": 0.771908164024353, - "Top": 0.34972766041755676 - }, - "Polygon": [ - { - "X": 0.7719088792800903, - "Y": 0.34972766041755676 - }, - { - "X": 0.8078427314758301, - "Y": 0.3497388958930969 - }, - { - "X": 0.8078420758247375, - "Y": 0.35810184478759766 - }, - { - "X": 0.771908164024353, - "Y": 0.3580905795097351 - } - ] - }, - "Id": "518106a3-b8f1-47d1-a5a8-4c5e458be998", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91044616699219, - "Text": "3", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006025179289281368, - "Height": 0.007562789134681225, - "Left": 0.8765010237693787, - "Top": 0.3498157262802124 - }, - "Polygon": [ - { - "X": 0.8765015602111816, - "Y": 0.3498157262802124 - }, - { - "X": 0.8825262188911438, - "Y": 0.3498176038265228 - }, - { - "X": 0.8825256824493408, - "Y": 0.3573785126209259 - }, - { - "X": 0.8765010237693787, - "Y": 0.3573766350746155 - } - ] - }, - "Id": "d55832a9-3d75-4969-a6ed-f61d1e3d5fbd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.8940658569336, - "Text": "Customers", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05560743436217308, - "Height": 0.007427931763231754, - "Left": 0.1317802220582962, - "Top": 0.36499831080436707 - }, - "Polygon": [ - { - "X": 0.13178174197673798, - "Y": 0.36499831080436707 - }, - { - "X": 0.18738766014575958, - "Y": 0.36501580476760864 - }, - { - "X": 0.18738621473312378, - "Y": 0.37242624163627625 - }, - { - "X": 0.1317802220582962, - "Y": 0.3724087178707123 - } - ] - }, - "Id": "e4769f31-0399-48c4-8c60-12572aee7c1d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98458862304688, - "Text": "10", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0125358235090971, - "Height": 0.007474049925804138, - "Left": 0.6441501975059509, - "Top": 0.3648471534252167 - }, - "Polygon": [ - { - "X": 0.644150972366333, - "Y": 0.3648471534252167 - }, - { - "X": 0.656686007976532, - "Y": 0.36485108733177185 - }, - { - "X": 0.6566851735115051, - "Y": 0.3723211884498596 - }, - { - "X": 0.6441501975059509, - "Y": 0.37231725454330444 - } - ] - }, - "Id": "a4c3b153-b73c-4ba8-ac42-1c5fae78e03d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95221710205078, - "Text": "9,550", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029693955555558205, - "Height": 0.008365783840417862, - "Left": 0.7032366991043091, - "Top": 0.3650336265563965 - }, - "Polygon": [ - { - "X": 0.7032375335693359, - "Y": 0.3650336265563965 - }, - { - "X": 0.7329306602478027, - "Y": 0.36504295468330383 - }, - { - "X": 0.7329298257827759, - "Y": 0.37339940667152405 - }, - { - "X": 0.7032366991043091, - "Y": 0.3733900487422943 - } - ] - }, - "Id": "ee1474db-0c35-4548-8881-0ad11eab332c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.7564697265625, - "Text": "6,829", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029363149777054787, - "Height": 0.008386599831283092, - "Left": 0.7781544923782349, - "Top": 0.3647787570953369 - }, - "Polygon": [ - { - "X": 0.7781552672386169, - "Y": 0.3647787570953369 - }, - { - "X": 0.8075176477432251, - "Y": 0.3647879660129547 - }, - { - "X": 0.8075169920921326, - "Y": 0.3731653392314911 - }, - { - "X": 0.7781544923782349, - "Y": 0.3731561005115509 - } - ] - }, - "Id": "bf27293a-dea7-4feb-a0c6-a069da0750cc", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9874267578125, - "Text": "296", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.020008444786071777, - "Height": 0.0075329928658902645, - "Left": 0.862771213054657, - "Top": 0.36489781737327576 - }, - "Polygon": [ - { - "X": 0.86277174949646, - "Y": 0.36489781737327576 - }, - { - "X": 0.8827796578407288, - "Y": 0.36490410566329956 - }, - { - "X": 0.8827791810035706, - "Y": 0.37243080139160156 - }, - { - "X": 0.862771213054657, - "Y": 0.37242448329925537 - } - ] - }, - "Id": "0dcb493a-de5f-43d8-bc9f-305e89d60352", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.74224090576172, - "Text": "NON-TRADING", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.07872025668621063, - "Height": 0.007120177615433931, - "Left": 0.11482884734869003, - "Top": 0.3801797926425934 - }, - "Polygon": [ - { - "X": 0.11483032256364822, - "Y": 0.3801797926425934 - }, - { - "X": 0.19354911148548126, - "Y": 0.3802046775817871 - }, - { - "X": 0.19354774057865143, - "Y": 0.3872999846935272 - }, - { - "X": 0.11482884734869003, - "Y": 0.3872750401496887 - } - ] - }, - "Id": "08d65216-f49a-4640-9150-365556319ce6", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.80235290527344, - "Text": "FINANCIAL", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05736992508172989, - "Height": 0.007172394543886185, - "Left": 0.19731704890727997, - "Top": 0.38025492429733276 - }, - "Polygon": [ - { - "X": 0.197318434715271, - "Y": 0.38025492429733276 - }, - { - "X": 0.25468698143959045, - "Y": 0.38027307391166687 - }, - { - "X": 0.2546856701374054, - "Y": 0.38742733001708984 - }, - { - "X": 0.19731704890727997, - "Y": 0.38740915060043335 - } - ] - }, - "Id": "54f2f376-f21a-490a-97a6-bdf1051f7b0e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94647216796875, - "Text": "ASSETS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.040268514305353165, - "Height": 0.007298980839550495, - "Left": 0.2572425901889801, - "Top": 0.38029807806015015 - }, - "Polygon": [ - { - "X": 0.25724393129348755, - "Y": 0.38029807806015015 - }, - { - "X": 0.29751113057136536, - "Y": 0.3803108036518097 - }, - { - "X": 0.2975098490715027, - "Y": 0.38759705424308777 - }, - { - "X": 0.2572425901889801, - "Y": 0.38758426904678345 - } - ] - }, - "Id": "d9a21c53-fd17-435b-bc85-8d2a3f20f797", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.70404815673828, - "Text": "MANDATORILY", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.08076612651348114, - "Height": 0.007077501155436039, - "Left": 0.30053701996803284, - "Top": 0.3803294599056244 - }, - "Polygon": [ - { - "X": 0.30053824186325073, - "Y": 0.3803294599056244 - }, - { - "X": 0.38130316138267517, - "Y": 0.38035500049591064 - }, - { - "X": 0.38130202889442444, - "Y": 0.38740697503089905 - }, - { - "X": 0.30053701996803284, - "Y": 0.387381374835968 - } - ] - }, - "Id": "6cf1e9fc-2226-45a4-802d-7611840ecd4a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.83259582519531, - "Text": "AT", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01499180868268013, - "Height": 0.007051917724311352, - "Left": 0.3834785521030426, - "Top": 0.38011497259140015 - }, - "Polygon": [ - { - "X": 0.38347965478897095, - "Y": 0.38011497259140015 - }, - { - "X": 0.39847037196159363, - "Y": 0.3801197111606598 - }, - { - "X": 0.3984692692756653, - "Y": 0.3871668875217438 - }, - { - "X": 0.3834785521030426, - "Y": 0.38716214895248413 - } - ] - }, - "Id": "3db7756c-51a4-4bd6-a4d6-3304f07b7004", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.78227233886719, - "Text": "FAIR", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.024537475779652596, - "Height": 0.007106561679393053, - "Left": 0.11471504718065262, - "Top": 0.3903309106826782 - }, - "Polygon": [ - { - "X": 0.11471652239561081, - "Y": 0.3903309106826782 - }, - { - "X": 0.13925252854824066, - "Y": 0.3903387188911438 - }, - { - "X": 0.13925108313560486, - "Y": 0.3974374830722809 - }, - { - "X": 0.11471504718065262, - "Y": 0.3974296748638153 - } - ] - }, - "Id": "54895872-51d4-41f7-bcf0-719b0148a5ad", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.78886413574219, - "Text": "VALUE", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03521488979458809, - "Height": 0.007132985163480043, - "Left": 0.14179177582263947, - "Top": 0.39031264185905457 - }, - "Polygon": [ - { - "X": 0.14179320633411407, - "Y": 0.39031264185905457 - }, - { - "X": 0.17700666189193726, - "Y": 0.39032381772994995 - }, - { - "X": 0.17700526118278503, - "Y": 0.3974456191062927 - }, - { - "X": 0.14179177582263947, - "Y": 0.39743441343307495 - } - ] - }, - "Id": "93820c03-3de4-42ef-ad9c-d9abd5b706ba", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96585845947266, - "Text": "THROUGH", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05543054640293121, - "Height": 0.007181017193943262, - "Left": 0.1793270856142044, - "Top": 0.3902356028556824 - }, - "Polygon": [ - { - "X": 0.17932848632335663, - "Y": 0.3902356028556824 - }, - { - "X": 0.23475763201713562, - "Y": 0.3902531862258911 - }, - { - "X": 0.23475630581378937, - "Y": 0.3974166214466095 - }, - { - "X": 0.1793270856142044, - "Y": 0.397398978471756 - } - ] - }, - "Id": "374101a0-8b28-4239-94c2-77929988192f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.88033294677734, - "Text": "PROFIT", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.039561450481414795, - "Height": 0.007168242242187262, - "Left": 0.23820152878761292, - "Top": 0.3902725875377655 - }, - "Polygon": [ - { - "X": 0.23820285499095917, - "Y": 0.3902725875377655 - }, - { - "X": 0.2777629792690277, - "Y": 0.3902851343154907 - }, - { - "X": 0.27776169776916504, - "Y": 0.3974408209323883 - }, - { - "X": 0.23820152878761292, - "Y": 0.3974282443523407 - } - ] - }, - "Id": "88606bf3-08e4-4b40-9b46-f7c7b82e5003", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.89539337158203, - "Text": "OR", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.015908269211649895, - "Height": 0.0070343343541026115, - "Left": 0.280373215675354, - "Top": 0.3903472423553467 - }, - "Polygon": [ - { - "X": 0.2803744673728943, - "Y": 0.3903472423553467 - }, - { - "X": 0.29628148674964905, - "Y": 0.3903523087501526 - }, - { - "X": 0.29628026485443115, - "Y": 0.39738157391548157 - }, - { - "X": 0.280373215675354, - "Y": 0.39737650752067566 - } - ] - }, - "Id": "744fc997-45e0-4b26-a80e-27fa973cbfdc", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.88679504394531, - "Text": "LOSS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.026945987716317177, - "Height": 0.00688412319868803, - "Left": 0.2992023825645447, - "Top": 0.39044100046157837 - }, - "Polygon": [ - { - "X": 0.2992035746574402, - "Y": 0.39044100046157837 - }, - { - "X": 0.3261483609676361, - "Y": 0.39044955372810364 - }, - { - "X": 0.326147198677063, - "Y": 0.3973251283168793 - }, - { - "X": 0.2992023825645447, - "Y": 0.3973165452480316 - } - ] - }, - "Id": "b3a4fa87-aae9-43e5-9768-b9976774a250", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.85318756103516, - "Text": "5,713", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.028952958062291145, - "Height": 0.008429151028394699, - "Left": 0.7035402655601501, - "Top": 0.3901265263557434 - }, - "Polygon": [ - { - "X": 0.703541100025177, - "Y": 0.3901265263557434 - }, - { - "X": 0.7324932217597961, - "Y": 0.3901357054710388 - }, - { - "X": 0.7324923872947693, - "Y": 0.3985556662082672 - }, - { - "X": 0.7035402655601501, - "Y": 0.3985464572906494 - } - ] - }, - "Id": "f0847923-1c56-4941-91aa-e95d3348f715", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.79682159423828, - "Text": "5,536", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.030053621158003807, - "Height": 0.008423835039138794, - "Left": 0.7778223752975464, - "Top": 0.39017218351364136 - }, - "Polygon": [ - { - "X": 0.7778230905532837, - "Y": 0.39017218351364136 - }, - { - "X": 0.8078759908676147, - "Y": 0.3901817202568054 - }, - { - "X": 0.8078752756118774, - "Y": 0.39859601855278015 - }, - { - "X": 0.7778223752975464, - "Y": 0.3985864520072937 - } - ] - }, - "Id": "5e715b61-1d0a-408d-a263-2c2db8f861de", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90840148925781, - "Text": "4,486", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.030642269179224968, - "Height": 0.008396000601351261, - "Left": 0.8524119257926941, - "Top": 0.3900205194950104 - }, - "Polygon": [ - { - "X": 0.8524125218391418, - "Y": 0.3900205194950104 - }, - { - "X": 0.8830541968345642, - "Y": 0.39003026485443115 - }, - { - "X": 0.8830536603927612, - "Y": 0.39841651916503906 - }, - { - "X": 0.8524119257926941, - "Y": 0.3984067738056183 - } - ] - }, - "Id": "234cd9e3-104f-4fa5-9d90-b7cfaede0c40", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97340393066406, - "Text": "Equity", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03217457979917526, - "Height": 0.009141059592366219, - "Left": 0.12521865963935852, - "Top": 0.40528541803359985 - }, - "Polygon": [ - { - "X": 0.12522053718566895, - "Y": 0.40528541803359985 - }, - { - "X": 0.15739324688911438, - "Y": 0.4052956700325012 - }, - { - "X": 0.15739141404628754, - "Y": 0.4144264757633209 - }, - { - "X": 0.12521865963935852, - "Y": 0.4144161641597748 - } - ] - }, - "Id": "071e64e2-3bf4-40ce-a2b3-337cca5fcbb8", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.65489196777344, - "Text": "instruments", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.062304768711328506, - "Height": 0.007326125167310238, - "Left": 0.16047507524490356, - "Top": 0.4053190052509308 - }, - "Polygon": [ - { - "X": 0.16047652065753937, - "Y": 0.4053190052509308 - }, - { - "X": 0.22277984023094177, - "Y": 0.4053388833999634 - }, - { - "X": 0.22277846932411194, - "Y": 0.4126451313495636 - }, - { - "X": 0.16047507524490356, - "Y": 0.41262519359588623 - } - ] - }, - "Id": "bc53d4d5-fd64-467a-a832-7374742dfd6d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93412780761719, - "Text": "8", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006754094269126654, - "Height": 0.007253038231283426, - "Left": 0.6526448726654053, - "Top": 0.40538790822029114 - }, - "Polygon": [ - { - "X": 0.6526456475257874, - "Y": 0.40538790822029114 - }, - { - "X": 0.6593989729881287, - "Y": 0.40539008378982544 - }, - { - "X": 0.6593981981277466, - "Y": 0.4126409590244293 - }, - { - "X": 0.6526448726654053, - "Y": 0.412638783454895 - } - ] - }, - "Id": "a2c8c5e5-9264-446d-80f5-6bfc6d0b4116", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.47230529785156, - "Text": "3,711", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.028474953025579453, - "Height": 0.008481782861053944, - "Left": 0.7030772566795349, - "Top": 0.40516403317451477 - }, - "Polygon": [ - { - "X": 0.7030780911445618, - "Y": 0.40516403317451477 - }, - { - "X": 0.7315521836280823, - "Y": 0.405173122882843 - }, - { - "X": 0.7315514087677002, - "Y": 0.41364580392837524 - }, - { - "X": 0.7030772566795349, - "Y": 0.4136366844177246 - } - ] - }, - "Id": "0c59b9a8-2ca4-4406-9546-ece40083d540", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92478942871094, - "Text": "4,042", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02945718914270401, - "Height": 0.008231273852288723, - "Left": 0.7781260013580322, - "Top": 0.4052489995956421 - }, - "Polygon": [ - { - "X": 0.7781267166137695, - "Y": 0.4052489995956421 - }, - { - "X": 0.8075831532478333, - "Y": 0.4052583873271942 - }, - { - "X": 0.8075824975967407, - "Y": 0.413480281829834 - }, - { - "X": 0.7781260013580322, - "Y": 0.4134708344936371 - } - ] - }, - "Id": "d58b266d-f1bf-481c-8c7c-1ceb72b67953", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.8553466796875, - "Text": "3,234", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029908139258623123, - "Height": 0.008283162489533424, - "Left": 0.8531408309936523, - "Top": 0.40526723861694336 - }, - "Polygon": [ - { - "X": 0.8531414270401001, - "Y": 0.40526723861694336 - }, - { - "X": 0.883048951625824, - "Y": 0.4052767753601074 - }, - { - "X": 0.883048415184021, - "Y": 0.41355040669441223 - }, - { - "X": 0.8531408309936523, - "Y": 0.4135408401489258 - } - ] - }, - "Id": "1aa6257a-ec95-45f4-a7df-dcf8ad403308", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90364074707031, - "Text": "Debt", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.024402346462011337, - "Height": 0.007270445115864277, - "Left": 0.12524931132793427, - "Top": 0.4202108085155487 - }, - "Polygon": [ - { - "X": 0.12525080144405365, - "Y": 0.4202108085155487 - }, - { - "X": 0.1496516615152359, - "Y": 0.42021864652633667 - }, - { - "X": 0.1496502012014389, - "Y": 0.4274812638759613 - }, - { - "X": 0.12524931132793427, - "Y": 0.42747339606285095 - } - ] - }, - "Id": "63ebbe63-52c4-41ac-abf3-0ac8332887fd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96650695800781, - "Text": "securities", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04925956949591637, - "Height": 0.007428174372762442, - "Left": 0.1527039110660553, - "Top": 0.4202406406402588 - }, - "Polygon": [ - { - "X": 0.15270540118217468, - "Y": 0.4202406406402588 - }, - { - "X": 0.20196348428726196, - "Y": 0.42025643587112427 - }, - { - "X": 0.20196205377578735, - "Y": 0.42766880989074707 - }, - { - "X": 0.1527039110660553, - "Y": 0.4276529550552368 - } - ] - }, - "Id": "d55e03cd-8808-41a6-99a0-197b3bd61971", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93795013427734, - "Text": "7", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006497852969914675, - "Height": 0.007181223481893539, - "Left": 0.6528176665306091, - "Top": 0.4201682209968567 - }, - "Polygon": [ - { - "X": 0.6528184413909912, - "Y": 0.4201682209968567 - }, - { - "X": 0.6593155264854431, - "Y": 0.42017027735710144 - }, - { - "X": 0.659314751625061, - "Y": 0.42734941840171814 - }, - { - "X": 0.6528176665306091, - "Y": 0.427347332239151 - } - ] - }, - "Id": "101d22fe-fea9-4a06-ace2-64f706aa5a21", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.79142761230469, - "Text": "1,134", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02925797924399376, - "Height": 0.008436854928731918, - "Left": 0.7038064002990723, - "Top": 0.41999930143356323 - }, - "Polygon": [ - { - "X": 0.7038072347640991, - "Y": 0.41999930143356323 - }, - { - "X": 0.7330644130706787, - "Y": 0.42000868916511536 - }, - { - "X": 0.7330635786056519, - "Y": 0.42843616008758545 - }, - { - "X": 0.7038064002990723, - "Y": 0.42842674255371094 - } - ] - }, - "Id": "960007b5-2361-48a1-aa1d-6a5f6426b80e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9832534790039, - "Text": "957", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.020104272291064262, - "Height": 0.00739561440423131, - "Left": 0.7876257300376892, - "Top": 0.4201411306858063 - }, - "Polygon": [ - { - "X": 0.787626326084137, - "Y": 0.4201411306858063 - }, - { - "X": 0.8077300190925598, - "Y": 0.4201475977897644 - }, - { - "X": 0.8077293634414673, - "Y": 0.4275367558002472 - }, - { - "X": 0.7876257300376892, - "Y": 0.42753028869628906 - } - ] - }, - "Id": "8e81cc23-5593-497b-a96b-344ce77ae90b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9925765991211, - "Text": "700", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0201333686709404, - "Height": 0.007415682077407837, - "Left": 0.8626888990402222, - "Top": 0.42007508873939514 - }, - "Polygon": [ - { - "X": 0.8626894354820251, - "Y": 0.42007508873939514 - }, - { - "X": 0.8828222751617432, - "Y": 0.4200815260410309 - }, - { - "X": 0.882821798324585, - "Y": 0.427490770816803 - }, - { - "X": 0.8626888990402222, - "Y": 0.42748427391052246 - } - ] - }, - "Id": "fd2996b5-43fe-4556-81fb-8e97ad027a2d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.8809585571289, - "Text": "Loans", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029471874237060547, - "Height": 0.007170097902417183, - "Left": 0.12519393861293793, - "Top": 0.43536004424095154 - }, - "Polygon": [ - { - "X": 0.12519541382789612, - "Y": 0.43536004424095154 - }, - { - "X": 0.15466581284999847, - "Y": 0.4353695511817932 - }, - { - "X": 0.15466438233852386, - "Y": 0.4425301253795624 - }, - { - "X": 0.12519393861293793, - "Y": 0.4425205886363983 - } - ] - }, - "Id": "b5add48c-df3a-4ac8-b218-ec7fb5de48c3", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.87688446044922, - "Text": "and", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.018894927576184273, - "Height": 0.007237343117594719, - "Left": 0.15778449177742004, - "Top": 0.4352717697620392 - }, - "Polygon": [ - { - "X": 0.15778593719005585, - "Y": 0.4352717697620392 - }, - { - "X": 0.17667941749095917, - "Y": 0.43527787923812866 - }, - { - "X": 0.17667798697948456, - "Y": 0.44250911474227905 - }, - { - "X": 0.15778449177742004, - "Y": 0.4425030052661896 - } - ] - }, - "Id": "8a2d55f6-5ac2-4ca3-abc1-ec7cc7eeff19", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9417495727539, - "Text": "advances", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04770004376769066, - "Height": 0.007307794876396656, - "Left": 0.1798098087310791, - "Top": 0.4352792203426361 - }, - "Polygon": [ - { - "X": 0.1798112392425537, - "Y": 0.4352792203426361 - }, - { - "X": 0.22750985622406006, - "Y": 0.43529459834098816 - }, - { - "X": 0.22750848531723022, - "Y": 0.4425870180130005 - }, - { - "X": 0.1798098087310791, - "Y": 0.44257158041000366 - } - ] - }, - "Id": "4cd975b7-78ba-4756-a671-09220e4ac4b9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97428131103516, - "Text": "868", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02020128443837166, - "Height": 0.00742700882256031, - "Left": 0.7129546999931335, - "Top": 0.43512269854545593 - }, - "Polygon": [ - { - "X": 0.7129554748535156, - "Y": 0.43512269854545593 - }, - { - "X": 0.7331560254096985, - "Y": 0.43512919545173645 - }, - { - "X": 0.7331553101539612, - "Y": 0.4425497055053711 - }, - { - "X": 0.7129546999931335, - "Y": 0.4425431787967682 - } - ] - }, - "Id": "6b7fe0ca-b462-4259-b8ee-0d793a828333", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97291564941406, - "Text": "537", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019856980070471764, - "Height": 0.007441255729645491, - "Left": 0.7879264950752258, - "Top": 0.43514102697372437 - }, - "Polygon": [ - { - "X": 0.7879271507263184, - "Y": 0.43514102697372437 - }, - { - "X": 0.8077834844589233, - "Y": 0.4351474344730377 - }, - { - "X": 0.8077828884124756, - "Y": 0.44258227944374084 - }, - { - "X": 0.7879264950752258, - "Y": 0.4425758421421051 - } - ] - }, - "Id": "a11f8960-8667-45c6-ae4a-45f18b1ffb15", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95845794677734, - "Text": "552", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019245168194174767, - "Height": 0.00744263082742691, - "Left": 0.8630558848381042, - "Top": 0.43512383103370667 - }, - "Polygon": [ - { - "X": 0.8630563616752625, - "Y": 0.43512383103370667 - }, - { - "X": 0.8823010325431824, - "Y": 0.4351300597190857 - }, - { - "X": 0.8823004961013794, - "Y": 0.44256648421287537 - }, - { - "X": 0.8630558848381042, - "Y": 0.44256025552749634 - } - ] - }, - "Id": "4180c6da-5206-470a-9f70-d569256ece43", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.88072967529297, - "Text": "Central", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.037310779094696045, - "Height": 0.007250145077705383, - "Left": 0.13182133436203003, - "Top": 0.4503936469554901 - }, - "Polygon": [ - { - "X": 0.13182280957698822, - "Y": 0.4503936469554901 - }, - { - "X": 0.16913211345672607, - "Y": 0.4504057466983795 - }, - { - "X": 0.16913068294525146, - "Y": 0.4576437771320343 - }, - { - "X": 0.13182133436203003, - "Y": 0.4576316475868225 - } - ] - }, - "Id": "44f65fa7-024a-4652-87cf-b0e398796c5f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90068054199219, - "Text": "banks", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.030439434573054314, - "Height": 0.0073178112506866455, - "Left": 0.17209264636039734, - "Top": 0.45042884349823 - }, - "Polygon": [ - { - "X": 0.17209409177303314, - "Y": 0.45042884349823 - }, - { - "X": 0.2025320827960968, - "Y": 0.4504387378692627 - }, - { - "X": 0.20253068208694458, - "Y": 0.4577466547489166 - }, - { - "X": 0.17209264636039734, - "Y": 0.4577367603778839 - } - ] - }, - "Id": "16d5bd5f-ae48-4ca0-8685-96cca0447c4e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97679901123047, - "Text": "6", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006649145856499672, - "Height": 0.007312118075788021, - "Left": 0.652606725692749, - "Top": 0.4504343867301941 - }, - "Polygon": [ - { - "X": 0.6526075005531311, - "Y": 0.4504343867301941 - }, - { - "X": 0.659255862236023, - "Y": 0.4504365622997284 - }, - { - "X": 0.6592550873756409, - "Y": 0.4577465057373047 - }, - { - "X": 0.652606725692749, - "Y": 0.4577443599700928 - } - ] - }, - "Id": "346fb2d4-3b85-4849-990c-12edb3e4b423", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 96.85152435302734, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.011259706690907478, - "Height": 0.0019709677435457706, - "Left": 0.7219870686531067, - "Top": 0.4535057544708252 - }, - "Polygon": [ - { - "X": 0.721987247467041, - "Y": 0.4535057544708252 - }, - { - "X": 0.7332468032836914, - "Y": 0.4535094201564789 - }, - { - "X": 0.7332465648651123, - "Y": 0.4554767310619354 - }, - { - "X": 0.7219870686531067, - "Y": 0.45547306537628174 - } - ] - }, - "Id": "b2d2fc2a-2158-446d-8710-d647dd0d5887", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 96.23677825927734, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.010979464277625084, - "Height": 0.0018600599141791463, - "Left": 0.7967638969421387, - "Top": 0.4534994959831238 - }, - "Polygon": [ - { - "X": 0.796764075756073, - "Y": 0.4534994959831238 - }, - { - "X": 0.8077433705329895, - "Y": 0.4535030722618103 - }, - { - "X": 0.8077431917190552, - "Y": 0.455359548330307 - }, - { - "X": 0.7967638969421387, - "Y": 0.45535600185394287 - } - ] - }, - "Id": "2a58b9fe-aaac-45e3-aa3e-64c428c86a26", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 95.12261962890625, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.011419418267905712, - "Height": 0.001883388147689402, - "Left": 0.8715899586677551, - "Top": 0.45351290702819824 - }, - "Polygon": [ - { - "X": 0.8715900778770447, - "Y": 0.45351290702819824 - }, - { - "X": 0.8830093741416931, - "Y": 0.4535166025161743 - }, - { - "X": 0.8830092549324036, - "Y": 0.45539629459381104 - }, - { - "X": 0.8715899586677551, - "Y": 0.4553925693035126 - } - ] - }, - "Id": "17257393-177a-4092-b408-474aed175b60", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93551635742188, - "Text": "Credit", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.030434997752308846, - "Height": 0.007374586071819067, - "Left": 0.1319892704486847, - "Top": 0.4654941260814667 - }, - "Polygon": [ - { - "X": 0.13199079036712646, - "Y": 0.4654941260814667 - }, - { - "X": 0.16242428123950958, - "Y": 0.4655040502548218 - }, - { - "X": 0.1624228060245514, - "Y": 0.4728687107563019 - }, - { - "X": 0.1319892704486847, - "Y": 0.4728587567806244 - } - ] - }, - "Id": "dce860e8-ef52-47ba-a29f-2a71d8d8909f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.57115936279297, - "Text": "institutions", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.058089662343263626, - "Height": 0.007507272996008396, - "Left": 0.165380597114563, - "Top": 0.46538761258125305 - }, - "Polygon": [ - { - "X": 0.16538208723068237, - "Y": 0.46538761258125305 - }, - { - "X": 0.22347025573253632, - "Y": 0.46540653705596924 - }, - { - "X": 0.2234688550233841, - "Y": 0.4728948771953583 - }, - { - "X": 0.165380597114563, - "Y": 0.4728758633136749 - } - ] - }, - "Id": "2d9252f7-cd0f-4f23-9565-9fb7c2b75713", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96986389160156, - "Text": "6", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006619635038077831, - "Height": 0.007237485144287348, - "Left": 0.6526841521263123, - "Top": 0.46556535363197327 - }, - "Polygon": [ - { - "X": 0.6526849269866943, - "Y": 0.46556535363197327 - }, - { - "X": 0.6593037843704224, - "Y": 0.46556752920150757 - }, - { - "X": 0.6593030095100403, - "Y": 0.4728028476238251 - }, - { - "X": 0.6526841521263123, - "Y": 0.47280067205429077 - } - ] - }, - "Id": "2acad2ca-2fac-4b74-9a30-b5538952f867", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 94.79869842529297, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.010935220867395401, - "Height": 0.0015178670873865485, - "Left": 0.7223008275032043, - "Top": 0.46890875697135925 - }, - "Polygon": [ - { - "X": 0.7223009467124939, - "Y": 0.46890875697135925 - }, - { - "X": 0.7332360148429871, - "Y": 0.4689123332500458 - }, - { - "X": 0.7332358956336975, - "Y": 0.47042661905288696 - }, - { - "X": 0.7223008275032043, - "Y": 0.47042304277420044 - } - ] - }, - "Id": "ba24baec-d367-403b-9c87-1a3c4eed488c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 95.32463836669922, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.010953599587082863, - "Height": 0.001736013451591134, - "Left": 0.7967885136604309, - "Top": 0.46872177720069885 - }, - "Polygon": [ - { - "X": 0.7967886924743652, - "Y": 0.46872177720069885 - }, - { - "X": 0.8077421188354492, - "Y": 0.4687253534793854 - }, - { - "X": 0.8077419996261597, - "Y": 0.4704577922821045 - }, - { - "X": 0.7967885136604309, - "Y": 0.4704541862010956 - } - ] - }, - "Id": "74dc4b19-f9f9-4053-a6b1-0cb447c413f5", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 93.33809661865234, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.011266450397670269, - "Height": 0.0017534771468490362, - "Left": 0.8718171119689941, - "Top": 0.468715637922287 - }, - "Polygon": [ - { - "X": 0.8718172311782837, - "Y": 0.468715637922287 - }, - { - "X": 0.8830835819244385, - "Y": 0.46871933341026306 - }, - { - "X": 0.8830834627151489, - "Y": 0.4704691171646118 - }, - { - "X": 0.8718171119689941, - "Y": 0.47046545147895813 - } - ] - }, - "Id": "453068b9-44b3-4a69-bbf9-125ca397e9e5", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.86734008789062, - "Text": "Customers", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.055579278618097305, - "Height": 0.0073247309774160385, - "Left": 0.13174383342266083, - "Top": 0.48076680302619934 - }, - "Polygon": [ - { - "X": 0.1317453235387802, - "Y": 0.48076680302619934 - }, - { - "X": 0.18732310831546783, - "Y": 0.4807850122451782 - }, - { - "X": 0.18732169270515442, - "Y": 0.48809152841567993 - }, - { - "X": 0.13174383342266083, - "Y": 0.4880732297897339 - } - ] - }, - "Id": "722e77e1-f28f-42a1-8233-7cc2b88bd56e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97560119628906, - "Text": "10", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.012321686372160912, - "Height": 0.0073943790048360825, - "Left": 0.647010862827301, - "Top": 0.48061397671699524 - }, - "Polygon": [ - { - "X": 0.6470116972923279, - "Y": 0.48061397671699524 - }, - { - "X": 0.6593325734138489, - "Y": 0.4806180000305176 - }, - { - "X": 0.6593317985534668, - "Y": 0.4880083501338959 - }, - { - "X": 0.647010862827301, - "Y": 0.48800429701805115 - } - ] - }, - "Id": "0360f7b2-bbfe-4038-8dc2-739c9f9d54d5", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96659088134766, - "Text": "868", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019795887172222137, - "Height": 0.007310533430427313, - "Left": 0.713088870048523, - "Top": 0.48076847195625305 - }, - "Polygon": [ - { - "X": 0.7130895853042603, - "Y": 0.48076847195625305 - }, - { - "X": 0.7328847646713257, - "Y": 0.48077496886253357 - }, - { - "X": 0.7328840494155884, - "Y": 0.4880790114402771 - }, - { - "X": 0.713088870048523, - "Y": 0.4880724847316742 - } - ] - }, - "Id": "513b7745-009e-4655-b5fd-21b9b0f4c3b1", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97230529785156, - "Text": "537", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019502829760313034, - "Height": 0.007477203384041786, - "Left": 0.7881724238395691, - "Top": 0.48071345686912537 - }, - "Polygon": [ - { - "X": 0.7881730794906616, - "Y": 0.48071345686912537 - }, - { - "X": 0.8076752424240112, - "Y": 0.4807198643684387 - }, - { - "X": 0.8076746463775635, - "Y": 0.4881906509399414 - }, - { - "X": 0.7881724238395691, - "Y": 0.48818424344062805 - } - ] - }, - "Id": "87d14b08-25ff-482b-b63c-8b7229d25a34", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9623794555664, - "Text": "552", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0190215315669775, - "Height": 0.007374703884124756, - "Left": 0.8631916642189026, - "Top": 0.48073017597198486 - }, - "Polygon": [ - { - "X": 0.8631922006607056, - "Y": 0.48073017597198486 - }, - { - "X": 0.8822132349014282, - "Y": 0.4807364046573639 - }, - { - "X": 0.8822126984596252, - "Y": 0.4881048798561096 - }, - { - "X": 0.8631916642189026, - "Y": 0.4880986213684082 - } - ] - }, - "Id": "25c0ea8d-9613-4590-acc2-e84585b9a6fb", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.76558685302734, - "Text": "FINANCIAL", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05776955932378769, - "Height": 0.007195779588073492, - "Left": 0.11479434370994568, - "Top": 0.4958603084087372 - }, - "Polygon": [ - { - "X": 0.11479583382606506, - "Y": 0.4958603084087372 - }, - { - "X": 0.17256391048431396, - "Y": 0.4958793520927429 - }, - { - "X": 0.17256249487400055, - "Y": 0.5030560493469238 - }, - { - "X": 0.11479434370994568, - "Y": 0.5030369758605957 - } - ] - }, - "Id": "eba00871-a716-4966-bae9-892d313cf618", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.89788818359375, - "Text": "ASSETS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0400640033185482, - "Height": 0.007147223223000765, - "Left": 0.17487575113773346, - "Top": 0.4958675503730774 - }, - "Polygon": [ - { - "X": 0.17487715184688568, - "Y": 0.4958675503730774 - }, - { - "X": 0.21493975818157196, - "Y": 0.49588075280189514 - }, - { - "X": 0.21493840217590332, - "Y": 0.5030147433280945 - }, - { - "X": 0.17487575113773346, - "Y": 0.5030015110969543 - } - ] - }, - "Id": "822a5373-4823-4f26-aff6-e9f078b3f7c7", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.705322265625, - "Text": "DESIGNATED", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06987813860177994, - "Height": 0.007110257167369127, - "Left": 0.2182033807039261, - "Top": 0.495929479598999 - }, - "Polygon": [ - { - "X": 0.21820472180843353, - "Y": 0.495929479598999 - }, - { - "X": 0.2880815267562866, - "Y": 0.4959525167942047 - }, - { - "X": 0.28808027505874634, - "Y": 0.5030397176742554 - }, - { - "X": 0.2182033807039261, - "Y": 0.5030165910720825 - } - ] - }, - "Id": "fa558b14-60a8-42c2-99da-a86724194cbf", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.89964294433594, - "Text": "AT", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01412853691726923, - "Height": 0.007178523577749729, - "Left": 0.2908937633037567, - "Top": 0.4958339333534241 - }, - "Polygon": [ - { - "X": 0.290895015001297, - "Y": 0.4958339333534241 - }, - { - "X": 0.30502229928970337, - "Y": 0.49583861231803894 - }, - { - "X": 0.3050210475921631, - "Y": 0.503012478351593 - }, - { - "X": 0.2908937633037567, - "Y": 0.5030077695846558 - } - ] - }, - "Id": "c57a5908-2f84-49c3-801f-02a130d9ddfd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.8731689453125, - "Text": "FAIR", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.025028405711054802, - "Height": 0.0072441138327121735, - "Left": 0.3079030215740204, - "Top": 0.49591806530952454 - }, - "Polygon": [ - { - "X": 0.30790427327156067, - "Y": 0.49591806530952454 - }, - { - "X": 0.33293142914772034, - "Y": 0.4959263205528259 - }, - { - "X": 0.33293020725250244, - "Y": 0.503162145614624 - }, - { - "X": 0.3079030215740204, - "Y": 0.503153920173645 - } - ] - }, - "Id": "01358668-e051-437b-9b96-52e10aa27941", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.83367156982422, - "Text": "VALUE", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03495674207806587, - "Height": 0.007068268954753876, - "Left": 0.3355731964111328, - "Top": 0.4959983229637146 - }, - "Polygon": [ - { - "X": 0.3355743885040283, - "Y": 0.4959983229637146 - }, - { - "X": 0.3705299496650696, - "Y": 0.49600985646247864 - }, - { - "X": 0.37052881717681885, - "Y": 0.5030665993690491 - }, - { - "X": 0.3355731964111328, - "Y": 0.5030550360679626 - } - ] - }, - "Id": "21be9aa3-d636-4503-9e07-b70ae9dce9ac", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95850372314453, - "Text": "THROUGH", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05528437718749046, - "Height": 0.00719281705096364, - "Left": 0.37321457266807556, - "Top": 0.4959276020526886 - }, - "Polygon": [ - { - "X": 0.3732157051563263, - "Y": 0.4959276020526886 - }, - { - "X": 0.4284989535808563, - "Y": 0.49594584107398987 - }, - { - "X": 0.428497850894928, - "Y": 0.5031204223632812 - }, - { - "X": 0.37321457266807556, - "Y": 0.5031021237373352 - } - ] - }, - "Id": "51f16976-c296-4d9b-a9ea-48062bd39ef4", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90294647216797, - "Text": "PROFIT", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.039280880242586136, - "Height": 0.0072433967143297195, - "Left": 0.4320359230041504, - "Top": 0.495878666639328 - }, - "Polygon": [ - { - "X": 0.43203702569007874, - "Y": 0.495878666639328 - }, - { - "X": 0.4713168144226074, - "Y": 0.49589163064956665 - }, - { - "X": 0.47131577134132385, - "Y": 0.503122091293335 - }, - { - "X": 0.4320359230041504, - "Y": 0.5031090974807739 - } - ] - }, - "Id": "7821683d-4ffe-4697-9777-f8dfb2b83950", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.87380981445312, - "Text": "OR", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01577921211719513, - "Height": 0.0071342745795845985, - "Left": 0.47401243448257446, - "Top": 0.4959767758846283 - }, - "Polygon": [ - { - "X": 0.47401344776153564, - "Y": 0.4959767758846283 - }, - { - "X": 0.4897916615009308, - "Y": 0.49598196148872375 - }, - { - "X": 0.4897906482219696, - "Y": 0.5031110644340515 - }, - { - "X": 0.47401243448257446, - "Y": 0.5031058192253113 - } - ] - }, - "Id": "43718f96-3ead-4df9-b86d-0db0dcaf9b64", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.83856964111328, - "Text": "LOSS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.026904448866844177, - "Height": 0.007144485134631395, - "Left": 0.49290746450424194, - "Top": 0.4959549009799957 - }, - "Polygon": [ - { - "X": 0.49290844798088074, - "Y": 0.4959549009799957 - }, - { - "X": 0.5198119282722473, - "Y": 0.49596378207206726 - }, - { - "X": 0.5198109745979309, - "Y": 0.5030993819236755 - }, - { - "X": 0.49290746450424194, - "Y": 0.503090500831604 - } - ] - }, - "Id": "def51cce-51cd-4718-a715-db8217ebba1d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.60012817382812, - "Text": "8,989", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.030120356008410454, - "Height": 0.008365850895643234, - "Left": 0.7027929425239563, - "Top": 0.49594417214393616 - }, - "Polygon": [ - { - "X": 0.7027937769889832, - "Y": 0.49594417214393616 - }, - { - "X": 0.7329132556915283, - "Y": 0.49595409631729126 - }, - { - "X": 0.7329124808311462, - "Y": 0.5043100118637085 - }, - { - "X": 0.7027929425239563, - "Y": 0.504300057888031 - } - ] - }, - "Id": "6450e5e9-7ee3-4e8c-8b25-222574d68975", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.81291198730469, - "Text": "15,957", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.036352694034576416, - "Height": 0.008377631194889545, - "Left": 0.7715314030647278, - "Top": 0.4958772361278534 - }, - "Polygon": [ - { - "X": 0.7715321183204651, - "Y": 0.4958772361278534 - }, - { - "X": 0.8078840970993042, - "Y": 0.49588921666145325 - }, - { - "X": 0.8078834414482117, - "Y": 0.5042548775672913 - }, - { - "X": 0.7715314030647278, - "Y": 0.5042428374290466 - } - ] - }, - "Id": "bee97080-36c5-4632-b820-38663f3c6e27", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.8211669921875, - "Text": "48,717", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.037188198417425156, - "Height": 0.00843307375907898, - "Left": 0.8457964062690735, - "Top": 0.49581438302993774 - }, - "Polygon": [ - { - "X": 0.8457970023155212, - "Y": 0.49581438302993774 - }, - { - "X": 0.8829845786094666, - "Y": 0.4958266317844391 - }, - { - "X": 0.8829840421676636, - "Y": 0.5042474269866943 - }, - { - "X": 0.8457964062690735, - "Y": 0.5042351484298706 - } - ] - }, - "Id": "f8114c3b-60ae-428c-a397-cda6359a78b3", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96569061279297, - "Text": "Debt", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.024411140009760857, - "Height": 0.007375550922006369, - "Left": 0.1252061128616333, - "Top": 0.5109419822692871 - }, - "Polygon": [ - { - "X": 0.12520761787891388, - "Y": 0.5109419822692871 - }, - { - "X": 0.1496172398328781, - "Y": 0.5109500885009766 - }, - { - "X": 0.14961576461791992, - "Y": 0.5183175206184387 - }, - { - "X": 0.1252061128616333, - "Y": 0.5183094143867493 - } - ] - }, - "Id": "270e9c9a-fa15-4bc8-8147-f0ffe3c006e3", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94255828857422, - "Text": "securities", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0496404692530632, - "Height": 0.007418004795908928, - "Left": 0.15263570845127106, - "Top": 0.511039137840271 - }, - "Polygon": [ - { - "X": 0.15263718366622925, - "Y": 0.511039137840271 - }, - { - "X": 0.20227617025375366, - "Y": 0.511055588722229 - }, - { - "X": 0.20227475464344025, - "Y": 0.5184571146965027 - }, - { - "X": 0.15263570845127106, - "Y": 0.5184406042098999 - } - ] - }, - "Id": "1dc567fb-b034-4e8a-bd3d-8ca44ddb5a4c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91413116455078, - "Text": "7", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0064126597717404366, - "Height": 0.00713935773819685, - "Left": 0.6500169634819031, - "Top": 0.5109813213348389 - }, - "Polygon": [ - { - "X": 0.6500177979469299, - "Y": 0.5109813213348389 - }, - { - "X": 0.656429648399353, - "Y": 0.5109834671020508 - }, - { - "X": 0.656428873538971, - "Y": 0.5181207060813904 - }, - { - "X": 0.6500169634819031, - "Y": 0.5181185603141785 - } - ] - }, - "Id": "360d215f-8286-4e57-b42d-b42a980e6c64", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94251251220703, - "Text": "2,542", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029822377488017082, - "Height": 0.008410804904997349, - "Left": 0.702832043170929, - "Top": 0.5110063552856445 - }, - "Polygon": [ - { - "X": 0.7028328776359558, - "Y": 0.5110063552856445 - }, - { - "X": 0.7326543927192688, - "Y": 0.5110162496566772 - }, - { - "X": 0.7326536178588867, - "Y": 0.5194171667098999 - }, - { - "X": 0.702832043170929, - "Y": 0.5194072723388672 - } - ] - }, - "Id": "cfb50ca1-0720-423a-802d-ea1b08def361", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.68671417236328, - "Text": "2,516", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03002113103866577, - "Height": 0.008510340005159378, - "Left": 0.7778343558311462, - "Top": 0.5109171271324158 - }, - "Polygon": [ - { - "X": 0.7778350710868835, - "Y": 0.5109171271324158 - }, - { - "X": 0.807855486869812, - "Y": 0.5109270811080933 - }, - { - "X": 0.8078547716140747, - "Y": 0.5194274187088013 - }, - { - "X": 0.7778343558311462, - "Y": 0.5194174647331238 - } - ] - }, - "Id": "722f2c15-e199-4364-9a9e-be0f70f0787e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.83644104003906, - "Text": "2,979", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03008722886443138, - "Height": 0.008365233428776264, - "Left": 0.852748453617096, - "Top": 0.51100093126297 - }, - "Polygon": [ - { - "X": 0.8527490496635437, - "Y": 0.51100093126297 - }, - { - "X": 0.8828356862068176, - "Y": 0.5110109448432922 - }, - { - "X": 0.8828351497650146, - "Y": 0.5193662047386169 - }, - { - "X": 0.852748453617096, - "Y": 0.5193561911582947 - } - ] - }, - "Id": "3631bf3c-cee1-4067-bd77-c4ac5177babf", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93441009521484, - "Text": "Loans", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029440399259328842, - "Height": 0.007198289968073368, - "Left": 0.12515169382095337, - "Top": 0.5262144207954407 - }, - "Polygon": [ - { - "X": 0.12515318393707275, - "Y": 0.5262144207954407 - }, - { - "X": 0.1545920968055725, - "Y": 0.5262242555618286 - }, - { - "X": 0.1545906513929367, - "Y": 0.5334126949310303 - }, - { - "X": 0.12515169382095337, - "Y": 0.5334028601646423 - } - ] - }, - "Id": "7cffa99d-73f5-4846-a34c-c2c21a150350", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97307586669922, - "Text": "and", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.018948746845126152, - "Height": 0.007337030488997698, - "Left": 0.15771843492984772, - "Top": 0.5260845422744751 - }, - "Polygon": [ - { - "X": 0.1577199101448059, - "Y": 0.5260845422744751 - }, - { - "X": 0.17666718363761902, - "Y": 0.5260908603668213 - }, - { - "X": 0.1766657531261444, - "Y": 0.5334215760231018 - }, - { - "X": 0.15771843492984772, - "Y": 0.5334151983261108 - } - ] - }, - "Id": "2b3e6812-fa39-4fa6-9839-203decf029e4", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93974304199219, - "Text": "advances", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04787532985210419, - "Height": 0.007271275389939547, - "Left": 0.1799154132604599, - "Top": 0.5261819362640381 - }, - "Polygon": [ - { - "X": 0.17991682887077332, - "Y": 0.5261819362640381 - }, - { - "X": 0.2277907431125641, - "Y": 0.5261979103088379 - }, - { - "X": 0.22778938710689545, - "Y": 0.5334532260894775 - }, - { - "X": 0.1799154132604599, - "Y": 0.533437192440033 - } - ] - }, - "Id": "a70b5fe2-1d02-4a98-ba41-29cfb0283444", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.8790512084961, - "Text": "6,447", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02973332069814205, - "Height": 0.008461610414087772, - "Left": 0.7030842304229736, - "Top": 0.5260525941848755 - }, - "Polygon": [ - { - "X": 0.7030850648880005, - "Y": 0.5260525941848755 - }, - { - "X": 0.732817530632019, - "Y": 0.5260624885559082 - }, - { - "X": 0.7328166961669922, - "Y": 0.5345141887664795 - }, - { - "X": 0.7030842304229736, - "Y": 0.534504234790802 - } - ] - }, - "Id": "ccae67f8-5762-405f-9fec-d195fa17c7c1", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.85919952392578, - "Text": "13,441", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03485959395766258, - "Height": 0.008471986278891563, - "Left": 0.7718759179115295, - "Top": 0.5260507464408875 - }, - "Polygon": [ - { - "X": 0.7718766331672668, - "Y": 0.5260507464408875 - }, - { - "X": 0.8067355155944824, - "Y": 0.5260623693466187 - }, - { - "X": 0.8067348003387451, - "Y": 0.5345227718353271 - }, - { - "X": 0.7718759179115295, - "Y": 0.5345110893249512 - } - ] - }, - "Id": "888960ad-3596-4299-9f24-7dfa5a2bba90", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93121337890625, - "Text": "45,738", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.036745768040418625, - "Height": 0.008381317369639874, - "Left": 0.8460904955863953, - "Top": 0.5261275768280029 - }, - "Polygon": [ - { - "X": 0.846091091632843, - "Y": 0.5261275768280029 - }, - { - "X": 0.8828362226486206, - "Y": 0.5261398553848267 - }, - { - "X": 0.8828356862068176, - "Y": 0.5345088839530945 - }, - { - "X": 0.8460904955863953, - "Y": 0.5344966053962708 - } - ] - }, - "Id": "b9922aa0-dcec-4d6a-a866-9e7460072297", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92948150634766, - "Text": "Central", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03708861395716667, - "Height": 0.0074235135689377785, - "Left": 0.13192224502563477, - "Top": 0.5411993861198425 - }, - "Polygon": [ - { - "X": 0.13192376494407654, - "Y": 0.5411993861198425 - }, - { - "X": 0.16901086270809174, - "Y": 0.5412118434906006 - }, - { - "X": 0.16900938749313354, - "Y": 0.5486229062080383 - }, - { - "X": 0.13192224502563477, - "Y": 0.5486104488372803 - } - ] - }, - "Id": "7603e8bd-11fa-43c8-b79f-9f5e4576b14a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93035125732422, - "Text": "banks", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.030776990577578545, - "Height": 0.007394595071673393, - "Left": 0.1719808727502823, - "Top": 0.5412408709526062 - }, - "Polygon": [ - { - "X": 0.17198233306407928, - "Y": 0.5412408709526062 - }, - { - "X": 0.20275786519050598, - "Y": 0.5412511825561523 - }, - { - "X": 0.20275644958019257, - "Y": 0.5486354231834412 - }, - { - "X": 0.1719808727502823, - "Y": 0.548625111579895 - } - ] - }, - "Id": "57adb560-6a5c-4c02-b694-775878b677dd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97249603271484, - "Text": "6", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006529270205646753, - "Height": 0.00729870842769742, - "Left": 0.6503164172172546, - "Top": 0.5412048101425171 - }, - "Polygon": [ - { - "X": 0.6503171920776367, - "Y": 0.5412048101425171 - }, - { - "X": 0.6568456888198853, - "Y": 0.5412070155143738 - }, - { - "X": 0.6568448543548584, - "Y": 0.5485035181045532 - }, - { - "X": 0.6503164172172546, - "Y": 0.5485013127326965 - } - ] - }, - "Id": "f1377d78-9f2d-47b8-9ccc-95207a41d1b3", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 93.68412780761719, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01133376732468605, - "Height": 0.002138331066817045, - "Left": 0.7219733595848083, - "Top": 0.5443692803382874 - }, - "Polygon": [ - { - "X": 0.7219735383987427, - "Y": 0.5443692803382874 - }, - { - "X": 0.7333071231842041, - "Y": 0.544373095035553 - }, - { - "X": 0.733306884765625, - "Y": 0.5465075969696045 - }, - { - "X": 0.7219733595848083, - "Y": 0.5465037822723389 - } - ] - }, - "Id": "f26d985e-e8ed-4417-89a8-452e2059bbc6", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 95.42289733886719, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.011272890493273735, - "Height": 0.002121594035997987, - "Left": 0.7968409657478333, - "Top": 0.5443605780601501 - }, - "Polygon": [ - { - "X": 0.7968411445617676, - "Y": 0.5443605780601501 - }, - { - "X": 0.8081138730049133, - "Y": 0.5443643927574158 - }, - { - "X": 0.808113694190979, - "Y": 0.5464822053909302 - }, - { - "X": 0.7968409657478333, - "Y": 0.5464783906936646 - } - ] - }, - "Id": "3c5d00d8-b7df-417d-97af-8efdbac55bc2", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95563507080078, - "Text": "9,481", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.028809841722249985, - "Height": 0.008454873226583004, - "Left": 0.8527771830558777, - "Top": 0.541197657585144 - }, - "Polygon": [ - { - "X": 0.8527778387069702, - "Y": 0.541197657585144 - }, - { - "X": 0.881587028503418, - "Y": 0.5412073135375977 - }, - { - "X": 0.881586492061615, - "Y": 0.5496525764465332 - }, - { - "X": 0.8527771830558777, - "Y": 0.5496428608894348 - } - ] - }, - "Id": "b333b460-d8b0-40de-b187-012c71d036c4", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94647216796875, - "Text": "Credit", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03061390295624733, - "Height": 0.0074509521946311, - "Left": 0.1318337619304657, - "Top": 0.556272029876709 - }, - "Polygon": [ - { - "X": 0.13183528184890747, - "Y": 0.556272029876709 - }, - { - "X": 0.16244766116142273, - "Y": 0.5562823414802551 - }, - { - "X": 0.16244618594646454, - "Y": 0.5637229681015015 - }, - { - "X": 0.1318337619304657, - "Y": 0.5637125968933105 - } - ] - }, - "Id": "6b7bd945-b4ca-4ea2-84bc-be75b5dc0f6a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.73111724853516, - "Text": "institutions", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05769551172852516, - "Height": 0.007495558355003595, - "Left": 0.16558632254600525, - "Top": 0.5562881827354431 - }, - "Polygon": [ - { - "X": 0.16558781266212463, - "Y": 0.5562881827354431 - }, - { - "X": 0.2232818454504013, - "Y": 0.5563076138496399 - }, - { - "X": 0.22328044474124908, - "Y": 0.5637837052345276 - }, - { - "X": 0.16558632254600525, - "Y": 0.563764214515686 - } - ] - }, - "Id": "0218ebec-702d-4f81-bf85-77964c9c7ad6", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96711730957031, - "Text": "6", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006473932880908251, - "Height": 0.007281151600182056, - "Left": 0.6503013372421265, - "Top": 0.5563573241233826 - }, - "Polygon": [ - { - "X": 0.6503021717071533, - "Y": 0.5563573241233826 - }, - { - "X": 0.6567752957344055, - "Y": 0.5563595294952393 - }, - { - "X": 0.6567744612693787, - "Y": 0.56363844871521 - }, - { - "X": 0.6503013372421265, - "Y": 0.563636302947998 - } - ] - }, - "Id": "80dca8de-4e14-4c53-94bd-4a312c7fb617", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96759796142578, - "Text": "673", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019524142146110535, - "Height": 0.007380248047411442, - "Left": 0.7130638360977173, - "Top": 0.556433916091919 - }, - "Polygon": [ - { - "X": 0.7130645513534546, - "Y": 0.556433916091919 - }, - { - "X": 0.7325879335403442, - "Y": 0.5564404726028442 - }, - { - "X": 0.7325872778892517, - "Y": 0.5638141632080078 - }, - { - "X": 0.7130638360977173, - "Y": 0.5638075470924377 - } - ] - }, - "Id": "8618f54a-f685-4e4f-980e-d198945c7e63", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.80934143066406, - "Text": "3,152", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029425276443362236, - "Height": 0.008385189808905125, - "Left": 0.7780212163925171, - "Top": 0.5564129948616028 - }, - "Polygon": [ - { - "X": 0.7780219316482544, - "Y": 0.5564129948616028 - }, - { - "X": 0.8074464797973633, - "Y": 0.5564228892326355 - }, - { - "X": 0.807445764541626, - "Y": 0.5647981762886047 - }, - { - "X": 0.7780212163925171, - "Y": 0.5647882223129272 - } - ] - }, - "Id": "7be3cc14-5dc2-4cfb-93ce-eefa2b3b3295", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.78661346435547, - "Text": "12,136", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03634166345000267, - "Height": 0.008354449644684792, - "Left": 0.8465899229049683, - "Top": 0.5563536286354065 - }, - "Polygon": [ - { - "X": 0.846590518951416, - "Y": 0.5563536286354065 - }, - { - "X": 0.8829315900802612, - "Y": 0.5563658475875854 - }, - { - "X": 0.8829309940338135, - "Y": 0.5647080540657043 - }, - { - "X": 0.8465899229049683, - "Y": 0.5646957755088806 - } - ] - }, - "Id": "a885111d-fb67-48f4-9556-68a2deeab242", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.79243469238281, - "Text": "Customers", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05516909807920456, - "Height": 0.00734432740136981, - "Left": 0.13205763697624207, - "Top": 0.5715366005897522 - }, - "Polygon": [ - { - "X": 0.13205912709236145, - "Y": 0.5715366005897522 - }, - { - "X": 0.18722672760486603, - "Y": 0.5715552568435669 - }, - { - "X": 0.1872253119945526, - "Y": 0.5788809061050415 - }, - { - "X": 0.13205763697624207, - "Y": 0.578862190246582 - } - ] - }, - "Id": "c68467cb-e2df-436e-97a5-ce583c66b56d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97606658935547, - "Text": "10", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.012527067214250565, - "Height": 0.007447596173733473, - "Left": 0.6441622376441956, - "Top": 0.5714057683944702 - }, - "Polygon": [ - { - "X": 0.6441630721092224, - "Y": 0.5714057683944702 - }, - { - "X": 0.6566892862319946, - "Y": 0.5714100003242493 - }, - { - "X": 0.6566885113716125, - "Y": 0.5788533687591553 - }, - { - "X": 0.6441622376441956, - "Y": 0.5788491368293762 - } - ] - }, - "Id": "1a5c4249-741f-434a-bbbe-3d190ea13796", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.85902404785156, - "Text": "5,774", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02973521500825882, - "Height": 0.008581465110182762, - "Left": 0.7033918499946594, - "Top": 0.5714877247810364 - }, - "Polygon": [ - { - "X": 0.7033926844596863, - "Y": 0.5714877247810364 - }, - { - "X": 0.7331270575523376, - "Y": 0.5714977979660034 - }, - { - "X": 0.7331262230873108, - "Y": 0.5800691843032837 - }, - { - "X": 0.7033918499946594, - "Y": 0.5800591111183167 - } - ] - }, - "Id": "e9299d91-6aa7-42fb-b178-5292485aa1c8", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94288635253906, - "Text": "10,289", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.035773199051618576, - "Height": 0.008568602614104748, - "Left": 0.7720422148704529, - "Top": 0.5714811682701111 - }, - "Polygon": [ - { - "X": 0.772042989730835, - "Y": 0.5714811682701111 - }, - { - "X": 0.807815432548523, - "Y": 0.5714932680130005 - }, - { - "X": 0.8078147172927856, - "Y": 0.5800497531890869 - }, - { - "X": 0.7720422148704529, - "Y": 0.5800375938415527 - } - ] - }, - "Id": "762f8d17-cc7a-4d23-a208-ea08c852a9fd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.77922821044922, - "Text": "24,121", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03568044677376747, - "Height": 0.00849404651671648, - "Left": 0.8458840847015381, - "Top": 0.5714809894561768 - }, - "Polygon": [ - { - "X": 0.8458847403526306, - "Y": 0.5714809894561768 - }, - { - "X": 0.8815645575523376, - "Y": 0.5714930295944214 - }, - { - "X": 0.8815639615058899, - "Y": 0.5799750089645386 - }, - { - "X": 0.8458840847015381, - "Y": 0.5799629092216492 - } - ] - }, - "Id": "ff5338eb-30f7-4678-9b7e-081dddc9a8a0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.83480834960938, - "Text": "FINANCIAL", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.057984501123428345, - "Height": 0.00720262061804533, - "Left": 0.11474529653787613, - "Top": 0.5867771506309509 - }, - "Polygon": [ - { - "X": 0.11474678665399551, - "Y": 0.5867771506309509 - }, - { - "X": 0.17272979021072388, - "Y": 0.5867968797683716 - }, - { - "X": 0.17272837460041046, - "Y": 0.5939797759056091 - }, - { - "X": 0.11474529653787613, - "Y": 0.5939599871635437 - } - ] - }, - "Id": "7c8561a5-dabe-4c1f-97f2-18262d13affd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.89125061035156, - "Text": "ASSETS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03989462926983833, - "Height": 0.006977965123951435, - "Left": 0.17505261301994324, - "Top": 0.5868540406227112 - }, - "Polygon": [ - { - "X": 0.17505398392677307, - "Y": 0.5868540406227112 - }, - { - "X": 0.21494723856449127, - "Y": 0.58686763048172 - }, - { - "X": 0.2149459272623062, - "Y": 0.5938320159912109 - }, - { - "X": 0.17505261301994324, - "Y": 0.5938183665275574 - } - ] - }, - "Id": "74034be8-76b0-430b-a2ce-5e4e6d0206c2", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.82683563232422, - "Text": "AT", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.014120379462838173, - "Height": 0.007080517243593931, - "Left": 0.21784017980098724, - "Top": 0.5867831110954285 - }, - "Polygon": [ - { - "X": 0.2178415060043335, - "Y": 0.5867831110954285 - }, - { - "X": 0.23196054995059967, - "Y": 0.5867879390716553 - }, - { - "X": 0.2319592386484146, - "Y": 0.5938636660575867 - }, - { - "X": 0.21784017980098724, - "Y": 0.5938588380813599 - } - ] - }, - "Id": "cd8ae1f7-b25e-45e5-b062-cee0fa14405a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.86775207519531, - "Text": "FAIR", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02418796718120575, - "Height": 0.007162148132920265, - "Left": 0.2353370040655136, - "Top": 0.5867523550987244 - }, - "Polygon": [ - { - "X": 0.23533833026885986, - "Y": 0.5867523550987244 - }, - { - "X": 0.25952497124671936, - "Y": 0.5867605805397034 - }, - { - "X": 0.2595236599445343, - "Y": 0.5939145088195801 - }, - { - "X": 0.2353370040655136, - "Y": 0.5939062237739563 - } - ] - }, - "Id": "7f562b8f-dd99-46c6-bab6-fb582e56789a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.81423950195312, - "Text": "VALUE", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.035557717084884644, - "Height": 0.006984496023505926, - "Left": 0.2621399760246277, - "Top": 0.5868814587593079 - }, - "Polygon": [ - { - "X": 0.26214122772216797, - "Y": 0.5868814587593079 - }, - { - "X": 0.29769769310951233, - "Y": 0.5868935585021973 - }, - { - "X": 0.29769647121429443, - "Y": 0.5938659310340881 - }, - { - "X": 0.2621399760246277, - "Y": 0.593853771686554 - } - ] - }, - "Id": "1e60fdf6-7cf2-4db1-a614-9ad541592ea1", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96671295166016, - "Text": "THROUGH", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.055334195494651794, - "Height": 0.007238274905830622, - "Left": 0.29999032616615295, - "Top": 0.5867249965667725 - }, - "Polygon": [ - { - "X": 0.29999157786369324, - "Y": 0.5867249965667725 - }, - { - "X": 0.35532453656196594, - "Y": 0.5867438316345215 - }, - { - "X": 0.35532334446907043, - "Y": 0.5939632654190063 - }, - { - "X": 0.29999032616615295, - "Y": 0.5939443707466125 - } - ] - }, - "Id": "a9928d9d-367f-414b-afee-acc4c930fa59", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95348358154297, - "Text": "OTHER", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.037209056317806244, - "Height": 0.007192434277385473, - "Left": 0.3589751422405243, - "Top": 0.5867213010787964 - }, - "Polygon": [ - { - "X": 0.3589763343334198, - "Y": 0.5867213010787964 - }, - { - "X": 0.39618420600891113, - "Y": 0.5867339968681335 - }, - { - "X": 0.3961831033229828, - "Y": 0.593913733959198 - }, - { - "X": 0.3589751422405243, - "Y": 0.5939010381698608 - } - ] - }, - "Id": "66e84204-393e-40ea-8b08-8516276c81fc", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 98.6294937133789, - "Text": "COMPREHENSIVE", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.09465577453374863, - "Height": 0.007257287390530109, - "Left": 0.39913660287857056, - "Top": 0.5866986513137817 - }, - "Polygon": [ - { - "X": 0.3991377353668213, - "Y": 0.5866986513137817 - }, - { - "X": 0.4937923848628998, - "Y": 0.58673095703125 - }, - { - "X": 0.493791401386261, - "Y": 0.5939559936523438 - }, - { - "X": 0.39913660287857056, - "Y": 0.5939236283302307 - } - ] - }, - "Id": "6d75f9fe-7e9f-4941-9b7a-7e8e4dc8007d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91378021240234, - "Text": "INCOME", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04463628679513931, - "Height": 0.0076666101813316345, - "Left": 0.49714797735214233, - "Top": 0.5864848494529724 - }, - "Polygon": [ - { - "X": 0.4971490204334259, - "Y": 0.5864848494529724 - }, - { - "X": 0.5417842864990234, - "Y": 0.5865000486373901 - }, - { - "X": 0.5417832732200623, - "Y": 0.5941514372825623 - }, - { - "X": 0.49714797735214233, - "Y": 0.5941361784934998 - } - ] - }, - "Id": "45647270-1f22-4670-a1eb-0584e0de3661", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.85578918457031, - "Text": "85,239", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0367993600666523, - "Height": 0.008622615598142147, - "Left": 0.696071445941925, - "Top": 0.5866791605949402 - }, - "Polygon": [ - { - "X": 0.6960723400115967, - "Y": 0.5866791605949402 - }, - { - "X": 0.7328708171844482, - "Y": 0.586691677570343 - }, - { - "X": 0.7328699827194214, - "Y": 0.5953017473220825 - }, - { - "X": 0.696071445941925, - "Y": 0.5952891707420349 - } - ] - }, - "Id": "90e04356-f4d5-4ecd-b534-6c37bbf8999b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93054962158203, - "Text": "108,038", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.043234921991825104, - "Height": 0.008558837696909904, - "Left": 0.764670193195343, - "Top": 0.5866981744766235 - }, - "Polygon": [ - { - "X": 0.7646709084510803, - "Y": 0.5866981744766235 - }, - { - "X": 0.8079050779342651, - "Y": 0.5867128968238831 - }, - { - "X": 0.8079044222831726, - "Y": 0.5952569842338562 - }, - { - "X": 0.764670193195343, - "Y": 0.5952422022819519 - } - ] - }, - "Id": "6cfe220a-cee6-4bc0-90de-405df52798a6", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.84355163574219, - "Text": "120,953", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04298046976327896, - "Height": 0.008610256016254425, - "Left": 0.8395532965660095, - "Top": 0.5866989493370056 - }, - "Polygon": [ - { - "X": 0.839553952217102, - "Y": 0.5866989493370056 - }, - { - "X": 0.8825337886810303, - "Y": 0.5867135524749756 - }, - { - "X": 0.8825331926345825, - "Y": 0.5953091979026794 - }, - { - "X": 0.8395532965660095, - "Y": 0.5952944755554199 - } - ] - }, - "Id": "55128237-7a49-4954-970f-c203f93a1e49", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97227478027344, - "Text": "Equity", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03221050649881363, - "Height": 0.009320495650172234, - "Left": 0.12515081465244293, - "Top": 0.6018796563148499 - }, - "Polygon": [ - { - "X": 0.12515273690223694, - "Y": 0.6018796563148499 - }, - { - "X": 0.15736132860183716, - "Y": 0.6018906831741333 - }, - { - "X": 0.15735946595668793, - "Y": 0.6112001538276672 - }, - { - "X": 0.12515081465244293, - "Y": 0.611189067363739 - } - ] - }, - "Id": "cd6c75f5-8671-4570-8b17-d2ccaa012407", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.54627990722656, - "Text": "instruments", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06305599957704544, - "Height": 0.007697305642068386, - "Left": 0.15958790481090546, - "Top": 0.601782500743866 - }, - "Polygon": [ - { - "X": 0.15958943963050842, - "Y": 0.601782500743866 - }, - { - "X": 0.2226439118385315, - "Y": 0.6018041372299194 - }, - { - "X": 0.2226424664258957, - "Y": 0.6094798445701599 - }, - { - "X": 0.15958790481090546, - "Y": 0.6094581484794617 - } - ] - }, - "Id": "00cf5e64-7385-473b-8131-8a6fc8bdb9a4", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95357513427734, - "Text": "8", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006690292619168758, - "Height": 0.00732707092538476, - "Left": 0.6527271270751953, - "Top": 0.601814329624176 - }, - "Polygon": [ - { - "X": 0.6527279019355774, - "Y": 0.601814329624176 - }, - { - "X": 0.6594173908233643, - "Y": 0.6018165946006775 - }, - { - "X": 0.6594166159629822, - "Y": 0.6091414093971252 - }, - { - "X": 0.6527271270751953, - "Y": 0.609139084815979 - } - ] - }, - "Id": "39a3ea94-e02a-448c-99dc-5a81b4063c6e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.77373504638672, - "Text": "1,941", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.027771402150392532, - "Height": 0.008545933291316032, - "Left": 0.703954815864563, - "Top": 0.6017673015594482 - }, - "Polygon": [ - { - "X": 0.7039557099342346, - "Y": 0.6017673015594482 - }, - { - "X": 0.7317262291908264, - "Y": 0.6017768383026123 - }, - { - "X": 0.7317253947257996, - "Y": 0.6103132367134094 - }, - { - "X": 0.703954815864563, - "Y": 0.6103036999702454 - } - ] - }, - "Id": "14d30b92-666b-492f-87bf-99d98c15aaf6", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9311294555664, - "Text": "2,453", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02970004267990589, - "Height": 0.008549969643354416, - "Left": 0.7777761220932007, - "Top": 0.6018043756484985 - }, - "Polygon": [ - { - "X": 0.777776837348938, - "Y": 0.6018043756484985 - }, - { - "X": 0.8074761629104614, - "Y": 0.6018145680427551 - }, - { - "X": 0.8074754476547241, - "Y": 0.6103543639183044 - }, - { - "X": 0.7777761220932007, - "Y": 0.6103441119194031 - } - ] - }, - "Id": "86eeeab8-5f08-4ef9-b4ec-7a9b96bab8f9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91474914550781, - "Text": "2,783", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029688959941267967, - "Height": 0.008490019477903843, - "Left": 0.8527840375900269, - "Top": 0.6018283367156982 - }, - "Polygon": [ - { - "X": 0.8527846932411194, - "Y": 0.6018283367156982 - }, - { - "X": 0.8824729919433594, - "Y": 0.6018384695053101 - }, - { - "X": 0.8824724555015564, - "Y": 0.6103183031082153 - }, - { - "X": 0.8527840375900269, - "Y": 0.6103081107139587 - } - ] - }, - "Id": "aba26bd5-bb67-47b4-8196-6b0995c2ab85", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91057586669922, - "Text": "Debt", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02426050417125225, - "Height": 0.007322101388126612, - "Left": 0.1253022700548172, - "Top": 0.6169741153717041 - }, - "Polygon": [ - { - "X": 0.12530377507209778, - "Y": 0.6169741153717041 - }, - { - "X": 0.1495627611875534, - "Y": 0.6169824600219727 - }, - { - "X": 0.1495613008737564, - "Y": 0.6242961883544922 - }, - { - "X": 0.1253022700548172, - "Y": 0.6242878437042236 - } - ] - }, - "Id": "243b806b-695c-42df-bedf-873fad347c54", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96638488769531, - "Text": "securities", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04937267675995827, - "Height": 0.0075000557117164135, - "Left": 0.15246984362602234, - "Top": 0.6169087290763855 - }, - "Polygon": [ - { - "X": 0.15247134864330292, - "Y": 0.6169087290763855 - }, - { - "X": 0.2018425166606903, - "Y": 0.6169257164001465 - }, - { - "X": 0.2018410861492157, - "Y": 0.6244087815284729 - }, - { - "X": 0.15246984362602234, - "Y": 0.6243917346000671 - } - ] - }, - "Id": "04abc43e-9b35-4ffc-b365-3efc22944be6", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90827178955078, - "Text": "7", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006651706527918577, - "Height": 0.007189925294369459, - "Left": 0.6526191234588623, - "Top": 0.6169538497924805 - }, - "Polygon": [ - { - "X": 0.6526198983192444, - "Y": 0.6169538497924805 - }, - { - "X": 0.6592708230018616, - "Y": 0.6169561743736267 - }, - { - "X": 0.6592700481414795, - "Y": 0.6241437792778015 - }, - { - "X": 0.6526191234588623, - "Y": 0.6241415143013 - } - ] - }, - "Id": "66472a94-fee6-4b4c-b9b3-50afd32f35fa", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95621490478516, - "Text": "75,083", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0360046848654747, - "Height": 0.008710362017154694, - "Left": 0.6965510845184326, - "Top": 0.6169186234474182 - }, - "Polygon": [ - { - "X": 0.6965519189834595, - "Y": 0.6169186234474182 - }, - { - "X": 0.7325557470321655, - "Y": 0.6169310212135315 - }, - { - "X": 0.7325549125671387, - "Y": 0.6256290078163147 - }, - { - "X": 0.6965510845184326, - "Y": 0.6256165504455566 - } - ] - }, - "Id": "dfc710a1-a60d-49c1-818c-63ef5e2274d1", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.90464782714844, - "Text": "97,922", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03620056435465813, - "Height": 0.008447983302175999, - "Left": 0.7713397145271301, - "Top": 0.61702561378479 - }, - "Polygon": [ - { - "X": 0.7713404893875122, - "Y": 0.61702561378479 - }, - { - "X": 0.8075402975082397, - "Y": 0.6170380711555481 - }, - { - "X": 0.8075395822525024, - "Y": 0.6254736185073853 - }, - { - "X": 0.7713397145271301, - "Y": 0.6254611015319824 - } - ] - }, - "Id": "65bc22b6-286d-41ef-9e79-c5679d5ea3ce", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96163177490234, - "Text": "108,903", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04222090542316437, - "Height": 0.008680976927280426, - "Left": 0.8401570916175842, - "Top": 0.6169323325157166 - }, - "Polygon": [ - { - "X": 0.8401577472686768, - "Y": 0.6169323325157166 - }, - { - "X": 0.8823779821395874, - "Y": 0.6169468760490417 - }, - { - "X": 0.8823773860931396, - "Y": 0.6256133317947388 - }, - { - "X": 0.8401570916175842, - "Y": 0.6255987286567688 - } - ] - }, - "Id": "6c282055-5dc8-401e-8b0b-05ec5992de73", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9139404296875, - "Text": "Loans", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029557975009083748, - "Height": 0.007206595037132502, - "Left": 0.1250423789024353, - "Top": 0.6322458982467651 - }, - "Polygon": [ - { - "X": 0.1250438541173935, - "Y": 0.6322458982467651 - }, - { - "X": 0.1546003520488739, - "Y": 0.6322561502456665 - }, - { - "X": 0.1545989066362381, - "Y": 0.6394525170326233 - }, - { - "X": 0.1250423789024353, - "Y": 0.6394422650337219 - } - ] - }, - "Id": "946b0a1d-f726-4bc1-87ea-4705c39eb756", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.86968231201172, - "Text": "and", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.019031604751944542, - "Height": 0.007256961427628994, - "Left": 0.15750886499881744, - "Top": 0.6321868300437927 - }, - "Polygon": [ - { - "X": 0.15751031041145325, - "Y": 0.6321868300437927 - }, - { - "X": 0.17654046416282654, - "Y": 0.6321934461593628 - }, - { - "X": 0.17653903365135193, - "Y": 0.6394438147544861 - }, - { - "X": 0.15750886499881744, - "Y": 0.639437198638916 - } - ] - }, - "Id": "1289d7e3-c4ff-4189-9b5e-694acf30a561", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95098114013672, - "Text": "advances", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04766887053847313, - "Height": 0.007331944536417723, - "Left": 0.17986950278282166, - "Top": 0.6321843266487122 - }, - "Polygon": [ - { - "X": 0.17987093329429626, - "Y": 0.6321843266487122 - }, - { - "X": 0.22753837704658508, - "Y": 0.6322008371353149 - }, - { - "X": 0.22753700613975525, - "Y": 0.639516294002533 - }, - { - "X": 0.17986950278282166, - "Y": 0.6394997239112854 - } - ] - }, - "Id": "df7d7cae-419c-41ca-97c5-a2e7a40080c3", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.51339721679688, - "Text": "8,215", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029549922794103622, - "Height": 0.00862329825758934, - "Left": 0.702965259552002, - "Top": 0.6320362687110901 - }, - "Polygon": [ - { - "X": 0.7029661536216736, - "Y": 0.6320362687110901 - }, - { - "X": 0.7325152158737183, - "Y": 0.6320465207099915 - }, - { - "X": 0.7325143814086914, - "Y": 0.6406595706939697 - }, - { - "X": 0.702965259552002, - "Y": 0.6406493186950684 - } - ] - }, - "Id": "35b5889e-b223-4c01-9c7a-b17d390a84bf", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.8868179321289, - "Text": "7,663", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029487857595086098, - "Height": 0.008600427769124508, - "Left": 0.7778672575950623, - "Top": 0.6320545673370361 - }, - "Polygon": [ - { - "X": 0.7778680324554443, - "Y": 0.6320545673370361 - }, - { - "X": 0.8073551058769226, - "Y": 0.6320648193359375 - }, - { - "X": 0.8073544502258301, - "Y": 0.6406550407409668 - }, - { - "X": 0.7778672575950623, - "Y": 0.6406447887420654 - } - ] - }, - "Id": "abbfcb54-10de-4c43-b588-eb61416878a0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91912841796875, - "Text": "9,267", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.030049104243516922, - "Height": 0.008539088070392609, - "Left": 0.8526327013969421, - "Top": 0.6320547461509705 - }, - "Polygon": [ - { - "X": 0.8526332974433899, - "Y": 0.6320547461509705 - }, - { - "X": 0.8826817870140076, - "Y": 0.6320651769638062 - }, - { - "X": 0.8826811909675598, - "Y": 0.6405938863754272 - }, - { - "X": 0.8526327013969421, - "Y": 0.6405834555625916 - } - ] - }, - "Id": "6e232efb-c030-4e8c-a88b-5dc543ac8b87", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.89974212646484, - "Text": "Central", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03727198392152786, - "Height": 0.0074664754793047905, - "Left": 0.13172262907028198, - "Top": 0.6472100019454956 - }, - "Polygon": [ - { - "X": 0.13172416388988495, - "Y": 0.6472100019454956 - }, - { - "X": 0.16899462044239044, - "Y": 0.6472229957580566 - }, - { - "X": 0.16899314522743225, - "Y": 0.6546764969825745 - }, - { - "X": 0.13172262907028198, - "Y": 0.6546635031700134 - } - ] - }, - "Id": "aabca007-e3e2-44b8-8edb-af4b52c39c7b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93162536621094, - "Text": "banks", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.030539805069565773, - "Height": 0.007561682257801294, - "Left": 0.17197708785533905, - "Top": 0.6471595764160156 - }, - "Polygon": [ - { - "X": 0.17197857797145844, - "Y": 0.6471595764160156 - }, - { - "X": 0.20251688361167908, - "Y": 0.6471702456474304 - }, - { - "X": 0.20251543819904327, - "Y": 0.6547212600708008 - }, - { - "X": 0.17197708785533905, - "Y": 0.6547106504440308 - } - ] - }, - "Id": "ef23ae0a-6a4e-4dcc-ae39-d37016e73462", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.978271484375, - "Text": "6", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006692297291010618, - "Height": 0.007313791662454605, - "Left": 0.6525951027870178, - "Top": 0.6472141146659851 - }, - "Polygon": [ - { - "X": 0.6525958776473999, - "Y": 0.6472141146659851 - }, - { - "X": 0.6592873930931091, - "Y": 0.6472164392471313 - }, - { - "X": 0.6592865586280823, - "Y": 0.6545279026031494 - }, - { - "X": 0.6525951027870178, - "Y": 0.6545255780220032 - } - ] - }, - "Id": "31fc9295-23a8-40ae-89f3-3f986881f28f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 96.24384307861328, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.011128240264952183, - "Height": 0.0017543284920975566, - "Left": 0.7218730449676514, - "Top": 0.6506903171539307 - }, - "Polygon": [ - { - "X": 0.7218732237815857, - "Y": 0.6506903171539307 - }, - { - "X": 0.7330012917518616, - "Y": 0.6506941914558411 - }, - { - "X": 0.7330011129379272, - "Y": 0.6524446606636047 - }, - { - "X": 0.7218730449676514, - "Y": 0.6524407863616943 - } - ] - }, - "Id": "8434297f-eb4e-4b98-aa8f-16695dc0610a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 96.37555694580078, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.010357539169490337, - "Height": 0.0016728375339880586, - "Left": 0.7973360419273376, - "Top": 0.6507489085197449 - }, - "Polygon": [ - { - "X": 0.797336220741272, - "Y": 0.6507489085197449 - }, - { - "X": 0.807693600654602, - "Y": 0.6507524847984314 - }, - { - "X": 0.8076934814453125, - "Y": 0.6524217128753662 - }, - { - "X": 0.7973360419273376, - "Y": 0.6524181365966797 - } - ] - }, - "Id": "e2a68384-4279-4d5e-9755-d5f8a27efe5a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 94.79002380371094, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.011319384910166264, - "Height": 0.0017337804893031716, - "Left": 0.8715929388999939, - "Top": 0.6506853699684143 - }, - "Polygon": [ - { - "X": 0.8715930581092834, - "Y": 0.6506853699684143 - }, - { - "X": 0.8829123377799988, - "Y": 0.6506893038749695 - }, - { - "X": 0.8829122185707092, - "Y": 0.6524191498756409 - }, - { - "X": 0.8715929388999939, - "Y": 0.6524152159690857 - } - ] - }, - "Id": "679840b4-f7b2-4906-a4ab-ff56bb2c8905", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9093017578125, - "Text": "Credit", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03077276237308979, - "Height": 0.007522490806877613, - "Left": 0.13161209225654602, - "Top": 0.6622573137283325 - }, - "Polygon": [ - { - "X": 0.131613627076149, - "Y": 0.6622573137283325 - }, - { - "X": 0.16238485276699066, - "Y": 0.6622680425643921 - }, - { - "X": 0.16238336265087128, - "Y": 0.6697797775268555 - }, - { - "X": 0.13161209225654602, - "Y": 0.6697689890861511 - } - ] - }, - "Id": "5f7cbbcf-1975-4454-9391-1622baf9fb1a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.49562072753906, - "Text": "institutions", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05778111144900322, - "Height": 0.007622181437909603, - "Left": 0.16553084552288055, - "Top": 0.6622565984725952 - }, - "Polygon": [ - { - "X": 0.16553235054016113, - "Y": 0.6622565984725952 - }, - { - "X": 0.22331196069717407, - "Y": 0.6622768044471741 - }, - { - "X": 0.22331053018569946, - "Y": 0.6698787808418274 - }, - { - "X": 0.16553084552288055, - "Y": 0.6698585152626038 - } - ] - }, - "Id": "ecb37291-9fa6-4b44-99de-85d9872902c4", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97321319580078, - "Text": "6", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0065468172542750835, - "Height": 0.007347672246396542, - "Left": 0.652605414390564, - "Top": 0.6622901558876038 - }, - "Polygon": [ - { - "X": 0.6526062488555908, - "Y": 0.6622901558876038 - }, - { - "X": 0.6591522693634033, - "Y": 0.66229248046875 - }, - { - "X": 0.6591514348983765, - "Y": 0.6696378588676453 - }, - { - "X": 0.652605414390564, - "Y": 0.669635534286499 - } - ] - }, - "Id": "5dd3e2b7-101d-4394-9ab2-1b77b632e72a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 93.29541778564453, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01107827853411436, - "Height": 0.0015963035402819514, - "Left": 0.721893310546875, - "Top": 0.6658743023872375 - }, - "Polygon": [ - { - "X": 0.7218934297561646, - "Y": 0.6658743023872375 - }, - { - "X": 0.7329716086387634, - "Y": 0.6658782362937927 - }, - { - "X": 0.7329714298248291, - "Y": 0.6674706339836121 - }, - { - "X": 0.721893310546875, - "Y": 0.6674667596817017 - } - ] - }, - "Id": "852da136-8038-4284-b4d9-272bea327409", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 94.49736785888672, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.010499738156795502, - "Height": 0.001489629503339529, - "Left": 0.7973257899284363, - "Top": 0.665901780128479 - }, - "Polygon": [ - { - "X": 0.7973259091377258, - "Y": 0.665901780128479 - }, - { - "X": 0.80782550573349, - "Y": 0.6659054160118103 - }, - { - "X": 0.8078253865242004, - "Y": 0.6673913598060608 - }, - { - "X": 0.7973257899284363, - "Y": 0.6673877239227295 - } - ] - }, - "Id": "6efe996d-ded1-4039-8bfa-21fea8cee9e0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 93.7078857421875, - "Text": "-", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.011441195383667946, - "Height": 0.00164589483756572, - "Left": 0.8715003132820129, - "Top": 0.6658644676208496 - }, - "Polygon": [ - { - "X": 0.8715003728866577, - "Y": 0.6658644676208496 - }, - { - "X": 0.882941484451294, - "Y": 0.6658685207366943 - }, - { - "X": 0.8829413652420044, - "Y": 0.6675103902816772 - }, - { - "X": 0.8715003132820129, - "Y": 0.6675063967704773 - } - ] - }, - "Id": "b25028d6-bf12-4bec-b8a5-97034803e809", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.85043334960938, - "Text": "Customers", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05559011921286583, - "Height": 0.007459100801497698, - "Left": 0.13173355162143707, - "Top": 0.6775487065315247 - }, - "Polygon": [ - { - "X": 0.13173507153987885, - "Y": 0.6775487065315247 - }, - { - "X": 0.187323659658432, - "Y": 0.677568256855011 - }, - { - "X": 0.1873222142457962, - "Y": 0.6850078105926514 - }, - { - "X": 0.13173355162143707, - "Y": 0.6849882006645203 - } - ] - }, - "Id": "53f6c92b-93e7-4dbe-93ac-9089fe2942c7", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98832702636719, - "Text": "10", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.012461140751838684, - "Height": 0.007338972296565771, - "Left": 0.6468415856361389, - "Top": 0.6775076985359192 - }, - "Polygon": [ - { - "X": 0.646842360496521, - "Y": 0.6775076985359192 - }, - { - "X": 0.6593027114868164, - "Y": 0.6775120496749878 - }, - { - "X": 0.6593018770217896, - "Y": 0.6848466396331787 - }, - { - "X": 0.6468415856361389, - "Y": 0.6848422884941101 - } - ] - }, - "Id": "991fe477-e64c-4c10-886b-4223cc42a5e2", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 97.45384216308594, - "Text": "8,215", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029029488563537598, - "Height": 0.008380516432225704, - "Left": 0.7033839821815491, - "Top": 0.6773679852485657 - }, - "Polygon": [ - { - "X": 0.7033848166465759, - "Y": 0.6773679852485657 - }, - { - "X": 0.7324134707450867, - "Y": 0.6773781776428223 - }, - { - "X": 0.7324126362800598, - "Y": 0.6857485175132751 - }, - { - "X": 0.7033839821815491, - "Y": 0.6857382655143738 - } - ] - }, - "Id": "54ffef28-39ce-4940-8812-6c518953082d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.80819702148438, - "Text": "7,663", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029092751443386078, - "Height": 0.00856398232281208, - "Left": 0.7782652974128723, - "Top": 0.6774032115936279 - }, - "Polygon": [ - { - "X": 0.7782660126686096, - "Y": 0.6774032115936279 - }, - { - "X": 0.8073580265045166, - "Y": 0.6774134635925293 - }, - { - "X": 0.8073573112487793, - "Y": 0.685967206954956 - }, - { - "X": 0.7782652974128723, - "Y": 0.6859569549560547 - } - ] - }, - "Id": "705c678b-da52-42eb-98fa-e5c35055e95d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.69364929199219, - "Text": "9,267", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029751043766736984, - "Height": 0.00834817998111248, - "Left": 0.8528011441230774, - "Top": 0.6775243282318115 - }, - "Polygon": [ - { - "X": 0.8528017401695251, - "Y": 0.6775243282318115 - }, - { - "X": 0.8825522065162659, - "Y": 0.677534818649292 - }, - { - "X": 0.8825516104698181, - "Y": 0.685872495174408 - }, - { - "X": 0.8528011441230774, - "Y": 0.6858620047569275 - } - ] - }, - "Id": "d8b8f6c4-36e0-4904-816f-cb547a326c3f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.8626708984375, - "Text": "FINANCIAL", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.057955414056777954, - "Height": 0.0072076087817549706, - "Left": 0.11456732451915741, - "Top": 0.6925445795059204 - }, - "Polygon": [ - { - "X": 0.1145688146352768, - "Y": 0.6925445795059204 - }, - { - "X": 0.17252273857593536, - "Y": 0.6925650238990784 - }, - { - "X": 0.17252132296562195, - "Y": 0.699752151966095 - }, - { - "X": 0.11456732451915741, - "Y": 0.6997316479682922 - } - ] - }, - "Id": "16eb063f-1b9e-4da1-b438-9279394ee711", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.85221862792969, - "Text": "ASSETS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0401003323495388, - "Height": 0.00719433231279254, - "Left": 0.17477929592132568, - "Top": 0.6924912333488464 - }, - "Polygon": [ - { - "X": 0.1747806966304779, - "Y": 0.6924912333488464 - }, - { - "X": 0.2148796170949936, - "Y": 0.692505419254303 - }, - { - "X": 0.21487826108932495, - "Y": 0.6996855735778809 - }, - { - "X": 0.17477929592132568, - "Y": 0.6996713876724243 - } - ] - }, - "Id": "4ceae035-46fa-4821-850a-c78b9c88ee20", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.69979858398438, - "Text": "AT", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.014499186538159847, - "Height": 0.007092462852597237, - "Left": 0.21759071946144104, - "Top": 0.6925070881843567 - }, - "Polygon": [ - { - "X": 0.2175920605659485, - "Y": 0.6925070881843567 - }, - { - "X": 0.23208990693092346, - "Y": 0.6925122141838074 - }, - { - "X": 0.2320885807275772, - "Y": 0.69959956407547 - }, - { - "X": 0.21759071946144104, - "Y": 0.6995944380760193 - } - ] - }, - "Id": "25f9ef68-9619-4211-bd51-158e7e4178ca", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.73445892333984, - "Text": "AMORTIZED", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06611175835132599, - "Height": 0.007092921528965235, - "Left": 0.23435744643211365, - "Top": 0.6925033926963806 - }, - "Polygon": [ - { - "X": 0.2343587577342987, - "Y": 0.6925033926963806 - }, - { - "X": 0.30046921968460083, - "Y": 0.6925267577171326 - }, - { - "X": 0.30046796798706055, - "Y": 0.6995963454246521 - }, - { - "X": 0.23435744643211365, - "Y": 0.6995729207992554 - } - ] - }, - "Id": "dd28e374-aa55-4713-a4d5-6c8e5237490c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94483184814453, - "Text": "COST", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.028569860383868217, - "Height": 0.00720762275159359, - "Left": 0.30355072021484375, - "Top": 0.6923843026161194 - }, - "Polygon": [ - { - "X": 0.30355197191238403, - "Y": 0.6923843026161194 - }, - { - "X": 0.3321205973625183, - "Y": 0.6923943758010864 - }, - { - "X": 0.3321193754673004, - "Y": 0.699591875076294 - }, - { - "X": 0.30355072021484375, - "Y": 0.6995818018913269 - } - ] - }, - "Id": "12884ef4-64bd-4152-88a8-49d2fbb04cf9", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.85432434082031, - "Text": "1,147,044", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0533536858856678, - "Height": 0.0089208222925663, - "Left": 0.6798027753829956, - "Top": 0.6921937465667725 - }, - "Polygon": [ - { - "X": 0.6798036694526672, - "Y": 0.6921937465667725 - }, - { - "X": 0.7331564426422119, - "Y": 0.6922125816345215 - }, - { - "X": 0.7331556081771851, - "Y": 0.7011145353317261 - }, - { - "X": 0.6798027753829956, - "Y": 0.7010956406593323 - } - ] - }, - "Id": "97a54efb-3f6d-41dc-ad53-bc710d0fbb26", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92536163330078, - "Text": "1,037,898", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.053182002156972885, - "Height": 0.008732465095818043, - "Left": 0.7548166513442993, - "Top": 0.6923858523368835 - }, - "Polygon": [ - { - "X": 0.7548174858093262, - "Y": 0.6923858523368835 - }, - { - "X": 0.8079986572265625, - "Y": 0.6924046874046326 - }, - { - "X": 0.8079979419708252, - "Y": 0.7011183500289917 - }, - { - "X": 0.7548166513442993, - "Y": 0.7010995149612427 - } - ] - }, - "Id": "1eee7f65-372a-4620-a281-a9d20392cbe6", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92517852783203, - "Text": "958,378", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.043858468532562256, - "Height": 0.008585826493799686, - "Left": 0.8390216827392578, - "Top": 0.6924328804016113 - }, - "Polygon": [ - { - "X": 0.8390223383903503, - "Y": 0.6924328804016113 - }, - { - "X": 0.8828801512718201, - "Y": 0.6924483776092529 - }, - { - "X": 0.8828796148300171, - "Y": 0.7010186910629272 - }, - { - "X": 0.8390216827392578, - "Y": 0.7010031938552856 - } - ] - }, - "Id": "2dc5dedf-141c-453c-b65e-f2bf8c8b53e0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93746185302734, - "Text": "Debt", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0246574729681015, - "Height": 0.0073278360068798065, - "Left": 0.1250889152288437, - "Top": 0.7075427174568176 - }, - "Polygon": [ - { - "X": 0.12509042024612427, - "Y": 0.7075427174568176 - }, - { - "X": 0.1497463881969452, - "Y": 0.7075514793395996 - }, - { - "X": 0.149744912981987, - "Y": 0.7148705124855042 - }, - { - "X": 0.1250889152288437, - "Y": 0.7148617506027222 - } - ] - }, - "Id": "d4a1be8d-af9e-4643-9391-f3a392b8e3f2", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96818542480469, - "Text": "securities", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04878171905875206, - "Height": 0.007458034437149763, - "Left": 0.1527097374200821, - "Top": 0.7075506448745728 - }, - "Polygon": [ - { - "X": 0.15271122753620148, - "Y": 0.7075506448745728 - }, - { - "X": 0.20149146020412445, - "Y": 0.7075679302215576 - }, - { - "X": 0.20149002969264984, - "Y": 0.7150086760520935 - }, - { - "X": 0.1527097374200821, - "Y": 0.7149913311004639 - } - ] - }, - "Id": "a5a59c35-ff04-46bf-b4e2-2041a2ed9afa", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.79710388183594, - "Text": "7", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006375459022819996, - "Height": 0.007129502948373556, - "Left": 0.652693510055542, - "Top": 0.707603394985199 - }, - "Polygon": [ - { - "X": 0.6526942849159241, - "Y": 0.707603394985199 - }, - { - "X": 0.6590689420700073, - "Y": 0.7076056599617004 - }, - { - "X": 0.6590681672096252, - "Y": 0.7147329449653625 - }, - { - "X": 0.652693510055542, - "Y": 0.7147306203842163 - } - ] - }, - "Id": "8f05ea14-7071-4dc3-91da-22817e536e93", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.86854553222656, - "Text": "73,554", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.036817438900470734, - "Height": 0.008371059782803059, - "Left": 0.6962824463844299, - "Top": 0.7076406478881836 - }, - "Polygon": [ - { - "X": 0.6962832808494568, - "Y": 0.7076406478881836 - }, - { - "X": 0.7330998778343201, - "Y": 0.7076537013053894 - }, - { - "X": 0.733099102973938, - "Y": 0.7160117030143738 - }, - { - "X": 0.6962824463844299, - "Y": 0.7159985899925232 - } - ] - }, - "Id": "62aa68b5-67c8-4c5b-87b8-7c8ca8346d9a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9367904663086, - "Text": "35,708", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.036591921001672745, - "Height": 0.00841519609093666, - "Left": 0.7712523937225342, - "Top": 0.7076395153999329 - }, - "Polygon": [ - { - "X": 0.7712531089782715, - "Y": 0.7076395153999329 - }, - { - "X": 0.8078442811965942, - "Y": 0.7076525092124939 - }, - { - "X": 0.8078436255455017, - "Y": 0.7160546779632568 - }, - { - "X": 0.7712523937225342, - "Y": 0.7160416841506958 - } - ] - }, - "Id": "8741f4b5-0a12-4673-97d7-11ec22ee254f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93939208984375, - "Text": "26,078", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03694090619683266, - "Height": 0.008578364737331867, - "Left": 0.8459944725036621, - "Top": 0.7074975371360779 - }, - "Polygon": [ - { - "X": 0.8459951281547546, - "Y": 0.7074975371360779 - }, - { - "X": 0.8829354047775269, - "Y": 0.7075106501579285 - }, - { - "X": 0.8829348087310791, - "Y": 0.7160758972167969 - }, - { - "X": 0.8459944725036621, - "Y": 0.7160627245903015 - } - ] - }, - "Id": "5d0491e1-c24b-4185-a065-e9639b445b4f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.929931640625, - "Text": "Loans", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029613249003887177, - "Height": 0.0071637253277003765, - "Left": 0.12492765486240387, - "Top": 0.7229122519493103 - }, - "Polygon": [ - { - "X": 0.12492913007736206, - "Y": 0.7229122519493103 - }, - { - "X": 0.15454091131687164, - "Y": 0.7229228019714355 - }, - { - "X": 0.15453946590423584, - "Y": 0.7300759553909302 - }, - { - "X": 0.12492765486240387, - "Y": 0.7300654053688049 - } - ] - }, - "Id": "a0ac11f6-76da-4aa2-8487-a86b87f91777", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94723510742188, - "Text": "and", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.018897492438554764, - "Height": 0.007333869580179453, - "Left": 0.15769889950752258, - "Top": 0.7227284908294678 - }, - "Polygon": [ - { - "X": 0.15770035982131958, - "Y": 0.7227284908294678 - }, - { - "X": 0.17659638822078705, - "Y": 0.7227352261543274 - }, - { - "X": 0.17659494280815125, - "Y": 0.7300623655319214 - }, - { - "X": 0.15769889950752258, - "Y": 0.7300556302070618 - } - ] - }, - "Id": "7eb40bfb-b9f7-4b89-bd69-1f21b798f358", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96253967285156, - "Text": "advances", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04760119318962097, - "Height": 0.007458335720002651, - "Left": 0.17968980967998505, - "Top": 0.7227655649185181 - }, - "Polygon": [ - { - "X": 0.17969126999378204, - "Y": 0.7227655649185181 - }, - { - "X": 0.2272910177707672, - "Y": 0.722782552242279 - }, - { - "X": 0.227289617061615, - "Y": 0.7302238941192627 - }, - { - "X": 0.17968980967998505, - "Y": 0.7302069067955017 - } - ] - }, - "Id": "bb0724d0-a17d-4538-a7d8-8ca9ac45c6c4", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95313262939453, - "Text": "1,073,490", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05262758955359459, - "Height": 0.008669929578900337, - "Left": 0.6804468035697937, - "Top": 0.7227131724357605 - }, - "Polygon": [ - { - "X": 0.6804476976394653, - "Y": 0.7227131724357605 - }, - { - "X": 0.7330743670463562, - "Y": 0.7227319478988647 - }, - { - "X": 0.7330735325813293, - "Y": 0.7313830852508545 - }, - { - "X": 0.6804468035697937, - "Y": 0.7313642501831055 - } - ] - }, - "Id": "96374bce-89b5-4e8d-99a8-6bfbe3a19031", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93336486816406, - "Text": "1,002,190", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05231843143701553, - "Height": 0.008820241317152977, - "Left": 0.7554953694343567, - "Top": 0.7226662635803223 - }, - "Polygon": [ - { - "X": 0.7554962038993835, - "Y": 0.7226662635803223 - }, - { - "X": 0.807813823223114, - "Y": 0.722684919834137 - }, - { - "X": 0.8078131079673767, - "Y": 0.7314864993095398 - }, - { - "X": 0.7554953694343567, - "Y": 0.7314677834510803 - } - ] - }, - "Id": "421f4a0a-8436-4794-8697-c6bfa9fd8424", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9691162109375, - "Text": "932,300", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04351923242211342, - "Height": 0.008508015424013138, - "Left": 0.8392648100852966, - "Top": 0.7226927280426025 - }, - "Polygon": [ - { - "X": 0.8392654061317444, - "Y": 0.7226927280426025 - }, - { - "X": 0.8827840089797974, - "Y": 0.7227082848548889 - }, - { - "X": 0.8827834129333496, - "Y": 0.7312007546424866 - }, - { - "X": 0.8392648100852966, - "Y": 0.7311851978302002 - } - ] - }, - "Id": "764f3506-6ecf-4ede-8881-790269f3533e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91023254394531, - "Text": "Central", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03724405914545059, - "Height": 0.007403144612908363, - "Left": 0.1317542940378189, - "Top": 0.7378258109092712 - }, - "Polygon": [ - { - "X": 0.1317557990550995, - "Y": 0.7378258109092712 - }, - { - "X": 0.1689983457326889, - "Y": 0.7378391623497009 - }, - { - "X": 0.1689968854188919, - "Y": 0.7452289462089539 - }, - { - "X": 0.1317542940378189, - "Y": 0.7452155947685242 - } - ] - }, - "Id": "c4d85d5f-49e5-4b87-9f46-c1dae4311239", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93657684326172, - "Text": "banks", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.030759736895561218, - "Height": 0.007667397148907185, - "Left": 0.17191776633262634, - "Top": 0.7378174066543579 - }, - "Polygon": [ - { - "X": 0.17191928625106812, - "Y": 0.7378174066543579 - }, - { - "X": 0.20267750322818756, - "Y": 0.7378284335136414 - }, - { - "X": 0.20267604291439056, - "Y": 0.7454848289489746 - }, - { - "X": 0.17191776633262634, - "Y": 0.7454737424850464 - } - ] - }, - "Id": "2056ee53-8fb7-468d-bfe3-31cc08792c8c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97172546386719, - "Text": "6", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.00662572355940938, - "Height": 0.007361236959695816, - "Left": 0.6525965332984924, - "Top": 0.7377825975418091 - }, - "Polygon": [ - { - "X": 0.6525973677635193, - "Y": 0.7377825975418091 - }, - { - "X": 0.6592222452163696, - "Y": 0.7377849817276001 - }, - { - "X": 0.6592214703559875, - "Y": 0.7451438307762146 - }, - { - "X": 0.6525965332984924, - "Y": 0.7451414465904236 - } - ] - }, - "Id": "bd716a7f-d6b3-4d41-80d0-4194b9df43fe", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.86213684082031, - "Text": "15,375", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03558929264545441, - "Height": 0.008524853736162186, - "Left": 0.697010338306427, - "Top": 0.7378292679786682 - }, - "Polygon": [ - { - "X": 0.6970111727714539, - "Y": 0.7378292679786682 - }, - { - "X": 0.7325996160507202, - "Y": 0.7378420829772949 - }, - { - "X": 0.7325987815856934, - "Y": 0.7463541626930237 - }, - { - "X": 0.697010338306427, - "Y": 0.746341347694397 - } - ] - }, - "Id": "36f69fd4-36d4-4c3f-8a48-d4f837074c48", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.860595703125, - "Text": "15,657", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03561997041106224, - "Height": 0.008554342202842236, - "Left": 0.7720420360565186, - "Top": 0.7378462553024292 - }, - "Polygon": [ - { - "X": 0.7720428109169006, - "Y": 0.7378462553024292 - }, - { - "X": 0.8076620101928711, - "Y": 0.7378590703010559 - }, - { - "X": 0.8076612949371338, - "Y": 0.7464005947113037 - }, - { - "X": 0.7720420360565186, - "Y": 0.746387779712677 - } - ] - }, - "Id": "5ec69330-d3e9-4033-b732-e99d77363f5d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94308471679688, - "Text": "12,499", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.035979680716991425, - "Height": 0.008526123128831387, - "Left": 0.8467933535575867, - "Top": 0.7377901077270508 - }, - "Polygon": [ - { - "X": 0.8467940092086792, - "Y": 0.7377901077270508 - }, - { - "X": 0.8827730417251587, - "Y": 0.7378029823303223 - }, - { - "X": 0.8827724456787109, - "Y": 0.7463161945343018 - }, - { - "X": 0.8467933535575867, - "Y": 0.7463032603263855 - } - ] - }, - "Id": "efb592aa-3b64-4ce9-8707-57f7c404bdd6", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.87584686279297, - "Text": "Credit", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.030541863292455673, - "Height": 0.007522092666476965, - "Left": 0.13180968165397644, - "Top": 0.7529367208480835 - }, - "Polygon": [ - { - "X": 0.1318112164735794, - "Y": 0.7529367208480835 - }, - { - "X": 0.1623515486717224, - "Y": 0.7529477477073669 - }, - { - "X": 0.16235004365444183, - "Y": 0.7604588270187378 - }, - { - "X": 0.13180968165397644, - "Y": 0.7604478001594543 - } - ] - }, - "Id": "4a46be61-d057-4edf-811d-0bca8b3dbc21", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.51750946044922, - "Text": "institutions", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.057750362902879715, - "Height": 0.007696707732975483, - "Left": 0.1657566875219345, - "Top": 0.7528574466705322 - }, - "Polygon": [ - { - "X": 0.16575820744037628, - "Y": 0.7528574466705322 - }, - { - "X": 0.22350704669952393, - "Y": 0.7528782486915588 - }, - { - "X": 0.22350561618804932, - "Y": 0.7605541348457336 - }, - { - "X": 0.1657566875219345, - "Y": 0.7605332732200623 - } - ] - }, - "Id": "016cb3f7-3358-4534-9ce8-e2c251e28175", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97900390625, - "Text": "6", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.006655652541667223, - "Height": 0.0075333090499043465, - "Left": 0.6526105403900146, - "Top": 0.7529337406158447 - }, - "Polygon": [ - { - "X": 0.6526113748550415, - "Y": 0.7529337406158447 - }, - { - "X": 0.6592662334442139, - "Y": 0.7529361248016357 - }, - { - "X": 0.659265398979187, - "Y": 0.7604670524597168 - }, - { - "X": 0.6526105403900146, - "Y": 0.7604646682739258 - } - ] - }, - "Id": "f0074e21-589b-4e92-8099-1275cbfe0581", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95398712158203, - "Text": "46,518", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.036846719682216644, - "Height": 0.008694740943610668, - "Left": 0.696173369884491, - "Top": 0.7529095411300659 - }, - "Polygon": [ - { - "X": 0.6961742639541626, - "Y": 0.7529095411300659 - }, - { - "X": 0.7330201268196106, - "Y": 0.7529228329658508 - }, - { - "X": 0.7330192923545837, - "Y": 0.7616043090820312 - }, - { - "X": 0.696173369884491, - "Y": 0.7615909576416016 - } - ] - }, - "Id": "3b83280b-17a7-47e8-9224-90afa34f71c1", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91046905517578, - "Text": "39,169", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03630439564585686, - "Height": 0.008701138198375702, - "Left": 0.7714996337890625, - "Top": 0.7529589533805847 - }, - "Polygon": [ - { - "X": 0.7715004086494446, - "Y": 0.7529589533805847 - }, - { - "X": 0.8078039884567261, - "Y": 0.7529720067977905 - }, - { - "X": 0.8078033328056335, - "Y": 0.761660099029541 - }, - { - "X": 0.7714996337890625, - "Y": 0.7616469264030457 - } - ] - }, - "Id": "be6964ae-66a9-475c-a853-247ade42e5a6", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91537475585938, - "Text": "37,838", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.03691496327519417, - "Height": 0.008635221049189568, - "Left": 0.8461048007011414, - "Top": 0.7529929876327515 - }, - "Polygon": [ - { - "X": 0.8461053967475891, - "Y": 0.7529929876327515 - }, - { - "X": 0.883019745349884, - "Y": 0.7530062794685364 - }, - { - "X": 0.8830191493034363, - "Y": 0.7616282105445862 - }, - { - "X": 0.8461048007011414, - "Y": 0.7616148591041565 - } - ] - }, - "Id": "7671a80f-d64d-4537-81c9-8eba5d4052f2", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.86566162109375, - "Text": "Customers", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.054750893265008926, - "Height": 0.00777082284912467, - "Left": 0.1319243311882019, - "Top": 0.7681893706321716 - }, - "Polygon": [ - { - "X": 0.13192592561244965, - "Y": 0.7681893706321716 - }, - { - "X": 0.18667523562908173, - "Y": 0.7682092189788818 - }, - { - "X": 0.18667373061180115, - "Y": 0.7759602069854736 - }, - { - "X": 0.1319243311882019, - "Y": 0.7759402990341187 - } - ] - }, - "Id": "a08ebd21-3e33-4cc5-b3f9-c710ed194e84", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97896575927734, - "Text": "10", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.012492736801505089, - "Height": 0.007541504688560963, - "Left": 0.6469603180885315, - "Top": 0.7680309414863586 - }, - "Polygon": [ - { - "X": 0.6469611525535583, - "Y": 0.7680309414863586 - }, - { - "X": 0.6594530344009399, - "Y": 0.7680354714393616 - }, - { - "X": 0.6594522595405579, - "Y": 0.7755724191665649 - }, - { - "X": 0.6469603180885315, - "Y": 0.775567889213562 - } - ] - }, - "Id": "b4e31c5b-4c01-48cc-a771-98b8aabd668a", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.88700103759766, - "Text": "1,011,597", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05222789943218231, - "Height": 0.008836928755044937, - "Left": 0.6805717349052429, - "Top": 0.7679874897003174 - }, - "Polygon": [ - { - "X": 0.6805726289749146, - "Y": 0.7679874897003174 - }, - { - "X": 0.7327995896339417, - "Y": 0.7680063843727112 - }, - { - "X": 0.7327987551689148, - "Y": 0.776824414730072 - }, - { - "X": 0.6805717349052429, - "Y": 0.7768054008483887 - } - ] - }, - "Id": "d2babb38-eb5e-4615-99e0-863c4d7962a0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98001861572266, - "Text": "947,364", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.043640635907649994, - "Height": 0.00875798985362053, - "Left": 0.7644582390785217, - "Top": 0.7680754661560059 - }, - "Polygon": [ - { - "X": 0.7644590139389038, - "Y": 0.7680754661560059 - }, - { - "X": 0.8080988526344299, - "Y": 0.7680912613868713 - }, - { - "X": 0.8080981373786926, - "Y": 0.7768334150314331 - }, - { - "X": 0.7644582390785217, - "Y": 0.7768175601959229 - } - ] - }, - "Id": "ef66c987-e4ef-4387-bb3d-7ec79b5a0d4b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94171905517578, - "Text": "881,963", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.04331837221980095, - "Height": 0.008768538013100624, - "Left": 0.8393073081970215, - "Top": 0.7679983973503113 - }, - "Polygon": [ - { - "X": 0.839307963848114, - "Y": 0.7679983973503113 - }, - { - "X": 0.8826256990432739, - "Y": 0.7680140733718872 - }, - { - "X": 0.8826251029968262, - "Y": 0.7767669558525085 - }, - { - "X": 0.8393073081970215, - "Y": 0.7767511606216431 - } - ] - }, - "Id": "7c7f88f0-1d83-455a-be7c-39588e7a7bdb", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91903686523438, - "Text": "HEDGING", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05090459808707237, - "Height": 0.007277073338627815, - "Left": 0.11470451951026917, - "Top": 0.7826986908912659 - }, - "Polygon": [ - { - "X": 0.11470602452754974, - "Y": 0.7826986908912659 - }, - { - "X": 0.16560912132263184, - "Y": 0.782717227935791 - }, - { - "X": 0.16560767590999603, - "Y": 0.7899757623672485 - }, - { - "X": 0.11470451951026917, - "Y": 0.7899571657180786 - } - ] - }, - "Id": "4b246391-e967-48e1-995e-29bff6dcf363", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.5515365600586, - "Text": "DERIVATIVES", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.07039710134267807, - "Height": 0.007245631888508797, - "Left": 0.16902270913124084, - "Top": 0.7827789187431335 - }, - "Polygon": [ - { - "X": 0.16902413964271545, - "Y": 0.7827789187431335 - }, - { - "X": 0.2394198179244995, - "Y": 0.782804548740387 - }, - { - "X": 0.23941847681999207, - "Y": 0.7900245189666748 - }, - { - "X": 0.16902270913124084, - "Y": 0.7899988293647766 - } - ] - }, - "Id": "8c36254b-122d-4ec7-aa8e-1d9a26ec2c3b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95671844482422, - "Text": "36", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.013431929051876068, - "Height": 0.007688429206609726, - "Left": 0.64605712890625, - "Top": 0.7831624746322632 - }, - "Polygon": [ - { - "X": 0.6460579633712769, - "Y": 0.7831624746322632 - }, - { - "X": 0.6594890356063843, - "Y": 0.7831673622131348 - }, - { - "X": 0.6594882011413574, - "Y": 0.7908508777618408 - }, - { - "X": 0.64605712890625, - "Y": 0.7908459901809692 - } - ] - }, - "Id": "27654ccf-4b87-43ac-b3f6-9d9570c34d01", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.83551025390625, - "Text": "8,069", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.030142104253172874, - "Height": 0.00866728089749813, - "Left": 0.702852725982666, - "Top": 0.7832396626472473 - }, - "Polygon": [ - { - "X": 0.7028535604476929, - "Y": 0.7832396626472473 - }, - { - "X": 0.732994794845581, - "Y": 0.783250629901886 - }, - { - "X": 0.732994019985199, - "Y": 0.7919069528579712 - }, - { - "X": 0.702852725982666, - "Y": 0.7918959259986877 - } - ] - }, - "Id": "086c3b7e-398a-4c7d-b5e6-70245b3d5b7f", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.74830627441406, - "Text": "4,761", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.029070178046822548, - "Height": 0.008728212676942348, - "Left": 0.7776021957397461, - "Top": 0.783148467540741 - }, - "Polygon": [ - { - "X": 0.7776029706001282, - "Y": 0.783148467540741 - }, - { - "X": 0.8066723942756653, - "Y": 0.7831590175628662 - }, - { - "X": 0.806671679019928, - "Y": 0.7918766736984253 - }, - { - "X": 0.7776021957397461, - "Y": 0.7918660640716553 - } - ] - }, - "Id": "629d29be-fac4-4e2a-ad59-f955de3695f4", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.74189758300781, - "Text": "8,325", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02992994524538517, - "Height": 0.008664018474519253, - "Left": 0.8526815176010132, - "Top": 0.7832197546958923 - }, - "Polygon": [ - { - "X": 0.8526821732521057, - "Y": 0.7832197546958923 - }, - { - "X": 0.8826114535331726, - "Y": 0.7832306623458862 - }, - { - "X": 0.8826109170913696, - "Y": 0.7918837666511536 - }, - { - "X": 0.8526815176010132, - "Y": 0.7918728590011597 - } - ] - }, - "Id": "12b41928-e17d-4e76-bb49-5a16c683b0c4", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96208190917969, - "Text": "CHANGES", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.05212746560573578, - "Height": 0.007161113433539867, - "Left": 0.11448755860328674, - "Top": 0.7979319095611572 - }, - "Polygon": [ - { - "X": 0.11448904871940613, - "Y": 0.7979319095611572 - }, - { - "X": 0.16661502420902252, - "Y": 0.7979509830474854 - }, - { - "X": 0.1666136085987091, - "Y": 0.805092990398407 - }, - { - "X": 0.11448755860328674, - "Y": 0.8050738573074341 - } - ] - }, - "Id": "ca1c8094-e665-4a83-9e38-455c452565d8", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.93863677978516, - "Text": "IN", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.01103447936475277, - "Height": 0.006967003922909498, - "Left": 0.1701403558254242, - "Top": 0.7980172634124756 - }, - "Polygon": [ - { - "X": 0.17014172673225403, - "Y": 0.7980172634124756 - }, - { - "X": 0.18117482960224152, - "Y": 0.7980212569236755 - }, - { - "X": 0.18117347359657288, - "Y": 0.8049842119216919 - }, - { - "X": 0.1701403558254242, - "Y": 0.8049802184104919 - } - ] - }, - "Id": "b394194c-86b2-42f3-9ac9-4db403df6392", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95941162109375, - "Text": "THE", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.022082986310124397, - "Height": 0.007137856911867857, - "Left": 0.18403461575508118, - "Top": 0.797966480255127 - }, - "Polygon": [ - { - "X": 0.1840360015630722, - "Y": 0.797966480255127 - }, - { - "X": 0.20611760020256042, - "Y": 0.7979745268821716 - }, - { - "X": 0.20611624419689178, - "Y": 0.8051043152809143 - }, - { - "X": 0.18403461575508118, - "Y": 0.8050962090492249 - } - ] - }, - "Id": "089b788a-5a2b-40ff-906b-f17b7d2a58fc", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.88968658447266, - "Text": "FAIR", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.024156734347343445, - "Height": 0.007295575458556414, - "Left": 0.2095903605222702, - "Top": 0.7979885339736938 - }, - "Polygon": [ - { - "X": 0.20959174633026123, - "Y": 0.7979885339736938 - }, - { - "X": 0.23374709486961365, - "Y": 0.7979973554611206 - }, - { - "X": 0.233745738863945, - "Y": 0.8052840828895569 - }, - { - "X": 0.2095903605222702, - "Y": 0.8052752017974854 - } - ] - }, - "Id": "597f7e1f-2779-409d-b6b4-8358bc2ed2b5", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.83535766601562, - "Text": "VALUE", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0352780744433403, - "Height": 0.006908189970999956, - "Left": 0.23635844886302948, - "Top": 0.7979142665863037 - }, - "Polygon": [ - { - "X": 0.23635973036289215, - "Y": 0.7979142665863037 - }, - { - "X": 0.2716365158557892, - "Y": 0.7979271411895752 - }, - { - "X": 0.2716352939605713, - "Y": 0.8048224449157715 - }, - { - "X": 0.23635844886302948, - "Y": 0.8048095107078552 - } - ] - }, - "Id": "b50cb8c2-7a2d-44b2-a2a5-3dd7d4c3faf0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.97098541259766, - "Text": "OF", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.015145025216042995, - "Height": 0.007222042419016361, - "Left": 0.27447691559791565, - "Top": 0.7978535294532776 - }, - "Polygon": [ - { - "X": 0.2744781970977783, - "Y": 0.7978535294532776 - }, - { - "X": 0.28962191939353943, - "Y": 0.7978590726852417 - }, - { - "X": 0.28962066769599915, - "Y": 0.8050755858421326 - }, - { - "X": 0.27447691559791565, - "Y": 0.8050699830055237 - } - ] - }, - "Id": "abf11e03-7030-458f-8f2a-7ce07f5bc91e", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.9415054321289, - "Text": "HEDGED", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.045047368854284286, - "Height": 0.007292802911251783, - "Left": 0.29285627603530884, - "Top": 0.7979089617729187 - }, - "Polygon": [ - { - "X": 0.2928575277328491, - "Y": 0.7979089617729187 - }, - { - "X": 0.33790361881256104, - "Y": 0.7979254126548767 - }, - { - "X": 0.3379024267196655, - "Y": 0.8052017688751221 - }, - { - "X": 0.29285627603530884, - "Y": 0.8051851987838745 - } - ] - }, - "Id": "123b0b8d-cd74-474d-97af-6c4478bb6ce0", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.89937591552734, - "Text": "ITEMS", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.033569663763046265, - "Height": 0.007183412555605173, - "Left": 0.34151580929756165, - "Top": 0.7979169487953186 - }, - "Polygon": [ - { - "X": 0.34151700139045715, - "Y": 0.7979169487953186 - }, - { - "X": 0.3750854730606079, - "Y": 0.7979292273521423 - }, - { - "X": 0.3750843405723572, - "Y": 0.8051003813743591 - }, - { - "X": 0.34151580929756165, - "Y": 0.8050881028175354 - } - ] - }, - "Id": "75dd3522-4e01-4393-94d7-cc0184d99e15", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.92790985107422, - "Text": "IN", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.010931943543255329, - "Height": 0.007157876621931791, - "Left": 0.3788769841194153, - "Top": 0.797842264175415 - }, - "Polygon": [ - { - "X": 0.378878116607666, - "Y": 0.797842264175415 - }, - { - "X": 0.38980892300605774, - "Y": 0.797846257686615 - }, - { - "X": 0.389807790517807, - "Y": 0.8050001859664917 - }, - { - "X": 0.3788769841194153, - "Y": 0.804996132850647 - } - ] - }, - "Id": "41d57626-4e91-4911-be27-228c2c5f122b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.77816772460938, - "Text": "PORTFOLIO", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06228091940283775, - "Height": 0.007183669600635767, - "Left": 0.11463730782270432, - "Top": 0.8079869747161865 - }, - "Polygon": [ - { - "X": 0.1146387979388237, - "Y": 0.8079869747161865 - }, - { - "X": 0.17691822350025177, - "Y": 0.8080098032951355 - }, - { - "X": 0.17691682279109955, - "Y": 0.8151706457138062 - }, - { - "X": 0.11463730782270432, - "Y": 0.8151476979255676 - } - ] - }, - "Id": "959a0bb1-c95b-4ea3-ba3b-de106a0c9d6b", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.8611831665039, - "Text": "HEDGES", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.0435672402381897, - "Height": 0.0069242920726537704, - "Left": 0.18028922379016876, - "Top": 0.8080452680587769 - }, - "Polygon": [ - { - "X": 0.1802905648946762, - "Y": 0.8080452680587769 - }, - { - "X": 0.22385646402835846, - "Y": 0.8080612421035767 - }, - { - "X": 0.2238551676273346, - "Y": 0.814969539642334 - }, - { - "X": 0.18028922379016876, - "Y": 0.8149535059928894 - } - ] - }, - "Id": "9a516445-dd33-43c0-9250-a8834f5df7f3", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98336029052734, - "Text": "OF", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.014935934916138649, - "Height": 0.0070905243046581745, - "Left": 0.22736135125160217, - "Top": 0.8080765604972839 - }, - "Polygon": [ - { - "X": 0.22736267745494843, - "Y": 0.8080765604972839 - }, - { - "X": 0.24229729175567627, - "Y": 0.8080820441246033 - }, - { - "X": 0.2422959804534912, - "Y": 0.8151670694351196 - }, - { - "X": 0.22736135125160217, - "Y": 0.8151615858078003 - } - ] - }, - "Id": "09f765be-fa72-4add-95ed-03f2f72f2870", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94097900390625, - "Text": "INTEREST", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.051695358008146286, - "Height": 0.00767667917534709, - "Left": 0.24537773430347443, - "Top": 0.8078834414482117 - }, - "Polygon": [ - { - "X": 0.24537914991378784, - "Y": 0.8078834414482117 - }, - { - "X": 0.297073096036911, - "Y": 0.807902455329895 - }, - { - "X": 0.29707175493240356, - "Y": 0.8155601620674133 - }, - { - "X": 0.24537773430347443, - "Y": 0.81554114818573 - } - ] - }, - "Id": "166c37f5-f8cc-4100-979b-76352df27c6c", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.91714477539062, - "Text": "RATE", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.027608757838606834, - "Height": 0.007213094271719456, - "Left": 0.3000311255455017, - "Top": 0.8079571723937988 - }, - "Polygon": [ - { - "X": 0.300032377243042, - "Y": 0.8079571723937988 - }, - { - "X": 0.3276398777961731, - "Y": 0.8079673051834106 - }, - { - "X": 0.3276386559009552, - "Y": 0.8151702880859375 - }, - { - "X": 0.3000311255455017, - "Y": 0.8151601552963257 - } - ] - }, - "Id": "2f455de3-f908-4b84-8925-dcbaec6839cd", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.68121337890625, - "Text": "RISK", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.024308016523718834, - "Height": 0.007376581430435181, - "Left": 0.33078235387802124, - "Top": 0.8078402876853943 - }, - "Polygon": [ - { - "X": 0.33078357577323914, - "Y": 0.8078402876853943 - }, - { - "X": 0.35509034991264343, - "Y": 0.8078492283821106 - }, - { - "X": 0.3550891578197479, - "Y": 0.8152168989181519 - }, - { - "X": 0.33078235387802124, - "Y": 0.8152079582214355 - } - ] - }, - "Id": "6e23db7c-5c16-42d8-a72f-c055d5b7ca4d", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95004272460938, - "Text": "36", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.013341622427105904, - "Height": 0.007630109321326017, - "Left": 0.6461083889007568, - "Top": 0.8080154061317444 - }, - "Polygon": [ - { - "X": 0.6461092233657837, - "Y": 0.8080154061317444 - }, - { - "X": 0.6594499945640564, - "Y": 0.808020293712616 - }, - { - "X": 0.6594491600990295, - "Y": 0.8156455159187317 - }, - { - "X": 0.6461083889007568, - "Y": 0.8156406283378601 - } - ] - }, - "Id": "2ded1484-7cc9-4666-8b1f-8222d9a6ff58", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.94950103759766, - "Text": "(3,749)", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.037662323564291, - "Height": 0.010255632922053337, - "Left": 0.6990572810173035, - "Top": 0.8071799874305725 - }, - "Polygon": [ - { - "X": 0.6990583539009094, - "Y": 0.8071799874305725 - }, - { - "X": 0.7367196083068848, - "Y": 0.8071938157081604 - }, - { - "X": 0.7367186546325684, - "Y": 0.817435622215271 - }, - { - "X": 0.6990572810173035, - "Y": 0.8174217343330383 - } - ] - }, - "Id": "39671a1f-0b57-4df1-a8b8-6338e935dc12", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.98963165283203, - "Text": "410", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02040279656648636, - "Height": 0.007580057717859745, - "Left": 0.7875750064849854, - "Top": 0.807858407497406 - }, - "Polygon": [ - { - "X": 0.7875756621360779, - "Y": 0.807858407497406 - }, - { - "X": 0.8079777956008911, - "Y": 0.8078659176826477 - }, - { - "X": 0.8079771995544434, - "Y": 0.8154385089874268 - }, - { - "X": 0.7875750064849854, - "Y": 0.8154309988021851 - } - ] - }, - "Id": "8a3ca4cb-846d-4590-9eaa-32fb74567ade", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.96022033691406, - "Text": "1,980", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.02984589897096157, - "Height": 0.00883201789110899, - "Left": 0.8530718684196472, - "Top": 0.8080450296401978 - }, - "Polygon": [ - { - "X": 0.8530725240707397, - "Y": 0.8080450296401978 - }, - { - "X": 0.8829177618026733, - "Y": 0.8080559968948364 - }, - { - "X": 0.8829171657562256, - "Y": 0.8168770670890808 - }, - { - "X": 0.8530718684196472, - "Y": 0.8168660402297974 - } - ] - }, - "Id": "809ef3c6-b394-4500-b4e3-b1e565835ad4", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 98.95972442626953, - "Text": "Santander", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.06799342483282089, - "Height": 0.00885179452598095, - "Left": 0.7858330011367798, - "Top": 0.9682803153991699 - }, - "Polygon": [ - { - "X": 0.7858337759971619, - "Y": 0.9682803153991699 - }, - { - "X": 0.8538264632225037, - "Y": 0.9683066010475159 - }, - { - "X": 0.8538258075714111, - "Y": 0.9771321415901184 - }, - { - "X": 0.7858330011367798, - "Y": 0.9771057963371277 - } - ] - }, - "Id": "0e302495-0a97-469f-91ec-01d0bd3fbbc5", - "Page": 1 - }, - { - "BlockType": "WORD", - "Confidence": 99.95326232910156, - "Text": "514", - "TextType": "PRINTED", - "Geometry": { - "BoundingBox": { - "Width": 0.020135628059506416, - "Height": 0.00775345740839839, - "Left": 0.8649901747703552, - "Top": 0.9688286185264587 - }, - "Polygon": [ - { - "X": 0.8649907112121582, - "Y": 0.9688286185264587 - }, - { - "X": 0.8851257562637329, - "Y": 0.9688363671302795 - }, - { - "X": 0.8851252794265747, - "Y": 0.9765820503234863 - }, - { - "X": 0.8649901747703552, - "Y": 0.9765742421150208 - } - ] - }, - "Id": "ad42e142-82f6-4635-89af-0aacad982803", - "Page": 1 - }, - { - "BlockType": "TABLE", - "Confidence": 100, - "Geometry": { - "BoundingBox": { - "Width": 0.7849069237709045, - "Height": 0.6046715378761292, - "Left": 0.10549257695674896, - "Top": 0.21535222232341766 - }, - "Polygon": [ - { - "X": 0.10561913251876831, - "Y": 0.21535222232341766 - }, - { - "X": 0.8903995156288147, - "Y": 0.2155848741531372 - }, - { - "X": 0.8903595209121704, - "Y": 0.820023775100708 - }, - { - "X": 0.10549257695674896, - "Y": 0.819734513759613 - } - ] - }, - "Id": "f5339a3f-2d91-4624-8560-a61385736f08", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f7891ccd-16a0-44cc-9fdb-ec2dc04697c7", - "5990f297-7b20-431c-9e97-2a5dbb91632c", - "68c55c7d-f8f8-4333-a45a-a243f90d8849", - "245af78d-173b-44c1-bc08-21b971124a27", - "4fd5f41f-9dc6-4331-946d-1c762214a7d1", - "ebad9f43-80d3-4c6b-bc7f-249e37dc9eac", - "66126076-96d1-4484-9493-5b81873a9878", - "a2048dba-f851-4545-840d-994ebc573f92", - "6b16caa8-397d-4ae6-b85b-a454ae2a69a2", - "4fbd148a-141a-43bf-bb23-3af3fad39ab6", - "bd9be746-0234-4f6b-9b25-ad2b6297da5e", - "46053de7-1b05-4a8c-aaf0-e7b17ede8451", - "0b8c158a-ce6e-4a5a-993e-f1025ef609af", - "af8c2cdb-90b5-47c9-9468-4270e67d956c", - "aea85dc0-bcdc-4592-b6da-110b66476dbe", - "7c69ced8-ea3e-48d7-8c60-66d785b44466", - "8e2f15b4-b15d-4811-8f0a-638d2bea088b", - "bd68669f-263d-44f2-875f-0040f79c3890", - "03c3622a-907f-4675-bd1d-346ad8280596", - "27467584-869e-4a6a-a95e-4d75cc6d3691", - "9f27c3a0-0efa-4cc9-a8f5-0e7c79c0da8e", - "ad434e13-968d-4402-a4aa-65be3fee677c", - "4889f477-f83f-4417-b8ce-fed596ae4b11", - "4b5b94fb-eb17-4145-88c3-0f8446ab3c71", - "ba0c329b-0455-4ecc-834e-c72564579e91", - "0d48c3cf-a958-42e5-ab31-5bdd9dc8336b", - "8c1213b8-90da-433b-ba99-0404d25ad418", - "cab8409e-ed04-44e8-880f-41f15fade612", - "f6274993-ecc4-4163-81fb-ae536443a4d0", - "46b38197-a0e9-43c8-855a-9afbc2575fff", - "1d2af0b9-3539-44f7-b20b-f6133e69532f", - "61498d2b-9be2-4526-b17c-627e73789a09", - "ac42e15a-84fd-4e9a-81f6-06e22f9693e4", - "5352008c-fcee-4cf6-b1cb-41155027fe5d", - "6f600bfd-f7e3-4003-b0cc-68a2bbc7faf8", - "00b46221-2e3b-4871-9e4a-c9250cd41000", - "450d0964-ea40-4d40-be47-cd6634d5f386", - "5be71674-8533-4eab-bdba-5b3d84c1f016", - "2d3a05ba-0af2-436a-a74d-be535fa30cb5", - "718dbd65-b54e-4aa6-9063-8c5a6c823e5d", - "e84ad78e-e630-426e-9a1d-ab80a4c724b1", - "0cbf8e40-e7e9-45a8-8953-76ca794dc6e4", - "6d1de198-d118-4b52-ba4e-eea960f4235c", - "10e408f6-569f-4010-a940-5bc4929cfc4d", - "afe30a4b-9988-4a9e-8dc0-ec69a433c4c8", - "729ee127-aee1-4130-847f-6bfdfaba31b3", - "7e4d1dbe-8cdb-4e82-92a7-e03506f5bae1", - "17493e97-1e2c-4833-9d63-81c6a9d2f9db", - "af947c7c-a551-4b0b-9ca6-1c0989adf217", - "f09e5154-366a-4018-b420-d79bf1388a67", - "03269304-6f4f-4c00-bb15-f17586ec87db", - "90c42cfb-a086-46bc-9b57-6284b6eed2e0", - "da6250ef-c421-4809-a8e9-9c3a204ab76a", - "dd5f5915-82f7-44c0-87e8-569d24e8fa98", - "aa8b129d-0f37-4b26-b92f-8571ec540f9f", - "1facc456-587a-4ca3-9998-2011fb9a3087", - "2af75a0e-5eb6-4d17-a374-1871687d02ca", - "d2d5d1fa-249f-499c-b794-a7fdd07f7cf2", - "dc74a7f0-803c-4646-8444-9745eb68b6ff", - "7b65548c-21da-4eea-8f37-346a4a1b4bd6", - "bdfef759-e8ae-4978-8ae1-80afb7538358", - "061147ae-74e7-4f61-8620-1797b2771fa0", - "5654a027-6585-47b8-9a6c-1dac86b60d9f", - "aca5a220-b271-497d-b0b9-0eaa50eab8d7", - "f3087aee-4cf9-4056-8089-a9c58309833e", - "5327a223-9b6c-47de-a033-f2af27f81d99", - "94d1abfe-c3dc-4156-a908-f01dbab8cccf", - "ae112aab-6b6a-4f5b-8eec-ce8a9992e7f4", - "d6d3c979-9e9d-4726-a76d-a85f66b78fa3", - "005d72a7-fbd2-4784-9e0e-9d1b019c23b7", - "c09f5b13-24ec-414e-9452-7d085703c9c8", - "b6684cdc-f505-4b35-826e-ca581f75ef95", - "74638dce-951e-4d1f-b75a-a6613b5ff378", - "0eaf44c7-1ef0-4fce-8eb7-f93becf4e1e7", - "9e7f2b29-be24-4e1a-9517-0b5ab2e2072f", - "45894705-c5ae-478e-875e-c1f6ecf131d7", - "43dee663-bbee-4809-8b13-bf7ce02c9e10", - "804017f7-048c-4852-9ea3-29c44a983475", - "3f0a59cd-7858-4df3-aa33-200432586b51", - "2c14b7b2-1433-4a8f-a3ea-78b57c112833", - "6fb1bc40-1bd1-4d69-82c7-5252d0516f45", - "448a12ff-8755-4ea5-8903-1f5caaca275c", - "5a966149-830f-4a4d-9198-3214d7013762", - "d505558e-ab5a-41da-a02c-c0b41dde5ac1", - "69902071-9cba-46fc-9b32-b00666765301", - "b92bc98b-fe56-49ac-8717-d1306ddd739c", - "775fa56e-db73-4a7f-9782-7d9d9b4c09f3", - "d14f35fb-cba1-40bb-a1bf-901ea384a4a2", - "573eb96b-6fc6-420b-a75c-c776b0477e02", - "43c76118-15c7-4653-a0b1-1e020e1ba832", - "cb412149-1599-4db8-95f1-ee0a842be123", - "f9a3bd13-2d48-4808-a502-9c728aadb0e5", - "0467bb3c-ff20-4c41-a690-8df5d998dbb4", - "489f7095-d0d7-4b09-a9f1-fe1900ea9812", - "b40afa30-68e4-46dd-8c86-263ad0b800a6", - "cffad750-aa1e-4921-98aa-9c915001e7c9", - "a899051a-57f9-4f8c-9860-5f4e2f7c4d85", - "b2210261-0ae9-43f2-81f1-a210ee991462", - "2f61efdb-b607-4c12-a578-be98f0d1775d", - "34ff5f2b-9c84-407b-b16b-80a1cbb10998", - "3a19899f-5b34-4210-9963-a5087f48422b", - "e1db90b1-c889-44cc-8ffa-eb922819e49b", - "f48f72c3-f26d-43e2-8c06-0d673f53ff07", - "47699170-1bad-4a93-8ab3-ff03fcf9da2b", - "47c09d2e-4448-4064-b4c7-b5a29ff3e20a", - "4bd51eac-0dee-4810-812e-11c8f260823a", - "c2fce6f8-d1d9-4c33-8974-3f87a0b61966", - "524e2a56-05aa-4d13-803b-329076cadf02", - "b3d5d8ad-08e2-44bc-84ec-5755508952b0", - "36a0e25d-07d4-4ac9-8df2-10aad978209d", - "a2cbb76d-b3f4-46cb-b371-a3e9eb57aebe", - "a474128b-b3a5-40f4-834e-60fe2d85454e", - "e1c3b8fc-0567-497a-97d8-54c6665cdea8", - "0cc0cff0-8600-472b-a24e-4ddbfbbc78b4", - "3f9ae7a3-97cf-4f5b-9512-078817b675d0", - "995e31da-36c9-468f-85cb-2e24ac25b582", - "4b20e18b-88bd-44da-b70b-2037826080fc", - "04b2b0f1-3d06-469b-8adc-61baf02b0d30", - "fce968c2-fc41-4230-94d8-7afa72d05f53", - "e3710a14-35db-4695-b6c9-2f1610e21961", - "add983af-65c6-437e-965f-34de9302790d", - "f464f9ee-dfc3-42c5-a062-5c80d784fd19", - "84d3b8e1-b428-48af-9574-37d6f3bf1734", - "68fe492d-5db0-4893-af75-93574d913440", - "be1f2757-5d10-4baa-ad3a-5f66e935ffbc", - "b0013015-d4cd-4d40-8602-361d1792b6a2", - "62760de5-71eb-4acf-a246-b3d820155fa4", - "37630c83-8d2d-4ed5-a22b-23e982677525", - "9697e6ee-55b3-41c7-890c-16aa261a2ac5", - "157d136b-21b8-40b7-b91f-42ac44d388e9", - "605622bb-68af-44d7-94c4-aef9133af639", - "66ceecda-3697-4369-a7d3-70bc003dbe76", - "b4879660-b17d-4350-9c34-7fa60c44d262", - "1f91942e-8420-42cd-ab25-3239e2056e6f", - "9c7d94c0-79ca-4701-877a-b5390ac8ce9c", - "33777b59-5d90-498e-8f56-e3527141959c", - "2f9fd3c3-5014-43df-a6e3-dedcd7620391", - "b41bf862-4dac-4ba3-a680-65d80b917313", - "109759cd-b263-4f33-8866-875b97121a4b", - "5cec506e-e326-444d-81c4-f2ca6e3cdc7f", - "81b9a780-9bdc-4840-a686-cd8abe8156a4", - "cb97a620-adb1-4e18-a5ff-bd17037fdba6", - "6cd137f8-c730-4be9-b603-bbb8f098888d", - "75e6ba83-3e70-4cea-8d52-f546d87af77b", - "a93d3f82-1784-4117-92d1-539aba7eedff", - "409e7f6e-e180-4692-afcb-201047fc92b9", - "27a84197-b53d-4123-aa2d-54ad81d30956", - "62e0aca1-f0d2-442c-a5c3-b29cc9d06252", - "323a380c-92fd-4633-a428-80dfd5ac8f2f", - "197479a3-2d94-47fe-9047-2be8b43423ee", - "73436cd3-280c-493c-8f9e-4d2784f11939", - "c074448b-3b8c-45ff-8797-2ab014186b17", - "f6d372d3-8844-4965-bde2-68ae43e0eed2", - "dd74a480-3984-4f6d-bc64-6aa0f1c6ebc3", - "57c6e2ef-f551-49f9-bc9c-d56856395939", - "b08b541f-afd7-4866-9024-9298400f69a1", - "7cd0cb12-bd1b-4ec2-9ef8-667fa005e290", - "6043826b-1c9e-4f77-bdc8-c345940dc261", - "3e360a68-696a-4d8f-9061-c7300be88acb", - "44dc5f72-d76f-4fcb-814d-2123d76b00e0", - "c4ce3877-2da3-4e2a-9c58-15e1431b1b75", - "cc049fb4-44f3-4f32-8d52-1a53eca55364", - "d4003a7a-3cff-4cea-a0b2-31279abc9beb", - "dc2ae189-6d3d-4d2a-8fe5-f18c5253135e", - "637f24b2-9c1b-4c08-914f-47a5d56a9c5c", - "b7d66988-52c8-4ca4-8074-9644f6591012", - "360db5e3-d867-4719-a66f-f8fa4aec27af", - "cff11a0d-4e91-493d-864c-4f7ee7a2326c", - "1fc37a33-d5e6-4209-b7d8-6003bb23d2fa", - "cdc3d88e-b42c-46a0-ba2f-b595db900698", - "ac4eaa3a-1b26-4e3d-82de-e7b1941b0f43", - "93badead-ff09-46e7-9bc6-f11c1b94f16d", - "7fbeaf44-3223-413d-95bc-ed3b6be9a233", - "66d2acbd-5933-4138-a926-43f298555789", - "a3fd466d-6184-44e5-9bd7-1e1a7d099718", - "70f864d5-ee86-4c7e-8a85-ea6624795c29", - "4d08c454-a7b0-4d6f-a097-f3c777093488", - "6add5d71-e8c8-443f-ab95-c23f3daf75c6", - "06683bbb-e3bb-4f87-8677-35fb7c709a60", - "61489159-1f71-4b78-935e-467a4c2fddbb", - "7c0a4e91-47e2-4a35-a53c-b9d66d05dd3f", - "92b31715-6b7a-468f-9703-dcd8d3e5673e", - "7574ee5d-6afc-4eea-b530-dbd8fc34d5c7", - "c2366ee6-a02c-4d82-ae20-87fc616dbbd8", - "2d13fc2b-fb12-4c9f-ab4f-658385cba282", - "9461163f-03da-4275-b70a-76a2dc56d106", - "4edcb7c7-1ced-471c-ab9e-be302fa0b171", - "8f9a35e8-0bf5-4fd0-99f0-b731e51de39f", - "dd5b24bb-f124-4bab-a0b5-b8c3475d1be5", - "c3f7ccf5-d9ff-4c1d-bd11-28439b402019" - ] - }, - { - "Type": "TABLE_TITLE", - "Ids": [ - "a48e9cb0-753a-4da5-b813-4450929d4fdc" - ] - } - ], - "EntityTypes": [ - "STRUCTURED_TABLE" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 96.875, - "RowIndex": 1, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014413595199585, - "Height": 0.024670537561178207, - "Left": 0.10561399906873703, - "Top": 0.21535222232341766 - }, - "Polygon": [ - { - "X": 0.10561913251876831, - "Y": 0.21535222232341766 - }, - { - "X": 0.6070553660392761, - "Y": 0.2155008763074875 - }, - { - "X": 0.6070524454116821, - "Y": 0.24002274870872498 - }, - { - "X": 0.10561399906873703, - "Y": 0.23987263441085815 - } - ] - }, - "Id": "f7891ccd-16a0-44cc-9fdb-ec2dc04697c7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "60d1e7a3-be03-4c3c-880f-beb8d9355efe" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 89.892578125, - "RowIndex": 1, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.058299917727708817, - "Height": 0.02453933283686638, - "Left": 0.6070524454116821, - "Top": 0.2155008763074875 - }, - "Polygon": [ - { - "X": 0.6070553660392761, - "Y": 0.2155008763074875 - }, - { - "X": 0.6653524041175842, - "Y": 0.21551816165447235 - }, - { - "X": 0.6653497815132141, - "Y": 0.24004021286964417 - }, - { - "X": 0.6070524454116821, - "Y": 0.24002274870872498 - } - ] - }, - "Id": "5990f297-7b20-431c-9e97-2a5dbb91632c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a1bb1089-2f87-4ef4-b3f1-8b95b78ff709" - ] - } - ], - "EntityTypes": [ - "COLUMN_HEADER" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.189453125, - "RowIndex": 1, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471037656068802, - "Height": 0.02454441785812378, - "Left": 0.6653497815132141, - "Top": 0.21551816165447235 - }, - "Polygon": [ - { - "X": 0.6653524041175842, - "Y": 0.21551816165447235 - }, - { - "X": 0.7400601506233215, - "Y": 0.2155403047800064 - }, - { - "X": 0.7400578260421753, - "Y": 0.24006257951259613 - }, - { - "X": 0.6653497815132141, - "Y": 0.24004021286964417 - } - ] - }, - "Id": "68c55c7d-f8f8-4333-a45a-a243f90d8849", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6dd83f3d-1aa1-4c83-9df1-b597703120c0" - ] - } - ], - "EntityTypes": [ - "COLUMN_HEADER" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.04296875, - "RowIndex": 1, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.086803138256073, - "Height": 0.024548256769776344, - "Left": 0.7400578260421753, - "Top": 0.2155403047800064 - }, - "Polygon": [ - { - "X": 0.7400601506233215, - "Y": 0.2155403047800064 - }, - { - "X": 0.8268609642982483, - "Y": 0.21556603908538818 - }, - { - "X": 0.8268590569496155, - "Y": 0.2400885671377182 - }, - { - "X": 0.7400578260421753, - "Y": 0.24006257951259613 - } - ] - }, - "Id": "245af78d-173b-44c1-bc08-21b971124a27", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d1ed1ad8-dfa6-45fa-b72c-31985dc69ec3" - ] - } - ], - "EntityTypes": [ - "COLUMN_HEADER" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.1875, - "RowIndex": 1, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354045122861862, - "Height": 0.024541545659303665, - "Left": 0.8268590569496155, - "Top": 0.21556603908538818 - }, - "Polygon": [ - { - "X": 0.8268609642982483, - "Y": 0.21556603908538818 - }, - { - "X": 0.8903995156288147, - "Y": 0.2155848741531372 - }, - { - "X": 0.8903979063034058, - "Y": 0.24010758101940155 - }, - { - "X": 0.8268590569496155, - "Y": 0.2400885671377182 - } - ] - }, - "Id": "4fd5f41f-9dc6-4331-946d-1c762214a7d1", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5dd2be0e-d70b-4a5a-82a5-d05932a76167" - ] - } - ], - "EntityTypes": [ - "COLUMN_HEADER" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.580078125, - "RowIndex": 2, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014415979385376, - "Height": 0.015158891677856445, - "Left": 0.10561085492372513, - "Top": 0.23987263441085815 - }, - "Polygon": [ - { - "X": 0.10561399906873703, - "Y": 0.23987263441085815 - }, - { - "X": 0.6070524454116821, - "Y": 0.24002274870872498 - }, - { - "X": 0.6070507168769836, - "Y": 0.2550315260887146 - }, - { - "X": 0.10561085492372513, - "Y": 0.25488051772117615 - } - ] - }, - "Id": "ebad9f43-80d3-4c6b-bc7f-249e37dc9eac", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "9dfd9a42-ea0b-4458-9013-c8a7a739b290", - "4ef4725a-2c27-439a-8505-593e374ecc05", - "cd9f6928-3aeb-4812-8a93-a66c82e98837", - "15776b98-7fb9-45ab-9080-89737f701e0c", - "06ad110e-0eb7-45c9-a65a-9f06d47c93d8", - "cdaafde3-b7d3-46d8-bb67-66b0a65e2402", - "8472b50b-86b1-4a1a-a007-c9ac6ff08b02", - "b1504613-463a-4409-8b29-e290b75d5f10", - "802ca123-3eed-4efc-b45d-62996710b066", - "341b66b0-28ab-4e95-88d5-d683655cf1a7", - "26aae6f0-ebb7-483d-8240-0fbc14b69434" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 87.744140625, - "RowIndex": 2, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05829905718564987, - "Height": 0.015026326291263103, - "Left": 0.6070507168769836, - "Top": 0.24002274870872498 - }, - "Polygon": [ - { - "X": 0.6070524454116821, - "Y": 0.24002274870872498 - }, - { - "X": 0.6653497815132141, - "Y": 0.24004021286964417 - }, - { - "X": 0.6653481721878052, - "Y": 0.25504907965660095 - }, - { - "X": 0.6070507168769836, - "Y": 0.2550315260887146 - } - ] - }, - "Id": "66126076-96d1-4484-9493-5b81873a9878", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.89453125, - "RowIndex": 2, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0747096911072731, - "Height": 0.015031373128294945, - "Left": 0.6653481721878052, - "Top": 0.24004021286964417 - }, - "Polygon": [ - { - "X": 0.6653497815132141, - "Y": 0.24004021286964417 - }, - { - "X": 0.7400578260421753, - "Y": 0.24006257951259613 - }, - { - "X": 0.7400564551353455, - "Y": 0.25507158041000366 - }, - { - "X": 0.6653481721878052, - "Y": 0.25504907965660095 - } - ] - }, - "Id": "a2048dba-f851-4545-840d-994ebc573f92", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4b92dcf8-235b-46b7-a41a-2eea153294be" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.796875, - "RowIndex": 2, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680263161659241, - "Height": 0.015035148710012436, - "Left": 0.7400564551353455, - "Top": 0.24006257951259613 - }, - "Polygon": [ - { - "X": 0.7400578260421753, - "Y": 0.24006257951259613 - }, - { - "X": 0.8268590569496155, - "Y": 0.2400885671377182 - }, - { - "X": 0.8268579244613647, - "Y": 0.25509771704673767 - }, - { - "X": 0.7400564551353455, - "Y": 0.25507158041000366 - } - ] - }, - "Id": "6b16caa8-397d-4ae6-b85b-a454ae2a69a2", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d5473145-7aee-40a0-830e-438160811347" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 89.990234375, - "RowIndex": 2, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06353999674320221, - "Height": 0.015028297901153564, - "Left": 0.8268579244613647, - "Top": 0.2400885671377182 - }, - "Polygon": [ - { - "X": 0.8268590569496155, - "Y": 0.2400885671377182 - }, - { - "X": 0.8903979063034058, - "Y": 0.24010758101940155 - }, - { - "X": 0.8903968930244446, - "Y": 0.25511685013771057 - }, - { - "X": 0.8268579244613647, - "Y": 0.25509771704673767 - } - ] - }, - "Id": "4fbd148a-141a-43bf-bb23-3af3fad39ab6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "47741783-3639-4c50-995e-ee35d2fcb0b9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.53125, - "RowIndex": 3, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014429688453674, - "Height": 0.01515987142920494, - "Left": 0.10560771077871323, - "Top": 0.25488051772117615 - }, - "Polygon": [ - { - "X": 0.10561085492372513, - "Y": 0.25488051772117615 - }, - { - "X": 0.6070507168769836, - "Y": 0.2550315260887146 - }, - { - "X": 0.6070489287376404, - "Y": 0.270040363073349 - }, - { - "X": 0.10560771077871323, - "Y": 0.2698884606361389 - } - ] - }, - "Id": "bd9be746-0234-4f6b-9b25-ad2b6297da5e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f2620ef6-8737-48c0-92fb-4aa8f0decc9a", - "b9eb22e2-8402-4ccd-af77-07236c62dc8f", - "88a5b9a2-9dce-440d-b090-59c52631bd34", - "85a18c5e-c5f0-4ed7-a0b7-631f6cf497ba", - "993f3005-f90b-4714-924d-4232ec53ce1b" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 87.6953125, - "RowIndex": 3, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.058299217373132706, - "Height": 0.015026512555778027, - "Left": 0.6070489287376404, - "Top": 0.2550315260887146 - }, - "Polygon": [ - { - "X": 0.6070507168769836, - "Y": 0.2550315260887146 - }, - { - "X": 0.6653481721878052, - "Y": 0.25504907965660095 - }, - { - "X": 0.6653465628623962, - "Y": 0.2700580358505249 - }, - { - "X": 0.6070489287376404, - "Y": 0.270040363073349 - } - ] - }, - "Id": "46053de7-1b05-4a8c-aaf0-e7b17ede8451", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.89453125, - "RowIndex": 3, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07470989227294922, - "Height": 0.015031588263809681, - "Left": 0.6653465628623962, - "Top": 0.25504907965660095 - }, - "Polygon": [ - { - "X": 0.6653481721878052, - "Y": 0.25504907965660095 - }, - { - "X": 0.7400564551353455, - "Y": 0.25507158041000366 - }, - { - "X": 0.7400550246238708, - "Y": 0.27008065581321716 - }, - { - "X": 0.6653465628623962, - "Y": 0.2700580358505249 - } - ] - }, - "Id": "0b8c158a-ce6e-4a5a-993e-f1025ef609af", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8e2c37aa-6b83-4417-9c9d-69130da0a0b2" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.748046875, - "RowIndex": 3, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680287003517151, - "Height": 0.015035386197268963, - "Left": 0.7400550246238708, - "Top": 0.25507158041000366 - }, - "Polygon": [ - { - "X": 0.7400564551353455, - "Y": 0.25507158041000366 - }, - { - "X": 0.8268579244613647, - "Y": 0.25509771704673767 - }, - { - "X": 0.8268567323684692, - "Y": 0.2701069712638855 - }, - { - "X": 0.7400550246238708, - "Y": 0.27008065581321716 - } - ] - }, - "Id": "af8c2cdb-90b5-47c9-9468-4270e67d956c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "41ea88e2-6b7f-4911-8654-a7d2028cf427" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 89.94140625, - "RowIndex": 3, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354016810655594, - "Height": 0.015028493478894234, - "Left": 0.8268567323684692, - "Top": 0.25509771704673767 - }, - "Polygon": [ - { - "X": 0.8268579244613647, - "Y": 0.25509771704673767 - }, - { - "X": 0.8903968930244446, - "Y": 0.25511685013771057 - }, - { - "X": 0.8903958797454834, - "Y": 0.27012622356414795 - }, - { - "X": 0.8268567323684692, - "Y": 0.2701069712638855 - } - ] - }, - "Id": "aea85dc0-bcdc-4592-b6da-110b66476dbe", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "39fb0053-7a05-474b-9db2-e05bca57d6b5" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 96.2890625, - "RowIndex": 4, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014445185661316, - "Height": 0.01582791656255722, - "Left": 0.10560443252325058, - "Top": 0.2698884606361389 - }, - "Polygon": [ - { - "X": 0.10560771077871323, - "Y": 0.2698884606361389 - }, - { - "X": 0.6070489287376404, - "Y": 0.270040363073349 - }, - { - "X": 0.6070470809936523, - "Y": 0.28571638464927673 - }, - { - "X": 0.10560443252325058, - "Y": 0.28556352853775024 - } - ] - }, - "Id": "7c69ced8-ea3e-48d7-8c60-66d785b44466", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "04d5e7f2-8ca6-4c08-8fe4-cebc1f1e875b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 89.306640625, - "RowIndex": 4, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05829945579171181, - "Height": 0.015693768858909607, - "Left": 0.6070470809936523, - "Top": 0.270040363073349 - }, - "Polygon": [ - { - "X": 0.6070489287376404, - "Y": 0.270040363073349 - }, - { - "X": 0.6653465628623962, - "Y": 0.2700580358505249 - }, - { - "X": 0.6653448343276978, - "Y": 0.2857341468334198 - }, - { - "X": 0.6070470809936523, - "Y": 0.28571638464927673 - } - ] - }, - "Id": "8e2f15b4-b15d-4811-8f0a-638d2bea088b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4cdf5657-e6a0-4a64-a831-30425bf72214", - "6a7077ad-8b2f-432e-a84e-63cf2867a90b", - "8b783bd9-3602-4f3a-8235-e630c10c1e7e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.5546875, - "RowIndex": 4, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0747101679444313, - "Height": 0.015698879957199097, - "Left": 0.6653448343276978, - "Top": 0.2700580358505249 - }, - "Polygon": [ - { - "X": 0.6653465628623962, - "Y": 0.2700580358505249 - }, - { - "X": 0.7400550246238708, - "Y": 0.27008065581321716 - }, - { - "X": 0.7400535345077515, - "Y": 0.285756915807724 - }, - { - "X": 0.6653448343276978, - "Y": 0.2857341468334198 - } - ] - }, - "Id": "bd68669f-263d-44f2-875f-0040f79c3890", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "0669c86f-f66b-4f40-a9f0-4e1cd292241b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.408203125, - "RowIndex": 4, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680317550897598, - "Height": 0.015702705830335617, - "Left": 0.7400535345077515, - "Top": 0.27008065581321716 - }, - "Polygon": [ - { - "X": 0.7400550246238708, - "Y": 0.27008065581321716 - }, - { - "X": 0.8268567323684692, - "Y": 0.2701069712638855 - }, - { - "X": 0.8268555402755737, - "Y": 0.2857833802700043 - }, - { - "X": 0.7400535345077515, - "Y": 0.285756915807724 - } - ] - }, - "Id": "03c3622a-907f-4675-bd1d-346ad8280596", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ae111885-7e71-4581-945b-7c5c5b01e833" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.6015625, - "RowIndex": 4, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354039907455444, - "Height": 0.015695778653025627, - "Left": 0.8268555402755737, - "Top": 0.2701069712638855 - }, - "Polygon": [ - { - "X": 0.8268567323684692, - "Y": 0.2701069712638855 - }, - { - "X": 0.8903958797454834, - "Y": 0.27012622356414795 - }, - { - "X": 0.8903948664665222, - "Y": 0.2858027517795563 - }, - { - "X": 0.8268555402755737, - "Y": 0.2857833802700043 - } - ] - }, - "Id": "27467584-869e-4a6a-a95e-4d75cc6d3691", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "af59685f-e79e-457e-b7e6-be37abf86a0f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.263671875, - "RowIndex": 5, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014457702636719, - "Height": 0.015161873772740364, - "Left": 0.10560128837823868, - "Top": 0.28556352853775024 - }, - "Polygon": [ - { - "X": 0.10560443252325058, - "Y": 0.28556352853775024 - }, - { - "X": 0.6070470809936523, - "Y": 0.28571638464927673 - }, - { - "X": 0.6070452928543091, - "Y": 0.30072540044784546 - }, - { - "X": 0.10560128837823868, - "Y": 0.30057165026664734 - } - ] - }, - "Id": "9f27c3a0-0efa-4cc9-a8f5-0e7c79c0da8e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d23d0e87-4c63-45a0-a1b3-f5e791efa807", - "022fd29d-f1cb-4ca3-ba20-e94ee46daed7" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.37890625, - "RowIndex": 5, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05829954147338867, - "Height": 0.015026893466711044, - "Left": 0.6070452928543091, - "Top": 0.28571638464927673 - }, - "Polygon": [ - { - "X": 0.6070470809936523, - "Y": 0.28571638464927673 - }, - { - "X": 0.6653448343276978, - "Y": 0.2857341468334198 - }, - { - "X": 0.6653432250022888, - "Y": 0.3007432520389557 - }, - { - "X": 0.6070452928543091, - "Y": 0.30072540044784546 - } - ] - }, - "Id": "ad434e13-968d-4402-a4aa-65be3fee677c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "64df94de-a482-467d-914b-d5ac2991044a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.578125, - "RowIndex": 5, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471030950546265, - "Height": 0.015032029710710049, - "Left": 0.6653432250022888, - "Top": 0.2857341468334198 - }, - "Polygon": [ - { - "X": 0.6653448343276978, - "Y": 0.2857341468334198 - }, - { - "X": 0.7400535345077515, - "Y": 0.285756915807724 - }, - { - "X": 0.7400521636009216, - "Y": 0.3007661700248718 - }, - { - "X": 0.6653432250022888, - "Y": 0.3007432520389557 - } - ] - }, - "Id": "4889f477-f83f-4417-b8ce-fed596ae4b11", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b270a7be-590e-4197-a5a3-94375585c01e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.431640625, - "RowIndex": 5, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0868033617734909, - "Height": 0.015035871416330338, - "Left": 0.7400521636009216, - "Top": 0.285756915807724 - }, - "Polygon": [ - { - "X": 0.7400535345077515, - "Y": 0.285756915807724 - }, - { - "X": 0.8268555402755737, - "Y": 0.2857833802700043 - }, - { - "X": 0.8268543481826782, - "Y": 0.30079278349876404 - }, - { - "X": 0.7400521636009216, - "Y": 0.3007661700248718 - } - ] - }, - "Id": "4b5b94fb-eb17-4145-88c3-0f8446ab3c71", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "52b8d422-02c9-4647-9853-363e51935569" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.625, - "RowIndex": 5, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354052573442459, - "Height": 0.015028893947601318, - "Left": 0.8268543481826782, - "Top": 0.2857833802700043 - }, - "Polygon": [ - { - "X": 0.8268555402755737, - "Y": 0.2857833802700043 - }, - { - "X": 0.8903948664665222, - "Y": 0.2858027517795563 - }, - { - "X": 0.890393853187561, - "Y": 0.3008122742176056 - }, - { - "X": 0.8268543481826782, - "Y": 0.30079278349876404 - } - ] - }, - "Id": "ba0c329b-0455-4ecc-834e-c72564579e91", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "24c12832-d712-4002-8de8-a782fcf0331f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.5078125, - "RowIndex": 6, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014472603797913, - "Height": 0.015496389009058475, - "Left": 0.1055980771780014, - "Top": 0.30057165026664734 - }, - "Polygon": [ - { - "X": 0.10560128837823868, - "Y": 0.30057165026664734 - }, - { - "X": 0.6070452928543091, - "Y": 0.30072540044784546 - }, - { - "X": 0.6070435047149658, - "Y": 0.31606802344322205 - }, - { - "X": 0.1055980771780014, - "Y": 0.3159133493900299 - } - ] - }, - "Id": "0d48c3cf-a958-42e5-ab31-5bdd9dc8336b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "3818d3e0-1c5a-4b5f-999a-b80a9f3f4b6c", - "60a359f6-bf56-425f-9610-0cd90c63cba7" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.623046875, - "RowIndex": 6, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05829974263906479, - "Height": 0.015360618941485882, - "Left": 0.6070435047149658, - "Top": 0.30072540044784546 - }, - "Polygon": [ - { - "X": 0.6070452928543091, - "Y": 0.30072540044784546 - }, - { - "X": 0.6653432250022888, - "Y": 0.3007432520389557 - }, - { - "X": 0.6653416156768799, - "Y": 0.3160860240459442 - }, - { - "X": 0.6070435047149658, - "Y": 0.31606802344322205 - } - ] - }, - "Id": "8c1213b8-90da-433b-ba99-0404d25ad418", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2c57d7f6-ca9c-4d2f-9d5d-711f36a92f3b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.822265625, - "RowIndex": 6, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471054792404175, - "Height": 0.015365787781774998, - "Left": 0.6653416156768799, - "Top": 0.3007432520389557 - }, - "Polygon": [ - { - "X": 0.6653432250022888, - "Y": 0.3007432520389557 - }, - { - "X": 0.7400521636009216, - "Y": 0.3007661700248718 - }, - { - "X": 0.740050733089447, - "Y": 0.3161090612411499 - }, - { - "X": 0.6653416156768799, - "Y": 0.3160860240459442 - } - ] - }, - "Id": "cab8409e-ed04-44e8-880f-41f15fade612", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "3c12e978-ace7-4206-b32e-43c921bee34b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.67578125, - "RowIndex": 6, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0868036299943924, - "Height": 0.015369654633104801, - "Left": 0.740050733089447, - "Top": 0.3007661700248718 - }, - "Polygon": [ - { - "X": 0.7400521636009216, - "Y": 0.3007661700248718 - }, - { - "X": 0.8268543481826782, - "Y": 0.30079278349876404 - }, - { - "X": 0.8268531560897827, - "Y": 0.31613582372665405 - }, - { - "X": 0.740050733089447, - "Y": 0.3161090612411499 - } - ] - }, - "Id": "f6274993-ecc4-4163-81fb-ae536443a4d0", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b2e80104-d368-4ae2-8c3f-e8c0090007b8" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.869140625, - "RowIndex": 6, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354072690010071, - "Height": 0.015362638048827648, - "Left": 0.8268531560897827, - "Top": 0.30079278349876404 - }, - "Polygon": [ - { - "X": 0.8268543481826782, - "Y": 0.30079278349876404 - }, - { - "X": 0.890393853187561, - "Y": 0.3008122742176056 - }, - { - "X": 0.8903928399085999, - "Y": 0.31615543365478516 - }, - { - "X": 0.8268531560897827, - "Y": 0.31613582372665405 - } - ] - }, - "Id": "46b38197-a0e9-43c8-855a-9afbc2575fff", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a961965e-6a1d-49d4-9666-4344785b7d61" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.361328125, - "RowIndex": 7, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014485716819763, - "Height": 0.015163853764533997, - "Left": 0.1055949330329895, - "Top": 0.3159133493900299 - }, - "Polygon": [ - { - "X": 0.1055980771780014, - "Y": 0.3159133493900299 - }, - { - "X": 0.6070435047149658, - "Y": 0.31606802344322205 - }, - { - "X": 0.6070417165756226, - "Y": 0.3310772180557251 - }, - { - "X": 0.1055949330329895, - "Y": 0.33092164993286133 - } - ] - }, - "Id": "1d2af0b9-3539-44f7-b20b-f6133e69532f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "38166f8c-2201-4341-9d4e-cfeaed46317b", - "035e1162-ddfd-446c-8661-01aa87a4b2fe", - "3964e7a6-265a-4193-a15e-ca5855c381fa" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.4765625, - "RowIndex": 7, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05829986557364464, - "Height": 0.015027270652353764, - "Left": 0.6070417165756226, - "Top": 0.31606802344322205 - }, - "Polygon": [ - { - "X": 0.6070435047149658, - "Y": 0.31606802344322205 - }, - { - "X": 0.6653416156768799, - "Y": 0.3160860240459442 - }, - { - "X": 0.665340006351471, - "Y": 0.33109530806541443 - }, - { - "X": 0.6070417165756226, - "Y": 0.3310772180557251 - } - ] - }, - "Id": "61498d2b-9be2-4526-b17c-627e73789a09", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.67578125, - "RowIndex": 7, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471072673797607, - "Height": 0.015032466500997543, - "Left": 0.665340006351471, - "Top": 0.3160860240459442 - }, - "Polygon": [ - { - "X": 0.6653416156768799, - "Y": 0.3160860240459442 - }, - { - "X": 0.740050733089447, - "Y": 0.3161090612411499 - }, - { - "X": 0.7400493025779724, - "Y": 0.33111846446990967 - }, - { - "X": 0.665340006351471, - "Y": 0.33109530806541443 - } - ] - }, - "Id": "ac42e15a-84fd-4e9a-81f6-06e22f9693e4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "0a428070-ab47-443b-a274-bdf8e35a9215" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.529296875, - "RowIndex": 7, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680383861064911, - "Height": 0.015036351978778839, - "Left": 0.7400493025779724, - "Top": 0.3161090612411499 - }, - "Polygon": [ - { - "X": 0.740050733089447, - "Y": 0.3161090612411499 - }, - { - "X": 0.8268531560897827, - "Y": 0.31613582372665405 - }, - { - "X": 0.8268519639968872, - "Y": 0.33114540576934814 - }, - { - "X": 0.7400493025779724, - "Y": 0.33111846446990967 - } - ] - }, - "Id": "5352008c-fcee-4cf6-b1cb-41155027fe5d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "1b5c9f87-4e58-4763-a86a-f3b8b39683f4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.72265625, - "RowIndex": 7, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354087591171265, - "Height": 0.015029290691018105, - "Left": 0.8268519639968872, - "Top": 0.31613582372665405 - }, - "Polygon": [ - { - "X": 0.8268531560897827, - "Y": 0.31613582372665405 - }, - { - "X": 0.8903928399085999, - "Y": 0.31615543365478516 - }, - { - "X": 0.8903918862342834, - "Y": 0.3311651051044464 - }, - { - "X": 0.8268519639968872, - "Y": 0.33114540576934814 - } - ] - }, - "Id": "6f600bfd-f7e3-4003-b0cc-68a2bbc7faf8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f80fae21-8c37-479f-8cbc-9a6a5ecd2066" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.703125, - "RowIndex": 8, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014499425888062, - "Height": 0.015164833515882492, - "Left": 0.1055917888879776, - "Top": 0.33092164993286133 - }, - "Polygon": [ - { - "X": 0.1055949330329895, - "Y": 0.33092164993286133 - }, - { - "X": 0.6070417165756226, - "Y": 0.3310772180557251 - }, - { - "X": 0.6070399880409241, - "Y": 0.3460864722728729 - }, - { - "X": 0.1055917888879776, - "Y": 0.3459300100803375 - } - ] - }, - "Id": "00b46221-2e3b-4871-9e4a-c9250cd41000", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "decd1a23-b262-4659-bc5b-629fd729e834", - "7fc881ec-e823-4f8e-86b4-512a1d1dbc9f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.76953125, - "RowIndex": 8, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05830002576112747, - "Height": 0.015027457848191261, - "Left": 0.6070399880409241, - "Top": 0.3310772180557251 - }, - "Polygon": [ - { - "X": 0.6070417165756226, - "Y": 0.3310772180557251 - }, - { - "X": 0.665340006351471, - "Y": 0.33109530806541443 - }, - { - "X": 0.665338397026062, - "Y": 0.3461046814918518 - }, - { - "X": 0.6070399880409241, - "Y": 0.3460864722728729 - } - ] - }, - "Id": "450d0964-ea40-4d40-be47-cd6634d5f386", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "bf3ff109-3686-407c-91ec-b659f64e0dc5" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.017578125, - "RowIndex": 8, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471092790365219, - "Height": 0.015032682567834854, - "Left": 0.665338397026062, - "Top": 0.33109530806541443 - }, - "Polygon": [ - { - "X": 0.665340006351471, - "Y": 0.33109530806541443 - }, - { - "X": 0.7400493025779724, - "Y": 0.33111846446990967 - }, - { - "X": 0.7400479316711426, - "Y": 0.346127986907959 - }, - { - "X": 0.665338397026062, - "Y": 0.3461046814918518 - } - ] - }, - "Id": "5be71674-8533-4eab-bdba-5b3d84c1f016", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "60fe4d54-5999-417b-9728-f9c509e7088f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.87109375, - "RowIndex": 8, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680407702922821, - "Height": 0.015036589466035366, - "Left": 0.7400479316711426, - "Top": 0.33111846446990967 - }, - "Polygon": [ - { - "X": 0.7400493025779724, - "Y": 0.33111846446990967 - }, - { - "X": 0.8268519639968872, - "Y": 0.33114540576934814 - }, - { - "X": 0.8268508315086365, - "Y": 0.3461550772190094 - }, - { - "X": 0.7400479316711426, - "Y": 0.346127986907959 - } - ] - }, - "Id": "2d3a05ba-0af2-436a-a74d-be535fa30cb5", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ab4257d0-1750-4a94-9768-2ac8554ce74a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.064453125, - "RowIndex": 8, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354105472564697, - "Height": 0.015029486268758774, - "Left": 0.8268508315086365, - "Top": 0.33114540576934814 - }, - "Polygon": [ - { - "X": 0.8268519639968872, - "Y": 0.33114540576934814 - }, - { - "X": 0.8903918862342834, - "Y": 0.3311651051044464 - }, - { - "X": 0.8903908729553223, - "Y": 0.3461748957633972 - }, - { - "X": 0.8268508315086365, - "Y": 0.3461550772190094 - } - ] - }, - "Id": "718dbd65-b54e-4aa6-9063-8c5a6c823e5d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "292e0cde-fd59-4b7d-a74c-f8acf518070a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.5078125, - "RowIndex": 9, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014513731002808, - "Height": 0.015499355271458626, - "Left": 0.10558857768774033, - "Top": 0.3459300100803375 - }, - "Polygon": [ - { - "X": 0.1055917888879776, - "Y": 0.3459300100803375 - }, - { - "X": 0.6070399880409241, - "Y": 0.3460864722728729 - }, - { - "X": 0.607038140296936, - "Y": 0.361429363489151 - }, - { - "X": 0.10558857768774033, - "Y": 0.3612719774246216 - } - ] - }, - "Id": "e84ad78e-e630-426e-9a1d-ab80a4c724b1", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7c53b13f-b9c0-4839-b78d-7270786b8d9d", - "16929518-1e10-430c-91c4-038c4cb8bbd6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.623046875, - "RowIndex": 9, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05830022320151329, - "Height": 0.015361188910901546, - "Left": 0.607038140296936, - "Top": 0.3460864722728729 - }, - "Polygon": [ - { - "X": 0.6070399880409241, - "Y": 0.3460864722728729 - }, - { - "X": 0.665338397026062, - "Y": 0.3461046814918518 - }, - { - "X": 0.6653367280960083, - "Y": 0.36144766211509705 - }, - { - "X": 0.607038140296936, - "Y": 0.361429363489151 - } - ] - }, - "Id": "0cbf8e40-e7e9-45a8-8953-76ca794dc6e4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f5c510a7-e5c8-4ade-a6cb-e2fcd2e760ef" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.822265625, - "RowIndex": 9, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471116632223129, - "Height": 0.01536644622683525, - "Left": 0.6653367280960083, - "Top": 0.3461046814918518 - }, - "Polygon": [ - { - "X": 0.665338397026062, - "Y": 0.3461046814918518 - }, - { - "X": 0.7400479316711426, - "Y": 0.346127986907959 - }, - { - "X": 0.7400464415550232, - "Y": 0.36147111654281616 - }, - { - "X": 0.6653367280960083, - "Y": 0.36144766211509705 - } - ] - }, - "Id": "6d1de198-d118-4b52-ba4e-eea960f4235c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "24d4f037-d783-49aa-b114-d7fb3c56376d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.67578125, - "RowIndex": 9, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0868043452501297, - "Height": 0.015370378270745277, - "Left": 0.7400464415550232, - "Top": 0.346127986907959 - }, - "Polygon": [ - { - "X": 0.7400479316711426, - "Y": 0.346127986907959 - }, - { - "X": 0.8268508315086365, - "Y": 0.3461550772190094 - }, - { - "X": 0.826849639415741, - "Y": 0.3614983558654785 - }, - { - "X": 0.7400464415550232, - "Y": 0.36147111654281616 - } - ] - }, - "Id": "10e408f6-569f-4010-a940-5bc4929cfc4d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "518106a3-b8f1-47d1-a5a8-4c5e458be998" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.869140625, - "RowIndex": 9, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354125589132309, - "Height": 0.015363235957920551, - "Left": 0.826849639415741, - "Top": 0.3461550772190094 - }, - "Polygon": [ - { - "X": 0.8268508315086365, - "Y": 0.3461550772190094 - }, - { - "X": 0.8903908729553223, - "Y": 0.3461748957633972 - }, - { - "X": 0.8903898596763611, - "Y": 0.3615182936191559 - }, - { - "X": 0.826849639415741, - "Y": 0.3614983558654785 - } - ] - }, - "Id": "afe30a4b-9988-4a9e-8dc0-ec69a433c4c8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d55832a9-3d75-4969-a6ed-f61d1e3d5fbd" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.60546875, - "RowIndex": 10, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014527440071106, - "Height": 0.0151668144389987, - "Left": 0.10558543354272842, - "Top": 0.3612719774246216 - }, - "Polygon": [ - { - "X": 0.10558857768774033, - "Y": 0.3612719774246216 - }, - { - "X": 0.607038140296936, - "Y": 0.361429363489151 - }, - { - "X": 0.6070364117622375, - "Y": 0.37643879652023315 - }, - { - "X": 0.10558543354272842, - "Y": 0.3762805163860321 - } - ] - }, - "Id": "729ee127-aee1-4130-847f-6bfdfaba31b3", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "e4769f31-0399-48c4-8c60-12572aee7c1d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.720703125, - "RowIndex": 10, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05830034986138344, - "Height": 0.01502783503383398, - "Left": 0.6070364117622375, - "Top": 0.361429363489151 - }, - "Polygon": [ - { - "X": 0.607038140296936, - "Y": 0.361429363489151 - }, - { - "X": 0.6653367280960083, - "Y": 0.36144766211509705 - }, - { - "X": 0.6653351187705994, - "Y": 0.37645721435546875 - }, - { - "X": 0.6070364117622375, - "Y": 0.37643879652023315 - } - ] - }, - "Id": "7e4d1dbe-8cdb-4e82-92a7-e03506f5bae1", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a4c3b153-b73c-4ba8-ac42-1c5fae78e03d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.919921875, - "RowIndex": 10, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471134513616562, - "Height": 0.015033119358122349, - "Left": 0.6653351187705994, - "Top": 0.36144766211509705 - }, - "Polygon": [ - { - "X": 0.6653367280960083, - "Y": 0.36144766211509705 - }, - { - "X": 0.7400464415550232, - "Y": 0.36147111654281616 - }, - { - "X": 0.7400450706481934, - "Y": 0.3764807879924774 - }, - { - "X": 0.6653351187705994, - "Y": 0.37645721435546875 - } - ] - }, - "Id": "17493e97-1e2c-4833-9d63-81c6a9d2f9db", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ee1474db-0c35-4548-8881-0ad11eab332c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.7734375, - "RowIndex": 10, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680456131696701, - "Height": 0.015037070028483868, - "Left": 0.7400450706481934, - "Top": 0.36147111654281616 - }, - "Polygon": [ - { - "X": 0.7400464415550232, - "Y": 0.36147111654281616 - }, - { - "X": 0.826849639415741, - "Y": 0.3614983558654785 - }, - { - "X": 0.8268484473228455, - "Y": 0.3765081763267517 - }, - { - "X": 0.7400450706481934, - "Y": 0.3764807879924774 - } - ] - }, - "Id": "af947c7c-a551-4b0b-9ca6-1c0989adf217", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "bf27293a-dea7-4feb-a0c6-a069da0750cc" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.966796875, - "RowIndex": 10, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354140490293503, - "Height": 0.01502988301217556, - "Left": 0.8268484473228455, - "Top": 0.3614983558654785 - }, - "Polygon": [ - { - "X": 0.826849639415741, - "Y": 0.3614983558654785 - }, - { - "X": 0.8903898596763611, - "Y": 0.3615182936191559 - }, - { - "X": 0.8903888463973999, - "Y": 0.37652823328971863 - }, - { - "X": 0.8268484473228455, - "Y": 0.3765081763267517 - } - ] - }, - "Id": "f09e5154-366a-4018-b420-d79bf1388a67", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "0dcb493a-de5f-43d8-bc9f-305e89d60352" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 97.55859375, - "RowIndex": 11, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014562010765076, - "Height": 0.025174183771014214, - "Left": 0.10558019578456879, - "Top": 0.3762805163860321 - }, - "Polygon": [ - { - "X": 0.10558543354272842, - "Y": 0.3762805163860321 - }, - { - "X": 0.6070364117622375, - "Y": 0.37643879652023315 - }, - { - "X": 0.6070334315299988, - "Y": 0.40145471692085266 - }, - { - "X": 0.10558019578456879, - "Y": 0.4012949466705322 - } - ] - }, - "Id": "03269304-6f4f-4c00-bb15-f17586ec87db", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "08d65216-f49a-4640-9150-365556319ce6", - "54f2f376-f21a-490a-97a6-bdf1051f7b0e", - "d9a21c53-fd17-435b-bc85-8d2a3f20f797", - "6cf1e9fc-2226-45a4-802d-7611840ecd4a", - "3db7756c-51a4-4bd6-a4d6-3304f07b7004", - "54895872-51d4-41f7-bcf0-719b0148a5ad", - "93820c03-3de4-42ef-ad9c-d9abd5b706ba", - "374101a0-8b28-4239-94c2-77929988192f", - "88606bf3-08e4-4b40-9b46-f7c7b82e5003", - "744fc997-45e0-4b26-a80e-27fa973cbfdc", - "b3a4fa87-aae9-43e5-9768-b9976774a250" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.52734375, - "RowIndex": 11, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.058301687240600586, - "Height": 0.025034479796886444, - "Left": 0.6070334315299988, - "Top": 0.37643879652023315 - }, - "Polygon": [ - { - "X": 0.6070364117622375, - "Y": 0.37643879652023315 - }, - { - "X": 0.6653351187705994, - "Y": 0.37645721435546875 - }, - { - "X": 0.6653324365615845, - "Y": 0.4014732837677002 - }, - { - "X": 0.6070334315299988, - "Y": 0.40145471692085266 - } - ] - }, - "Id": "90c42cfb-a086-46bc-9b57-6284b6eed2e0", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.82421875, - "RowIndex": 11, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471261918544769, - "Height": 0.025039883330464363, - "Left": 0.6653324365615845, - "Top": 0.37645721435546875 - }, - "Polygon": [ - { - "X": 0.6653351187705994, - "Y": 0.37645721435546875 - }, - { - "X": 0.7400450706481934, - "Y": 0.3764807879924774 - }, - { - "X": 0.7400427460670471, - "Y": 0.40149709582328796 - }, - { - "X": 0.6653324365615845, - "Y": 0.4014732837677002 - } - ] - }, - "Id": "da6250ef-c421-4809-a8e9-9c3a204ab76a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f0847923-1c56-4941-91aa-e95d3348f715" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.677734375, - "RowIndex": 11, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680573105812073, - "Height": 0.02504395879805088, - "Left": 0.7400427460670471, - "Top": 0.3764807879924774 - }, - "Polygon": [ - { - "X": 0.7400450706481934, - "Y": 0.3764807879924774 - }, - { - "X": 0.8268484473228455, - "Y": 0.3765081763267517 - }, - { - "X": 0.8268465399742126, - "Y": 0.40152475237846375 - }, - { - "X": 0.7400427460670471, - "Y": 0.40149709582328796 - } - ] - }, - "Id": "dd5f5915-82f7-44c0-87e8-569d24e8fa98", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5e715b61-1d0a-408d-a263-2c2db8f861de" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.87109375, - "RowIndex": 11, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354235857725143, - "Height": 0.025036806240677834, - "Left": 0.8268465399742126, - "Top": 0.3765081763267517 - }, - "Polygon": [ - { - "X": 0.8268484473228455, - "Y": 0.3765081763267517 - }, - { - "X": 0.8903888463973999, - "Y": 0.37652823328971863 - }, - { - "X": 0.890387237071991, - "Y": 0.401544988155365 - }, - { - "X": 0.8268465399742126, - "Y": 0.40152475237846375 - } - ] - }, - "Id": "aa8b129d-0f37-4b26-b92f-8571ec540f9f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "234cd9e3-104f-4fa5-9d90-b7cfaede0c40" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.62890625, - "RowIndex": 12, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014563798904419, - "Height": 0.015169426798820496, - "Left": 0.10557705163955688, - "Top": 0.4012949466705322 - }, - "Polygon": [ - { - "X": 0.10558019578456879, - "Y": 0.4012949466705322 - }, - { - "X": 0.6070334315299988, - "Y": 0.40145471692085266 - }, - { - "X": 0.6070316433906555, - "Y": 0.41646435856819153 - }, - { - "X": 0.10557705163955688, - "Y": 0.41630369424819946 - } - ] - }, - "Id": "1facc456-587a-4ca3-9998-2011fb9a3087", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "071e64e2-3bf4-40ce-a2b3-337cca5fcbb8", - "bc53d4d5-fd64-467a-a832-7374742dfd6d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 87.79296875, - "RowIndex": 12, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05830077454447746, - "Height": 0.015028332360088825, - "Left": 0.6070316433906555, - "Top": 0.40145471692085266 - }, - "Polygon": [ - { - "X": 0.6070334315299988, - "Y": 0.40145471692085266 - }, - { - "X": 0.6653324365615845, - "Y": 0.4014732837677002 - }, - { - "X": 0.6653308272361755, - "Y": 0.4164830446243286 - }, - { - "X": 0.6070316433906555, - "Y": 0.41646435856819153 - } - ] - }, - "Id": "2af75a0e-5eb6-4d17-a374-1871687d02ca", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a2c8c5e5-9264-446d-80f5-6bfc6d0b4116" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.943359375, - "RowIndex": 12, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0747118890285492, - "Height": 0.015033694915473461, - "Left": 0.6653308272361755, - "Top": 0.4014732837677002 - }, - "Polygon": [ - { - "X": 0.6653324365615845, - "Y": 0.4014732837677002 - }, - { - "X": 0.7400427460670471, - "Y": 0.40149709582328796 - }, - { - "X": 0.7400413155555725, - "Y": 0.41650697588920593 - }, - { - "X": 0.6653308272361755, - "Y": 0.4164830446243286 - } - ] - }, - "Id": "d2d5d1fa-249f-499c-b794-a7fdd07f7cf2", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "0c59b9a8-2ca4-4406-9546-ece40083d540" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.845703125, - "RowIndex": 12, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680519461631775, - "Height": 0.015037703327834606, - "Left": 0.7400413155555725, - "Top": 0.40149709582328796 - }, - "Polygon": [ - { - "X": 0.7400427460670471, - "Y": 0.40149709582328796 - }, - { - "X": 0.8268465399742126, - "Y": 0.40152475237846375 - }, - { - "X": 0.8268453478813171, - "Y": 0.41653478145599365 - }, - { - "X": 0.7400413155555725, - "Y": 0.41650697588920593 - } - ] - }, - "Id": "dc74a7f0-803c-4646-8444-9745eb68b6ff", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d58b266d-f1bf-481c-8c7c-1ceb72b67953" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.0390625, - "RowIndex": 12, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354186683893204, - "Height": 0.01503040548413992, - "Left": 0.8268453478813171, - "Top": 0.40152475237846375 - }, - "Polygon": [ - { - "X": 0.8268465399742126, - "Y": 0.40152475237846375 - }, - { - "X": 0.890387237071991, - "Y": 0.401544988155365 - }, - { - "X": 0.8903862237930298, - "Y": 0.41655516624450684 - }, - { - "X": 0.8268453478813171, - "Y": 0.41653478145599365 - } - ] - }, - "Id": "7b65548c-21da-4eea-8f37-346a4a1b4bd6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "1aa6257a-ec95-45f4-a7df-dcf8ad403308" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.41015625, - "RowIndex": 13, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014577507972717, - "Height": 0.015170405618846416, - "Left": 0.10557391494512558, - "Top": 0.41630369424819946 - }, - "Polygon": [ - { - "X": 0.10557705163955688, - "Y": 0.41630369424819946 - }, - { - "X": 0.6070316433906555, - "Y": 0.41646435856819153 - }, - { - "X": 0.607029914855957, - "Y": 0.43147408962249756 - }, - { - "X": 0.10557391494512558, - "Y": 0.43131253123283386 - } - ] - }, - "Id": "bdfef759-e8ae-4978-8ae1-80afb7538358", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "63ebbe63-52c4-41ac-abf3-0ac8332887fd", - "d55e03cd-8808-41a6-99a0-197b3bd61971" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.525390625, - "RowIndex": 13, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0583009347319603, - "Height": 0.015028518624603748, - "Left": 0.607029914855957, - "Top": 0.41646435856819153 - }, - "Polygon": [ - { - "X": 0.6070316433906555, - "Y": 0.41646435856819153 - }, - { - "X": 0.6653308272361755, - "Y": 0.4164830446243286 - }, - { - "X": 0.6653292179107666, - "Y": 0.4314928948879242 - }, - { - "X": 0.607029914855957, - "Y": 0.43147408962249756 - } - ] - }, - "Id": "061147ae-74e7-4f61-8620-1797b2771fa0", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "101d22fe-fea9-4a06-ace2-64f706aa5a21" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.724609375, - "RowIndex": 13, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471209019422531, - "Height": 0.015033910982310772, - "Left": 0.6653292179107666, - "Top": 0.4164830446243286 - }, - "Polygon": [ - { - "X": 0.6653308272361755, - "Y": 0.4164830446243286 - }, - { - "X": 0.7400413155555725, - "Y": 0.41650697588920593 - }, - { - "X": 0.7400398850440979, - "Y": 0.43151694536209106 - }, - { - "X": 0.6653292179107666, - "Y": 0.4314928948879242 - } - ] - }, - "Id": "5654a027-6585-47b8-9a6c-1dac86b60d9f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "960007b5-2361-48a1-aa1d-6a5f6426b80e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.578125, - "RowIndex": 13, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680543303489685, - "Height": 0.015037940815091133, - "Left": 0.7400398850440979, - "Top": 0.41650697588920593 - }, - "Polygon": [ - { - "X": 0.7400413155555725, - "Y": 0.41650697588920593 - }, - { - "X": 0.8268453478813171, - "Y": 0.41653478145599365 - }, - { - "X": 0.8268441557884216, - "Y": 0.4315449297428131 - }, - { - "X": 0.7400398850440979, - "Y": 0.43151694536209106 - } - ] - }, - "Id": "aca5a220-b271-497d-b0b9-0eaa50eab8d7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8e81cc23-5593-497b-a96b-344ce77ae90b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.771484375, - "RowIndex": 13, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354204565286636, - "Height": 0.015030601061880589, - "Left": 0.8268441557884216, - "Top": 0.41653478145599365 - }, - "Polygon": [ - { - "X": 0.8268453478813171, - "Y": 0.41653478145599365 - }, - { - "X": 0.8903862237930298, - "Y": 0.41655516624450684 - }, - { - "X": 0.8903852105140686, - "Y": 0.43156540393829346 - }, - { - "X": 0.8268441557884216, - "Y": 0.4315449297428131 - } - ] - }, - "Id": "f3087aee-4cf9-4056-8089-a9c58309833e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "fd2996b5-43fe-4556-81fb-8e97ad027a2d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.556640625, - "RowIndex": 14, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014591813087463, - "Height": 0.015504937618970871, - "Left": 0.10557069629430771, - "Top": 0.43131253123283386 - }, - "Polygon": [ - { - "X": 0.10557391494512558, - "Y": 0.43131253123283386 - }, - { - "X": 0.607029914855957, - "Y": 0.43147408962249756 - }, - { - "X": 0.607028067111969, - "Y": 0.44681745767593384 - }, - { - "X": 0.10557069629430771, - "Y": 0.4466549754142761 - } - ] - }, - "Id": "5327a223-9b6c-47de-a033-f2af27f81d99", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b5add48c-df3a-4ac8-b218-ec7fb5de48c3", - "8a2d55f6-5ac2-4ca3-abc1-ec7cc7eeff19", - "4cd975b7-78ba-4756-a671-09220e4ac4b9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.671875, - "RowIndex": 14, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.058301132172346115, - "Height": 0.015362259931862354, - "Left": 0.607028067111969, - "Top": 0.43147408962249756 - }, - "Polygon": [ - { - "X": 0.607029914855957, - "Y": 0.43147408962249756 - }, - { - "X": 0.6653292179107666, - "Y": 0.4314928948879242 - }, - { - "X": 0.6653276085853577, - "Y": 0.44683635234832764 - }, - { - "X": 0.607028067111969, - "Y": 0.44681745767593384 - } - ] - }, - "Id": "94d1abfe-c3dc-4156-a908-f01dbab8cccf", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.87109375, - "RowIndex": 14, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471233606338501, - "Height": 0.01536768488585949, - "Left": 0.6653276085853577, - "Top": 0.4314928948879242 - }, - "Polygon": [ - { - "X": 0.6653292179107666, - "Y": 0.4314928948879242 - }, - { - "X": 0.7400398850440979, - "Y": 0.43151694536209106 - }, - { - "X": 0.7400384545326233, - "Y": 0.44686058163642883 - }, - { - "X": 0.6653276085853577, - "Y": 0.44683635234832764 - } - ] - }, - "Id": "ae112aab-6b6a-4f5b-8eec-ce8a9992e7f4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6b7fe0ca-b462-4259-b8ee-0d793a828333" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.724609375, - "RowIndex": 14, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680570125579834, - "Height": 0.015371739864349365, - "Left": 0.7400384545326233, - "Top": 0.43151694536209106 - }, - "Polygon": [ - { - "X": 0.7400398850440979, - "Y": 0.43151694536209106 - }, - { - "X": 0.8268441557884216, - "Y": 0.4315449297428131 - }, - { - "X": 0.8268429636955261, - "Y": 0.44688868522644043 - }, - { - "X": 0.7400384545326233, - "Y": 0.44686058163642883 - } - ] - }, - "Id": "d6d3c979-9e9d-4726-a76d-a85f66b78fa3", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a11f8960-8667-45c6-ae4a-45f18b1ffb15" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.91796875, - "RowIndex": 14, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354223936796188, - "Height": 0.015364360995590687, - "Left": 0.8268429636955261, - "Top": 0.4315449297428131 - }, - "Polygon": [ - { - "X": 0.8268441557884216, - "Y": 0.4315449297428131 - }, - { - "X": 0.8903852105140686, - "Y": 0.43156540393829346 - }, - { - "X": 0.8903841972351074, - "Y": 0.4469092786312103 - }, - { - "X": 0.8268429636955261, - "Y": 0.44688868522644043 - } - ] - }, - "Id": "005d72a7-fbd2-4784-9e0e-9d1b019c23b7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4180c6da-5206-470a-9f70-d569256ece43" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.091796875, - "RowIndex": 15, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014605522155762, - "Height": 0.015172386541962624, - "Left": 0.1055675595998764, - "Top": 0.4466549754142761 - }, - "Polygon": [ - { - "X": 0.10557069629430771, - "Y": 0.4466549754142761 - }, - { - "X": 0.607028067111969, - "Y": 0.44681745767593384 - }, - { - "X": 0.6070263385772705, - "Y": 0.4618273675441742 - }, - { - "X": 0.1055675595998764, - "Y": 0.46166399121284485 - } - ] - }, - "Id": "c09f5b13-24ec-414e-9452-7d085703c9c8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "44f65fa7-024a-4652-87cf-b0e398796c5f", - "16d5bd5f-ae48-4ca0-8685-96cca0447c4e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 87.3046875, - "RowIndex": 15, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.058301255106925964, - "Height": 0.015028895810246468, - "Left": 0.6070263385772705, - "Top": 0.44681745767593384 - }, - "Polygon": [ - { - "X": 0.607028067111969, - "Y": 0.44681745767593384 - }, - { - "X": 0.6653276085853577, - "Y": 0.44683635234832764 - }, - { - "X": 0.6653259992599487, - "Y": 0.46184635162353516 - }, - { - "X": 0.6070263385772705, - "Y": 0.4618273675441742 - } - ] - }, - "Id": "b6684cdc-f505-4b35-826e-ca581f75ef95", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "346fb2d4-3b85-4849-990c-12edb3e4b423" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.455078125, - "RowIndex": 15, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471250742673874, - "Height": 0.015034347772598267, - "Left": 0.6653259992599487, - "Top": 0.44683635234832764 - }, - "Polygon": [ - { - "X": 0.6653276085853577, - "Y": 0.44683635234832764 - }, - { - "X": 0.7400384545326233, - "Y": 0.44686058163642883 - }, - { - "X": 0.7400370836257935, - "Y": 0.4618707001209259 - }, - { - "X": 0.6653259992599487, - "Y": 0.46184635162353516 - } - ] - }, - "Id": "74638dce-951e-4d1f-b75a-a6613b5ff378", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b2d2fc2a-2158-446d-8710-d647dd0d5887" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.30859375, - "RowIndex": 15, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680590987205505, - "Height": 0.015038421377539635, - "Left": 0.7400370836257935, - "Top": 0.44686058163642883 - }, - "Polygon": [ - { - "X": 0.7400384545326233, - "Y": 0.44686058163642883 - }, - { - "X": 0.8268429636955261, - "Y": 0.44688868522644043 - }, - { - "X": 0.8268418312072754, - "Y": 0.4618989825248718 - }, - { - "X": 0.7400370836257935, - "Y": 0.4618707001209259 - } - ] - }, - "Id": "0eaf44c7-1ef0-4fce-8eb7-f93becf4e1e7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2a58b9fe-aaac-45e3-aa3e-64c428c86a26" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 89.55078125, - "RowIndex": 15, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354239583015442, - "Height": 0.0150309968739748, - "Left": 0.8268418312072754, - "Top": 0.44688868522644043 - }, - "Polygon": [ - { - "X": 0.8268429636955261, - "Y": 0.44688868522644043 - }, - { - "X": 0.8903841972351074, - "Y": 0.4469092786312103 - }, - { - "X": 0.890383243560791, - "Y": 0.4619196951389313 - }, - { - "X": 0.8268418312072754, - "Y": 0.4618989825248718 - } - ] - }, - "Id": "9e7f2b29-be24-4e1a-9517-0b5ab2e2072f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "17257393-177a-4092-b408-474aed175b60" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.263671875, - "RowIndex": 16, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014619827270508, - "Height": 0.015506922267377377, - "Left": 0.10556434094905853, - "Top": 0.46166399121284485 - }, - "Polygon": [ - { - "X": 0.1055675595998764, - "Y": 0.46166399121284485 - }, - { - "X": 0.6070263385772705, - "Y": 0.4618273675441742 - }, - { - "X": 0.6070244908332825, - "Y": 0.4771709144115448 - }, - { - "X": 0.10556434094905853, - "Y": 0.47700661420822144 - } - ] - }, - "Id": "45894705-c5ae-478e-875e-c1f6ecf131d7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "dce860e8-ef52-47ba-a29f-2a71d8d8909f", - "2d9252f7-cd0f-4f23-9565-9fb7c2b75713" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.37890625, - "RowIndex": 16, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05830145627260208, - "Height": 0.015362640842795372, - "Left": 0.6070244908332825, - "Top": 0.4618273675441742 - }, - "Polygon": [ - { - "X": 0.6070263385772705, - "Y": 0.4618273675441742 - }, - { - "X": 0.6653259992599487, - "Y": 0.46184635162353516 - }, - { - "X": 0.665324330329895, - "Y": 0.4771900177001953 - }, - { - "X": 0.6070244908332825, - "Y": 0.4771709144115448 - } - ] - }, - "Id": "43dee663-bbee-4809-8b13-bf7ce02c9e10", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2acad2ca-2fac-4b74-9a30-b5538952f867" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.578125, - "RowIndex": 16, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471274584531784, - "Height": 0.015368124470114708, - "Left": 0.665324330329895, - "Top": 0.46184635162353516 - }, - "Polygon": [ - { - "X": 0.6653259992599487, - "Y": 0.46184635162353516 - }, - { - "X": 0.7400370836257935, - "Y": 0.4618707001209259 - }, - { - "X": 0.7400356531143188, - "Y": 0.4772144854068756 - }, - { - "X": 0.665324330329895, - "Y": 0.4771900177001953 - } - ] - }, - "Id": "804017f7-048c-4852-9ea3-29c44a983475", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ba24baec-d367-403b-9c87-1a3c4eed488c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.431640625, - "RowIndex": 16, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680617809295654, - "Height": 0.015372224152088165, - "Left": 0.7400356531143188, - "Top": 0.4618707001209259 - }, - "Polygon": [ - { - "X": 0.7400370836257935, - "Y": 0.4618707001209259 - }, - { - "X": 0.8268418312072754, - "Y": 0.4618989825248718 - }, - { - "X": 0.8268406391143799, - "Y": 0.47724291682243347 - }, - { - "X": 0.7400356531143188, - "Y": 0.4772144854068756 - } - ] - }, - "Id": "3f0a59cd-7858-4df3-aa33-200432586b51", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "74dc4b19-f9f9-4053-a6b1-0cb447c413f5" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.625, - "RowIndex": 16, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354259699583054, - "Height": 0.015364760532975197, - "Left": 0.8268406391143799, - "Top": 0.4618989825248718 - }, - "Polygon": [ - { - "X": 0.8268418312072754, - "Y": 0.4618989825248718 - }, - { - "X": 0.890383243560791, - "Y": 0.4619196951389313 - }, - { - "X": 0.8903822302818298, - "Y": 0.47726374864578247 - }, - { - "X": 0.8268406391143799, - "Y": 0.47724291682243347 - } - ] - }, - "Id": "2c14b7b2-1433-4a8f-a3ea-78b57c112833", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "453068b9-44b3-4a69-bbf9-125ca397e9e5" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.5078125, - "RowIndex": 17, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014632940292358, - "Height": 0.01517436746507883, - "Left": 0.10556120425462723, - "Top": 0.47700661420822144 - }, - "Polygon": [ - { - "X": 0.10556434094905853, - "Y": 0.47700661420822144 - }, - { - "X": 0.6070244908332825, - "Y": 0.4771709144115448 - }, - { - "X": 0.607022762298584, - "Y": 0.4921809732913971 - }, - { - "X": 0.10556120425462723, - "Y": 0.4920157790184021 - } - ] - }, - "Id": "6fb1bc40-1bd1-4d69-82c7-5252d0516f45", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "722e77e1-f28f-42a1-8233-7cc2b88bd56e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.623046875, - "RowIndex": 17, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05830157920718193, - "Height": 0.015029272995889187, - "Left": 0.607022762298584, - "Top": 0.4771709144115448 - }, - "Polygon": [ - { - "X": 0.6070244908332825, - "Y": 0.4771709144115448 - }, - { - "X": 0.665324330329895, - "Y": 0.4771900177001953 - }, - { - "X": 0.6653227210044861, - "Y": 0.49220019578933716 - }, - { - "X": 0.607022762298584, - "Y": 0.4921809732913971 - } - ] - }, - "Id": "448a12ff-8755-4ea5-8903-1f5caaca275c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "0360f7b2-bbfe-4038-8dc2-739c9f9d54d5" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.822265625, - "RowIndex": 17, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471292465925217, - "Height": 0.015034784562885761, - "Left": 0.6653227210044861, - "Top": 0.4771900177001953 - }, - "Polygon": [ - { - "X": 0.665324330329895, - "Y": 0.4771900177001953 - }, - { - "X": 0.7400356531143188, - "Y": 0.4772144854068756 - }, - { - "X": 0.7400342226028442, - "Y": 0.492224782705307 - }, - { - "X": 0.6653227210044861, - "Y": 0.49220019578933716 - } - ] - }, - "Id": "5a966149-830f-4a4d-9198-3214d7013762", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "513b7745-009e-4655-b5fd-21b9b0f4c3b1" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.67578125, - "RowIndex": 17, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680639415979385, - "Height": 0.015038901939988136, - "Left": 0.7400342226028442, - "Top": 0.4772144854068756 - }, - "Polygon": [ - { - "X": 0.7400356531143188, - "Y": 0.4772144854068756 - }, - { - "X": 0.8268406391143799, - "Y": 0.47724291682243347 - }, - { - "X": 0.8268394470214844, - "Y": 0.4922533929347992 - }, - { - "X": 0.7400342226028442, - "Y": 0.492224782705307 - } - ] - }, - "Id": "d505558e-ab5a-41da-a02c-c0b41dde5ac1", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "87d14b08-25ff-482b-b63c-8b7229d25a34" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.869140625, - "RowIndex": 17, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354274600744247, - "Height": 0.015031393617391586, - "Left": 0.8268394470214844, - "Top": 0.47724291682243347 - }, - "Polygon": [ - { - "X": 0.8268406391143799, - "Y": 0.47724291682243347 - }, - { - "X": 0.8903822302818298, - "Y": 0.47726374864578247 - }, - { - "X": 0.8903812170028687, - "Y": 0.49227431416511536 - }, - { - "X": 0.8268394470214844, - "Y": 0.4922533929347992 - } - ] - }, - "Id": "69902071-9cba-46fc-9b32-b00666765301", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "25c0ea8d-9613-4590-acc2-e84585b9a6fb" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.7265625, - "RowIndex": 18, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014646649360657, - "Height": 0.015175347216427326, - "Left": 0.10555806010961533, - "Top": 0.4920157790184021 - }, - "Polygon": [ - { - "X": 0.10556120425462723, - "Y": 0.4920157790184021 - }, - { - "X": 0.607022762298584, - "Y": 0.4921809732913971 - }, - { - "X": 0.6070209741592407, - "Y": 0.5071911215782166 - }, - { - "X": 0.10555806010961533, - "Y": 0.5070250034332275 - } - ] - }, - "Id": "b92bc98b-fe56-49ac-8717-d1306ddd739c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "eba00871-a716-4966-bae9-892d313cf618", - "822a5373-4823-4f26-aff6-e9f078b3f7c7", - "fa558b14-60a8-42c2-99da-a86724194cbf", - "c57a5908-2f84-49c3-801f-02a130d9ddfd", - "01358668-e051-437b-9b96-52e10aa27941", - "21be9aa3-d636-4503-9e07-b70ae9dce9ac", - "51f16976-c296-4d9b-a9ea-48062bd39ef4", - "7821683d-4ffe-4697-9777-f8dfb2b83950", - "43718f96-3ead-4df9-b86d-0db0dcaf9b64", - "def51cce-51cd-4718-a715-db8217ebba1d" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 87.890625, - "RowIndex": 18, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.058301739394664764, - "Height": 0.015029460191726685, - "Left": 0.6070209741592407, - "Top": 0.4921809732913971 - }, - "Polygon": [ - { - "X": 0.607022762298584, - "Y": 0.4921809732913971 - }, - { - "X": 0.6653227210044861, - "Y": 0.49220019578933716 - }, - { - "X": 0.6653211116790771, - "Y": 0.5072104334831238 - }, - { - "X": 0.6070209741592407, - "Y": 0.5071911215782166 - } - ] - }, - "Id": "775fa56e-db73-4a7f-9782-7d9d9b4c09f3", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.041015625, - "RowIndex": 18, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471312582492828, - "Height": 0.015034999698400497, - "Left": 0.6653211116790771, - "Top": 0.49220019578933716 - }, - "Polygon": [ - { - "X": 0.6653227210044861, - "Y": 0.49220019578933716 - }, - { - "X": 0.7400342226028442, - "Y": 0.492224782705307 - }, - { - "X": 0.7400328516960144, - "Y": 0.5072351694107056 - }, - { - "X": 0.6653211116790771, - "Y": 0.5072104334831238 - } - ] - }, - "Id": "d14f35fb-cba1-40bb-a1bf-901ea384a4a2", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6450e5e9-7ee3-4e8c-8b25-222574d68975" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.89453125, - "RowIndex": 18, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680663257837296, - "Height": 0.015039139427244663, - "Left": 0.7400328516960144, - "Top": 0.492224782705307 - }, - "Polygon": [ - { - "X": 0.7400342226028442, - "Y": 0.492224782705307 - }, - { - "X": 0.8268394470214844, - "Y": 0.4922533929347992 - }, - { - "X": 0.8268383145332336, - "Y": 0.5072639584541321 - }, - { - "X": 0.7400328516960144, - "Y": 0.5072351694107056 - } - ] - }, - "Id": "573eb96b-6fc6-420b-a75c-c776b0477e02", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "bee97080-36c5-4632-b820-38663f3c6e27" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.13671875, - "RowIndex": 18, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0635429173707962, - "Height": 0.015031589195132256, - "Left": 0.8268383145332336, - "Top": 0.4922533929347992 - }, - "Polygon": [ - { - "X": 0.8268394470214844, - "Y": 0.4922533929347992 - }, - { - "X": 0.8903812170028687, - "Y": 0.49227431416511536 - }, - { - "X": 0.8903802037239075, - "Y": 0.5072849988937378 - }, - { - "X": 0.8268383145332336, - "Y": 0.5072639584541321 - } - ] - }, - "Id": "43c76118-15c7-4653-a0b1-1e020e1ba832", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f8114c3b-60ae-428c-a397-cda6359a78b3" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.166015625, - "RowIndex": 19, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014661550521851, - "Height": 0.015509888529777527, - "Left": 0.10555484890937805, - "Top": 0.5070250034332275 - }, - "Polygon": [ - { - "X": 0.10555806010961533, - "Y": 0.5070250034332275 - }, - { - "X": 0.6070209741592407, - "Y": 0.5071911215782166 - }, - { - "X": 0.6070191860198975, - "Y": 0.5225349068641663 - }, - { - "X": 0.10555484890937805, - "Y": 0.5223678946495056 - } - ] - }, - "Id": "cb412149-1599-4db8-95f1-ee0a842be123", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "270e9c9a-fa15-4bc8-8147-f0ffe3c006e3", - "1dc567fb-b034-4e8a-bd3d-8ca44ddb5a4c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.28125, - "RowIndex": 19, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05830193683505058, - "Height": 0.015363210812211037, - "Left": 0.6070191860198975, - "Top": 0.5071911215782166 - }, - "Polygon": [ - { - "X": 0.6070209741592407, - "Y": 0.5071911215782166 - }, - { - "X": 0.6653211116790771, - "Y": 0.5072104334831238 - }, - { - "X": 0.6653194427490234, - "Y": 0.522554337978363 - }, - { - "X": 0.6070191860198975, - "Y": 0.5225349068641663 - } - ] - }, - "Id": "f9a3bd13-2d48-4808-a502-9c728aadb0e5", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "360d215f-8286-4e57-b42d-b42a980e6c64" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.48046875, - "RowIndex": 19, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471336424350739, - "Height": 0.015368782915174961, - "Left": 0.6653194427490234, - "Top": 0.5072104334831238 - }, - "Polygon": [ - { - "X": 0.6653211116790771, - "Y": 0.5072104334831238 - }, - { - "X": 0.7400328516960144, - "Y": 0.5072351694107056 - }, - { - "X": 0.740031361579895, - "Y": 0.5225791931152344 - }, - { - "X": 0.6653194427490234, - "Y": 0.522554337978363 - } - ] - }, - "Id": "0467bb3c-ff20-4c41-a690-8df5d998dbb4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "cfb50ca1-0720-423a-802d-ea1b08def361" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.333984375, - "RowIndex": 19, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680690079927444, - "Height": 0.015372947789728642, - "Left": 0.740031361579895, - "Top": 0.5072351694107056 - }, - "Polygon": [ - { - "X": 0.7400328516960144, - "Y": 0.5072351694107056 - }, - { - "X": 0.8268383145332336, - "Y": 0.5072639584541321 - }, - { - "X": 0.8268371224403381, - "Y": 0.5226081013679504 - }, - { - "X": 0.740031361579895, - "Y": 0.5225791931152344 - } - ] - }, - "Id": "489f7095-d0d7-4b09-a9f1-fe1900ea9812", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "722f2c15-e199-4364-9a9e-be0f70f0787e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.576171875, - "RowIndex": 19, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354311853647232, - "Height": 0.0153653584420681, - "Left": 0.8268371224403381, - "Top": 0.5072639584541321 - }, - "Polygon": [ - { - "X": 0.8268383145332336, - "Y": 0.5072639584541321 - }, - { - "X": 0.8903802037239075, - "Y": 0.5072849988937378 - }, - { - "X": 0.8903791904449463, - "Y": 0.5226293206214905 - }, - { - "X": 0.8268371224403381, - "Y": 0.5226081013679504 - } - ] - }, - "Id": "b40afa30-68e4-46dd-8c86-263ad0b800a6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "3631bf3c-cee1-4067-bd77-c4ac5177babf" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.166015625, - "RowIndex": 20, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014674663543701, - "Height": 0.015177328139543533, - "Left": 0.10555170476436615, - "Top": 0.5223678946495056 - }, - "Polygon": [ - { - "X": 0.10555484890937805, - "Y": 0.5223678946495056 - }, - { - "X": 0.6070191860198975, - "Y": 0.5225349068641663 - }, - { - "X": 0.6070173978805542, - "Y": 0.5375452637672424 - }, - { - "X": 0.10555170476436615, - "Y": 0.5373772978782654 - } - ] - }, - "Id": "cffad750-aa1e-4921-98aa-9c915001e7c9", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7cffa99d-73f5-4846-a34c-c2c21a150350", - "2b3e6812-fa39-4fa6-9839-203decf029e4", - "a70b5fe2-1d02-4a98-ba41-29cfb0283444" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.28125, - "RowIndex": 20, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05830206349492073, - "Height": 0.015029837377369404, - "Left": 0.6070173978805542, - "Top": 0.5225349068641663 - }, - "Polygon": [ - { - "X": 0.6070191860198975, - "Y": 0.5225349068641663 - }, - { - "X": 0.6653194427490234, - "Y": 0.522554337978363 - }, - { - "X": 0.6653178334236145, - "Y": 0.537564754486084 - }, - { - "X": 0.6070173978805542, - "Y": 0.5375452637672424 - } - ] - }, - "Id": "a899051a-57f9-4f8c-9860-5f4e2f7c4d85", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.48046875, - "RowIndex": 20, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471354305744171, - "Height": 0.015035436488687992, - "Left": 0.6653178334236145, - "Top": 0.522554337978363 - }, - "Polygon": [ - { - "X": 0.6653194427490234, - "Y": 0.522554337978363 - }, - { - "X": 0.740031361579895, - "Y": 0.5225791931152344 - }, - { - "X": 0.7400299906730652, - "Y": 0.5375897884368896 - }, - { - "X": 0.6653178334236145, - "Y": 0.537564754486084 - } - ] - }, - "Id": "b2210261-0ae9-43f2-81f1-a210ee991462", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ccae67f8-5762-405f-9fec-d195fa17c7c1" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.333984375, - "RowIndex": 20, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680710941553116, - "Height": 0.015039619989693165, - "Left": 0.7400299906730652, - "Top": 0.5225791931152344 - }, - "Polygon": [ - { - "X": 0.740031361579895, - "Y": 0.5225791931152344 - }, - { - "X": 0.8268371224403381, - "Y": 0.5226081013679504 - }, - { - "X": 0.8268359303474426, - "Y": 0.5376188158988953 - }, - { - "X": 0.7400299906730652, - "Y": 0.5375897884368896 - } - ] - }, - "Id": "2f61efdb-b607-4c12-a578-be98f0d1775d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "888960ad-3596-4299-9f24-7dfa5a2bba90" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.576171875, - "RowIndex": 20, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354327499866486, - "Height": 0.015031985938549042, - "Left": 0.8268359303474426, - "Top": 0.5226081013679504 - }, - "Polygon": [ - { - "X": 0.8268371224403381, - "Y": 0.5226081013679504 - }, - { - "X": 0.8903791904449463, - "Y": 0.5226293206214905 - }, - { - "X": 0.8903782367706299, - "Y": 0.5376400947570801 - }, - { - "X": 0.8268359303474426, - "Y": 0.5376188158988953 - } - ] - }, - "Id": "34ff5f2b-9c84-407b-b16b-80a1cbb10998", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b9922aa0-dcec-4d6a-a866-9e7460072297" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.5078125, - "RowIndex": 21, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014688372612, - "Height": 0.015178307890892029, - "Left": 0.10554856061935425, - "Top": 0.5373772978782654 - }, - "Polygon": [ - { - "X": 0.10555170476436615, - "Y": 0.5373772978782654 - }, - { - "X": 0.6070173978805542, - "Y": 0.5375452637672424 - }, - { - "X": 0.6070156097412109, - "Y": 0.5525556206703186 - }, - { - "X": 0.10554856061935425, - "Y": 0.5523868203163147 - } - ] - }, - "Id": "3a19899f-5b34-4210-9963-a5087f48422b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7603e8bd-11fa-43c8-b79f-9f5e4576b14a", - "57adb560-6a5c-4c02-b694-775878b677dd" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.623046875, - "RowIndex": 21, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.058302223682403564, - "Height": 0.015030023641884327, - "Left": 0.6070156097412109, - "Top": 0.5375452637672424 - }, - "Polygon": [ - { - "X": 0.6070173978805542, - "Y": 0.5375452637672424 - }, - { - "X": 0.6653178334236145, - "Y": 0.537564754486084 - }, - { - "X": 0.6653162240982056, - "Y": 0.5525752305984497 - }, - { - "X": 0.6070156097412109, - "Y": 0.5525556206703186 - } - ] - }, - "Id": "e1db90b1-c889-44cc-8ffa-eb922819e49b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f1377d78-9f2d-47b8-9ccc-95207a41d1b3" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.822265625, - "RowIndex": 21, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471374422311783, - "Height": 0.015035652555525303, - "Left": 0.6653162240982056, - "Top": 0.537564754486084 - }, - "Polygon": [ - { - "X": 0.6653178334236145, - "Y": 0.537564754486084 - }, - { - "X": 0.7400299906730652, - "Y": 0.5375897884368896 - }, - { - "X": 0.7400285601615906, - "Y": 0.5526003837585449 - }, - { - "X": 0.6653162240982056, - "Y": 0.5525752305984497 - } - ] - }, - "Id": "f48f72c3-f26d-43e2-8c06-0d673f53ff07", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f26d985e-e8ed-4417-89a8-452e2059bbc6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.67578125, - "RowIndex": 21, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680734783411026, - "Height": 0.015039857476949692, - "Left": 0.7400285601615906, - "Top": 0.5375897884368896 - }, - "Polygon": [ - { - "X": 0.7400299906730652, - "Y": 0.5375897884368896 - }, - { - "X": 0.8268359303474426, - "Y": 0.5376188158988953 - }, - { - "X": 0.8268347382545471, - "Y": 0.5526296496391296 - }, - { - "X": 0.7400285601615906, - "Y": 0.5526003837585449 - } - ] - }, - "Id": "47699170-1bad-4a93-8ab3-ff03fcf9da2b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "3c5d00d8-b7df-417d-97af-8efdbac55bc2" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.869140625, - "RowIndex": 21, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354344636201859, - "Height": 0.015032181516289711, - "Left": 0.8268347382545471, - "Top": 0.5376188158988953 - }, - "Polygon": [ - { - "X": 0.8268359303474426, - "Y": 0.5376188158988953 - }, - { - "X": 0.8903782367706299, - "Y": 0.5376400947570801 - }, - { - "X": 0.8903772234916687, - "Y": 0.552651047706604 - }, - { - "X": 0.8268347382545471, - "Y": 0.5526296496391296 - } - ] - }, - "Id": "47c09d2e-4448-4064-b4c7-b5a29ff3e20a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b333b460-d8b0-40de-b187-012c71d036c4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.068359375, - "RowIndex": 22, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014703273773193, - "Height": 0.01584642194211483, - "Left": 0.105545274913311, - "Top": 0.5523868203163147 - }, - "Polygon": [ - { - "X": 0.10554856061935425, - "Y": 0.5523868203163147 - }, - { - "X": 0.6070156097412109, - "Y": 0.5525556206703186 - }, - { - "X": 0.6070137619972229, - "Y": 0.5682332515716553 - }, - { - "X": 0.105545274913311, - "Y": 0.568063497543335 - } - ] - }, - "Id": "4bd51eac-0dee-4810-812e-11c8f260823a", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6b7bd945-b4ca-4ea2-84bc-be75b5dc0f6a", - "0218ebec-702d-4f81-bf85-77964c9c7ad6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.232421875, - "RowIndex": 22, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.058302462100982666, - "Height": 0.01569734886288643, - "Left": 0.6070137619972229, - "Top": 0.5525556206703186 - }, - "Polygon": [ - { - "X": 0.6070156097412109, - "Y": 0.5525556206703186 - }, - { - "X": 0.6653162240982056, - "Y": 0.5525752305984497 - }, - { - "X": 0.6653145551681519, - "Y": 0.5682529807090759 - }, - { - "X": 0.6070137619972229, - "Y": 0.5682332515716553 - } - ] - }, - "Id": "c2fce6f8-d1d9-4c33-8974-3f87a0b61966", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "80dca8de-4e14-4c53-94bd-4a312c7fb617" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.3828125, - "RowIndex": 22, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471401989459991, - "Height": 0.01570301316678524, - "Left": 0.6653145551681519, - "Top": 0.5525752305984497 - }, - "Polygon": [ - { - "X": 0.6653162240982056, - "Y": 0.5525752305984497 - }, - { - "X": 0.7400285601615906, - "Y": 0.5526003837585449 - }, - { - "X": 0.740027129650116, - "Y": 0.5682782530784607 - }, - { - "X": 0.6653145551681519, - "Y": 0.5682529807090759 - } - ] - }, - "Id": "524e2a56-05aa-4d13-803b-329076cadf02", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8618f54a-f685-4e4f-980e-d198945c7e63" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.236328125, - "RowIndex": 22, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680764585733414, - "Height": 0.015707246959209442, - "Left": 0.740027129650116, - "Top": 0.5526003837585449 - }, - "Polygon": [ - { - "X": 0.7400285601615906, - "Y": 0.5526003837585449 - }, - { - "X": 0.8268347382545471, - "Y": 0.5526296496391296 - }, - { - "X": 0.8268335461616516, - "Y": 0.568307638168335 - }, - { - "X": 0.740027129650116, - "Y": 0.5682782530784607 - } - ] - }, - "Id": "b3d5d8ad-08e2-44bc-84ec-5755508952b0", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7be3cc14-5dc2-4cfb-93ce-eefa2b3b3295" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.478515625, - "RowIndex": 22, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354366987943649, - "Height": 0.015699533745646477, - "Left": 0.8268335461616516, - "Top": 0.5526296496391296 - }, - "Polygon": [ - { - "X": 0.8268347382545471, - "Y": 0.5526296496391296 - }, - { - "X": 0.8903772234916687, - "Y": 0.552651047706604 - }, - { - "X": 0.8903761506080627, - "Y": 0.5683291554450989 - }, - { - "X": 0.8268335461616516, - "Y": 0.568307638168335 - } - ] - }, - "Id": "36a0e25d-07d4-4ac9-8df2-10aad978209d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a885111d-fb67-48f4-9556-68a2deeab242" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.703125, - "RowIndex": 23, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014716386795044, - "Height": 0.015180311165750027, - "Left": 0.1055421307682991, - "Top": 0.568063497543335 - }, - "Polygon": [ - { - "X": 0.105545274913311, - "Y": 0.568063497543335 - }, - { - "X": 0.6070137619972229, - "Y": 0.5682332515716553 - }, - { - "X": 0.6070120334625244, - "Y": 0.5832437872886658 - }, - { - "X": 0.1055421307682991, - "Y": 0.5830731987953186 - } - ] - }, - "Id": "a2cbb76d-b3f4-46cb-b371-a3e9eb57aebe", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c68467cb-e2df-436e-97a5-ce583c66b56d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.76953125, - "RowIndex": 23, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05830254778265953, - "Height": 0.01503040548413992, - "Left": 0.6070120334625244, - "Top": 0.5682332515716553 - }, - "Polygon": [ - { - "X": 0.6070137619972229, - "Y": 0.5682332515716553 - }, - { - "X": 0.6653145551681519, - "Y": 0.5682529807090759 - }, - { - "X": 0.6653129458427429, - "Y": 0.583263635635376 - }, - { - "X": 0.6070120334625244, - "Y": 0.5832437872886658 - } - ] - }, - "Id": "a474128b-b3a5-40f4-834e-60fe2d85454e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "1a5c4249-741f-434a-bbbe-3d190ea13796" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.017578125, - "RowIndex": 23, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471416145563126, - "Height": 0.01503609400242567, - "Left": 0.6653129458427429, - "Top": 0.5682529807090759 - }, - "Polygon": [ - { - "X": 0.6653145551681519, - "Y": 0.5682529807090759 - }, - { - "X": 0.740027129650116, - "Y": 0.5682782530784607 - }, - { - "X": 0.7400256991386414, - "Y": 0.5832890868186951 - }, - { - "X": 0.6653129458427429, - "Y": 0.583263635635376 - } - ] - }, - "Id": "e1c3b8fc-0567-497a-97d8-54c6665cdea8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "e9299d91-6aa7-42fb-b178-5292485aa1c8" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.87109375, - "RowIndex": 23, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680783212184906, - "Height": 0.015040343627333641, - "Left": 0.7400256991386414, - "Top": 0.5682782530784607 - }, - "Polygon": [ - { - "X": 0.740027129650116, - "Y": 0.5682782530784607 - }, - { - "X": 0.8268335461616516, - "Y": 0.568307638168335 - }, - { - "X": 0.8268323540687561, - "Y": 0.5833185911178589 - }, - { - "X": 0.7400256991386414, - "Y": 0.5832890868186951 - } - ] - }, - "Id": "0cc0cff0-8600-472b-a24e-4ddbfbbc78b4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "762f8d17-cc7a-4d23-a208-ea08c852a9fd" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.064453125, - "RowIndex": 23, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354380398988724, - "Height": 0.015032581984996796, - "Left": 0.8268323540687561, - "Top": 0.568307638168335 - }, - "Polygon": [ - { - "X": 0.8268335461616516, - "Y": 0.568307638168335 - }, - { - "X": 0.8903761506080627, - "Y": 0.5683291554450989 - }, - { - "X": 0.8903751969337463, - "Y": 0.5833402276039124 - }, - { - "X": 0.8268323540687561, - "Y": 0.5833185911178589 - } - ] - }, - "Id": "3f9ae7a3-97cf-4f5b-9512-078817b675d0", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ff5338eb-30f7-4678-9b7e-081dddc9a8a0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 93.9453125, - "RowIndex": 24, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014730095863342, - "Height": 0.015181289985775948, - "Left": 0.1055389940738678, - "Top": 0.5830731987953186 - }, - "Polygon": [ - { - "X": 0.1055421307682991, - "Y": 0.5830731987953186 - }, - { - "X": 0.6070120334625244, - "Y": 0.5832437872886658 - }, - { - "X": 0.6070102453231812, - "Y": 0.5982544422149658 - }, - { - "X": 0.1055389940738678, - "Y": 0.5980829000473022 - } - ] - }, - "Id": "995e31da-36c9-468f-85cb-2e24ac25b582", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7c8561a5-dabe-4c1f-97f2-18262d13affd", - "74034be8-76b0-430b-a2ce-5e4e6d0206c2", - "cd8ae1f7-b25e-45e5-b062-cee0fa14405a", - "7f562b8f-dd99-46c6-bab6-fb582e56789a", - "1e60fdf6-7cf2-4db1-a614-9ad541592ea1", - "a9928d9d-367f-414b-afee-acc4c930fa59", - "66e84204-393e-40ea-8b08-8516276c81fc", - "6d75f9fe-7e9f-4941-9b7a-7e8e4dc8007d", - "45647270-1f22-4670-a1eb-0584e0de3661" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 87.158203125, - "RowIndex": 24, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.058302707970142365, - "Height": 0.015030591748654842, - "Left": 0.6070102453231812, - "Top": 0.5832437872886658 - }, - "Polygon": [ - { - "X": 0.6070120334625244, - "Y": 0.5832437872886658 - }, - { - "X": 0.6653129458427429, - "Y": 0.583263635635376 - }, - { - "X": 0.665311336517334, - "Y": 0.5982744097709656 - }, - { - "X": 0.6070102453231812, - "Y": 0.5982544422149658 - } - ] - }, - "Id": "4b20e18b-88bd-44da-b70b-2037826080fc", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.30859375, - "RowIndex": 24, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471437007188797, - "Height": 0.015036310069262981, - "Left": 0.665311336517334, - "Top": 0.583263635635376 - }, - "Polygon": [ - { - "X": 0.6653129458427429, - "Y": 0.583263635635376 - }, - { - "X": 0.7400256991386414, - "Y": 0.5832890868186951 - }, - { - "X": 0.7400243282318115, - "Y": 0.5982999801635742 - }, - { - "X": 0.665311336517334, - "Y": 0.5982744097709656 - } - ] - }, - "Id": "04b2b0f1-3d06-469b-8adc-61baf02b0d30", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "90e04356-f4d5-4ecd-b534-6c37bbf8999b" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.162109375, - "RowIndex": 24, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680807054042816, - "Height": 0.015040581114590168, - "Left": 0.7400243282318115, - "Top": 0.5832890868186951 - }, - "Polygon": [ - { - "X": 0.7400256991386414, - "Y": 0.5832890868186951 - }, - { - "X": 0.8268323540687561, - "Y": 0.5833185911178589 - }, - { - "X": 0.8268312215805054, - "Y": 0.5983296632766724 - }, - { - "X": 0.7400243282318115, - "Y": 0.5982999801635742 - } - ] - }, - "Id": "fce968c2-fc41-4230-94d8-7afa72d05f53", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6cfe220a-cee6-4bc0-90de-405df52798a6" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 89.404296875, - "RowIndex": 24, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354397535324097, - "Height": 0.01503277849406004, - "Left": 0.8268312215805054, - "Top": 0.5833185911178589 - }, - "Polygon": [ - { - "X": 0.8268323540687561, - "Y": 0.5833185911178589 - }, - { - "X": 0.8903751969337463, - "Y": 0.5833402276039124 - }, - { - "X": 0.8903741836547852, - "Y": 0.5983514189720154 - }, - { - "X": 0.8268312215805054, - "Y": 0.5983296632766724 - } - ] - }, - "Id": "e3710a14-35db-4695-b6c9-2f1610e21961", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "55128237-7a49-4954-970f-c203f93a1e49" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.60546875, - "RowIndex": 25, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014743804931641, - "Height": 0.015182269737124443, - "Left": 0.1055358499288559, - "Top": 0.5980829000473022 - }, - "Polygon": [ - { - "X": 0.1055389940738678, - "Y": 0.5980829000473022 - }, - { - "X": 0.6070102453231812, - "Y": 0.5982544422149658 - }, - { - "X": 0.6070084571838379, - "Y": 0.6132652163505554 - }, - { - "X": 0.1055358499288559, - "Y": 0.6130927801132202 - } - ] - }, - "Id": "add983af-65c6-437e-965f-34de9302790d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "cd6c75f5-8671-4570-8b17-d2ccaa012407", - "00cf5e64-7385-473b-8131-8a6fc8bdb9a4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.720703125, - "RowIndex": 25, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0583028681576252, - "Height": 0.015030778013169765, - "Left": 0.6070084571838379, - "Top": 0.5982544422149658 - }, - "Polygon": [ - { - "X": 0.6070102453231812, - "Y": 0.5982544422149658 - }, - { - "X": 0.665311336517334, - "Y": 0.5982744097709656 - }, - { - "X": 0.665309727191925, - "Y": 0.6132852435112 - }, - { - "X": 0.6070084571838379, - "Y": 0.6132652163505554 - } - ] - }, - "Id": "f464f9ee-dfc3-42c5-a062-5c80d784fd19", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "39a3ea94-e02a-448c-99dc-5a81b4063c6e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.919921875, - "RowIndex": 25, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471457123756409, - "Height": 0.015036526136100292, - "Left": 0.665309727191925, - "Top": 0.5982744097709656 - }, - "Polygon": [ - { - "X": 0.665311336517334, - "Y": 0.5982744097709656 - }, - { - "X": 0.7400243282318115, - "Y": 0.5982999801635742 - }, - { - "X": 0.7400228977203369, - "Y": 0.6133109331130981 - }, - { - "X": 0.665309727191925, - "Y": 0.6132852435112 - } - ] - }, - "Id": "84d3b8e1-b428-48af-9574-37d6f3bf1734", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "14d30b92-666b-492f-87bf-99d98c15aaf6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.7734375, - "RowIndex": 25, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680830895900726, - "Height": 0.015040818601846695, - "Left": 0.7400228977203369, - "Top": 0.5982999801635742 - }, - "Polygon": [ - { - "X": 0.7400243282318115, - "Y": 0.5982999801635742 - }, - { - "X": 0.8268312215805054, - "Y": 0.5983296632766724 - }, - { - "X": 0.8268300294876099, - "Y": 0.6133407950401306 - }, - { - "X": 0.7400228977203369, - "Y": 0.6133109331130981 - } - ] - }, - "Id": "68fe492d-5db0-4893-af75-93574d913440", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "86eeeab8-5f08-4ef9-b4ec-7a9b96bab8f9" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.966796875, - "RowIndex": 25, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354415416717529, - "Height": 0.015032974071800709, - "Left": 0.8268300294876099, - "Top": 0.5983296632766724 - }, - "Polygon": [ - { - "X": 0.8268312215805054, - "Y": 0.5983296632766724 - }, - { - "X": 0.8903741836547852, - "Y": 0.5983514189720154 - }, - { - "X": 0.890373170375824, - "Y": 0.6133626103401184 - }, - { - "X": 0.8268300294876099, - "Y": 0.6133407950401306 - } - ] - }, - "Id": "be1f2757-5d10-4baa-ad3a-5f66e935ffbc", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "aba26bd5-bb67-47b4-8196-6b0995c2ab85" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.3359375, - "RowIndex": 26, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014758110046387, - "Height": 0.015516824088990688, - "Left": 0.10553263872861862, - "Top": 0.6130927801132202 - }, - "Polygon": [ - { - "X": 0.1055358499288559, - "Y": 0.6130927801132202 - }, - { - "X": 0.6070084571838379, - "Y": 0.6132652163505554 - }, - { - "X": 0.6070066690444946, - "Y": 0.6286095976829529 - }, - { - "X": 0.10553263872861862, - "Y": 0.6284362077713013 - } - ] - }, - "Id": "b0013015-d4cd-4d40-8602-361d1792b6a2", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "243b806b-695c-42df-bedf-873fad347c54", - "04abc43e-9b35-4ffc-b365-3efc22944be6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 87.548828125, - "RowIndex": 26, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05830306559801102, - "Height": 0.015364541672170162, - "Left": 0.6070066690444946, - "Top": 0.6132652163505554 - }, - "Polygon": [ - { - "X": 0.6070084571838379, - "Y": 0.6132652163505554 - }, - { - "X": 0.665309727191925, - "Y": 0.6132852435112 - }, - { - "X": 0.6653080582618713, - "Y": 0.628629744052887 - }, - { - "X": 0.6070066690444946, - "Y": 0.6286095976829529 - } - ] - }, - "Id": "62760de5-71eb-4acf-a246-b3d820155fa4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "66472a94-fee6-4b4c-b9b3-50afd32f35fa" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.69921875, - "RowIndex": 26, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471480965614319, - "Height": 0.015370321460068226, - "Left": 0.6653080582618713, - "Top": 0.6132852435112 - }, - "Polygon": [ - { - "X": 0.665309727191925, - "Y": 0.6132852435112 - }, - { - "X": 0.7400228977203369, - "Y": 0.6133109331130981 - }, - { - "X": 0.7400214672088623, - "Y": 0.6286555528640747 - }, - { - "X": 0.6653080582618713, - "Y": 0.628629744052887 - } - ] - }, - "Id": "37630c83-8d2d-4ed5-a22b-23e982677525", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "dfc710a1-a60d-49c1-818c-63ef5e2274d1" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.552734375, - "RowIndex": 26, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680857717990875, - "Height": 0.015374639071524143, - "Left": 0.7400214672088623, - "Top": 0.6133109331130981 - }, - "Polygon": [ - { - "X": 0.7400228977203369, - "Y": 0.6133109331130981 - }, - { - "X": 0.8268300294876099, - "Y": 0.6133407950401306 - }, - { - "X": 0.8268288373947144, - "Y": 0.6286855936050415 - }, - { - "X": 0.7400214672088623, - "Y": 0.6286555528640747 - } - ] - }, - "Id": "9697e6ee-55b3-41c7-890c-16aa261a2ac5", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "65bc22b6-286d-41ef-9e79-c5679d5ea3ce" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 89.794921875, - "RowIndex": 26, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354434788227081, - "Height": 0.015366756357252598, - "Left": 0.8268288373947144, - "Top": 0.6133407950401306 - }, - "Polygon": [ - { - "X": 0.8268300294876099, - "Y": 0.6133407950401306 - }, - { - "X": 0.890373170375824, - "Y": 0.6133626103401184 - }, - { - "X": 0.8903721570968628, - "Y": 0.6287075281143188 - }, - { - "X": 0.8268288373947144, - "Y": 0.6286855936050415 - } - ] - }, - "Id": "157d136b-21b8-40b7-b91f-42ac44d388e9", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6c282055-5dc8-401e-8b0b-05ec5992de73" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.3359375, - "RowIndex": 27, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014771819114685, - "Height": 0.015184251591563225, - "Left": 0.10552949458360672, - "Top": 0.6284362077713013 - }, - "Polygon": [ - { - "X": 0.10553263872861862, - "Y": 0.6284362077713013 - }, - { - "X": 0.6070066690444946, - "Y": 0.6286095976829529 - }, - { - "X": 0.6070048809051514, - "Y": 0.643620491027832 - }, - { - "X": 0.10552949458360672, - "Y": 0.6434462070465088 - } - ] - }, - "Id": "605622bb-68af-44d7-94c4-aef9133af639", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "946b0a1d-f726-4bc1-87ea-4705c39eb756", - "1289d7e3-c4ff-4189-9b5e-694acf30a561", - "df7d7cae-419c-41ca-97c5-a2e7a40080c3" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 87.548828125, - "RowIndex": 27, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.058303192257881165, - "Height": 0.015031155198812485, - "Left": 0.6070048809051514, - "Top": 0.6286095976829529 - }, - "Polygon": [ - { - "X": 0.6070066690444946, - "Y": 0.6286095976829529 - }, - { - "X": 0.6653080582618713, - "Y": 0.628629744052887 - }, - { - "X": 0.6653064489364624, - "Y": 0.6436407566070557 - }, - { - "X": 0.6070048809051514, - "Y": 0.643620491027832 - } - ] - }, - "Id": "66ceecda-3697-4369-a7d3-70bc003dbe76", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.69921875, - "RowIndex": 27, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471498847007751, - "Height": 0.015036962926387787, - "Left": 0.6653064489364624, - "Top": 0.628629744052887 - }, - "Polygon": [ - { - "X": 0.6653080582618713, - "Y": 0.628629744052887 - }, - { - "X": 0.7400214672088623, - "Y": 0.6286555528640747 - }, - { - "X": 0.7400200366973877, - "Y": 0.643666684627533 - }, - { - "X": 0.6653064489364624, - "Y": 0.6436407566070557 - } - ] - }, - "Id": "b4879660-b17d-4350-9c34-7fa60c44d262", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "35b5889e-b223-4c01-9c7a-b17d390a84bf" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.552734375, - "RowIndex": 27, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680879324674606, - "Height": 0.015041299164295197, - "Left": 0.7400200366973877, - "Top": 0.6286555528640747 - }, - "Polygon": [ - { - "X": 0.7400214672088623, - "Y": 0.6286555528640747 - }, - { - "X": 0.8268288373947144, - "Y": 0.6286855936050415 - }, - { - "X": 0.8268277049064636, - "Y": 0.6436968445777893 - }, - { - "X": 0.7400200366973877, - "Y": 0.643666684627533 - } - ] - }, - "Id": "1f91942e-8420-42cd-ab25-3239e2056e6f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "abbfcb54-10de-4c43-b588-eb61416878a0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 89.794921875, - "RowIndex": 27, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354450434446335, - "Height": 0.015033370815217495, - "Left": 0.8268277049064636, - "Top": 0.6286855936050415 - }, - "Polygon": [ - { - "X": 0.8268288373947144, - "Y": 0.6286855936050415 - }, - { - "X": 0.8903721570968628, - "Y": 0.6287075281143188 - }, - { - "X": 0.8903712034225464, - "Y": 0.643718957901001 - }, - { - "X": 0.8268277049064636, - "Y": 0.6436968445777893 - } - ] - }, - "Id": "9c7d94c0-79ca-4701-877a-b5390ac8ce9c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6e232efb-c030-4e8c-a88b-5dc543ac8b87" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.1171875, - "RowIndex": 28, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014785528182983, - "Height": 0.01518523134291172, - "Left": 0.10552635043859482, - "Top": 0.6434462070465088 - }, - "Polygon": [ - { - "X": 0.10552949458360672, - "Y": 0.6434462070465088 - }, - { - "X": 0.6070048809051514, - "Y": 0.643620491027832 - }, - { - "X": 0.6070031523704529, - "Y": 0.658631443977356 - }, - { - "X": 0.10552635043859482, - "Y": 0.6584563255310059 - } - ] - }, - "Id": "33777b59-5d90-498e-8f56-e3527141959c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "aabca007-e3e2-44b8-8edb-af4b52c39c7b", - "ef23ae0a-6a4e-4dcc-ae39-d37016e73462" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.232421875, - "RowIndex": 28, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.058303352445364, - "Height": 0.015031342394649982, - "Left": 0.6070031523704529, - "Top": 0.643620491027832 - }, - "Polygon": [ - { - "X": 0.6070048809051514, - "Y": 0.643620491027832 - }, - { - "X": 0.6653064489364624, - "Y": 0.6436407566070557 - }, - { - "X": 0.6653048396110535, - "Y": 0.6586518287658691 - }, - { - "X": 0.6070031523704529, - "Y": 0.658631443977356 - } - ] - }, - "Id": "2f9fd3c3-5014-43df-a6e3-dedcd7620391", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "31fc9295-23a8-40ae-89f3-3f986881f28f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.431640625, - "RowIndex": 28, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471518963575363, - "Height": 0.015037178993225098, - "Left": 0.6653048396110535, - "Top": 0.6436407566070557 - }, - "Polygon": [ - { - "X": 0.6653064489364624, - "Y": 0.6436407566070557 - }, - { - "X": 0.7400200366973877, - "Y": 0.643666684627533 - }, - { - "X": 0.7400186657905579, - "Y": 0.6586779356002808 - }, - { - "X": 0.6653048396110535, - "Y": 0.6586518287658691 - } - ] - }, - "Id": "b41bf862-4dac-4ba3-a680-65d80b917313", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8434297f-eb4e-4b98-aa8f-16695dc0610a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.28515625, - "RowIndex": 28, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680903166532516, - "Height": 0.015041536651551723, - "Left": 0.7400186657905579, - "Top": 0.643666684627533 - }, - "Polygon": [ - { - "X": 0.7400200366973877, - "Y": 0.643666684627533 - }, - { - "X": 0.8268277049064636, - "Y": 0.6436968445777893 - }, - { - "X": 0.8268265128135681, - "Y": 0.6587082147598267 - }, - { - "X": 0.7400186657905579, - "Y": 0.6586779356002808 - } - ] - }, - "Id": "109759cd-b263-4f33-8866-875b97121a4b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "e2a68384-4279-4d5e-9755-d5f8a27efe5a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.52734375, - "RowIndex": 28, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354467570781708, - "Height": 0.015033566392958164, - "Left": 0.8268265128135681, - "Top": 0.6436968445777893 - }, - "Polygon": [ - { - "X": 0.8268277049064636, - "Y": 0.6436968445777893 - }, - { - "X": 0.8903712034225464, - "Y": 0.643718957901001 - }, - { - "X": 0.8903701901435852, - "Y": 0.6587304472923279 - }, - { - "X": 0.8268265128135681, - "Y": 0.6587082147598267 - } - ] - }, - "Id": "5cec506e-e326-444d-81c4-f2ca6e3cdc7f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "679840b4-f7b2-4906-a4ab-ff56bb2c8905" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.580078125, - "RowIndex": 29, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.501479983329773, - "Height": 0.015519790351390839, - "Left": 0.10552313923835754, - "Top": 0.6584563255310059 - }, - "Polygon": [ - { - "X": 0.10552635043859482, - "Y": 0.6584563255310059 - }, - { - "X": 0.6070031523704529, - "Y": 0.658631443977356 - }, - { - "X": 0.6070013046264648, - "Y": 0.6739761233329773 - }, - { - "X": 0.10552313923835754, - "Y": 0.6738000512123108 - } - ] - }, - "Id": "81b9a780-9bdc-4840-a686-cd8abe8156a4", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5f7cbbcf-1975-4454-9391-1622baf9fb1a", - "ecb37291-9fa6-4b44-99de-85d9872902c4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 87.744140625, - "RowIndex": 29, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05830354988574982, - "Height": 0.015365111641585827, - "Left": 0.6070013046264648, - "Top": 0.658631443977356 - }, - "Polygon": [ - { - "X": 0.6070031523704529, - "Y": 0.658631443977356 - }, - { - "X": 0.6653048396110535, - "Y": 0.6586518287658691 - }, - { - "X": 0.6653032302856445, - "Y": 0.6739965677261353 - }, - { - "X": 0.6070013046264648, - "Y": 0.6739761233329773 - } - ] - }, - "Id": "cb97a620-adb1-4e18-a5ff-bd17037fdba6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5dd3e2b7-101d-4394-9ab2-1b77b632e72a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.89453125, - "RowIndex": 29, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471542805433273, - "Height": 0.015370979905128479, - "Left": 0.6653032302856445, - "Top": 0.6586518287658691 - }, - "Polygon": [ - { - "X": 0.6653048396110535, - "Y": 0.6586518287658691 - }, - { - "X": 0.7400186657905579, - "Y": 0.6586779356002808 - }, - { - "X": 0.7400172352790833, - "Y": 0.6740227937698364 - }, - { - "X": 0.6653032302856445, - "Y": 0.6739965677261353 - } - ] - }, - "Id": "6cd137f8-c730-4be9-b603-bbb8f098888d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "852da136-8038-4284-b4d9-272bea327409" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.796875, - "RowIndex": 29, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680929988622665, - "Height": 0.01537536270916462, - "Left": 0.7400172352790833, - "Top": 0.6586779356002808 - }, - "Polygon": [ - { - "X": 0.7400186657905579, - "Y": 0.6586779356002808 - }, - { - "X": 0.8268265128135681, - "Y": 0.6587082147598267 - }, - { - "X": 0.8268253207206726, - "Y": 0.6740532517433167 - }, - { - "X": 0.7400172352790833, - "Y": 0.6740227937698364 - } - ] - }, - "Id": "75e6ba83-3e70-4cea-8d52-f546d87af77b", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "6efe996d-ded1-4039-8bfa-21fea8cee9e0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 89.990234375, - "RowIndex": 29, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0635448768734932, - "Height": 0.015367353335022926, - "Left": 0.8268253207206726, - "Top": 0.6587082147598267 - }, - "Polygon": [ - { - "X": 0.8268265128135681, - "Y": 0.6587082147598267 - }, - { - "X": 0.8903701901435852, - "Y": 0.6587304472923279 - }, - { - "X": 0.890369176864624, - "Y": 0.6740756034851074 - }, - { - "X": 0.8268253207206726, - "Y": 0.6740532517433167 - } - ] - }, - "Id": "a93d3f82-1784-4117-92d1-539aba7eedff", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b25028d6-bf12-4bec-b8a5-97034803e809" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.1171875, - "RowIndex": 30, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.501481294631958, - "Height": 0.015187212266027927, - "Left": 0.10551999509334564, - "Top": 0.6738000512123108 - }, - "Polygon": [ - { - "X": 0.10552313923835754, - "Y": 0.6738000512123108 - }, - { - "X": 0.6070013046264648, - "Y": 0.6739761233329773 - }, - { - "X": 0.6069995760917664, - "Y": 0.6889872550964355 - }, - { - "X": 0.10551999509334564, - "Y": 0.6888102889060974 - } - ] - }, - "Id": "409e7f6e-e180-4692-afcb-201047fc92b9", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "53f6c92b-93e7-4dbe-93ac-9089fe2942c7" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.232421875, - "RowIndex": 30, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.058303672820329666, - "Height": 0.015031719580292702, - "Left": 0.6069995760917664, - "Top": 0.6739761233329773 - }, - "Polygon": [ - { - "X": 0.6070013046264648, - "Y": 0.6739761233329773 - }, - { - "X": 0.6653032302856445, - "Y": 0.6739965677261353 - }, - { - "X": 0.6653016209602356, - "Y": 0.6890078186988831 - }, - { - "X": 0.6069995760917664, - "Y": 0.6889872550964355 - } - ] - }, - "Id": "27a84197-b53d-4123-aa2d-54ad81d30956", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "991fe477-e64c-4c10-886b-4223cc42a5e2" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.431640625, - "RowIndex": 30, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471560686826706, - "Height": 0.015037615783512592, - "Left": 0.6653016209602356, - "Top": 0.6739965677261353 - }, - "Polygon": [ - { - "X": 0.6653032302856445, - "Y": 0.6739965677261353 - }, - { - "X": 0.7400172352790833, - "Y": 0.6740227937698364 - }, - { - "X": 0.7400158047676086, - "Y": 0.6890341639518738 - }, - { - "X": 0.6653016209602356, - "Y": 0.6890078186988831 - } - ] - }, - "Id": "62e0aca1-f0d2-442c-a5c3-b29cc9d06252", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "54ffef28-39ce-4940-8812-6c518953082d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.28515625, - "RowIndex": 30, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680950850248337, - "Height": 0.015042017214000225, - "Left": 0.7400158047676086, - "Top": 0.6740227937698364 - }, - "Polygon": [ - { - "X": 0.7400172352790833, - "Y": 0.6740227937698364 - }, - { - "X": 0.8268253207206726, - "Y": 0.6740532517433167 - }, - { - "X": 0.8268241286277771, - "Y": 0.6890648007392883 - }, - { - "X": 0.7400158047676086, - "Y": 0.6890341639518738 - } - ] - }, - "Id": "323a380c-92fd-4633-a428-80dfd5ac8f2f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "705c678b-da52-42eb-98fa-e5c35055e95d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.52734375, - "RowIndex": 30, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354502588510513, - "Height": 0.01503396313637495, - "Left": 0.8268241286277771, - "Top": 0.6740532517433167 - }, - "Polygon": [ - { - "X": 0.8268253207206726, - "Y": 0.6740532517433167 - }, - { - "X": 0.890369176864624, - "Y": 0.6740756034851074 - }, - { - "X": 0.8903681635856628, - "Y": 0.6890872120857239 - }, - { - "X": 0.8268241286277771, - "Y": 0.6890648007392883 - } - ] - }, - "Id": "197479a3-2d94-47fe-9047-2be8b43423ee", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d8b8f6c4-36e0-4904-816f-cb547a326c3f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.580078125, - "RowIndex": 31, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014827847480774, - "Height": 0.015521775931119919, - "Left": 0.10551678389310837, - "Top": 0.6888102889060974 - }, - "Polygon": [ - { - "X": 0.10551999509334564, - "Y": 0.6888102889060974 - }, - { - "X": 0.6069995760917664, - "Y": 0.6889872550964355 - }, - { - "X": 0.6069977283477783, - "Y": 0.7043320536613464 - }, - { - "X": 0.10551678389310837, - "Y": 0.7041541934013367 - } - ] - }, - "Id": "73436cd3-280c-493c-8f9e-4d2784f11939", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "16eb063f-1b9e-4da1-b438-9279394ee711", - "4ceae035-46fa-4821-850a-c78b9c88ee20", - "25f9ef68-9619-4211-bd51-158e7e4178ca", - "dd28e374-aa55-4713-a4d5-6c8e5237490c", - "12884ef4-64bd-4152-88a8-49d2fbb04cf9" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 87.744140625, - "RowIndex": 31, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05830387398600578, - "Height": 0.015365492552518845, - "Left": 0.6069977283477783, - "Top": 0.6889872550964355 - }, - "Polygon": [ - { - "X": 0.6069995760917664, - "Y": 0.6889872550964355 - }, - { - "X": 0.6653016209602356, - "Y": 0.6890078186988831 - }, - { - "X": 0.6652999520301819, - "Y": 0.7043527364730835 - }, - { - "X": 0.6069977283477783, - "Y": 0.7043320536613464 - } - ] - }, - "Id": "c074448b-3b8c-45ff-8797-2ab014186b17", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.89453125, - "RowIndex": 31, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471584528684616, - "Height": 0.015371420420706272, - "Left": 0.6652999520301819, - "Top": 0.6890078186988831 - }, - "Polygon": [ - { - "X": 0.6653016209602356, - "Y": 0.6890078186988831 - }, - { - "X": 0.7400158047676086, - "Y": 0.6890341639518738 - }, - { - "X": 0.740014374256134, - "Y": 0.7043792605400085 - }, - { - "X": 0.6652999520301819, - "Y": 0.7043527364730835 - } - ] - }, - "Id": "f6d372d3-8844-4965-bde2-68ae43e0eed2", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "97a54efb-3f6d-41dc-ad53-bc710d0fbb26" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.796875, - "RowIndex": 31, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680977672338486, - "Height": 0.01537584699690342, - "Left": 0.740014374256134, - "Top": 0.6890341639518738 - }, - "Polygon": [ - { - "X": 0.7400158047676086, - "Y": 0.6890341639518738 - }, - { - "X": 0.8268241286277771, - "Y": 0.6890648007392883 - }, - { - "X": 0.8268229365348816, - "Y": 0.7044100165367126 - }, - { - "X": 0.740014374256134, - "Y": 0.7043792605400085 - } - ] - }, - "Id": "dd74a480-3984-4f6d-bc64-6aa0f1c6ebc3", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "1eee7f65-372a-4620-a281-a9d20392cbe6" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 89.990234375, - "RowIndex": 31, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354522705078125, - "Height": 0.015367753803730011, - "Left": 0.8268229365348816, - "Top": 0.6890648007392883 - }, - "Polygon": [ - { - "X": 0.8268241286277771, - "Y": 0.6890648007392883 - }, - { - "X": 0.8903681635856628, - "Y": 0.6890872120857239 - }, - { - "X": 0.8903671503067017, - "Y": 0.7044325470924377 - }, - { - "X": 0.8268229365348816, - "Y": 0.7044100165367126 - } - ] - }, - "Id": "57c6e2ef-f551-49f9-bc9c-d56856395939", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2dc5dedf-141c-453c-b65e-f2bf8c8b53e0" - ] - } - ], - "EntityTypes": [ - "TABLE_SUMMARY" - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 87.841796875, - "RowIndex": 32, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014840960502625, - "Height": 0.015189193189144135, - "Left": 0.10551363974809647, - "Top": 0.7041541934013367 - }, - "Polygon": [ - { - "X": 0.10551678389310837, - "Y": 0.7041541934013367 - }, - { - "X": 0.6069977283477783, - "Y": 0.7043320536613464 - }, - { - "X": 0.6069959402084351, - "Y": 0.719343364238739 - }, - { - "X": 0.10551363974809647, - "Y": 0.7191646099090576 - } - ] - }, - "Id": "b08b541f-afd7-4866-9024-9298400f69a1", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d4a1be8d-af9e-4643-9391-f3a392b8e3f2", - "a5a59c35-ff04-46bf-b4e2-2041a2ed9afa" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 81.494140625, - "RowIndex": 32, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05830399692058563, - "Height": 0.015032096765935421, - "Left": 0.6069959402084351, - "Top": 0.7043320536613464 - }, - "Polygon": [ - { - "X": 0.6069977283477783, - "Y": 0.7043320536613464 - }, - { - "X": 0.6652999520301819, - "Y": 0.7043527364730835 - }, - { - "X": 0.665298342704773, - "Y": 0.7193641662597656 - }, - { - "X": 0.6069959402084351, - "Y": 0.719343364238739 - } - ] - }, - "Id": "7cd0cb12-bd1b-4ec2-9ef8-667fa005e290", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8f05ea14-7071-4dc3-91da-22817e536e93" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 85.3515625, - "RowIndex": 32, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471601665019989, - "Height": 0.015038052573800087, - "Left": 0.665298342704773, - "Top": 0.7043527364730835 - }, - "Polygon": [ - { - "X": 0.6652999520301819, - "Y": 0.7043527364730835 - }, - { - "X": 0.740014374256134, - "Y": 0.7043792605400085 - }, - { - "X": 0.7400129437446594, - "Y": 0.7193908095359802 - }, - { - "X": 0.665298342704773, - "Y": 0.7193641662597656 - } - ] - }, - "Id": "6043826b-1c9e-4f77-bdc8-c345940dc261", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "62aa68b5-67c8-4c5b-87b8-7c8ca8346d9a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 85.205078125, - "RowIndex": 32, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08680999279022217, - "Height": 0.015042497776448727, - "Left": 0.7400129437446594, - "Top": 0.7043792605400085 - }, - "Polygon": [ - { - "X": 0.740014374256134, - "Y": 0.7043792605400085 - }, - { - "X": 0.8268229365348816, - "Y": 0.7044100165367126 - }, - { - "X": 0.8268218040466309, - "Y": 0.7194217443466187 - }, - { - "X": 0.7400129437446594, - "Y": 0.7193908095359802 - } - ] - }, - "Id": "3e360a68-696a-4d8f-9061-c7300be88acb", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8741f4b5-0a12-4673-97d7-11ec22ee254f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 83.59375, - "RowIndex": 32, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354538351297379, - "Height": 0.015034358948469162, - "Left": 0.8268218040466309, - "Top": 0.7044100165367126 - }, - "Polygon": [ - { - "X": 0.8268229365348816, - "Y": 0.7044100165367126 - }, - { - "X": 0.8903671503067017, - "Y": 0.7044325470924377 - }, - { - "X": 0.8903661966323853, - "Y": 0.7194443941116333 - }, - { - "X": 0.8268218040466309, - "Y": 0.7194217443466187 - } - ] - }, - "Id": "44dc5f72-d76f-4fcb-814d-2123d76b00e0", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5d0491e1-c24b-4185-a065-e9639b445b4f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.43359375, - "RowIndex": 33, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014854669570923, - "Height": 0.01519017294049263, - "Left": 0.10551049560308456, - "Top": 0.7191646099090576 - }, - "Polygon": [ - { - "X": 0.10551363974809647, - "Y": 0.7191646099090576 - }, - { - "X": 0.6069959402084351, - "Y": 0.719343364238739 - }, - { - "X": 0.6069942116737366, - "Y": 0.7343547344207764 - }, - { - "X": 0.10551049560308456, - "Y": 0.7341750860214233 - } - ] - }, - "Id": "c4ce3877-2da3-4e2a-9c58-15e1431b1b75", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a0ac11f6-76da-4aa2-8487-a86b87f91777", - "7eb40bfb-b9f7-4b89-bd69-1f21b798f358", - "bb0724d0-a17d-4538-a7d8-8ca9ac45c6c4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 87.646484375, - "RowIndex": 33, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.058304157108068466, - "Height": 0.015032283030450344, - "Left": 0.6069942116737366, - "Top": 0.719343364238739 - }, - "Polygon": [ - { - "X": 0.6069959402084351, - "Y": 0.719343364238739 - }, - { - "X": 0.665298342704773, - "Y": 0.7193641662597656 - }, - { - "X": 0.665296733379364, - "Y": 0.7343756556510925 - }, - { - "X": 0.6069942116737366, - "Y": 0.7343547344207764 - } - ] - }, - "Id": "cc049fb4-44f3-4f32-8d52-1a53eca55364", - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.796875, - "RowIndex": 33, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0747162252664566, - "Height": 0.015038267709314823, - "Left": 0.665296733379364, - "Top": 0.7193641662597656 - }, - "Polygon": [ - { - "X": 0.665298342704773, - "Y": 0.7193641662597656 - }, - { - "X": 0.7400129437446594, - "Y": 0.7193908095359802 - }, - { - "X": 0.7400115728378296, - "Y": 0.7344024181365967 - }, - { - "X": 0.665296733379364, - "Y": 0.7343756556510925 - } - ] - }, - "Id": "d4003a7a-3cff-4cea-a0b2-31279abc9beb", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "96374bce-89b5-4e8d-99a8-6bfbe3a19031" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.650390625, - "RowIndex": 33, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08681023120880127, - "Height": 0.015042735263705254, - "Left": 0.7400115728378296, - "Top": 0.7193908095359802 - }, - "Polygon": [ - { - "X": 0.7400129437446594, - "Y": 0.7193908095359802 - }, - { - "X": 0.8268218040466309, - "Y": 0.7194217443466187 - }, - { - "X": 0.8268206119537354, - "Y": 0.7344335317611694 - }, - { - "X": 0.7400115728378296, - "Y": 0.7344024181365967 - } - ] - }, - "Id": "dc2ae189-6d3d-4d2a-8fe5-f18c5253135e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "421f4a0a-8436-4794-8697-c6bfa9fd8424" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 89.84375, - "RowIndex": 33, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354555487632751, - "Height": 0.015034555457532406, - "Left": 0.8268206119537354, - "Top": 0.7194217443466187 - }, - "Polygon": [ - { - "X": 0.8268218040466309, - "Y": 0.7194217443466187 - }, - { - "X": 0.8903661966323853, - "Y": 0.7194443941116333 - }, - { - "X": 0.8903651833534241, - "Y": 0.7344563007354736 - }, - { - "X": 0.8268206119537354, - "Y": 0.7344335317611694 - } - ] - }, - "Id": "637f24b2-9c1b-4c08-914f-47a5d56a9c5c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "764f3506-6ecf-4ede-8881-790269f3533e" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.41015625, - "RowIndex": 34, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014868378639221, - "Height": 0.015191152691841125, - "Left": 0.10550735145807266, - "Top": 0.7341750860214233 - }, - "Polygon": [ - { - "X": 0.10551049560308456, - "Y": 0.7341750860214233 - }, - { - "X": 0.6069942116737366, - "Y": 0.7343547344207764 - }, - { - "X": 0.6069924235343933, - "Y": 0.7493662238121033 - }, - { - "X": 0.10550735145807266, - "Y": 0.7491856813430786 - } - ] - }, - "Id": "b7d66988-52c8-4ca4-8074-9644f6591012", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "c4d85d5f-49e5-4b87-9f46-c1dae4311239", - "2056ee53-8fb7-468d-bfe3-31cc08792c8c" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.525390625, - "RowIndex": 34, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0583043172955513, - "Height": 0.015032470226287842, - "Left": 0.6069924235343933, - "Top": 0.7343547344207764 - }, - "Polygon": [ - { - "X": 0.6069942116737366, - "Y": 0.7343547344207764 - }, - { - "X": 0.665296733379364, - "Y": 0.7343756556510925 - }, - { - "X": 0.6652951240539551, - "Y": 0.7493872046470642 - }, - { - "X": 0.6069924235343933, - "Y": 0.7493662238121033 - } - ] - }, - "Id": "360db5e3-d867-4719-a66f-f8fa4aec27af", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "bd716a7f-d6b3-4d41-80d0-4194b9df43fe" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.724609375, - "RowIndex": 34, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471642643213272, - "Height": 0.015038483776152134, - "Left": 0.6652951240539551, - "Top": 0.7343756556510925 - }, - "Polygon": [ - { - "X": 0.665296733379364, - "Y": 0.7343756556510925 - }, - { - "X": 0.7400115728378296, - "Y": 0.7344024181365967 - }, - { - "X": 0.740010142326355, - "Y": 0.7494141459465027 - }, - { - "X": 0.6652951240539551, - "Y": 0.7493872046470642 - } - ] - }, - "Id": "cff11a0d-4e91-493d-864c-4f7ee7a2326c", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "36f69fd4-36d4-4c3f-8a48-d4f837074c48" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.578125, - "RowIndex": 34, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08681046217679977, - "Height": 0.01504297275096178, - "Left": 0.740010142326355, - "Top": 0.7344024181365967 - }, - "Polygon": [ - { - "X": 0.7400115728378296, - "Y": 0.7344024181365967 - }, - { - "X": 0.8268206119537354, - "Y": 0.7344335317611694 - }, - { - "X": 0.8268194794654846, - "Y": 0.749445378780365 - }, - { - "X": 0.740010142326355, - "Y": 0.7494141459465027 - } - ] - }, - "Id": "1fc37a33-d5e6-4209-b7d8-6003bb23d2fa", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "5ec69330-d3e9-4033-b732-e99d77363f5d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.771484375, - "RowIndex": 34, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354572623968124, - "Height": 0.015034751035273075, - "Left": 0.8268194794654846, - "Top": 0.7344335317611694 - }, - "Polygon": [ - { - "X": 0.8268206119537354, - "Y": 0.7344335317611694 - }, - { - "X": 0.8903651833534241, - "Y": 0.7344563007354736 - }, - { - "X": 0.8903641700744629, - "Y": 0.7494682669639587 - }, - { - "X": 0.8268194794654846, - "Y": 0.749445378780365 - } - ] - }, - "Id": "cdc3d88e-b42c-46a0-ba2f-b595db900698", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "efb592aa-3b64-4ce9-8707-57f7c404bdd6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.21484375, - "RowIndex": 35, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014882683753967, - "Height": 0.015525723807513714, - "Left": 0.10550414025783539, - "Top": 0.7491856813430786 - }, - "Polygon": [ - { - "X": 0.10550735145807266, - "Y": 0.7491856813430786 - }, - { - "X": 0.6069924235343933, - "Y": 0.7493662238121033 - }, - { - "X": 0.60699063539505, - "Y": 0.7647113800048828 - }, - { - "X": 0.10550414025783539, - "Y": 0.7645298838615417 - } - ] - }, - "Id": "ac4eaa3a-1b26-4e3d-82de-e7b1941b0f43", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4a46be61-d057-4edf-811d-0bca8b3dbc21", - "016cb3f7-3358-4534-9ce8-e2c251e28175" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.330078125, - "RowIndex": 35, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05830451473593712, - "Height": 0.015366249717772007, - "Left": 0.60699063539505, - "Top": 0.7493662238121033 - }, - "Polygon": [ - { - "X": 0.6069924235343933, - "Y": 0.7493662238121033 - }, - { - "X": 0.6652951240539551, - "Y": 0.7493872046470642 - }, - { - "X": 0.6652935147285461, - "Y": 0.7647324800491333 - }, - { - "X": 0.60699063539505, - "Y": 0.7647113800048828 - } - ] - }, - "Id": "93badead-ff09-46e7-9bc6-f11c1b94f16d", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "f0074e21-589b-4e92-8099-1275cbfe0581" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.529296875, - "RowIndex": 35, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471666485071182, - "Height": 0.015372296795248985, - "Left": 0.6652935147285461, - "Top": 0.7493872046470642 - }, - "Polygon": [ - { - "X": 0.6652951240539551, - "Y": 0.7493872046470642 - }, - { - "X": 0.740010142326355, - "Y": 0.7494141459465027 - }, - { - "X": 0.7400087118148804, - "Y": 0.7647595405578613 - }, - { - "X": 0.6652935147285461, - "Y": 0.7647324800491333 - } - ] - }, - "Id": "7fbeaf44-3223-413d-95bc-ed3b6be9a233", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "3b83280b-17a7-47e8-9224-90afa34f71c1" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.3828125, - "RowIndex": 35, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08681073784828186, - "Height": 0.015376809984445572, - "Left": 0.7400087118148804, - "Top": 0.7494141459465027 - }, - "Polygon": [ - { - "X": 0.740010142326355, - "Y": 0.7494141459465027 - }, - { - "X": 0.8268194794654846, - "Y": 0.749445378780365 - }, - { - "X": 0.8268182873725891, - "Y": 0.764790952205658 - }, - { - "X": 0.7400087118148804, - "Y": 0.7647595405578613 - } - ] - }, - "Id": "66d2acbd-5933-4138-a926-43f298555789", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "be6964ae-66a9-475c-a853-247ade42e5a6" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.576171875, - "RowIndex": 35, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354592740535736, - "Height": 0.015368549153208733, - "Left": 0.8268182873725891, - "Top": 0.749445378780365 - }, - "Polygon": [ - { - "X": 0.8268194794654846, - "Y": 0.749445378780365 - }, - { - "X": 0.8903641700744629, - "Y": 0.7494682669639587 - }, - { - "X": 0.8903631567955017, - "Y": 0.7648139595985413 - }, - { - "X": 0.8268182873725891, - "Y": 0.764790952205658 - } - ] - }, - "Id": "a3fd466d-6184-44e5-9bd7-1e1a7d099718", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7671a80f-d64d-4537-81c9-8eba5d4052f2" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.580078125, - "RowIndex": 36, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014896988868713, - "Height": 0.015526726841926575, - "Left": 0.10550092905759811, - "Top": 0.7645298838615417 - }, - "Polygon": [ - { - "X": 0.10550414025783539, - "Y": 0.7645298838615417 - }, - { - "X": 0.60699063539505, - "Y": 0.7647113800048828 - }, - { - "X": 0.606988787651062, - "Y": 0.7800565958023071 - }, - { - "X": 0.10550092905759811, - "Y": 0.7798742055892944 - } - ] - }, - "Id": "70f864d5-ee86-4c7e-8a85-ea6624795c29", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "a08ebd21-3e33-4cc5-b3f9-c710ed194e84" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 87.744140625, - "RowIndex": 36, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.05830467864871025, - "Height": 0.015366442501544952, - "Left": 0.606988787651062, - "Top": 0.7647113800048828 - }, - "Polygon": [ - { - "X": 0.60699063539505, - "Y": 0.7647113800048828 - }, - { - "X": 0.6652935147285461, - "Y": 0.7647324800491333 - }, - { - "X": 0.6652918457984924, - "Y": 0.7800778150558472 - }, - { - "X": 0.606988787651062, - "Y": 0.7800565958023071 - } - ] - }, - "Id": "4d08c454-a7b0-4d6f-a097-f3c777093488", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "b4e31c5b-4c01-48cc-a771-98b8aabd668a" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.89453125, - "RowIndex": 36, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471688091754913, - "Height": 0.015372519381344318, - "Left": 0.6652918457984924, - "Top": 0.7647324800491333 - }, - "Polygon": [ - { - "X": 0.6652935147285461, - "Y": 0.7647324800491333 - }, - { - "X": 0.7400087118148804, - "Y": 0.7647595405578613 - }, - { - "X": 0.7400072813034058, - "Y": 0.7801049947738647 - }, - { - "X": 0.6652918457984924, - "Y": 0.7800778150558472 - } - ] - }, - "Id": "6add5d71-e8c8-443f-ab95-c23f3daf75c6", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "d2babb38-eb5e-4615-99e0-863c4d7962a0" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 91.796875, - "RowIndex": 36, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08681097626686096, - "Height": 0.015377054922282696, - "Left": 0.7400072813034058, - "Top": 0.7647595405578613 - }, - "Polygon": [ - { - "X": 0.7400087118148804, - "Y": 0.7647595405578613 - }, - { - "X": 0.8268182873725891, - "Y": 0.764790952205658 - }, - { - "X": 0.8268170952796936, - "Y": 0.7801365852355957 - }, - { - "X": 0.7400072813034058, - "Y": 0.7801049947738647 - } - ] - }, - "Id": "06683bbb-e3bb-4f87-8677-35fb7c709a60", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ef66c987-e4ef-4387-bb3d-7ec79b5a0d4b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 89.990234375, - "RowIndex": 36, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354610621929169, - "Height": 0.015368751250207424, - "Left": 0.8268170952796936, - "Top": 0.764790952205658 - }, - "Polygon": [ - { - "X": 0.8268182873725891, - "Y": 0.764790952205658 - }, - { - "X": 0.8903631567955017, - "Y": 0.7648139595985413 - }, - { - "X": 0.8903621435165405, - "Y": 0.7801597118377686 - }, - { - "X": 0.8268170952796936, - "Y": 0.7801365852355957 - } - ] - }, - "Id": "61489159-1f71-4b78-935e-467a4c2fddbb", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "7c7f88f0-1d83-455a-be7c-39588e7a7bdb" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 95.556640625, - "RowIndex": 37, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014910101890564, - "Height": 0.015194135718047619, - "Left": 0.10549778491258621, - "Top": 0.7798742055892944 - }, - "Polygon": [ - { - "X": 0.10550092905759811, - "Y": 0.7798742055892944 - }, - { - "X": 0.606988787651062, - "Y": 0.7800565958023071 - }, - { - "X": 0.6069870591163635, - "Y": 0.7950683236122131 - }, - { - "X": 0.10549778491258621, - "Y": 0.7948850393295288 - } - ] - }, - "Id": "7c0a4e91-47e2-4a35-a53c-b9d66d05dd3f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "4b246391-e967-48e1-995e-29bff6dcf363", - "8c36254b-122d-4ec7-aa8e-1d9a26ec2c3b" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 88.671875, - "RowIndex": 37, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0583048015832901, - "Height": 0.015033038333058357, - "Left": 0.6069870591163635, - "Top": 0.7800565958023071 - }, - "Polygon": [ - { - "X": 0.606988787651062, - "Y": 0.7800565958023071 - }, - { - "X": 0.6652918457984924, - "Y": 0.7800778150558472 - }, - { - "X": 0.6652902364730835, - "Y": 0.7950896620750427 - }, - { - "X": 0.6069870591163635, - "Y": 0.7950683236122131 - } - ] - }, - "Id": "92b31715-6b7a-468f-9703-dcd8d3e5673e", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "27654ccf-4b87-43ac-b3f6-9d9570c34d01" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.87109375, - "RowIndex": 37, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471705228090286, - "Height": 0.015039141289889812, - "Left": 0.6652902364730835, - "Top": 0.7800778150558472 - }, - "Polygon": [ - { - "X": 0.6652918457984924, - "Y": 0.7800778150558472 - }, - { - "X": 0.7400072813034058, - "Y": 0.7801049947738647 - }, - { - "X": 0.7400058507919312, - "Y": 0.7951169610023499 - }, - { - "X": 0.6652902364730835, - "Y": 0.7950896620750427 - } - ] - }, - "Id": "7574ee5d-6afc-4eea-b530-dbd8fc34d5c7", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "086c3b7e-398a-4c7d-b5e6-70245b3d5b7f" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.724609375, - "RowIndex": 37, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.08681119233369827, - "Height": 0.015043696388602257, - "Left": 0.7400058507919312, - "Top": 0.7801049947738647 - }, - "Polygon": [ - { - "X": 0.7400072813034058, - "Y": 0.7801049947738647 - }, - { - "X": 0.8268170952796936, - "Y": 0.7801365852355957 - }, - { - "X": 0.8268159031867981, - "Y": 0.7951487302780151 - }, - { - "X": 0.7400058507919312, - "Y": 0.7951169610023499 - } - ] - }, - "Id": "c2366ee6-a02c-4d82-ae20-87fc616dbbd8", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "629d29be-fac4-4e2a-ad59-f955de3695f4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.91796875, - "RowIndex": 37, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354626268148422, - "Height": 0.015035348013043404, - "Left": 0.8268159031867981, - "Top": 0.7801365852355957 - }, - "Polygon": [ - { - "X": 0.8268170952796936, - "Y": 0.7801365852355957 - }, - { - "X": 0.8903621435165405, - "Y": 0.7801597118377686 - }, - { - "X": 0.8903611898422241, - "Y": 0.7951719164848328 - }, - { - "X": 0.8268159031867981, - "Y": 0.7951487302780151 - } - ] - }, - "Id": "2d13fc2b-fb12-4c9f-ab4f-658385cba282", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "12b41928-e17d-4e76-bb49-5a16c683b0c4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 97.607421875, - "RowIndex": 38, - "ColumnIndex": 1, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.5014944672584534, - "Height": 0.025034280493855476, - "Left": 0.10549257695674896, - "Top": 0.7948850393295288 - }, - "Polygon": [ - { - "X": 0.10549778491258621, - "Y": 0.7948850393295288 - }, - { - "X": 0.6069870591163635, - "Y": 0.7950683236122131 - }, - { - "X": 0.6069841384887695, - "Y": 0.8199193477630615 - }, - { - "X": 0.10549257695674896, - "Y": 0.819734513759613 - } - ] - }, - "Id": "9461163f-03da-4275-b70a-76a2dc56d106", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "ca1c8094-e665-4a83-9e38-455c452565d8", - "b394194c-86b2-42f3-9ac9-4db403df6392", - "089b788a-5a2b-40ff-906b-f17b7d2a58fc", - "597f7e1f-2779-409d-b6b4-8358bc2ed2b5", - "b50cb8c2-7a2d-44b2-a2a5-3dd7d4c3faf0", - "abf11e03-7030-458f-8f2a-7ce07f5bc91e", - "123b0b8d-cd74-474d-97af-6c4478bb6ce0", - "75dd3522-4e01-4393-94d7-cc0184d99e15", - "41d57626-4e91-4911-be27-228c2c5f122b", - "959a0bb1-c95b-4ea3-ba3b-de106a0c9d6b", - "9a516445-dd33-43c0-9250-a8834f5df7f3", - "09f765be-fa72-4add-95ed-03f2f72f2870", - "166c37f5-f8cc-4100-979b-76352df27c6c", - "2f455de3-f908-4b84-8925-dcbaec6839cd", - "6e23db7c-5c16-42d8-a72f-c055d5b7ca4d" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 90.576171875, - "RowIndex": 38, - "ColumnIndex": 2, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.058306120336055756, - "Height": 0.02487245760858059, - "Left": 0.6069841384887695, - "Top": 0.7950683236122131 - }, - "Polygon": [ - { - "X": 0.6069870591163635, - "Y": 0.7950683236122131 - }, - { - "X": 0.6652902364730835, - "Y": 0.7950896620750427 - }, - { - "X": 0.6652875542640686, - "Y": 0.8199408054351807 - }, - { - "X": 0.6069841384887695, - "Y": 0.8199193477630615 - } - ] - }, - "Id": "4edcb7c7-1ced-471c-ab9e-be302fa0b171", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "2ded1484-7cc9-4666-8b1f-8222d9a6ff58" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.873046875, - "RowIndex": 38, - "ColumnIndex": 3, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.07471831142902374, - "Height": 0.02487867884337902, - "Left": 0.6652875542640686, - "Top": 0.7950896620750427 - }, - "Polygon": [ - { - "X": 0.6652902364730835, - "Y": 0.7950896620750427 - }, - { - "X": 0.7400058507919312, - "Y": 0.7951169610023499 - }, - { - "X": 0.7400035262107849, - "Y": 0.8199683427810669 - }, - { - "X": 0.6652875542640686, - "Y": 0.8199408054351807 - } - ] - }, - "Id": "8f9a35e8-0bf5-4fd0-99f0-b731e51de39f", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "39671a1f-0b57-4df1-a8b8-6338e935dc12" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 94.7265625, - "RowIndex": 38, - "ColumnIndex": 4, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.0868123471736908, - "Height": 0.02488335594534874, - "Left": 0.7400035262107849, - "Top": 0.7951169610023499 - }, - "Polygon": [ - { - "X": 0.7400058507919312, - "Y": 0.7951169610023499 - }, - { - "X": 0.8268159031867981, - "Y": 0.7951487302780151 - }, - { - "X": 0.8268139958381653, - "Y": 0.8200003504753113 - }, - { - "X": 0.7400035262107849, - "Y": 0.8199683427810669 - } - ] - }, - "Id": "dd5b24bb-f124-4bab-a0b5-b8c3475d1be5", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "8a3ca4cb-846d-4590-9eaa-32fb74567ade" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "CELL", - "Confidence": 92.919921875, - "RowIndex": 38, - "ColumnIndex": 5, - "RowSpan": 1, - "ColumnSpan": 1, - "Geometry": { - "BoundingBox": { - "Width": 0.06354720145463943, - "Height": 0.024875041097402573, - "Left": 0.8268139958381653, - "Top": 0.7951487302780151 - }, - "Polygon": [ - { - "X": 0.8268159031867981, - "Y": 0.7951487302780151 - }, - { - "X": 0.8903611898422241, - "Y": 0.7951719164848328 - }, - { - "X": 0.8903595209121704, - "Y": 0.820023775100708 - }, - { - "X": 0.8268139958381653, - "Y": 0.8200003504753113 - } - ] - }, - "Id": "c3f7ccf5-d9ff-4c1d-bd11-28439b402019", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "809ef3c6-b394-4500-b4e3-b1e565835ad4" - ] - } - ], - "Page": 1 - }, - { - "BlockType": "TABLE_TITLE", - "Confidence": 72.802734375, - "Geometry": { - "BoundingBox": { - "Width": 0.47147858142852783, - "Height": 0.024523967877030373, - "Left": 0.11249960958957672, - "Top": 0.17865613102912903 - }, - "Polygon": [ - { - "X": 0.11250469088554382, - "Y": 0.17865613102912903 - }, - { - "X": 0.5839781761169434, - "Y": 0.17879384756088257 - }, - { - "X": 0.5839751958847046, - "Y": 0.20318010449409485 - }, - { - "X": 0.11249960958957672, - "Y": 0.20304101705551147 - } - ] - }, - "Id": "a48e9cb0-753a-4da5-b813-4450929d4fdc", - "Relationships": [ - { - "Type": "CHILD", - "Ids": [ - "32deb9cd-7295-4b73-b00b-7d5a6b160638", - "5b43f1b7-6cfb-4310-a728-b5007a9cde9e", - "26a7bd7e-de49-4ed8-be36-f057f5d187df", - "f300e238-a949-45a1-8506-2b2911d0df90", - "effe7c34-5474-4562-bc0f-8d39b581b662", - "85b45a58-4172-41b3-b0d1-12ceed41c5cc", - "4b9f8aee-227d-4511-bb36-dd57925f4242", - "f15d1b4c-c3e3-4de3-acc8-f19abd2c0af4", - "02829d12-7099-4111-87d3-ef798377d13e", - "461f1766-b233-4759-bf72-e4149690f720", - "c51d8d8e-83b3-4736-aada-43e7d312bec8", - "324daa3f-ccb5-4b2a-a0d5-cd33c79e4205", - "d87f85ed-daf1-4ca7-8073-0cf802e70e50" - ] - } - ], - "Page": 1 - } - ], - "AnalyzeDocumentModelVersion": "1.0" -} \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/template.yaml Thu Jun 01 18:51:18 2023 +0100 @@ -0,0 +1,55 @@ +AWSTemplateFormatVersion: '2010-09-09' +Transform: AWS::Serverless-2016-10-31 +Description: Serverless balance sheet analyzer using Textract and a serverless API + +Conditions: + CreateProdResources: !Equals + - !Ref AWS::AccountId + - 572540046516 # Dennis account ID (Production) + +Globals: + Function: + Runtime: python3.7 + Handler: app.lambda_handler + Architectures: + - x86_64 + Timeout: 20 + MemorySize: 256 + Tracing: Active + +Resources: + S3Bucket: + Type: AWS::S3::Bucket + Properties: + BucketName: !If + - CreateProdResources + - finance-parser-data + - sandbox-finance-parser-data + + ProcessDocumentFunction: + Type: AWS::Serverless::Function + Properties: + CodeUri: process_document/ + Handler: app.lambda_handler + Runtime: python3.7 + Policies: + - Version: "2012-10-17" + Statement: + - Effect: Allow + Action: + - textract:AnalyzeDocument + Resource: "*" + Events: + NewBalanceSheetEvent: + Type: S3 + Properties: + Bucket: !Ref S3Bucket + Events: s3:ObjectCreated:* + Connectors: + S3Connector: + Properties: + Destination: + Id: S3Bucket + Permissions: + - Read + - Write \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/unit/test_handler.py Thu Jun 01 18:51:18 2023 +0100 @@ -0,0 +1,72 @@ +import json + +import pytest + +from process_document import app + + +@pytest.fixture() +def apigw_event(): + """ Generates API GW Event""" + + return { + "body": '{ "test": "body"}', + "resource": "/{proxy+}", + "requestContext": { + "resourceId": "123456", + "apiId": "1234567890", + "resourcePath": "/{proxy+}", + "httpMethod": "POST", + "requestId": "c6af9ac6-7b61-11e6-9a41-93e8deadbeef", + "accountId": "123456789012", + "identity": { + "apiKey": "", + "userArn": "", + "cognitoAuthenticationType": "", + "caller": "", + "userAgent": "Custom User Agent String", + "user": "", + "cognitoIdentityPoolId": "", + "cognitoIdentityId": "", + "cognitoAuthenticationProvider": "", + "sourceIp": "127.0.0.1", + "accountId": "", + }, + "stage": "prod", + }, + "queryStringParameters": {"foo": "bar"}, + "headers": { + "Via": "1.1 08f323deadbeefa7af34d5feb414ce27.cloudfront.net (CloudFront)", + "Accept-Language": "en-US,en;q=0.8", + "CloudFront-Is-Desktop-Viewer": "true", + "CloudFront-Is-SmartTV-Viewer": "false", + "CloudFront-Is-Mobile-Viewer": "false", + "X-Forwarded-For": "127.0.0.1, 127.0.0.2", + "CloudFront-Viewer-Country": "US", + "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", + "Upgrade-Insecure-Requests": "1", + "X-Forwarded-Port": "443", + "Host": "1234567890.execute-api.us-east-1.amazonaws.com", + "X-Forwarded-Proto": "https", + "X-Amz-Cf-Id": "aaaaaaaaaae3VYQb9jd-nvCd-de396Uhbp027Y2JvkCPNLmGJHqlaA==", + "CloudFront-Is-Tablet-Viewer": "false", + "Cache-Control": "max-age=0", + "User-Agent": "Custom User Agent String", + "CloudFront-Forwarded-Proto": "https", + "Accept-Encoding": "gzip, deflate, sdch", + }, + "pathParameters": {"proxy": "/examplepath"}, + "httpMethod": "POST", + "stageVariables": {"baz": "qux"}, + "path": "/examplepath", + } + + +def test_lambda_handler(apigw_event): + + ret = app.lambda_handler(apigw_event, "") + data = json.loads(ret["body"]) + + assert ret["statusCode"] == 200 + assert "message" in ret["body"] + assert data["message"] == "hello world"