From 78daac51b3097ca887817825324f7a1e99a46fbf Mon Sep 17 00:00:00 2001 From: Jokcer <519548295@qq.com> Date: Sun, 29 Dec 2024 23:09:28 +0800 Subject: [PATCH 01/23] feat: add unitable torch inference --- .github/workflows/publish_whl_torch.yml | 65 +++ .gitignore | 3 + README.md | 213 +++++++++- demo_torch.py | 34 ++ outputs/table.html | 4 - outputs/table_ocr_vis.jpg | Bin 95057 -> 0 bytes outputs/table_table_vis.jpg | Bin 79191 -> 0 bytes rapid_table/utils.py | 2 +- rapid_table_torch/__init__.py | 2 + rapid_table_torch/download_model.py | 59 +++ rapid_table_torch/logger.py | 21 + rapid_table_torch/main.py | 155 +++++++ rapid_table_torch/table_matcher/__init__.py | 4 + rapid_table_torch/table_matcher/matcher.py | 192 +++++++++ rapid_table_torch/table_matcher/utils.py | 248 +++++++++++ rapid_table_torch/table_structure/__init__.py | 1 + .../table_structure/components.py | 388 ++++++++++++++++++ .../table_structure/table_structure.py | 213 ++++++++++ rapid_table_torch/table_structure/utils.py | 28 ++ rapid_table_torch/utils.py | 210 ++++++++++ requirements_torch.txt | 8 + setup_torch.py | 66 +++ tests/test_table_torch.py | 35 ++ 23 files changed, 1933 insertions(+), 18 deletions(-) create mode 100644 .github/workflows/publish_whl_torch.yml create mode 100644 demo_torch.py delete mode 100644 outputs/table.html delete mode 100644 outputs/table_ocr_vis.jpg delete mode 100644 outputs/table_table_vis.jpg create mode 100644 rapid_table_torch/__init__.py create mode 100644 rapid_table_torch/download_model.py create mode 100644 rapid_table_torch/logger.py create mode 100644 rapid_table_torch/main.py create mode 100644 rapid_table_torch/table_matcher/__init__.py create mode 100644 rapid_table_torch/table_matcher/matcher.py create mode 100644 rapid_table_torch/table_matcher/utils.py create mode 100644 rapid_table_torch/table_structure/__init__.py create mode 100644 rapid_table_torch/table_structure/components.py create mode 100644 rapid_table_torch/table_structure/table_structure.py create mode 100644 rapid_table_torch/table_structure/utils.py create mode 100644 rapid_table_torch/utils.py create mode 100644 requirements_torch.txt create mode 100644 setup_torch.py create mode 100644 tests/test_table_torch.py diff --git a/.github/workflows/publish_whl_torch.yml b/.github/workflows/publish_whl_torch.yml new file mode 100644 index 0000000..ac7aecc --- /dev/null +++ b/.github/workflows/publish_whl_torch.yml @@ -0,0 +1,65 @@ +name: Push rapidocr_table to pypi + +on: + push: + tags: + - torch_v* + +env: + RESOURCES_URL: https://github.com/RapidAI/RapidTable/releases/download/assets/unitable.zip + + +jobs: + UnitTesting: + runs-on: ubuntu-latest + steps: + - name: Pull latest code + uses: actions/checkout@v3 + + - name: Set up Python 3.10 + uses: actions/setup-python@v4 + with: + python-version: '3.10' + architecture: 'x64' + + - name: Display Python version + run: python -c "import sys; print(sys.version)" + + - name: Unit testings + run: | + wget $RESOURCES_URL + ZIP_NAME=${RESOURCES_URL##*/} + DIR_NAME=${ZIP_NAME%.*} + unzip $DIR_NAME + cp $DIR_NAME/*.pth rapid_table_torch/models/ + cp $DIR_NAME/*.json rapid_table_torch/models/ + pip install -r requirements_torch.txt + pip install rapidocr_onnxruntime + pip install pytest + pytest tests/test_table_torch.py + + GenerateWHL_PushPyPi: + needs: UnitTesting + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Set up Python 3.10 + uses: actions/setup-python@v4 + with: + python-version: '3.10' + architecture: 'x64' + + - name: Run setup_torch.py + run: | + pip install -r requirements_torch.txt + python -m pip install --upgrade pip + pip install wheel get_pypi_latest_version + python setup.py bdist_wheel ${{ github.ref_name }} + + - name: Publish distribution 📦 to PyPI + uses: pypa/gh-action-pypi-publish@v1.5.0 + with: + password: ${{ secrets.RAPID_TABLE }} + packages_dir: dist/ diff --git a/.gitignore b/.gitignore index edaddfb..378c8a8 100644 --- a/.gitignore +++ b/.gitignore @@ -156,3 +156,6 @@ long1.jpg *.pdmodel .DS_Store +*.pth +/rapid_table_torch/models/*.pth +/rapid_table_torch/models/*.json diff --git a/README.md b/README.md index 6a62216..a621571 100644 --- a/README.md +++ b/README.md @@ -15,21 +15,23 @@ ### 简介 -RapidTable库是专门用来文档类图像的表格结构还原,结合RapidOCR,将给定图像中的表格转化对应的HTML格式。 - -目前支持两种类别的表格识别模型:中文和英文表格识别模型,具体可参见下面表格: +RapidTable库是专门用来文档类图像的表格结构还原,表格结构模型均属于序列预测方法,结合RapidOCR,将给定图像中的表格转化对应的HTML格式。 slanet_plus是paddlex内置的SLANet升级版模型,准确率有大幅提升 - | 模型类型 | 模型名称 | 模型大小 | - |:--------------:|:--------------------------------------:| :------: | - | 英文 | `en_ppstructure_mobile_v2_SLANet.onnx` | 7.3M | - | 中文 | `ch_ppstructure_mobile_v2_SLANet.onnx` | 7.4M | - | slanet_plus 中文 | `slanet-plus.onnx` | 6.8M | +unitable是来源unitable的transformer模型,精度最高,暂仅支持pytorch推理,支持gpu推理加速,训练权重来源于 [OhMyTable项目](https://github.com/Sanster/OhMyTable) +| 模型类型 | 模型名称 | 推理框架 |模型大小 |推理耗时(单图 60KB)| + |:--------------:|:--------------------------------------:| :------: |:------: |:------: | +| 英文 | `en_ppstructure_mobile_v2_SLANet.onnx` | onnxruntime |7.3M |0.15s | +| 中文 | `ch_ppstructure_mobile_v2_SLANet.onnx` | onnxruntime |7.4M |0.15s | +| slanet_plus 中文 | `slanet-plus.onnx` | onnxruntime |6.8M |0.15s | +| unitable 中文 | `unitable(encoder.pth,decoder.pth)` | pytorch |500M |cpu(6s) gpu-4090(1.5s)| -模型来源:[PaddleOCR 表格识别](https://github.com/PaddlePaddle/PaddleOCR/blob/133d67f27dc8a241d6b2e30a9f047a0fb75bebbe/ppstructure/table/README_ch.md) -[PaddleX-SlaNetPlus 表格识别](https://github.com/PaddlePaddle/PaddleX/blob/release/3.0-beta1/docs/module_usage/tutorials/ocr_modules/table_structure_recognition.md) +模型来源\ +[PaddleOCR 表格识别](https://github.com/PaddlePaddle/PaddleOCR/blob/133d67f27dc8a241d6b2e30a9f047a0fb75bebbe/ppstructure/table/README_ch.md) \ +[PaddleX-SlaNetPlus 表格识别](https://github.com/PaddlePaddle/PaddleX/blob/release/3.0-beta1/docs/module_usage/tutorials/ocr_modules/table_structure_recognition.md) \ +[Unitable](https://github.com/poloclub/unitable?tab=readme-ov-file) 模型下载地址为:[link](https://github.com/RapidAI/RapidTable/releases/tag/assets) @@ -43,10 +45,16 @@ slanet_plus是paddlex内置的SLANet升级版模型,准确率有大幅提升
+#### 2024.12.30 update + +- 支持Unitable模型的表格识别,使用pytorch框架 + #### 2024.11.24 update + - 支持gpu推理,适配 rapidOCR 单字识别匹配,支持逻辑坐标返回及可视化 #### 2024.10.13 update + - 补充最新paddlex-SLANet-plus 模型(paddle2onnx原因暂不能支持onnx) #### 2023-12-29 v0.1.3 update @@ -78,7 +86,6 @@ slanet_plus是paddlex内置的SLANet升级版模型,准确率有大幅提升
- ### 与[TableStructureRec](https://github.com/RapidAI/TableStructureRec)关系 TableStructureRec库是一个表格识别算法的集合库,当前有`wired_table_rec`有线表格识别算法和`lineless_table_rec`无线表格识别算法的推理包。 @@ -98,6 +105,7 @@ RapidTable是整理自PP-Structure中表格识别部分而来。由于PP-Structu ```bash pip install rapidocr_onnxruntime pip install rapid_table +#pip install rapid_table_torch # for unitable inference #pip install onnxruntime-gpu # for gpu inference ``` @@ -113,6 +121,7 @@ table_engine = RapidTable() 完整示例: +#### onnx版本 ```python from pathlib import Path @@ -120,7 +129,6 @@ from rapid_table import RapidTable, VisTable from rapidocr_onnxruntime import RapidOCR from rapid_table.table_structure.utils import trans_char_ocr_res - table_engine = RapidTable() # 开启onnx-gpu推理 # table_engine = RapidTable(use_cuda=True) @@ -151,8 +159,41 @@ viser(img_path, table_html_str, save_html_path, table_cell_bboxes, save_drawed_p print(table_html_str) ``` +#### torch版本 +```python +from pathlib import Path +from rapidocr_onnxruntime import RapidOCR + +from rapid_table_torch import RapidTable, VisTable +from rapid_table_torch.table_structure.utils import trans_char_ocr_res + +if __name__ == '__main__': +# Init +ocr_engine = RapidOCR() +table_engine = RapidTable(device="cpu") # 默认使用cpu,若使用cuda,则传入device="cuda:0" +viser = VisTable() +img_path = "tests/test_files/image34.png" +# OCR,本模型检测框比较精准,配合单字匹配效果更好 +ocr_result, _ = ocr_engine(img_path, return_word_box=True) +ocr_result = trans_char_ocr_res(ocr_result) +boxes, txts, scores = list(zip(*ocr_result)) +# Save +save_dir = Path("outputs") +save_dir.mkdir(parents=True, exist_ok=True) + +save_html_path = save_dir / f"{Path(img_path).stem}.html" +save_drawed_path = save_dir / f"{Path(img_path).stem}_table_vis{Path(img_path).suffix}" +# 返回逻辑坐标 +table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path, ocr_result) +save_logic_path = save_dir / f"vis_logic_{Path(img_path).name}" +vis_imged = viser(img_path, table_html_str, save_html_path, table_cell_bboxes, save_drawed_path, logic_points, + save_logic_path) +print(f"elapse:{elapse}") +``` + #### 终端运行 +##### onnx: - 用法: ```bash @@ -174,12 +215,158 @@ print(table_html_str) rapid_table -v -img test_images/table.jpg ``` +##### pytorch: +- 用法: + + ```bash + $ rapid_table_torch -h + usage: rapid_table_torch [-h] [-v] -img IMG_PATH [-d DEVICE] + + optional arguments: + -h, --help show this help message and exit + -v, --vis Whether to visualize the layout results. + -img IMG_PATH, --img_path IMG_PATH + Path to image for layout. + -d DEVICE, --device device + The model device used for inference. + ``` + +- 示例: + + ```bash + rapid_table_torch -v -img test_images/table.jpg + ``` + ### 结果 #### 返回结果 ```html -<>
MethodsFPS
SegLink [26]70.086d>77.08.9
PixelLink [4]73.283.077.8
TextSnake [18]73.983.278.31.1
TextField [37]75.987.481.35.2
MSR[38]76.787.87.481.7
FTSN [3]77.187.682.0
LSE[30]81.784.282.9
CRAFT [2]78.288.282.98.6
MCN[16]798883
ATRR[35]82.185.283.6
PAN [34]83.884.484.130.2
DB[12]79.291.584.932.0
DRRG[41]82.3088.0585.08
Ours (SynText)80.688582.9712.68
Ours (MLT-17)84.5486.6285.5712.31
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MethodsFPS
SegLink [26]70.086d> + + 77.08.9
PixelLink [4]73.283.077.8
TextSnake [18]73.983.278.31.1
TextField [37]75.987.481.35.2
MSR[38]76.787.87.481.7
FTSN [3]77.187.682.0
LSE[30]81.784.282.9
CRAFT [2]78.288.282.98.6
MCN[16]798883
ATRR[35]82.185.283.6
PAN [34]83.884.484.130.2
DB[12]79.2 + 91.584.932.0
DRRG[41]82.3088.0585.08
Ours (SynText)80.6885 + + 82.9712.68
Ours (MLT-17)84.5486.6285.5712.31
+ + ``` #### 可视化结果 diff --git a/demo_torch.py b/demo_torch.py new file mode 100644 index 0000000..e8dc1e0 --- /dev/null +++ b/demo_torch.py @@ -0,0 +1,34 @@ +# -*- encoding: utf-8 -*- +# @Author: SWHL +# @Contact: liekkaskono@163.com +from pathlib import Path +from rapidocr_onnxruntime import RapidOCR + +from rapid_table_torch import RapidTable, VisTable +from rapid_table_torch.table_structure.utils import trans_char_ocr_res + +if __name__ == '__main__': + # Init + ocr_engine = RapidOCR() + table_engine = RapidTable(encoder_path="rapid_table_torch/models/encoder.pth", + decoder_path="rapid_table_torch/models/decoder.pth", + vocab_path="rapid_table_torch/models/vocab.json", + device="cpu") + viser = VisTable() + img_path = "tests/test_files/image34.png" + # OCR + ocr_result, _ = ocr_engine(img_path, return_word_box=True) + ocr_result = trans_char_ocr_res(ocr_result) + boxes, txts, scores = list(zip(*ocr_result)) + # Save + save_dir = Path("outputs") + save_dir.mkdir(parents=True, exist_ok=True) + + save_html_path = save_dir / f"{Path(img_path).stem}.html" + save_drawed_path = save_dir / f"{Path(img_path).stem}_table_vis{Path(img_path).suffix}" + # 返回逻辑坐标 + table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path, ocr_result) + save_logic_path = save_dir / f"vis_logic_{Path(img_path).name}" + vis_imged = viser(img_path, table_html_str, save_html_path, table_cell_bboxes, save_drawed_path, logic_points, + save_logic_path) + print(f"elapse:{elapse}") diff --git a/outputs/table.html b/outputs/table.html deleted file mode 100644 index 1d26243..0000000 --- a/outputs/table.html +++ /dev/null @@ -1,4 +0,0 @@ -
MethodsRPFFPS
SegLink[26]70.086.077.08.9
PixelLink[4]73.283.077.8-
TextSnake[18]73.983.278.31.1
TextField[37]75.987.481.35.2
MSR[38]76.787.481.7
FTSN[3]77.187.682.0
LSE[30]81.784.282.9"
CRAFT[2]78.288.282.98.6
MCN[16]798883-
ATRR[35]82.185.283.6"
PAN [34]83.884.484.130.2
DB[12]79.291.584.932.0
DRRG[41]82.3088.0585.08-
Ours (SynText)80.6885.4082.9712.68
Ours (MLT-17)84.5486.6285.5712.31
\ No newline at end of file diff --git a/outputs/table_ocr_vis.jpg b/outputs/table_ocr_vis.jpg deleted file mode 100644 index f79d89e83936cf625be73130b5f8b66b80e5e33c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 95057 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Ůx1fTQ3Lf%w+jHM z3&~n4IEy|QmJ_I)7df;$hMYOGn zpnD%f5<(dH%(KYP%jEQ9$o*qT5Bo}>OCNj=d_#jRVEcVk$DXZiqm)tE?Z|D7QFxJgZc>>nW~9xp#d=#gEhssOakjc!3^*3OsEkFBV z#~&)BoQa3+xo=E}jZIgRrEDU?dTOKweFx#&zHp zh1Gn<(DoHz21lDWPBkFxBIL_#HghhjTo=EW6>@3Y_~}_^syZN#+g>J5QZ0`mvH37R z^`|(F5^Q2G70OvTb-#G3Ra|W?`G6bE=dW=#-^TNqz0123x!!@r5gJli4AsJs_~x|P zv`ZXcUs#+TslMlBTBkIf9`L!}rj-4>{zPh*=a)LRf*r|zV2aVLANd$NV_i6~K_K*F z2e-3@Z^4HZJA`kUK#(E`cJSwuVJpq3w)XyS0E#A!9DuTiJIn?hM0H&(@qhS*QDI;S zZ8p~ob+xK-Hc@$I674HtttOzXcm7Q8xd^xrYNd9W{E#2N2=9?l?1Ro3tXLHeq75Hm zdC8dh1D3E{0#OLs7#!Po<5?4<$jj&7*Rlg2KGt4@%YcU0g=2RIDruJV%bk>Ud~j0! zU`(Kv`k9TR+!R9{;%F#M-Fix0r3Kp58(Qu6UAA3C^_xnQMe&vNGD3YBGXsUU#CaS; zxaqv)_H7JJ2f+fsDTxkbO#Cs#-(wYe+6|DrI@=oE&1%_&x&5y5Z8YsnS^in+fzo)@ zvlt(k(Zn=EgXAMh-esk%x&OPO8?2r!rFG+a$8(Bcfw_8$rI7G);j`7dMdMMWEpepUE=V^;9PT^z?+#2eo8Dgh>?xD2Y-5$fgz&iM*84FbPWn> z;86}#(mvYCWx(j{bgg%5p(t}}M>X^bvTaX=by)62Y1H2qQYV8yqUV)Ytnu*qK_;IE zU_frC`cD}tpnAGn$xDsuu|Ltt9XIN{kK~)bJ5QQ>RI1eohjzzBKz)@K9woaGBMfBU ztrCsS5t)Xi`70NlPMu0@eoxxE8s_e-C2Nx|euG!fA%DVL`=u+D@Xevrfs3d+oz+!R zOK2@<{*Gjhn~2cAJ|>z7-(+#)u0aGauz?3IFErtE4!vUb<`1^~!b2z}x}N!e^vSk( zSlvxC<-9o>6OxrS+kNXV85U66gG?^zV~8m?QJrpd{unac@eQkvB;Z;r-@{nH&@F*^ znmpZr+!h=0HF}JColPi@nGkY^F?~jX%h5g3*p1Ss2!+#l_ zWaQyiS}y7sWQ#qa zN%p#p?$kTUlz~#+Tj*OL**r{wD6DCnF4RtvL6aXZLP@A(m~Svgq<=u2)%&K&`&w-o z6BE0?($4MQUhprDAR3M}AI4RfAY%|Vj0!M+gEbAlho8BF2%6H2UJao5^yG8|r>f-i z(E9YnVzgYZ8d&aFPGADF> zZ>K>oUzmJ8t$8T5(BPxAKRlKlG_4`CC%@=7+4+X$*!>#~IT);XB z+G4$Pg<^o05c*Qrv1O#lsI670L(I^symDQ*&QRI*UDXp{?z@0~!9bC8GbJM4NEzXe zo79pFf7^&{V^r=q>yg~E!(j`CF$S}L2Z_5q<7WJe$|&j|&Ni^1F`bAsMCX#}JZ#WDPSe&xa{weGJLXKZdw} zK89exdg^`dA$0UtkNUg|lP?nZMc%Rmy2&1^gJ7Hx1Uy`l%O=7{WvS&YIZGR&rs*lV zGY=koAAT~GQnQMg2eU(0AYiqDo32hdhU}cBIG9ru(}R{~dz?@H+HvvB&2OoSU%VT) z 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
- -#### 2024.12.30 update - -- 支持Unitable模型的表格识别,使用pytorch框架 - -#### 2024.11.24 update - -- 支持gpu推理,适配 rapidOCR 单字识别匹配,支持逻辑坐标返回及可视化 - -#### 2024.10.13 update - -- 补充最新paddlex-SLANet-plus 模型(paddle2onnx原因暂不能支持onnx) - -#### 2023-12-29 v0.1.3 update - -- 优化可视化结果部分 - -#### 2023-12-27 v0.1.2 update - -- 添加返回cell坐标框参数 -- 完善可视化函数 - -#### 2023-07-17 v0.1.0 update - -- 将`rapidocr_onnxruntime`部分从`rapid_table`中解耦合出来,给出选项是否依赖,更加灵活。 - -- 增加接口输入参数`ocr_result`: - - 如果在调用函数时,事先指定了`ocr_result`参数值,则不会再走OCR。其中`ocr_result`格式需要和`rapidocr_onnxruntime`返回值一致。 - - 如果未指定`ocr_result`参数值,但是事先安装了`rapidocr_onnxruntime`库,则会自动调用该库,进行识别。 - - 如果`ocr_result`未指定,且`rapidocr_onnxruntime`未安装,则会报错。必须满足两个条件中一个。 - -#### 2023-07-10 v0.0.13 updata - -- 更改传入表格还原中OCR的实例接口,可以传入其他OCR实例,前提要与`rapidocr_onnxruntime`接口一致 - -#### 2023-07-06 v0.0.12 update - -- 去掉返回表格的html字符串中的``元素,便于后续统一。 -- 采用Black工具优化代码 - -
- ### 与[TableStructureRec](https://github.com/RapidAI/TableStructureRec)关系 TableStructureRec库是一个表格识别算法的集合库,当前有`wired_table_rec`有线表格识别算法和`lineless_table_rec`无线表格识别算法的推理包。 @@ -105,8 +60,8 @@ RapidTable是整理自PP-Structure中表格识别部分而来。由于PP-Structu ```bash pip install rapidocr_onnxruntime pip install rapid_table -#pip install rapid_table[torch] # for unitable inference -#pip install onnxruntime-gpu # for onnx gpu inference +# pip install rapid_table[torch] # for unitable inference +# pip install onnxruntime-gpu # for onnx gpu inference ``` ### 使用方式 @@ -130,10 +85,13 @@ from rapidocr_onnxruntime import RapidOCR from rapid_table.table_structure.utils import trans_char_ocr_res table_engine = RapidTable() + # 开启onnx-gpu推理 # table_engine = RapidTable(use_cuda=True) + # 使用torch推理版本的unitable模型 # table_engine = RapidTable(use_cuda=True, device="cuda:0", model_type="unitable") + ocr_engine = RapidOCR() viser = VisTable() @@ -143,6 +101,7 @@ ocr_result, _ = ocr_engine(img_path) # 单字匹配 # ocr_result, _ = ocr_engine(img_path, return_word_box=True) # ocr_result = trans_char_ocr_res(ocr_result) + table_html_str, table_cell_bboxes, elapse = table_engine(img_path, ocr_result) save_dir = Path("./inference_results/") @@ -155,6 +114,7 @@ viser(img_path, table_html_str, save_html_path, table_cell_bboxes, save_drawed_p # 返回逻辑坐标 # table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path, ocr_result, return_logic_points=True) + # save_logic_path = save_dir / f"vis_logic_{Path(img_path).name}" # viser(img_path, table_html_str, save_html_path, table_cell_bboxes, save_drawed_path,logic_points, save_logic_path) @@ -163,33 +123,32 @@ print(table_html_str) #### 终端运行 -- 用法: - - ```bash - $ rapid_table -h - usage: rapid_table [-h] [-v] -img IMG_PATH [-m MODEL_PATH] +```bash +$ rapid_table -h +usage: rapid_table [-h] [-v] -img IMG_PATH [-m MODEL_PATH] + +optional arguments: +-h, --help show this help message and exit +-v, --vis Whether to visualize the layout results. +-img IMG_PATH, --img_path IMG_PATH + Path to image for layout. +-m MODEL_PATH, --model_path MODEL_PATH + The model path used for inference. +``` - optional arguments: - -h, --help show this help message and exit - -v, --vis Whether to visualize the layout results. - -img IMG_PATH, --img_path IMG_PATH - Path to image for layout. - -m MODEL_PATH, --model_path MODEL_PATH - The model path used for inference. - ``` +示例: -- 示例: +```bash +rapid_table -v -img test_images/table.jpg +``` - ```bash - rapid_table -v -img test_images/table.jpg - ``` - ### 结果 #### 返回结果 -```html +

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 np.ndarray: diff --git a/rapid_table_torch/__init__.py b/rapid_table_torch/__init__.py new file mode 100644 index 0000000..86c7b1c --- /dev/null +++ b/rapid_table_torch/__init__.py @@ -0,0 +1,2 @@ +from .main import RapidTable +from .utils import VisTable diff --git a/rapid_table_torch/download_model.py b/rapid_table_torch/download_model.py new file mode 100644 index 0000000..d636f94 --- /dev/null +++ b/rapid_table_torch/download_model.py @@ -0,0 +1,59 @@ +import io +from pathlib import Path +from typing import Optional, Union + +import requests +from tqdm import tqdm + +from .logger import get_logger + +logger = get_logger("DownloadModel") +CUR_DIR = Path(__file__).resolve() +PROJECT_DIR = CUR_DIR.parent + + +class DownloadModel: + cur_dir = PROJECT_DIR + + @classmethod + def download(cls, model_full_url: Union[str, Path]) -> str: + save_dir = cls.cur_dir / "models" + save_dir.mkdir(parents=True, exist_ok=True) + + model_name = Path(model_full_url).name + save_file_path = save_dir / model_name + if save_file_path.exists(): + logger.debug("%s already exists", save_file_path) + return str(save_file_path) + + try: + logger.info("Download %s to %s", model_full_url, save_dir) + file = cls.download_as_bytes_with_progress(model_full_url, model_name) + cls.save_file(save_file_path, file) + except Exception as exc: + raise DownloadModelError from exc + return str(save_file_path) + + @staticmethod + def download_as_bytes_with_progress( + url: Union[str, Path], name: Optional[str] = None + ) -> bytes: + resp = requests.get(str(url), stream=True, allow_redirects=True, timeout=180) + total = int(resp.headers.get("content-length", 0)) + bio = io.BytesIO() + with tqdm( + desc=name, total=total, unit="b", unit_scale=True, unit_divisor=1024 + ) as pbar: + for chunk in resp.iter_content(chunk_size=65536): + pbar.update(len(chunk)) + bio.write(chunk) + return bio.getvalue() + + @staticmethod + def save_file(save_path: Union[str, Path], file: bytes): + with open(save_path, "wb") as f: + f.write(file) + + +class DownloadModelError(Exception): + pass diff --git a/rapid_table_torch/logger.py b/rapid_table_torch/logger.py new file mode 100644 index 0000000..2950987 --- /dev/null +++ b/rapid_table_torch/logger.py @@ -0,0 +1,21 @@ +# -*- encoding: utf-8 -*- +# @Author: Jocker1212 +# @Contact: xinyijianggo@gmail.com +import logging +from functools import lru_cache + + +@lru_cache(maxsize=32) +def get_logger(name: str) -> logging.Logger: + logger = logging.getLogger(name) + logger.setLevel(logging.DEBUG) + + fmt = "%(asctime)s - %(name)s - %(levelname)s: %(message)s" + format_str = logging.Formatter(fmt) + + sh = logging.StreamHandler() + sh.setLevel(logging.DEBUG) + + logger.addHandler(sh) + sh.setFormatter(format_str) + return logger diff --git a/rapid_table_torch/main.py b/rapid_table_torch/main.py new file mode 100644 index 0000000..5ef3dcc --- /dev/null +++ b/rapid_table_torch/main.py @@ -0,0 +1,155 @@ +# -*- encoding: utf-8 -*- +# @Author: SWHL +# @Contact: liekkaskono@163.com +import argparse +import copy +import importlib +import os +import time +from pathlib import Path +from typing import List, Union + +import cv2 +import numpy as np + +from .download_model import DownloadModel +from .logger import get_logger +from .table_matcher import TableMatch +from .table_structure import TableStructurer +from .utils import LoadImage, VisTable + +root_dir = Path(__file__).resolve().parent +model_dir = os.path.join(root_dir, "models") +logger = get_logger("rapid_table_torch") +default_config = os.path.join(root_dir, "config.yaml") +ROOT_URL = "https://www.modelscope.cn/studio/jockerK/TableRec/resolve/master/models/table_rec/unitable/" +KEY_TO_MODEL_URL = { + "unitable": { + "encoder": f"{ROOT_URL}/encoder.pth", + "decoder": f"{ROOT_URL}/decoder.pth", + "vocab": f"{ROOT_URL}/vocab.json", + } +} + + +class RapidTable: + def __init__(self, encoder_path: str = None, decoder_path: str = None, vocab_path: str = None, + model_type: str = "unitable", + device: str = "cpu"): + self.model_type = model_type + self.load_img = LoadImage() + encoder_path = self.get_model_path(model_type, "encoder", encoder_path) + decoder_path = self.get_model_path(model_type, "decoder", decoder_path) + vocab_path = self.get_model_path(model_type, "vocab", vocab_path) + self.table_structure = TableStructurer(encoder_path, decoder_path, vocab_path, device) + self.table_matcher = TableMatch() + try: + self.ocr_engine = importlib.import_module("rapidocr_onnxruntime").RapidOCR() + except ModuleNotFoundError: + self.ocr_engine = None + + def __call__( + self, + img_content: Union[str, np.ndarray, bytes, Path], + ocr_result: List[Union[List[List[float]], str, str]] = None + ): + if self.ocr_engine is None and ocr_result is None: + raise ValueError( + "One of two conditions must be met: ocr_result is not empty, or rapidocr_onnxruntime is installed." + ) + + img = self.load_img(img_content) + + s = time.time() + h, w = img.shape[:2] + if ocr_result is None: + ocr_result, _ = self.ocr_engine(img) + dt_boxes, rec_res = self.get_boxes_recs(ocr_result, h, w) + + pred_structures, pred_bboxes, _ = self.table_structure(copy.deepcopy(img)) + pred_html = self.table_matcher(pred_structures, pred_bboxes, dt_boxes, rec_res) + logic_points = self.table_matcher.decode_logic_points(pred_structures) + elapse = time.time() - s + return pred_html, pred_bboxes, logic_points, elapse + + def get_boxes_recs( + self, ocr_result: List[Union[List[List[float]], str, str]], h: int, w: int + ): + dt_boxes, rec_res, scores = list(zip(*ocr_result)) + rec_res = list(zip(rec_res, scores)) + + r_boxes = [] + for box in dt_boxes: + box = np.array(box) + x_min = max(0, box[:, 0].min() - 1) + x_max = min(w, box[:, 0].max() + 1) + y_min = max(0, box[:, 1].min() - 1) + y_max = min(h, box[:, 1].max() + 1) + box = [x_min, y_min, x_max, y_max] + r_boxes.append(box) + dt_boxes = np.array(r_boxes) + return dt_boxes, rec_res + + @staticmethod + def get_model_path(model_type: str, sub_file_type: str, path: Union[str, Path, None]) -> str: + if path is not None: + return path + + model_url = KEY_TO_MODEL_URL.get(model_type, {}).get(sub_file_type, None) + if model_url: + model_path = DownloadModel.download(model_url) + return model_path + + logger.info( + "model url is None, using the default download model %s", path + ) + return path +def main(): + parser = argparse.ArgumentParser() + parser.add_argument( + "-v", + "--vis", + action="store_true", + help="Wheter to visualize the layout results.", + ) + parser.add_argument( + "-img", "--img_path", type=str, required=True, help="Path to image for layout." + ) + parser.add_argument( + "-d", "--device", type=str, default="cpu", help="device to use" + ) + args = parser.parse_args() + + try: + ocr_engine = importlib.import_module("rapidocr_onnxruntime").RapidOCR() + except ModuleNotFoundError as exc: + raise ModuleNotFoundError( + "Please install the rapidocr_onnxruntime by pip install rapidocr_onnxruntime." + ) from exc + + rapid_table = RapidTable(device=args.device) + + img = cv2.imread(args.img_path) + + ocr_result, _ = ocr_engine(img) + table_html_str, table_cell_bboxes, elapse = rapid_table(img, ocr_result) + print(table_html_str) + + viser = VisTable() + if args.vis: + img_path = Path(args.img_path) + + save_dir = img_path.resolve().parent + save_html_path = save_dir / f"{Path(img_path).stem}.html" + save_drawed_path = save_dir / f"vis_{Path(img_path).name}" + viser( + img_path, + table_html_str, + save_html_path, + table_cell_bboxes, + save_drawed_path, + ) + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/rapid_table_torch/table_matcher/__init__.py b/rapid_table_torch/table_matcher/__init__.py new file mode 100644 index 0000000..9bff7d7 --- /dev/null +++ b/rapid_table_torch/table_matcher/__init__.py @@ -0,0 +1,4 @@ +# -*- encoding: utf-8 -*- +# @Author: SWHL +# @Contact: liekkaskono@163.com +from .matcher import TableMatch diff --git a/rapid_table_torch/table_matcher/matcher.py b/rapid_table_torch/table_matcher/matcher.py new file mode 100644 index 0000000..0453929 --- /dev/null +++ b/rapid_table_torch/table_matcher/matcher.py @@ -0,0 +1,192 @@ +# copyright (c) 2022 PaddlePaddle Authors. All Rights Reserve. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# -*- encoding: utf-8 -*- +import numpy as np + +from .utils import compute_iou, distance + + +class TableMatch: + def __init__(self, filter_ocr_result=True, use_master=False): + self.filter_ocr_result = filter_ocr_result + self.use_master = use_master + + def __call__(self, pred_structures, pred_bboxes, dt_boxes, rec_res): + if self.filter_ocr_result: + dt_boxes, rec_res = self._filter_ocr_result(pred_bboxes, dt_boxes, rec_res) + matched_index = self.match_result(dt_boxes, pred_bboxes) + pred_html, pred = self.get_pred_html(pred_structures, matched_index, rec_res) + return pred_html + + def match_result(self, dt_boxes, pred_bboxes): + matched = {} + for i, gt_box in enumerate(dt_boxes): + distances = [] + for j, pred_box in enumerate(pred_bboxes): + if len(pred_box) == 8: + pred_box = [ + np.min(pred_box[0::2]), + np.min(pred_box[1::2]), + np.max(pred_box[0::2]), + np.max(pred_box[1::2]), + ] + distances.append( + (distance(gt_box, pred_box), 1.0 - compute_iou(gt_box, pred_box)) + ) # compute iou and l1 distance + sorted_distances = distances.copy() + # select det box by iou and l1 distance + sorted_distances = sorted( + sorted_distances, key=lambda item: (item[1], item[0]) + ) + if distances.index(sorted_distances[0]) not in matched.keys(): + matched[distances.index(sorted_distances[0])] = [i] + else: + matched[distances.index(sorted_distances[0])].append(i) + return matched + + def get_pred_html(self, pred_structures, matched_index, ocr_contents): + end_html = [] + td_index = 0 + for tag in pred_structures: + if "" not in tag: + end_html.append(tag) + continue + + if "" == tag: + end_html.extend("") + + if td_index in matched_index.keys(): + b_with = False + if ( + "" in ocr_contents[matched_index[td_index][0]] + and len(matched_index[td_index]) > 1 + ): + b_with = True + end_html.extend("") + + for i, td_index_index in enumerate(matched_index[td_index]): + content = ocr_contents[td_index_index][0] + if len(matched_index[td_index]) > 1: + if len(content) == 0: + continue + + if content[0] == " ": + content = content[1:] + + if "" in content: + content = content[3:] + + if "" in content: + content = content[:-4] + + if len(content) == 0: + continue + + if i != len(matched_index[td_index]) - 1 and " " != content[-1]: + content += " " + end_html.extend(content) + + if b_with: + end_html.extend("") + + if "" == tag: + end_html.append("") + else: + end_html.append(tag) + + td_index += 1 + + # Filter elements + filter_elements = ["", "", "", ""] + end_html = [v for v in end_html if v not in filter_elements] + return "".join(end_html), end_html + def decode_logic_points(self, pred_structures): + logic_points = [] + current_row = 0 + current_col = 0 + max_rows = 0 + max_cols = 0 + occupied_cells = {} # 用于记录已经被占用的单元格 + + def is_occupied(row, col): + return (row, col) in occupied_cells + + def mark_occupied(row, col, rowspan, colspan): + for r in range(row, row + rowspan): + for c in range(col, col + colspan): + occupied_cells[(r, c)] = True + + i = 0 + while i < len(pred_structures): + token = pred_structures[i] + + if token == '': + current_col = 0 # 每次遇到 时,重置当前列号 + elif token == '': + current_row += 1 # 行结束,行号增加 + elif token .startswith(''): + if 'colspan=' in pred_structures[j]: + colspan = int(pred_structures[j].split('=')[1].strip('"\'')) + elif 'rowspan=' in pred_structures[j]: + rowspan = int(pred_structures[j].split('=')[1].strip('"\'')) + j += 1 + + # 跳过已经处理过的属性 token + i = j + + # 找到下一个未被占用的列 + while is_occupied(current_row, current_col): + current_col += 1 + + # 计算逻辑坐标 + r_start = current_row + r_end = current_row + rowspan - 1 + col_start = current_col + col_end = current_col + colspan - 1 + + # 记录逻辑坐标 + logic_points.append([r_start, r_end, col_start, col_end]) + + # 标记占用的单元格 + mark_occupied(r_start, col_start, rowspan, colspan) + + # 更新当前列号 + current_col += colspan + + # 更新最大行数和列数 + max_rows = max(max_rows, r_end + 1) + max_cols = max(max_cols, col_end + 1) + + i += 1 + + return logic_points + + def _filter_ocr_result(self, pred_bboxes, dt_boxes, rec_res): + y1 = pred_bboxes[:, 1::2].min() + new_dt_boxes = [] + new_rec_res = [] + + for box, rec in zip(dt_boxes, rec_res): + if np.max(box[1::2]) < y1: + continue + new_dt_boxes.append(box) + new_rec_res.append(rec) + return new_dt_boxes, new_rec_res diff --git a/rapid_table_torch/table_matcher/utils.py b/rapid_table_torch/table_matcher/utils.py new file mode 100644 index 0000000..3ec8fcc --- /dev/null +++ b/rapid_table_torch/table_matcher/utils.py @@ -0,0 +1,248 @@ +# copyright (c) 2022 PaddlePaddle Authors. All Rights Reserve. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# -*- encoding: utf-8 -*- +# @Author: SWHL +# @Contact: liekkaskono@163.com +import re + + +def deal_isolate_span(thead_part): + """ + Deal with isolate span cases in this function. + It causes by wrong prediction in structure recognition model. + eg. predict to rowspan="2">. + :param thead_part: + :return: + """ + # 1. find out isolate span tokens. + isolate_pattern = ( + ' rowspan="(\d)+" colspan="(\d)+">|' + ' colspan="(\d)+" rowspan="(\d)+">|' + ' rowspan="(\d)+">|' + ' colspan="(\d)+">' + ) + isolate_iter = re.finditer(isolate_pattern, thead_part) + isolate_list = [i.group() for i in isolate_iter] + + # 2. find out span number, by step 1 results. + span_pattern = ( + ' rowspan="(\d)+" colspan="(\d)+"|' + ' colspan="(\d)+" rowspan="(\d)+"|' + ' rowspan="(\d)+"|' + ' colspan="(\d)+"' + ) + corrected_list = [] + for isolate_item in isolate_list: + span_part = re.search(span_pattern, isolate_item) + spanStr_in_isolateItem = span_part.group() + # 3. merge the span number into the span token format string. + if spanStr_in_isolateItem is not None: + corrected_item = "".format(spanStr_in_isolateItem) + corrected_list.append(corrected_item) + else: + corrected_list.append(None) + + # 4. replace original isolated token. + for corrected_item, isolate_item in zip(corrected_list, isolate_list): + if corrected_item is not None: + thead_part = thead_part.replace(isolate_item, corrected_item) + else: + pass + return thead_part + + +def deal_duplicate_bb(thead_part): + """ + Deal duplicate or after replace. + Keep one in a token. + :param thead_part: + :return: + """ + # 1. find out in . + td_pattern = ( + '(.+?)|' + '(.+?)|' + '(.+?)|' + '(.+?)|' + "(.*?)" + ) + td_iter = re.finditer(td_pattern, thead_part) + td_list = [t.group() for t in td_iter] + + # 2. is multiply in or not? + new_td_list = [] + for td_item in td_list: + if td_item.count("") > 1 or td_item.count("") > 1: + # multiply in case. + # 1. remove all + td_item = td_item.replace("", "").replace("", "") + # 2. replace -> , -> . + td_item = td_item.replace("", "").replace("", "") + new_td_list.append(td_item) + else: + new_td_list.append(td_item) + + # 3. replace original thead part. + for td_item, new_td_item in zip(td_list, new_td_list): + thead_part = thead_part.replace(td_item, new_td_item) + return thead_part + + +def deal_bb(result_token): + """ + In our opinion, always occurs in text's context. + This function will find out all tokens in and insert by manual. + :param result_token: + :return: + """ + # find out parts. + thead_pattern = "(.*?)" + if re.search(thead_pattern, result_token) is None: + return result_token + thead_part = re.search(thead_pattern, result_token).group() + origin_thead_part = copy.deepcopy(thead_part) + + # check "rowspan" or "colspan" occur in parts or not . + span_pattern = '|||' + span_iter = re.finditer(span_pattern, thead_part) + span_list = [s.group() for s in span_iter] + has_span_in_head = True if len(span_list) > 0 else False + + if not has_span_in_head: + # not include "rowspan" or "colspan" branch 1. + # 1. replace to , and to + # 2. it is possible to predict text include or by Text-line recognition, + # so we replace to , and to + thead_part = ( + thead_part.replace("", "") + .replace("", "") + .replace("", "") + .replace("", "") + ) + else: + # include "rowspan" or "colspan" branch 2. + # Firstly, we deal rowspan or colspan cases. + # 1. replace > to > + # 2. replace to + # 3. it is possible to predict text include or by Text-line recognition, + # so we replace to , and to + + # Secondly, deal ordinary cases like branch 1 + + # replace ">" to "" + replaced_span_list = [] + for sp in span_list: + replaced_span_list.append(sp.replace(">", ">")) + for sp, rsp in zip(span_list, replaced_span_list): + thead_part = thead_part.replace(sp, rsp) + + # replace "" to "" + thead_part = thead_part.replace("", "") + + # remove duplicated by re.sub + mb_pattern = "()+" + single_b_string = "" + thead_part = re.sub(mb_pattern, single_b_string, thead_part) + + mgb_pattern = "()+" + single_gb_string = "" + thead_part = re.sub(mgb_pattern, single_gb_string, thead_part) + + # ordinary cases like branch 1 + thead_part = thead_part.replace("", "").replace("", "") + + # convert back to , empty cell has no . + # but space cell( ) is suitable for + thead_part = thead_part.replace("", "") + # deal with duplicated + thead_part = deal_duplicate_bb(thead_part) + # deal with isolate span tokens, which causes by wrong predict by structure prediction. + # eg.PMC5994107_011_00.png + thead_part = deal_isolate_span(thead_part) + # replace original result with new thead part. + result_token = result_token.replace(origin_thead_part, thead_part) + return result_token + + +def deal_eb_token(master_token): + """ + post process with , , ... + emptyBboxTokenDict = { + "[]": '', + "[' ']": '', + "['', ' ', '']": '', + "['\\u2028', '\\u2028']": '', + "['', ' ', '']": '', + "['', '']": '', + "['', ' ', '']": '', + "['', '', '', '']": '', + "['', '', ' ', '', '']": '', + "['', '']": '', + "['', ' ', '\\u2028', ' ', '\\u2028', ' ', '']": '', + } + :param master_token: + :return: + """ + master_token = master_token.replace("", "") + master_token = master_token.replace("", " ") + master_token = master_token.replace("", " ") + master_token = master_token.replace("", "\u2028\u2028") + master_token = master_token.replace("", " ") + master_token = master_token.replace("", "") + master_token = master_token.replace("", " ") + master_token = master_token.replace("", "") + master_token = master_token.replace("", " ") + master_token = master_token.replace("", "") + master_token = master_token.replace( + "", " \u2028 \u2028 " + ) + return master_token + + +def distance(box_1, box_2): + x1, y1, x2, y2 = box_1 + x3, y3, x4, y4 = box_2 + dis = abs(x3 - x1) + abs(y3 - y1) + abs(x4 - x2) + abs(y4 - y2) + dis_2 = abs(x3 - x1) + abs(y3 - y1) + dis_3 = abs(x4 - x2) + abs(y4 - y2) + return dis + min(dis_2, dis_3) + + +def compute_iou(rec1, rec2): + """ + computing IoU + :param rec1: (y0, x0, y1, x1), which reflects + (top, left, bottom, right) + :param rec2: (y0, x0, y1, x1) + :return: scala value of IoU + """ + # computing area of each rectangles + S_rec1 = (rec1[2] - rec1[0]) * (rec1[3] - rec1[1]) + S_rec2 = (rec2[2] - rec2[0]) * (rec2[3] - rec2[1]) + + # computing the sum_area + sum_area = S_rec1 + S_rec2 + + # find the each edge of intersect rectangle + left_line = max(rec1[1], rec2[1]) + right_line = min(rec1[3], rec2[3]) + top_line = max(rec1[0], rec2[0]) + bottom_line = min(rec1[2], rec2[2]) + + # judge if there is an intersect + if left_line >= right_line or top_line >= bottom_line: + return 0.0 + else: + intersect = (right_line - left_line) * (bottom_line - top_line) + return (intersect / (sum_area - intersect)) * 1.0 diff --git a/rapid_table_torch/table_structure/__init__.py b/rapid_table_torch/table_structure/__init__.py new file mode 100644 index 0000000..4582f3d --- /dev/null +++ b/rapid_table_torch/table_structure/__init__.py @@ -0,0 +1 @@ +from .table_structure import TableStructurer diff --git a/rapid_table_torch/table_structure/components.py b/rapid_table_torch/table_structure/components.py new file mode 100644 index 0000000..367bd57 --- /dev/null +++ b/rapid_table_torch/table_structure/components.py @@ -0,0 +1,388 @@ +from functools import partial +from dataclasses import dataclass +from typing import Optional +import torch +import torch.nn as nn +from torch import Tensor +from torch.nn import functional as F +from torch.nn.modules.transformer import _get_activation_fn + +TOKEN_WHITE_LIST = [1, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509] + + +class ImgLinearBackbone(nn.Module): + def __init__( + self, + d_model: int, + patch_size: int, + in_chan: int = 3, + ) -> None: + super().__init__() + + self.conv_proj = nn.Conv2d( + in_chan, + out_channels=d_model, + kernel_size=patch_size, + stride=patch_size, + ) + self.d_model = d_model + + def forward(self, x: Tensor) -> Tensor: + x = self.conv_proj(x) + x = x.flatten(start_dim=-2).transpose(1, 2) + return x + + +class Encoder(nn.Module): + def __init__( + self + ) -> None: + super().__init__() + + self.patch_size = 16 + self.d_model = 768 + self.dropout = 0 + self.activation = "gelu" + self.norm_first = True + self.ff_ratio = 4 + self.nhead = 12 + self.max_seq_len = 1024 + self.n_encoder_layer = 12 + encoder_layer = nn.TransformerEncoderLayer( + self.d_model, + nhead=self.nhead, + dim_feedforward=self.ff_ratio * self.d_model, + dropout=self.dropout, + activation=self.activation, + batch_first=True, + norm_first=self.norm_first, + ) + norm_layer=partial(nn.LayerNorm, eps=1e-6) + self.norm = norm_layer(self.d_model) + self.backbone = ImgLinearBackbone(d_model=self.d_model, patch_size=self.patch_size) + self.pos_embed = PositionEmbedding(max_seq_len=self.max_seq_len, d_model=self.d_model, dropout=self.dropout) + self.encoder = nn.TransformerEncoder(encoder_layer, num_layers=self.n_encoder_layer, enable_nested_tensor=False) + + def forward(self, x: Tensor) -> Tensor: + src_feature = self.backbone(x) + src_feature = self.pos_embed(src_feature) + memory = self.encoder(src_feature) + memory = self.norm(memory) + return memory + + +class PositionEmbedding(nn.Module): + def __init__(self, max_seq_len: int, d_model: int, dropout: float) -> None: + super().__init__() + self.embedding = nn.Embedding(max_seq_len, d_model) + self.dropout = nn.Dropout(dropout) + + def forward(self, x: Tensor, input_pos: Optional[Tensor] = None) -> Tensor: + # assume x is batch first + if input_pos is None: + _pos = torch.arange(x.shape[1], device=x.device) + else: + _pos = input_pos + out = self.embedding(_pos) + return self.dropout(out + x) + + +class TokenEmbedding(nn.Module): + def __init__( + self, + vocab_size: int, + d_model: int, + padding_idx: int, + ) -> None: + super().__init__() + assert vocab_size > 0 + self.embedding = nn.Embedding(vocab_size, d_model, padding_idx=padding_idx) + + def forward(self, x: Tensor) -> Tensor: + return self.embedding(x) + + +def find_multiple(n: int, k: int) -> int: + if n % k == 0: + return n + return n + k - (n % k) + + +@dataclass +class ModelArgs: + n_layer: int = 4 + n_head: int = 12 + dim: int = 768 + intermediate_size: int = None + head_dim: int = 64 + activation: str = "gelu" + norm_first: bool = True + + def __post_init__(self): + if self.intermediate_size is None: + hidden_dim = 4 * self.dim + n_hidden = int(2 * hidden_dim / 3) + self.intermediate_size = find_multiple(n_hidden, 256) + self.head_dim = self.dim // self.n_head + +class KVCache(nn.Module): + def __init__( + self, + max_batch_size, + max_seq_length, + n_heads, + head_dim, + dtype=torch.bfloat16, + device="cpu", + ): + super().__init__() + cache_shape = (max_batch_size, n_heads, max_seq_length, head_dim) + self.register_buffer("k_cache", torch.zeros(cache_shape, dtype=dtype, device=device), persistent=False) + self.register_buffer("v_cache", torch.zeros(cache_shape, dtype=dtype, device=device), persistent=False) + + def update(self, input_pos, k_val, v_val): + # input_pos: [S], k_val: [B, H, S, D] + # assert input_pos.shape[0] == k_val.shape[2] + + bs = k_val.shape[0] + k_out = self.k_cache + v_out = self.v_cache + k_out[:bs, :, input_pos] = k_val + v_out[:bs, :, input_pos] = v_val + + return k_out[:bs], v_out[:bs] + +class GPTFastDecoder(nn.Module): + def __init__( + self + ) -> None: + super().__init__() + + + self.vocab_size = 960 + self.padding_idx = 2 + self.prefix_token_id = 11 + self.eos_id = 1 + self.max_seq_len = 1024 + self.dropout = 0 + self.d_model = 768 + self.nhead = 12 + self.activation = "gelu" + self.norm_first = True + self.n_decoder_layer = 4 + config = ModelArgs( + n_layer=self.n_decoder_layer, + n_head=self.nhead, + dim=self.d_model, + intermediate_size=self.d_model * 4, + activation=self.activation, + norm_first=self.norm_first, + ) + self.config = config + self.layers = nn.ModuleList(TransformerBlock(config) for _ in range(config.n_layer)) + self.token_embed = TokenEmbedding(vocab_size=self.vocab_size, d_model=self.d_model, padding_idx=self.padding_idx) + self.pos_embed = PositionEmbedding(max_seq_len=self.max_seq_len, d_model=self.d_model, dropout=self.dropout) + self.generator = nn.Linear(self.d_model, self.vocab_size) + self.token_white_list = TOKEN_WHITE_LIST + self.mask_cache: Optional[Tensor] = None + self.max_batch_size = -1 + self.max_seq_length = -1 + + def setup_caches(self, max_batch_size, max_seq_length, dtype, device): + for b in self.layers: + b.multihead_attn.k_cache = None + b.multihead_attn.v_cache = None + + if self.max_seq_length >= max_seq_length and self.max_batch_size >= max_batch_size: + return + head_dim = self.config.dim // self.config.n_head + max_seq_length = find_multiple(max_seq_length, 8) + self.max_seq_length = max_seq_length + self.max_batch_size = max_batch_size + + for b in self.layers: + b.self_attn.kv_cache = KVCache( + max_batch_size, + max_seq_length, + self.config.n_head, + head_dim, + dtype, + device + ) + b.multihead_attn.k_cache = None + b.multihead_attn.v_cache = None + + self.causal_mask = torch.tril(torch.ones(self.max_seq_length, self.max_seq_length, dtype=torch.bool)).to(device) + + def forward( + self, + memory: Tensor, + tgt: Tensor + ) -> Tensor: + + input_pos = torch.tensor([tgt.shape[1] - 1], device=tgt.device, dtype=torch.int) + tgt = tgt[:, -1:] + tgt_feature = self.pos_embed(self.token_embed(tgt), input_pos=input_pos) + # tgt = self.decoder(tgt_feature, memory, input_pos) + with torch.backends.cuda.sdp_kernel(enable_flash=False, enable_mem_efficient=False, enable_math=True): + logits = tgt_feature + tgt_mask = self.causal_mask[None, None, input_pos] + for i, layer in enumerate(self.layers): + logits = layer(logits, memory, input_pos=input_pos, tgt_mask=tgt_mask) + # return output + logits = self.generator(logits)[:, -1, :] + total = set([i for i in range(logits.shape[-1])]) + black_list = list(total.difference(set(self.token_white_list))) + logits[..., black_list] = -1e9 + probs = F.softmax(logits, dim=-1) + _, next_tokens = probs.topk(1) + return next_tokens + +class TransformerBlock(nn.Module): + def __init__(self, config: ModelArgs) -> None: + super().__init__() + self.self_attn = Attention(config) + self.multihead_attn = CrossAttention(config) + + layer_norm_eps = 1e-5 + + d_model = config.dim + dim_feedforward = config.intermediate_size + + self.linear1 = nn.Linear(d_model, dim_feedforward) + self.linear2 = nn.Linear(dim_feedforward, d_model) + + self.norm_first = config.norm_first + self.norm1 = nn.LayerNorm(d_model, eps=layer_norm_eps) + self.norm2 = nn.LayerNorm(d_model, eps=layer_norm_eps) + self.norm3 = nn.LayerNorm(d_model, eps=layer_norm_eps) + + self.activation = _get_activation_fn(config.activation) + + def forward( + self, + tgt: Tensor, + memory: Tensor, + tgt_mask: Tensor, + input_pos: Tensor, + ) -> Tensor: + if self.norm_first: + x = tgt + x = x + self.self_attn(self.norm1(x), tgt_mask, input_pos) + x = x + self.multihead_attn(self.norm2(x), memory) + x = x + self._ff_block(self.norm3(x)) + else: + x = tgt + x = self.norm1(x + self.self_attn(x, tgt_mask, input_pos)) + x = self.norm2(x + self.multihead_attn(x, memory)) + x = self.norm3(x + self._ff_block(x)) + return x + + def _ff_block(self, x: Tensor) -> Tensor: + x = self.linear2(self.activation(self.linear1(x))) + return x + + +class Attention(nn.Module): + def __init__(self, config: ModelArgs): + super().__init__() + assert config.dim % config.n_head == 0 + + # key, query, value projections for all heads, but in a batch + self.wqkv = nn.Linear(config.dim, 3 * config.dim) + self.wo = nn.Linear(config.dim, config.dim) + + self.kv_cache: Optional[KVCache] = None + + self.n_head = config.n_head + self.head_dim = config.head_dim + self.dim = config.dim + + def forward( + self, + x: Tensor, + mask: Tensor, + input_pos: Optional[Tensor] = None, + ) -> Tensor: + bsz, seqlen, _ = x.shape + + kv_size = self.n_head * self.head_dim + q, k, v = self.wqkv(x).split([self.dim, kv_size, kv_size], dim=-1) + + q = q.view(bsz, seqlen, self.n_head, self.head_dim) + k = k.view(bsz, seqlen, self.n_head, self.head_dim) + v = v.view(bsz, seqlen, self.n_head, self.head_dim) + + q, k, v = map(lambda x: x.transpose(1, 2), (q, k, v)) + + if self.kv_cache is not None: + k, v = self.kv_cache.update(input_pos, k, v) + + y = F.scaled_dot_product_attention(q, k, v, attn_mask=mask, dropout_p=0.0) + + y = y.transpose(1, 2).contiguous().view(bsz, seqlen, self.dim) + + y = self.wo(y) + return y + + +class CrossAttention(nn.Module): + def __init__(self, config: ModelArgs): + super().__init__() + assert config.dim % config.n_head == 0 + + self.query = nn.Linear(config.dim, config.dim) + self.key = nn.Linear(config.dim, config.dim) + self.value = nn.Linear(config.dim, config.dim) + self.out = nn.Linear(config.dim, config.dim) + + self.k_cache = None + self.v_cache = None + + self.n_head = config.n_head + self.head_dim = config.head_dim + + def get_kv(self, xa: torch.Tensor): + if self.k_cache is not None and self.v_cache is not None: + return self.k_cache, self.v_cache + + k = self.key(xa) + v = self.value(xa) + + # Reshape for correct format + batch_size, source_seq_len, _ = k.shape + k = k.view(batch_size, source_seq_len, self.n_head, self.head_dim) + v = v.view(batch_size, source_seq_len, self.n_head, self.head_dim) + + if self.k_cache is None: + self.k_cache = k + if self.v_cache is None: + self.v_cache = v + + return k, v + + def forward( + self, + x: Tensor, + xa: Tensor, + ): + q = self.query(x) + batch_size, target_seq_len, _ = q.shape + q = q.view(batch_size, target_seq_len, self.n_head, self.head_dim) + k, v = self.get_kv(xa) + + q, k, v = map(lambda x: x.transpose(1, 2), (q, k, v)) + + wv = F.scaled_dot_product_attention( + query=q, + key=k, + value=v, + is_causal=False, + ) + wv = wv.transpose(1, 2).reshape( + batch_size, + target_seq_len, + self.n_head * self.head_dim, + ) + + return self.out(wv) diff --git a/rapid_table_torch/table_structure/table_structure.py b/rapid_table_torch/table_structure/table_structure.py new file mode 100644 index 0000000..32f3fa0 --- /dev/null +++ b/rapid_table_torch/table_structure/table_structure.py @@ -0,0 +1,213 @@ +import re +import time + +import cv2 +import numpy as np +import torch +from PIL import Image +from tokenizers import Tokenizer + +from .components import Encoder, GPTFastDecoder +from torchvision import transforms + +IMG_SIZE = 448 +EOS_TOKEN = "" +BBOX_TOKENS = [f"bbox-{i}" for i in range(IMG_SIZE + 1)] + +HTML_BBOX_HTML_TOKENS = [ + "", + "[", + "]", + "[", + ">", + "", + "", + "", + "", + "", + "", + ' rowspan="2"', + ' rowspan="3"', + ' rowspan="4"', + ' rowspan="5"', + ' rowspan="6"', + ' rowspan="7"', + ' rowspan="8"', + ' rowspan="9"', + ' rowspan="10"', + ' rowspan="11"', + ' rowspan="12"', + ' rowspan="13"', + ' rowspan="14"', + ' rowspan="15"', + ' rowspan="16"', + ' rowspan="17"', + ' rowspan="18"', + ' rowspan="19"', + ' colspan="2"', + ' colspan="3"', + ' colspan="4"', + ' colspan="5"', + ' colspan="6"', + ' colspan="7"', + ' colspan="8"', + ' colspan="9"', + ' colspan="10"', + ' colspan="11"', + ' colspan="12"', + ' colspan="13"', + ' colspan="14"', + ' colspan="15"', + ' colspan="16"', + ' colspan="17"', + ' colspan="18"', + ' colspan="19"', + ' colspan="25"', +] + +VALID_HTML_BBOX_TOKENS = [EOS_TOKEN] + HTML_BBOX_HTML_TOKENS + BBOX_TOKENS +TASK_TOKENS = [ + "[table]", + "[html]", + "[cell]", + "[bbox]", + "[cell+bbox]", + "[html+bbox]", +] + + +class TableStructurer: + def __init__(self, encoder_path: str, decoder_path: str, vocab_path: str, device: str): + self.vocab = Tokenizer.from_file(vocab_path) + self.token_white_list = [self.vocab.token_to_id(i) for i in VALID_HTML_BBOX_TOKENS] + self.bbox_token_ids = set([self.vocab.token_to_id(i) for i in BBOX_TOKENS]) + self.bbox_close_html_token = self.vocab.token_to_id("]") + self.prefix_token_id = self.vocab.token_to_id("[html+bbox]") + self.eos_id = self.vocab.token_to_id(EOS_TOKEN) + self.max_seq_len = 1024 + self.device = device + self.img_size = IMG_SIZE + # init encoder + encoder_state_dict = torch.load(encoder_path, map_location=device) + self.encoder = Encoder() + self.encoder.load_state_dict(encoder_state_dict) + self.encoder.eval().to(device) + # init decoder + decoder_state_dict = torch.load(decoder_path, map_location=device) + self.decoder = GPTFastDecoder() + self.decoder.load_state_dict(decoder_state_dict) + self.decoder.eval().to(device) + # define img transform + self.transform = transforms.Compose( + [ + transforms.Resize((448, 448)), + transforms.ToTensor(), + transforms.Normalize( + mean=[0.86597056, 0.88463002, 0.87491087], + std=[0.20686628, 0.18201602, 0.18485524], + ), + ] + ) + + + @torch.inference_mode() + def __call__( + self, + image: np.ndarray, + ): + start_time = time.time() + ori_h, ori_w = image.shape[:2] + image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB) + image = Image.fromarray(image) + image = self.transform(image).unsqueeze(0).to(self.device) + self.decoder.setup_caches( + max_batch_size=1, + max_seq_length=self.max_seq_len, + dtype=image.dtype, + device=self.device + ) + context = torch.tensor([self.prefix_token_id], dtype=torch.int32).repeat(1, 1).to(self.device) + eos_id_tensor = torch.tensor(self.eos_id, dtype=torch.int32).to(self.device) + memory = self.encoder(image) + context = self.loop_decode(context, eos_id_tensor, memory) + bboxes, html_tokens = self.decode_tokens(context) + bboxes = bboxes.astype(np.float32) + # rescale boxes + scale_h = ori_h / self.img_size + scale_w = ori_w / self.img_size + bboxes[:, 0::2] *= scale_w # 缩放 x 坐标 + bboxes[:, 1::2] *= scale_h # 缩放 y 坐标 + bboxes[:, 0::2] = np.clip(bboxes[:, 0::2], 0, ori_w - 1) + bboxes[:, 1::2] = np.clip(bboxes[:, 1::2], 0, ori_h - 1) + structure_str_list = ( + ["", "", ""] + + html_tokens + + ["
", "", ""] + ) + return structure_str_list, bboxes, time.time() - start_time + + def decode_tokens(self, context): + pred_html = context[0] + pred_html = pred_html.detach().cpu().numpy() + pred_html = self.vocab.decode(pred_html, skip_special_tokens=False) + # pred_html = html_str_to_token_list(pred_html) + seq = pred_html.split("")[0] + token_black_list = ["", "", *TASK_TOKENS] + for i in token_black_list: + seq = seq.replace(i, "") + + # 正则表达式模式 + tr_pattern = re.compile(r'(.*?)', re.DOTALL) + td_pattern = re.compile(r'(.*?)', re.DOTALL) + bbox_pattern = re.compile(r'\[ bbox-(\d+) bbox-(\d+) bbox-(\d+) bbox-(\d+) \]') + + # 存储解码后的结果 + decoded_list = [] + bbox_coords = [] + + # 查找所有的 标签 + for tr_match in tr_pattern.finditer(pred_html): + tr_content = tr_match.group(1) + decoded_list.append('') + + # 查找所有的 标签 + for td_match in td_pattern.finditer(tr_content): + td_attrs = td_match.group(1).strip() + td_content = td_match.group(2).strip() + if td_attrs: + decoded_list.append('') + decoded_list.append('') + else: + decoded_list.append('') + + # 查找 bbox 坐标 + bbox_match = bbox_pattern.search(td_content) + if bbox_match: + xmin, ymin, xmax, ymax = map(int, bbox_match.groups()) + # 将坐标转换为从左上角开始顺时针到左下角的点的坐标 + coords = np.array([xmin, ymin, xmax, ymin, xmax, ymax, xmin, ymax]) + bbox_coords.append(coords) + + decoded_list.append('') + + # 将 bbox_coords 转换为 numpy 数组 + bbox_coords_array = np.array(bbox_coords) + return bbox_coords_array, decoded_list + + def loop_decode(self, context, eos_id_tensor, memory): + box_token_count = 0 + for _ in range(self.max_seq_len): + eos_flag = (context == eos_id_tensor).any(dim=1) + if torch.all(eos_flag): + break + next_tokens = self.decoder(memory, context) + if next_tokens[0] in self.bbox_token_ids: + box_token_count += 1 + if box_token_count > 4: + next_tokens = torch.tensor([self.bbox_close_html_token], dtype=torch.int32) + box_token_count = 0 + context = torch.cat([context, next_tokens], dim=1) + return context diff --git a/rapid_table_torch/table_structure/utils.py b/rapid_table_torch/table_structure/utils.py new file mode 100644 index 0000000..f2d76df --- /dev/null +++ b/rapid_table_torch/table_structure/utils.py @@ -0,0 +1,28 @@ +# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# -*- encoding: utf-8 -*- +# @Author: SWHL +# @Contact: liekkaskono@163.com + +def trans_char_ocr_res(ocr_res): + word_result = [] + for res in ocr_res: + score = res[2] + for word_box, word in zip(res[3], res[4]): + word_res = [] + word_res.append(word_box) + word_res.append(word) + word_res.append(score) + word_result.append(word_res) + return word_result diff --git a/rapid_table_torch/utils.py b/rapid_table_torch/utils.py new file mode 100644 index 0000000..e7135c5 --- /dev/null +++ b/rapid_table_torch/utils.py @@ -0,0 +1,210 @@ +# -*- encoding: utf-8 -*- +# @Author: SWHL +# @Contact: liekkaskono@163.com +import os +from io import BytesIO +from pathlib import Path +from typing import Optional, Union, List + +import cv2 +import numpy as np +from PIL import Image, UnidentifiedImageError + +InputType = Union[str, np.ndarray, bytes, Path] + + +class LoadImage: + def __init__( + self, + ): + pass + + def __call__(self, img: InputType) -> np.ndarray: + if not isinstance(img, InputType.__args__): + raise LoadImageError( + f"The img type {type(img)} does not in {InputType.__args__}" + ) + + img = self.load_img(img) + + if img.ndim == 2: + return cv2.cvtColor(img, cv2.COLOR_GRAY2BGR) + + if img.ndim == 3 and img.shape[2] == 4: + return self.cvt_four_to_three(img) + + return img + + def load_img(self, img: InputType) -> np.ndarray: + if isinstance(img, (str, Path)): + self.verify_exist(img) + try: + img = np.array(Image.open(img)) + img = cv2.cvtColor(img, cv2.COLOR_RGB2BGR) + except UnidentifiedImageError as e: + raise LoadImageError(f"cannot identify image file {img}") from e + return img + + if isinstance(img, bytes): + img = np.array(Image.open(BytesIO(img))) + img = cv2.cvtColor(img, cv2.COLOR_RGB2BGR) + return img + + if isinstance(img, np.ndarray): + return img + + raise LoadImageError(f"{type(img)} is not supported!") + + @staticmethod + def cvt_four_to_three(img: np.ndarray) -> np.ndarray: + """RGBA → RGB""" + r, g, b, a = cv2.split(img) + new_img = cv2.merge((b, g, r)) + + not_a = cv2.bitwise_not(a) + not_a = cv2.cvtColor(not_a, cv2.COLOR_GRAY2BGR) + + new_img = cv2.bitwise_and(new_img, new_img, mask=a) + new_img = cv2.add(new_img, not_a) + return new_img + + @staticmethod + def verify_exist(file_path: Union[str, Path]): + if not Path(file_path).exists(): + raise LoadImageError(f"{file_path} does not exist.") + + +class LoadImageError(Exception): + pass + + +class VisTable: + def __init__( + self, + ): + self.load_img = LoadImage() + + def __call__( + self, + img_path: Union[str, Path], + table_html_str: str, + save_html_path: Optional[str] = None, + table_cell_bboxes: Optional[np.ndarray] = None, + save_drawed_path: Optional[str] = None, + logic_points: List[List[float]] = None, + save_logic_path: Optional[str] = None, + ) -> None: + if save_html_path: + html_with_border = self.insert_border_style(table_html_str) + self.save_html(save_html_path, html_with_border) + + if table_cell_bboxes is None: + return None + + img = self.load_img(img_path) + + dims_bboxes = table_cell_bboxes.shape[1] + if dims_bboxes == 4: + drawed_img = self.draw_rectangle(img, table_cell_bboxes) + elif dims_bboxes == 8: + drawed_img = self.draw_polylines(img, table_cell_bboxes) + else: + raise ValueError("Shape of table bounding boxes is not between in 4 or 8.") + + if save_drawed_path: + self.save_img(save_drawed_path, drawed_img) + if save_logic_path and logic_points: + polygons = [[box[0],box[1], box[4], box[5]] for box in table_cell_bboxes] + self.plot_rec_box_with_logic_info(img_path, save_logic_path, logic_points, polygons) + return drawed_img + + def insert_border_style(self, table_html_str: str): + style_res = f"""""" + prefix_table, suffix_table = table_html_str.split("") + html_with_border = f"{prefix_table}{style_res}{suffix_table}" + return html_with_border + + def plot_rec_box_with_logic_info(self, img_path, output_path, logic_points, sorted_polygons): + """ + :param img_path + :param output_path + :param logic_points: [row_start,row_end,col_start,col_end] + :param sorted_polygons: [xmin,ymin,xmax,ymax] + :return: + """ + # 读取原图 + img = cv2.imread(img_path) + img = cv2.copyMakeBorder( + img, 0, 0, 0, 100, cv2.BORDER_CONSTANT, value=[255, 255, 255] + ) + # 绘制 polygons 矩形 + for idx, polygon in enumerate(sorted_polygons): + x0, y0, x1, y1 = polygon[0], polygon[1], polygon[2], polygon[3] + x0 = round(x0) + y0 = round(y0) + x1 = round(x1) + y1 = round(y1) + cv2.rectangle(img, (x0, y0), (x1, y1), (0, 0, 255), 1) + # 增大字体大小和线宽 + font_scale = 0.9 # 原先是0.5 + thickness = 1 # 原先是1 + logic_point = logic_points[idx] + cv2.putText( + img, + f"row: {logic_point[0]}-{logic_point[1]}", + (x0 + 3, y0 + 8), + cv2.FONT_HERSHEY_PLAIN, + font_scale, + (0, 0, 255), + thickness, + ) + cv2.putText( + img, + f"col: {logic_point[2]}-{logic_point[3]}", + (x0 + 3, y0 + 18), + cv2.FONT_HERSHEY_PLAIN, + font_scale, + (0, 0, 255), + thickness, + ) + os.makedirs(os.path.dirname(output_path), exist_ok=True) + # 保存绘制后的图像 + self.save_img(output_path, img) + + @staticmethod + def draw_rectangle(img: np.ndarray, boxes: np.ndarray) -> np.ndarray: + img_copy = img.copy() + for box in boxes.astype(int): + x1, y1, x2, y2 = box + cv2.rectangle(img_copy, (x1, y1), (x2, y2), (255, 0, 0), 2) + return img_copy + + @staticmethod + def draw_polylines(img: np.ndarray, points) -> np.ndarray: + img_copy = img.copy() + for point in points.astype(int): + point = point.reshape(4, 2) + cv2.polylines(img_copy, [point.astype(int)], True, (255, 0, 0), 2) + return img_copy + + @staticmethod + def save_img(save_path: Union[str, Path], img: np.ndarray): + cv2.imwrite(str(save_path), img) + + @staticmethod + def save_html(save_path: Union[str, Path], html: str): + with open(save_path, "w", encoding="utf-8") as f: + f.write(html) diff --git a/requirements_torch.txt b/requirements_torch.txt new file mode 100644 index 0000000..4ba3572 --- /dev/null +++ b/requirements_torch.txt @@ -0,0 +1,8 @@ +onnxruntime>=1.7.0 +opencv_python>=4.5.1.48 +numpy>=1.21.6,<2 +Pillow +requests +torch +torchvision +tokenizers \ No newline at end of file diff --git a/setup_torch.py b/setup_torch.py new file mode 100644 index 0000000..e7b73c5 --- /dev/null +++ b/setup_torch.py @@ -0,0 +1,66 @@ +# -*- encoding: utf-8 -*- +# @Author: SWHL +# @Contact: liekkaskono@163.com +import sys +from pathlib import Path + +import setuptools +from get_pypi_latest_version import GetPyPiLatestVersion + + +def get_readme(): + root_dir = Path(__file__).resolve().parent + readme_path = str(root_dir / "docs" / "doc_whl_rapid_table.md") + with open(readme_path, "r", encoding="utf-8") as f: + readme = f.read() + return readme + + +MODULE_NAME = "rapid_table_torch" +obtainer = GetPyPiLatestVersion() +latest_version = obtainer(MODULE_NAME) +VERSION_NUM = obtainer.version_add_one(latest_version) + +if len(sys.argv) > 2: + match_str = " ".join(sys.argv[2:]) + matched_versions = obtainer.extract_version(match_str) + if matched_versions: + VERSION_NUM = matched_versions +sys.argv = sys.argv[:2] + +setuptools.setup( + name=MODULE_NAME, + version=VERSION_NUM, + platforms="Any", + long_description=get_readme(), + long_description_content_type="text/markdown", + description="Tools for parsing table structures based pytorch.", + author="SWHL", + author_email="liekkaskono@163.com", + url="https://github.com/RapidAI/RapidTable", + license="Apache-2.0", + include_package_data=True, + install_requires=[ + "opencv_python>=4.5.1.48", + "numpy>=1.21.6", + "Pillow", + "torch", + "torchvision", + "tokenizers" + ], + packages=[ + MODULE_NAME, + f"{MODULE_NAME}.models", + f"{MODULE_NAME}.table_matcher", + f"{MODULE_NAME}.table_structure", + ], + package_data={"": [".gitkeep"]}, + keywords=["unitable,table,rapidocr,rapid_table"], + classifiers=[ + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + ], + python_requires=">=3.10,<3.13", + entry_points={"console_scripts": [f"{MODULE_NAME}={MODULE_NAME}.main:main"]}, +) diff --git a/tests/test_table_torch.py b/tests/test_table_torch.py new file mode 100644 index 0000000..f143f17 --- /dev/null +++ b/tests/test_table_torch.py @@ -0,0 +1,35 @@ +# -*- encoding: utf-8 -*- +# @Author: SWHL +# @Contact: liekkaskono@163.com +import sys +from pathlib import Path + +from rapidocr_onnxruntime import RapidOCR + +cur_dir = Path(__file__).resolve().parent +root_dir = cur_dir.parent + +sys.path.append(str(root_dir)) + +from rapid_table_torch import RapidTable + +ocr_engine = RapidOCR() +table_engine = RapidTable() + +test_file_dir = cur_dir / "test_files" +img_path = str(test_file_dir / "table.jpg") + + +def test_ocr_input(): + ocr_res, _ = ocr_engine(img_path) + table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path, ocr_res) + assert table_html_str.count("") == 16 + + +def test_input_ocr_none(): + table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path) + assert table_html_str.count("") == 16 + +def test_logic_points_out(): + table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path, return_logic_points=True) + assert len(table_cell_bboxes) == len(logic_points) From b96126798869bcd7efa78f5f2d5463d822007959 Mon Sep 17 00:00:00 2001 From: Joker1212 <519548295@qq.com> Date: Mon, 30 Dec 2024 14:38:01 +0800 Subject: [PATCH 02/23] chore: fix publish workflow --- .github/workflows/publish_whl_torch.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/publish_whl_torch.yml b/.github/workflows/publish_whl_torch.yml index ac7aecc..5e836a9 100644 --- a/.github/workflows/publish_whl_torch.yml +++ b/.github/workflows/publish_whl_torch.yml @@ -1,4 +1,4 @@ -name: Push rapidocr_table to pypi +name: Push rapidocr_table_torch to pypi on: push: @@ -27,12 +27,6 @@ jobs: - name: Unit testings run: | - wget $RESOURCES_URL - ZIP_NAME=${RESOURCES_URL##*/} - DIR_NAME=${ZIP_NAME%.*} - unzip $DIR_NAME - cp $DIR_NAME/*.pth rapid_table_torch/models/ - cp $DIR_NAME/*.json rapid_table_torch/models/ pip install -r requirements_torch.txt pip install rapidocr_onnxruntime pip install pytest From ba681367bdc7bc1fac614ef4f93079d5c8873337 Mon Sep 17 00:00:00 2001 From: Joker1212 <519548295@qq.com> Date: Mon, 30 Dec 2024 14:44:29 +0800 Subject: [PATCH 03/23] test: fix base test --- tests/test_table_torch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_table_torch.py b/tests/test_table_torch.py index f143f17..640257c 100644 --- a/tests/test_table_torch.py +++ b/tests/test_table_torch.py @@ -31,5 +31,5 @@ def test_input_ocr_none(): assert table_html_str.count("") == 16 def test_logic_points_out(): - table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path, return_logic_points=True) + table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path) assert len(table_cell_bboxes) == len(logic_points) From 5d4b1821da883c6656785bdd216a9bfb5f94da83 Mon Sep 17 00:00:00 2001 From: Joker1212 <519548295@qq.com> Date: Mon, 30 Dec 2024 15:03:54 +0800 Subject: [PATCH 04/23] chore: fix rapid_table_torch push workflow --- .github/workflows/publish_whl_torch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish_whl_torch.yml b/.github/workflows/publish_whl_torch.yml index 5e836a9..09bee91 100644 --- a/.github/workflows/publish_whl_torch.yml +++ b/.github/workflows/publish_whl_torch.yml @@ -50,7 +50,7 @@ jobs: pip install -r requirements_torch.txt python -m pip install --upgrade pip pip install wheel get_pypi_latest_version - python setup.py bdist_wheel ${{ github.ref_name }} + python setup_torch.py bdist_wheel ${{ github.ref_name }} - name: Publish distribution 📦 to PyPI uses: pypa/gh-action-pypi-publish@v1.5.0 From 01869dbeb4a34faac7cc2554736a85ad1ebc20de Mon Sep 17 00:00:00 2001 From: Joker1212 <519548295@qq.com> Date: Mon, 30 Dec 2024 15:17:57 +0800 Subject: [PATCH 05/23] chore: fix setup_torch --- setup_torch.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup_torch.py b/setup_torch.py index e7b73c5..b332a20 100644 --- a/setup_torch.py +++ b/setup_torch.py @@ -18,7 +18,10 @@ def get_readme(): MODULE_NAME = "rapid_table_torch" obtainer = GetPyPiLatestVersion() -latest_version = obtainer(MODULE_NAME) +try: + latest_version = obtainer(MODULE_NAME) +except Exception: + latest_version = "0.0.0" VERSION_NUM = obtainer.version_add_one(latest_version) if len(sys.argv) > 2: From 97b685ff187a7f76c2deee0f9c265eb4b178f4a5 Mon Sep 17 00:00:00 2001 From: Joker1212 <519548295@qq.com> Date: Mon, 30 Dec 2024 17:07:04 +0800 Subject: [PATCH 06/23] feat: optimize torch inference --- .github/workflows/publish_whl.yml | 4 + .github/workflows/publish_whl_torch.yml | 59 ----- README.md | 64 +---- demo_torch.py | 50 ++-- .../download_model.py | 24 +- {rapid_table_torch => rapid_table}/logger.py | 0 rapid_table/main.py | 29 +- rapid_table/params.py | 40 +++ rapid_table/table_structure/__init__.py | 1 + .../table_structure_unitable.py | 13 +- .../table_structure/unitable_modules.py | 0 rapid_table/utils.py | 1 + rapid_table_torch/__init__.py | 2 - rapid_table_torch/main.py | 155 ----------- rapid_table_torch/table_matcher/__init__.py | 4 - rapid_table_torch/table_matcher/matcher.py | 192 -------------- rapid_table_torch/table_matcher/utils.py | 248 ------------------ rapid_table_torch/table_structure/__init__.py | 1 - rapid_table_torch/table_structure/utils.py | 28 -- rapid_table_torch/utils.py | 210 --------------- requirements_torch.txt | 8 - setup.py | 1 + setup_torch.py | 69 ----- tests/test_table_torch.py | 10 +- 24 files changed, 130 insertions(+), 1083 deletions(-) delete mode 100644 .github/workflows/publish_whl_torch.yml rename {rapid_table_torch => rapid_table}/download_model.py (70%) rename {rapid_table_torch => rapid_table}/logger.py (100%) create mode 100644 rapid_table/params.py rename rapid_table_torch/table_structure/table_structure.py => rapid_table/table_structure/table_structure_unitable.py (93%) rename rapid_table_torch/table_structure/components.py => rapid_table/table_structure/unitable_modules.py (100%) delete mode 100644 rapid_table_torch/__init__.py delete mode 100644 rapid_table_torch/main.py delete mode 100644 rapid_table_torch/table_matcher/__init__.py delete mode 100644 rapid_table_torch/table_matcher/matcher.py delete mode 100644 rapid_table_torch/table_matcher/utils.py delete mode 100644 rapid_table_torch/table_structure/__init__.py delete mode 100644 rapid_table_torch/table_structure/utils.py delete mode 100644 rapid_table_torch/utils.py delete mode 100644 requirements_torch.txt delete mode 100644 setup_torch.py diff --git a/.github/workflows/publish_whl.yml b/.github/workflows/publish_whl.yml index 99e137c..7e135b3 100644 --- a/.github/workflows/publish_whl.yml +++ b/.github/workflows/publish_whl.yml @@ -34,8 +34,12 @@ jobs: pip install -r requirements.txt pip install rapidocr_onnxruntime + pip install torch + pip install torchvision + pip install tokenizers pip install pytest pytest tests/test_table.py + pytest tests/test_table_torch.py GenerateWHL_PushPyPi: needs: UnitTesting diff --git a/.github/workflows/publish_whl_torch.yml b/.github/workflows/publish_whl_torch.yml deleted file mode 100644 index 09bee91..0000000 --- a/.github/workflows/publish_whl_torch.yml +++ /dev/null @@ -1,59 +0,0 @@ -name: Push rapidocr_table_torch to pypi - -on: - push: - tags: - - torch_v* - -env: - RESOURCES_URL: https://github.com/RapidAI/RapidTable/releases/download/assets/unitable.zip - - -jobs: - UnitTesting: - runs-on: ubuntu-latest - steps: - - name: Pull latest code - uses: actions/checkout@v3 - - - name: Set up Python 3.10 - uses: actions/setup-python@v4 - with: - python-version: '3.10' - architecture: 'x64' - - - name: Display Python version - run: python -c "import sys; print(sys.version)" - - - name: Unit testings - run: | - pip install -r requirements_torch.txt - pip install rapidocr_onnxruntime - pip install pytest - pytest tests/test_table_torch.py - - GenerateWHL_PushPyPi: - needs: UnitTesting - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Set up Python 3.10 - uses: actions/setup-python@v4 - with: - python-version: '3.10' - architecture: 'x64' - - - name: Run setup_torch.py - run: | - pip install -r requirements_torch.txt - python -m pip install --upgrade pip - pip install wheel get_pypi_latest_version - python setup_torch.py bdist_wheel ${{ github.ref_name }} - - - name: Publish distribution 📦 to PyPI - uses: pypa/gh-action-pypi-publish@v1.5.0 - with: - password: ${{ secrets.RAPID_TABLE }} - packages_dir: dist/ diff --git a/README.md b/README.md index a621571..89b0f59 100644 --- a/README.md +++ b/README.md @@ -105,8 +105,8 @@ RapidTable是整理自PP-Structure中表格识别部分而来。由于PP-Structu ```bash pip install rapidocr_onnxruntime pip install rapid_table -#pip install rapid_table_torch # for unitable inference -#pip install onnxruntime-gpu # for gpu inference +#pip install rapid_table[torch] # for unitable inference +#pip install onnxruntime-gpu # for onnx gpu inference ``` ### 使用方式 @@ -117,6 +117,7 @@ RapidTable类提供model_path参数,可以自行指定上述2个模型,默 ```python table_engine = RapidTable() +# table_engine = RapidTable(use_cuda=True, device="cuda:0", model_type="unitable") ``` 完整示例: @@ -132,6 +133,8 @@ from rapid_table.table_structure.utils import trans_char_ocr_res table_engine = RapidTable() # 开启onnx-gpu推理 # table_engine = RapidTable(use_cuda=True) +# 使用torch推理版本的unitable模型 +# table_engine = RapidTable(use_cuda=True, device="cuda:0", model_type="unitable") ocr_engine = RapidOCR() viser = VisTable() @@ -159,41 +162,8 @@ viser(img_path, table_html_str, save_html_path, table_cell_bboxes, save_drawed_p print(table_html_str) ``` -#### torch版本 -```python -from pathlib import Path -from rapidocr_onnxruntime import RapidOCR - -from rapid_table_torch import RapidTable, VisTable -from rapid_table_torch.table_structure.utils import trans_char_ocr_res - -if __name__ == '__main__': -# Init -ocr_engine = RapidOCR() -table_engine = RapidTable(device="cpu") # 默认使用cpu,若使用cuda,则传入device="cuda:0" -viser = VisTable() -img_path = "tests/test_files/image34.png" -# OCR,本模型检测框比较精准,配合单字匹配效果更好 -ocr_result, _ = ocr_engine(img_path, return_word_box=True) -ocr_result = trans_char_ocr_res(ocr_result) -boxes, txts, scores = list(zip(*ocr_result)) -# Save -save_dir = Path("outputs") -save_dir.mkdir(parents=True, exist_ok=True) - -save_html_path = save_dir / f"{Path(img_path).stem}.html" -save_drawed_path = save_dir / f"{Path(img_path).stem}_table_vis{Path(img_path).suffix}" -# 返回逻辑坐标 -table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path, ocr_result) -save_logic_path = save_dir / f"vis_logic_{Path(img_path).name}" -vis_imged = viser(img_path, table_html_str, save_html_path, table_cell_bboxes, save_drawed_path, logic_points, - save_logic_path) -print(f"elapse:{elapse}") -``` - #### 终端运行 -##### onnx: - 用法: ```bash @@ -214,29 +184,7 @@ print(f"elapse:{elapse}") ```bash rapid_table -v -img test_images/table.jpg ``` - -##### pytorch: -- 用法: - - ```bash - $ rapid_table_torch -h - usage: rapid_table_torch [-h] [-v] -img IMG_PATH [-d DEVICE] - - optional arguments: - -h, --help show this help message and exit - -v, --vis Whether to visualize the layout results. - -img IMG_PATH, --img_path IMG_PATH - Path to image for layout. - -d DEVICE, --device device - The model device used for inference. - ``` - -- 示例: - - ```bash - rapid_table_torch -v -img test_images/table.jpg - ``` - + ### 结果 #### 返回结果 diff --git a/demo_torch.py b/demo_torch.py index e8dc1e0..72a2d44 100644 --- a/demo_torch.py +++ b/demo_torch.py @@ -4,31 +4,29 @@ from pathlib import Path from rapidocr_onnxruntime import RapidOCR -from rapid_table_torch import RapidTable, VisTable -from rapid_table_torch.table_structure.utils import trans_char_ocr_res +from rapid_table import RapidTable, VisTable +from rapid_table.table_structure.utils import trans_char_ocr_res -if __name__ == '__main__': - # Init - ocr_engine = RapidOCR() - table_engine = RapidTable(encoder_path="rapid_table_torch/models/encoder.pth", - decoder_path="rapid_table_torch/models/decoder.pth", - vocab_path="rapid_table_torch/models/vocab.json", - device="cpu") - viser = VisTable() - img_path = "tests/test_files/image34.png" - # OCR - ocr_result, _ = ocr_engine(img_path, return_word_box=True) - ocr_result = trans_char_ocr_res(ocr_result) - boxes, txts, scores = list(zip(*ocr_result)) - # Save - save_dir = Path("outputs") - save_dir.mkdir(parents=True, exist_ok=True) +ocr_engine = RapidOCR() +table_engine = RapidTable(use_cuda=True, device="cuda:0", model_type="unitable") +viser = VisTable() +img_path = "tests/test_files/table.jpg" +# OCR +ocr_result, _ = ocr_engine(img_path, return_word_box=True) +ocr_result = trans_char_ocr_res(ocr_result) +boxes, txts, scores = list(zip(*ocr_result)) +# Save +save_dir = Path("outputs") +save_dir.mkdir(parents=True, exist_ok=True) - save_html_path = save_dir / f"{Path(img_path).stem}.html" - save_drawed_path = save_dir / f"{Path(img_path).stem}_table_vis{Path(img_path).suffix}" - # 返回逻辑坐标 - table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path, ocr_result) - save_logic_path = save_dir / f"vis_logic_{Path(img_path).name}" - vis_imged = viser(img_path, table_html_str, save_html_path, table_cell_bboxes, save_drawed_path, logic_points, - save_logic_path) - print(f"elapse:{elapse}") +save_html_path = save_dir / f"{Path(img_path).stem}.html" +save_drawed_path = save_dir / f"{Path(img_path).stem}_table_vis{Path(img_path).suffix}" + +table_html_str, table_cell_bboxes, elapse = table_engine(img_path, ocr_result) +viser(img_path, table_html_str, save_html_path, table_cell_bboxes, save_drawed_path) +# 返回逻辑坐标 +# table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path, ocr_result, return_logic_points=True) +# save_logic_path = save_dir / f"vis_logic_{Path(img_path).name}" +# vis_imged = viser(img_path, table_html_str, save_html_path, table_cell_bboxes, save_drawed_path, logic_points, +# save_logic_path) +print(f"elapse:{elapse}") diff --git a/rapid_table_torch/download_model.py b/rapid_table/download_model.py similarity index 70% rename from rapid_table_torch/download_model.py rename to rapid_table/download_model.py index d636f94..9e9c496 100644 --- a/rapid_table_torch/download_model.py +++ b/rapid_table/download_model.py @@ -10,11 +10,33 @@ logger = get_logger("DownloadModel") CUR_DIR = Path(__file__).resolve() PROJECT_DIR = CUR_DIR.parent - +ROOT_URL = "https://www.modelscope.cn/studio/jockerK/TableRec/resolve/master/models/table_rec/unitable/" +KEY_TO_MODEL_URL = { + "unitable": { + "encoder": f"{ROOT_URL}/encoder.pth", + "decoder": f"{ROOT_URL}/decoder.pth", + "vocab": f"{ROOT_URL}/vocab.json", + } +} class DownloadModel: cur_dir = PROJECT_DIR + @staticmethod + def get_model_path(model_type: str, sub_file_type: str, path: Union[str, Path, None]) -> str: + if path is not None: + return path + + model_url = KEY_TO_MODEL_URL.get(model_type, {}).get(sub_file_type, None) + if model_url: + model_path = DownloadModel.download(model_url) + return model_path + + logger.info( + "model url is None, using the default download model %s", path + ) + return path + @classmethod def download(cls, model_full_url: Union[str, Path]) -> str: save_dir = cls.cur_dir / "models" diff --git a/rapid_table_torch/logger.py b/rapid_table/logger.py similarity index 100% rename from rapid_table_torch/logger.py rename to rapid_table/logger.py diff --git a/rapid_table/main.py b/rapid_table/main.py index d620fe5..202f6e0 100644 --- a/rapid_table/main.py +++ b/rapid_table/main.py @@ -5,33 +5,34 @@ import copy import importlib import time +from dataclasses import asdict from pathlib import Path -from typing import List, Optional, Tuple, Union +from typing import List, Tuple, Union import cv2 import numpy as np +from .download_model import DownloadModel +from .params import accept_kwargs_as_dataclass, BaseConfig from .table_matcher import TableMatch -from .table_structure import TableStructurer +from .table_structure import TableStructurer, TableStructureUnitable from .utils import LoadImage, VisTable root_dir = Path(__file__).resolve().parent class RapidTable: - def __init__(self, model_path: Optional[str] = None, model_type: str = None, use_cuda: bool = False): - if model_path is None: - model_path = str( - root_dir / "models" / "slanet-plus.onnx" - ) - model_type = "slanet-plus" - self.model_type = model_type + @accept_kwargs_as_dataclass(BaseConfig) + def __init__(self, config: BaseConfig): + self.model_type = config.model_type self.load_img = LoadImage() - config = { - "model_path": model_path, - "use_cuda": use_cuda, - } - self.table_structure = TableStructurer(config) + if self.model_type == "unitable": + config.encoder_path = DownloadModel.get_model_path(self.model_type, "encoder", config.encoder_path) + config.decoder_path = DownloadModel.get_model_path(self.model_type, "decoder", config.decoder_path) + config.vocab_path = DownloadModel.get_model_path(self.model_type, "vocab", config.vocab_path) + self.table_structure = TableStructureUnitable(asdict(config)) + else: + self.table_structure = TableStructurer(asdict(config)) self.table_matcher = TableMatch() try: diff --git a/rapid_table/params.py b/rapid_table/params.py new file mode 100644 index 0000000..c5756aa --- /dev/null +++ b/rapid_table/params.py @@ -0,0 +1,40 @@ +from dataclasses import dataclass, fields +from functools import wraps +from pathlib import Path + +from rapid_table.logger import get_logger + +root_dir = Path(__file__).resolve().parent +logger = get_logger("params") + +@dataclass +class BaseConfig: + model_type: str = "slanet-plus" + model_path: str = str(root_dir / "models" / "slanet-plus.onnx") + use_cuda: bool = False + device: str = "cpu" + encoder_path: str = None + decoder_path: str = None + vocab_path: str = None + + +def accept_kwargs_as_dataclass(cls): + def decorator(func): + @wraps(func) + def wrapper(*args, **kwargs): + if len(args) == 2 and isinstance(args[1], cls): + # 如果已经传递了 ModelConfig 实例,直接调用函数 + return func(*args, **kwargs) + else: + # 提取 cls 中定义的字段 + cls_fields = {field.name for field in fields(cls)} + # 过滤掉未定义的字段 + filtered_kwargs = {k: v for k, v in kwargs.items() if k in cls_fields} + # 发出警告对于未定义的字段 + for k in (kwargs.keys() - cls_fields): + logger.warning(f"Warning: '{k}' is not a valid field in {cls.__name__} and will be ignored.") + # 创建 ModelConfig 实例并调用函数 + config = cls(**filtered_kwargs) + return func(args[0], config=config) + return wrapper + return decorator \ No newline at end of file diff --git a/rapid_table/table_structure/__init__.py b/rapid_table/table_structure/__init__.py index a548391..3e638d9 100644 --- a/rapid_table/table_structure/__init__.py +++ b/rapid_table/table_structure/__init__.py @@ -12,3 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. from .table_structure import TableStructurer +from .table_structure_unitable import TableStructureUnitable diff --git a/rapid_table_torch/table_structure/table_structure.py b/rapid_table/table_structure/table_structure_unitable.py similarity index 93% rename from rapid_table_torch/table_structure/table_structure.py rename to rapid_table/table_structure/table_structure_unitable.py index 32f3fa0..da9ed7f 100644 --- a/rapid_table_torch/table_structure/table_structure.py +++ b/rapid_table/table_structure/table_structure_unitable.py @@ -1,5 +1,6 @@ import re import time +from typing import Dict, Any import cv2 import numpy as np @@ -7,7 +8,7 @@ from PIL import Image from tokenizers import Tokenizer -from .components import Encoder, GPTFastDecoder +from .unitable_modules import Encoder, GPTFastDecoder from torchvision import transforms IMG_SIZE = 448 @@ -77,8 +78,14 @@ ] -class TableStructurer: - def __init__(self, encoder_path: str, decoder_path: str, vocab_path: str, device: str): +class TableStructureUnitable: + def __init__(self, config:Dict[str, Any]): + # encoder_path: str, decoder_path: str, vocab_path: str, device: str + vocab_path = config["vocab_path"] + encoder_path = config["encoder_path"] + decoder_path = config["decoder_path"] + device = config.get("device", "cuda:0") if config["use_cuda"] else "cpu" + self.vocab = Tokenizer.from_file(vocab_path) self.token_white_list = [self.vocab.token_to_id(i) for i in VALID_HTML_BBOX_TOKENS] self.bbox_token_ids = set([self.vocab.token_to_id(i) for i in BBOX_TOKENS]) diff --git a/rapid_table_torch/table_structure/components.py b/rapid_table/table_structure/unitable_modules.py similarity index 100% rename from rapid_table_torch/table_structure/components.py rename to rapid_table/table_structure/unitable_modules.py diff --git a/rapid_table/utils.py b/rapid_table/utils.py index e7135c5..77224ce 100644 --- a/rapid_table/utils.py +++ b/rapid_table/utils.py @@ -208,3 +208,4 @@ def save_img(save_path: Union[str, Path], img: np.ndarray): def save_html(save_path: Union[str, Path], html: str): with open(save_path, "w", encoding="utf-8") as f: f.write(html) + diff --git a/rapid_table_torch/__init__.py b/rapid_table_torch/__init__.py deleted file mode 100644 index 86c7b1c..0000000 --- a/rapid_table_torch/__init__.py +++ /dev/null @@ -1,2 +0,0 @@ -from .main import RapidTable -from .utils import VisTable diff --git a/rapid_table_torch/main.py b/rapid_table_torch/main.py deleted file mode 100644 index 5ef3dcc..0000000 --- a/rapid_table_torch/main.py +++ /dev/null @@ -1,155 +0,0 @@ -# -*- encoding: utf-8 -*- -# @Author: SWHL -# @Contact: liekkaskono@163.com -import argparse -import copy -import importlib -import os -import time -from pathlib import Path -from typing import List, Union - -import cv2 -import numpy as np - -from .download_model import DownloadModel -from .logger import get_logger -from .table_matcher import TableMatch -from .table_structure import TableStructurer -from .utils import LoadImage, VisTable - -root_dir = Path(__file__).resolve().parent -model_dir = os.path.join(root_dir, "models") -logger = get_logger("rapid_table_torch") -default_config = os.path.join(root_dir, "config.yaml") -ROOT_URL = "https://www.modelscope.cn/studio/jockerK/TableRec/resolve/master/models/table_rec/unitable/" -KEY_TO_MODEL_URL = { - "unitable": { - "encoder": f"{ROOT_URL}/encoder.pth", - "decoder": f"{ROOT_URL}/decoder.pth", - "vocab": f"{ROOT_URL}/vocab.json", - } -} - - -class RapidTable: - def __init__(self, encoder_path: str = None, decoder_path: str = None, vocab_path: str = None, - model_type: str = "unitable", - device: str = "cpu"): - self.model_type = model_type - self.load_img = LoadImage() - encoder_path = self.get_model_path(model_type, "encoder", encoder_path) - decoder_path = self.get_model_path(model_type, "decoder", decoder_path) - vocab_path = self.get_model_path(model_type, "vocab", vocab_path) - self.table_structure = TableStructurer(encoder_path, decoder_path, vocab_path, device) - self.table_matcher = TableMatch() - try: - self.ocr_engine = importlib.import_module("rapidocr_onnxruntime").RapidOCR() - except ModuleNotFoundError: - self.ocr_engine = None - - def __call__( - self, - img_content: Union[str, np.ndarray, bytes, Path], - ocr_result: List[Union[List[List[float]], str, str]] = None - ): - if self.ocr_engine is None and ocr_result is None: - raise ValueError( - "One of two conditions must be met: ocr_result is not empty, or rapidocr_onnxruntime is installed." - ) - - img = self.load_img(img_content) - - s = time.time() - h, w = img.shape[:2] - if ocr_result is None: - ocr_result, _ = self.ocr_engine(img) - dt_boxes, rec_res = self.get_boxes_recs(ocr_result, h, w) - - pred_structures, pred_bboxes, _ = self.table_structure(copy.deepcopy(img)) - pred_html = self.table_matcher(pred_structures, pred_bboxes, dt_boxes, rec_res) - logic_points = self.table_matcher.decode_logic_points(pred_structures) - elapse = time.time() - s - return pred_html, pred_bboxes, logic_points, elapse - - def get_boxes_recs( - self, ocr_result: List[Union[List[List[float]], str, str]], h: int, w: int - ): - dt_boxes, rec_res, scores = list(zip(*ocr_result)) - rec_res = list(zip(rec_res, scores)) - - r_boxes = [] - for box in dt_boxes: - box = np.array(box) - x_min = max(0, box[:, 0].min() - 1) - x_max = min(w, box[:, 0].max() + 1) - y_min = max(0, box[:, 1].min() - 1) - y_max = min(h, box[:, 1].max() + 1) - box = [x_min, y_min, x_max, y_max] - r_boxes.append(box) - dt_boxes = np.array(r_boxes) - return dt_boxes, rec_res - - @staticmethod - def get_model_path(model_type: str, sub_file_type: str, path: Union[str, Path, None]) -> str: - if path is not None: - return path - - model_url = KEY_TO_MODEL_URL.get(model_type, {}).get(sub_file_type, None) - if model_url: - model_path = DownloadModel.download(model_url) - return model_path - - logger.info( - "model url is None, using the default download model %s", path - ) - return path -def main(): - parser = argparse.ArgumentParser() - parser.add_argument( - "-v", - "--vis", - action="store_true", - help="Wheter to visualize the layout results.", - ) - parser.add_argument( - "-img", "--img_path", type=str, required=True, help="Path to image for layout." - ) - parser.add_argument( - "-d", "--device", type=str, default="cpu", help="device to use" - ) - args = parser.parse_args() - - try: - ocr_engine = importlib.import_module("rapidocr_onnxruntime").RapidOCR() - except ModuleNotFoundError as exc: - raise ModuleNotFoundError( - "Please install the rapidocr_onnxruntime by pip install rapidocr_onnxruntime." - ) from exc - - rapid_table = RapidTable(device=args.device) - - img = cv2.imread(args.img_path) - - ocr_result, _ = ocr_engine(img) - table_html_str, table_cell_bboxes, elapse = rapid_table(img, ocr_result) - print(table_html_str) - - viser = VisTable() - if args.vis: - img_path = Path(args.img_path) - - save_dir = img_path.resolve().parent - save_html_path = save_dir / f"{Path(img_path).stem}.html" - save_drawed_path = save_dir / f"vis_{Path(img_path).name}" - viser( - img_path, - table_html_str, - save_html_path, - table_cell_bboxes, - save_drawed_path, - ) - - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/rapid_table_torch/table_matcher/__init__.py b/rapid_table_torch/table_matcher/__init__.py deleted file mode 100644 index 9bff7d7..0000000 --- a/rapid_table_torch/table_matcher/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -# -*- encoding: utf-8 -*- -# @Author: SWHL -# @Contact: liekkaskono@163.com -from .matcher import TableMatch diff --git a/rapid_table_torch/table_matcher/matcher.py b/rapid_table_torch/table_matcher/matcher.py deleted file mode 100644 index 0453929..0000000 --- a/rapid_table_torch/table_matcher/matcher.py +++ /dev/null @@ -1,192 +0,0 @@ -# copyright (c) 2022 PaddlePaddle Authors. All Rights Reserve. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -*- encoding: utf-8 -*- -import numpy as np - -from .utils import compute_iou, distance - - -class TableMatch: - def __init__(self, filter_ocr_result=True, use_master=False): - self.filter_ocr_result = filter_ocr_result - self.use_master = use_master - - def __call__(self, pred_structures, pred_bboxes, dt_boxes, rec_res): - if self.filter_ocr_result: - dt_boxes, rec_res = self._filter_ocr_result(pred_bboxes, dt_boxes, rec_res) - matched_index = self.match_result(dt_boxes, pred_bboxes) - pred_html, pred = self.get_pred_html(pred_structures, matched_index, rec_res) - return pred_html - - def match_result(self, dt_boxes, pred_bboxes): - matched = {} - for i, gt_box in enumerate(dt_boxes): - distances = [] - for j, pred_box in enumerate(pred_bboxes): - if len(pred_box) == 8: - pred_box = [ - np.min(pred_box[0::2]), - np.min(pred_box[1::2]), - np.max(pred_box[0::2]), - np.max(pred_box[1::2]), - ] - distances.append( - (distance(gt_box, pred_box), 1.0 - compute_iou(gt_box, pred_box)) - ) # compute iou and l1 distance - sorted_distances = distances.copy() - # select det box by iou and l1 distance - sorted_distances = sorted( - sorted_distances, key=lambda item: (item[1], item[0]) - ) - if distances.index(sorted_distances[0]) not in matched.keys(): - matched[distances.index(sorted_distances[0])] = [i] - else: - matched[distances.index(sorted_distances[0])].append(i) - return matched - - def get_pred_html(self, pred_structures, matched_index, ocr_contents): - end_html = [] - td_index = 0 - for tag in pred_structures: - if "" not in tag: - end_html.append(tag) - continue - - if "" == tag: - end_html.extend("") - - if td_index in matched_index.keys(): - b_with = False - if ( - "" in ocr_contents[matched_index[td_index][0]] - and len(matched_index[td_index]) > 1 - ): - b_with = True - end_html.extend("") - - for i, td_index_index in enumerate(matched_index[td_index]): - content = ocr_contents[td_index_index][0] - if len(matched_index[td_index]) > 1: - if len(content) == 0: - continue - - if content[0] == " ": - content = content[1:] - - if "" in content: - content = content[3:] - - if "" in content: - content = content[:-4] - - if len(content) == 0: - continue - - if i != len(matched_index[td_index]) - 1 and " " != content[-1]: - content += " " - end_html.extend(content) - - if b_with: - end_html.extend("") - - if "" == tag: - end_html.append("") - else: - end_html.append(tag) - - td_index += 1 - - # Filter elements - filter_elements = ["", "", "", ""] - end_html = [v for v in end_html if v not in filter_elements] - return "".join(end_html), end_html - def decode_logic_points(self, pred_structures): - logic_points = [] - current_row = 0 - current_col = 0 - max_rows = 0 - max_cols = 0 - occupied_cells = {} # 用于记录已经被占用的单元格 - - def is_occupied(row, col): - return (row, col) in occupied_cells - - def mark_occupied(row, col, rowspan, colspan): - for r in range(row, row + rowspan): - for c in range(col, col + colspan): - occupied_cells[(r, c)] = True - - i = 0 - while i < len(pred_structures): - token = pred_structures[i] - - if token == '': - current_col = 0 # 每次遇到 时,重置当前列号 - elif token == '': - current_row += 1 # 行结束,行号增加 - elif token .startswith(''): - if 'colspan=' in pred_structures[j]: - colspan = int(pred_structures[j].split('=')[1].strip('"\'')) - elif 'rowspan=' in pred_structures[j]: - rowspan = int(pred_structures[j].split('=')[1].strip('"\'')) - j += 1 - - # 跳过已经处理过的属性 token - i = j - - # 找到下一个未被占用的列 - while is_occupied(current_row, current_col): - current_col += 1 - - # 计算逻辑坐标 - r_start = current_row - r_end = current_row + rowspan - 1 - col_start = current_col - col_end = current_col + colspan - 1 - - # 记录逻辑坐标 - logic_points.append([r_start, r_end, col_start, col_end]) - - # 标记占用的单元格 - mark_occupied(r_start, col_start, rowspan, colspan) - - # 更新当前列号 - current_col += colspan - - # 更新最大行数和列数 - max_rows = max(max_rows, r_end + 1) - max_cols = max(max_cols, col_end + 1) - - i += 1 - - return logic_points - - def _filter_ocr_result(self, pred_bboxes, dt_boxes, rec_res): - y1 = pred_bboxes[:, 1::2].min() - new_dt_boxes = [] - new_rec_res = [] - - for box, rec in zip(dt_boxes, rec_res): - if np.max(box[1::2]) < y1: - continue - new_dt_boxes.append(box) - new_rec_res.append(rec) - return new_dt_boxes, new_rec_res diff --git a/rapid_table_torch/table_matcher/utils.py b/rapid_table_torch/table_matcher/utils.py deleted file mode 100644 index 3ec8fcc..0000000 --- a/rapid_table_torch/table_matcher/utils.py +++ /dev/null @@ -1,248 +0,0 @@ -# copyright (c) 2022 PaddlePaddle Authors. All Rights Reserve. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -*- encoding: utf-8 -*- -# @Author: SWHL -# @Contact: liekkaskono@163.com -import re - - -def deal_isolate_span(thead_part): - """ - Deal with isolate span cases in this function. - It causes by wrong prediction in structure recognition model. - eg. predict to rowspan="2">. - :param thead_part: - :return: - """ - # 1. find out isolate span tokens. - isolate_pattern = ( - ' rowspan="(\d)+" colspan="(\d)+">|' - ' colspan="(\d)+" rowspan="(\d)+">|' - ' rowspan="(\d)+">|' - ' colspan="(\d)+">' - ) - isolate_iter = re.finditer(isolate_pattern, thead_part) - isolate_list = [i.group() for i in isolate_iter] - - # 2. find out span number, by step 1 results. - span_pattern = ( - ' rowspan="(\d)+" colspan="(\d)+"|' - ' colspan="(\d)+" rowspan="(\d)+"|' - ' rowspan="(\d)+"|' - ' colspan="(\d)+"' - ) - corrected_list = [] - for isolate_item in isolate_list: - span_part = re.search(span_pattern, isolate_item) - spanStr_in_isolateItem = span_part.group() - # 3. merge the span number into the span token format string. - if spanStr_in_isolateItem is not None: - corrected_item = "".format(spanStr_in_isolateItem) - corrected_list.append(corrected_item) - else: - corrected_list.append(None) - - # 4. replace original isolated token. - for corrected_item, isolate_item in zip(corrected_list, isolate_list): - if corrected_item is not None: - thead_part = thead_part.replace(isolate_item, corrected_item) - else: - pass - return thead_part - - -def deal_duplicate_bb(thead_part): - """ - Deal duplicate or after replace. - Keep one in a token. - :param thead_part: - :return: - """ - # 1. find out in . - td_pattern = ( - '(.+?)|' - '(.+?)|' - '(.+?)|' - '(.+?)|' - "(.*?)" - ) - td_iter = re.finditer(td_pattern, thead_part) - td_list = [t.group() for t in td_iter] - - # 2. is multiply in or not? - new_td_list = [] - for td_item in td_list: - if td_item.count("") > 1 or td_item.count("") > 1: - # multiply in case. - # 1. remove all - td_item = td_item.replace("", "").replace("", "") - # 2. replace -> , -> . - td_item = td_item.replace("", "").replace("", "") - new_td_list.append(td_item) - else: - new_td_list.append(td_item) - - # 3. replace original thead part. - for td_item, new_td_item in zip(td_list, new_td_list): - thead_part = thead_part.replace(td_item, new_td_item) - return thead_part - - -def deal_bb(result_token): - """ - In our opinion, always occurs in text's context. - This function will find out all tokens in and insert by manual. - :param result_token: - :return: - """ - # find out parts. - thead_pattern = "(.*?)" - if re.search(thead_pattern, result_token) is None: - return result_token - thead_part = re.search(thead_pattern, result_token).group() - origin_thead_part = copy.deepcopy(thead_part) - - # check "rowspan" or "colspan" occur in parts or not . - span_pattern = '|||' - span_iter = re.finditer(span_pattern, thead_part) - span_list = [s.group() for s in span_iter] - has_span_in_head = True if len(span_list) > 0 else False - - if not has_span_in_head: - # not include "rowspan" or "colspan" branch 1. - # 1. replace to , and to - # 2. it is possible to predict text include or by Text-line recognition, - # so we replace to , and to - thead_part = ( - thead_part.replace("", "") - .replace("", "") - .replace("", "") - .replace("", "") - ) - else: - # include "rowspan" or "colspan" branch 2. - # Firstly, we deal rowspan or colspan cases. - # 1. replace > to > - # 2. replace to - # 3. it is possible to predict text include or by Text-line recognition, - # so we replace to , and to - - # Secondly, deal ordinary cases like branch 1 - - # replace ">" to "" - replaced_span_list = [] - for sp in span_list: - replaced_span_list.append(sp.replace(">", ">")) - for sp, rsp in zip(span_list, replaced_span_list): - thead_part = thead_part.replace(sp, rsp) - - # replace "" to "" - thead_part = thead_part.replace("", "") - - # remove duplicated by re.sub - mb_pattern = "()+" - single_b_string = "" - thead_part = re.sub(mb_pattern, single_b_string, thead_part) - - mgb_pattern = "()+" - single_gb_string = "" - thead_part = re.sub(mgb_pattern, single_gb_string, thead_part) - - # ordinary cases like branch 1 - thead_part = thead_part.replace("", "").replace("", "") - - # convert back to , empty cell has no . - # but space cell( ) is suitable for - thead_part = thead_part.replace("", "") - # deal with duplicated - thead_part = deal_duplicate_bb(thead_part) - # deal with isolate span tokens, which causes by wrong predict by structure prediction. - # eg.PMC5994107_011_00.png - thead_part = deal_isolate_span(thead_part) - # replace original result with new thead part. - result_token = result_token.replace(origin_thead_part, thead_part) - return result_token - - -def deal_eb_token(master_token): - """ - post process with , , ... - emptyBboxTokenDict = { - "[]": '', - "[' ']": '', - "['', ' ', '']": '', - "['\\u2028', '\\u2028']": '', - "['', ' ', '']": '', - "['', '']": '', - "['', ' ', '']": '', - "['', '', '', '']": '', - "['', '', ' ', '', '']": '', - "['', '']": '', - "['', ' ', '\\u2028', ' ', '\\u2028', ' ', '']": '', - } - :param master_token: - :return: - """ - master_token = master_token.replace("", "") - master_token = master_token.replace("", " ") - master_token = master_token.replace("", " ") - master_token = master_token.replace("", "\u2028\u2028") - master_token = master_token.replace("", " ") - master_token = master_token.replace("", "") - master_token = master_token.replace("", " ") - master_token = master_token.replace("", "") - master_token = master_token.replace("", " ") - master_token = master_token.replace("", "") - master_token = master_token.replace( - "", " \u2028 \u2028 " - ) - return master_token - - -def distance(box_1, box_2): - x1, y1, x2, y2 = box_1 - x3, y3, x4, y4 = box_2 - dis = abs(x3 - x1) + abs(y3 - y1) + abs(x4 - x2) + abs(y4 - y2) - dis_2 = abs(x3 - x1) + abs(y3 - y1) - dis_3 = abs(x4 - x2) + abs(y4 - y2) - return dis + min(dis_2, dis_3) - - -def compute_iou(rec1, rec2): - """ - computing IoU - :param rec1: (y0, x0, y1, x1), which reflects - (top, left, bottom, right) - :param rec2: (y0, x0, y1, x1) - :return: scala value of IoU - """ - # computing area of each rectangles - S_rec1 = (rec1[2] - rec1[0]) * (rec1[3] - rec1[1]) - S_rec2 = (rec2[2] - rec2[0]) * (rec2[3] - rec2[1]) - - # computing the sum_area - sum_area = S_rec1 + S_rec2 - - # find the each edge of intersect rectangle - left_line = max(rec1[1], rec2[1]) - right_line = min(rec1[3], rec2[3]) - top_line = max(rec1[0], rec2[0]) - bottom_line = min(rec1[2], rec2[2]) - - # judge if there is an intersect - if left_line >= right_line or top_line >= bottom_line: - return 0.0 - else: - intersect = (right_line - left_line) * (bottom_line - top_line) - return (intersect / (sum_area - intersect)) * 1.0 diff --git a/rapid_table_torch/table_structure/__init__.py b/rapid_table_torch/table_structure/__init__.py deleted file mode 100644 index 4582f3d..0000000 --- a/rapid_table_torch/table_structure/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from .table_structure import TableStructurer diff --git a/rapid_table_torch/table_structure/utils.py b/rapid_table_torch/table_structure/utils.py deleted file mode 100644 index f2d76df..0000000 --- a/rapid_table_torch/table_structure/utils.py +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -*- encoding: utf-8 -*- -# @Author: SWHL -# @Contact: liekkaskono@163.com - -def trans_char_ocr_res(ocr_res): - word_result = [] - for res in ocr_res: - score = res[2] - for word_box, word in zip(res[3], res[4]): - word_res = [] - word_res.append(word_box) - word_res.append(word) - word_res.append(score) - word_result.append(word_res) - return word_result diff --git a/rapid_table_torch/utils.py b/rapid_table_torch/utils.py deleted file mode 100644 index e7135c5..0000000 --- a/rapid_table_torch/utils.py +++ /dev/null @@ -1,210 +0,0 @@ -# -*- encoding: utf-8 -*- -# @Author: SWHL -# @Contact: liekkaskono@163.com -import os -from io import BytesIO -from pathlib import Path -from typing import Optional, Union, List - -import cv2 -import numpy as np -from PIL import Image, UnidentifiedImageError - -InputType = Union[str, np.ndarray, bytes, Path] - - -class LoadImage: - def __init__( - self, - ): - pass - - def __call__(self, img: InputType) -> np.ndarray: - if not isinstance(img, InputType.__args__): - raise LoadImageError( - f"The img type {type(img)} does not in {InputType.__args__}" - ) - - img = self.load_img(img) - - if img.ndim == 2: - return cv2.cvtColor(img, cv2.COLOR_GRAY2BGR) - - if img.ndim == 3 and img.shape[2] == 4: - return self.cvt_four_to_three(img) - - return img - - def load_img(self, img: InputType) -> np.ndarray: - if isinstance(img, (str, Path)): - self.verify_exist(img) - try: - img = np.array(Image.open(img)) - img = cv2.cvtColor(img, cv2.COLOR_RGB2BGR) - except UnidentifiedImageError as e: - raise LoadImageError(f"cannot identify image file {img}") from e - return img - - if isinstance(img, bytes): - img = np.array(Image.open(BytesIO(img))) - img = cv2.cvtColor(img, cv2.COLOR_RGB2BGR) - return img - - if isinstance(img, np.ndarray): - return img - - raise LoadImageError(f"{type(img)} is not supported!") - - @staticmethod - def cvt_four_to_three(img: np.ndarray) -> np.ndarray: - """RGBA → RGB""" - r, g, b, a = cv2.split(img) - new_img = cv2.merge((b, g, r)) - - not_a = cv2.bitwise_not(a) - not_a = cv2.cvtColor(not_a, cv2.COLOR_GRAY2BGR) - - new_img = cv2.bitwise_and(new_img, new_img, mask=a) - new_img = cv2.add(new_img, not_a) - return new_img - - @staticmethod - def verify_exist(file_path: Union[str, Path]): - if not Path(file_path).exists(): - raise LoadImageError(f"{file_path} does not exist.") - - -class LoadImageError(Exception): - pass - - -class VisTable: - def __init__( - self, - ): - self.load_img = LoadImage() - - def __call__( - self, - img_path: Union[str, Path], - table_html_str: str, - save_html_path: Optional[str] = None, - table_cell_bboxes: Optional[np.ndarray] = None, - save_drawed_path: Optional[str] = None, - logic_points: List[List[float]] = None, - save_logic_path: Optional[str] = None, - ) -> None: - if save_html_path: - html_with_border = self.insert_border_style(table_html_str) - self.save_html(save_html_path, html_with_border) - - if table_cell_bboxes is None: - return None - - img = self.load_img(img_path) - - dims_bboxes = table_cell_bboxes.shape[1] - if dims_bboxes == 4: - drawed_img = self.draw_rectangle(img, table_cell_bboxes) - elif dims_bboxes == 8: - drawed_img = self.draw_polylines(img, table_cell_bboxes) - else: - raise ValueError("Shape of table bounding boxes is not between in 4 or 8.") - - if save_drawed_path: - self.save_img(save_drawed_path, drawed_img) - if save_logic_path and logic_points: - polygons = [[box[0],box[1], box[4], box[5]] for box in table_cell_bboxes] - self.plot_rec_box_with_logic_info(img_path, save_logic_path, logic_points, polygons) - return drawed_img - - def insert_border_style(self, table_html_str: str): - style_res = f"""""" - prefix_table, suffix_table = table_html_str.split("") - html_with_border = f"{prefix_table}{style_res}{suffix_table}" - return html_with_border - - def plot_rec_box_with_logic_info(self, img_path, output_path, logic_points, sorted_polygons): - """ - :param img_path - :param output_path - :param logic_points: [row_start,row_end,col_start,col_end] - :param sorted_polygons: [xmin,ymin,xmax,ymax] - :return: - """ - # 读取原图 - img = cv2.imread(img_path) - img = cv2.copyMakeBorder( - img, 0, 0, 0, 100, cv2.BORDER_CONSTANT, value=[255, 255, 255] - ) - # 绘制 polygons 矩形 - for idx, polygon in enumerate(sorted_polygons): - x0, y0, x1, y1 = polygon[0], polygon[1], polygon[2], polygon[3] - x0 = round(x0) - y0 = round(y0) - x1 = round(x1) - y1 = round(y1) - cv2.rectangle(img, (x0, y0), (x1, y1), (0, 0, 255), 1) - # 增大字体大小和线宽 - font_scale = 0.9 # 原先是0.5 - thickness = 1 # 原先是1 - logic_point = logic_points[idx] - cv2.putText( - img, - f"row: {logic_point[0]}-{logic_point[1]}", - (x0 + 3, y0 + 8), - cv2.FONT_HERSHEY_PLAIN, - font_scale, - (0, 0, 255), - thickness, - ) - cv2.putText( - img, - f"col: {logic_point[2]}-{logic_point[3]}", - (x0 + 3, y0 + 18), - cv2.FONT_HERSHEY_PLAIN, - font_scale, - (0, 0, 255), - thickness, - ) - os.makedirs(os.path.dirname(output_path), exist_ok=True) - # 保存绘制后的图像 - self.save_img(output_path, img) - - @staticmethod - def draw_rectangle(img: np.ndarray, boxes: np.ndarray) -> np.ndarray: - img_copy = img.copy() - for box in boxes.astype(int): - x1, y1, x2, y2 = box - cv2.rectangle(img_copy, (x1, y1), (x2, y2), (255, 0, 0), 2) - return img_copy - - @staticmethod - def draw_polylines(img: np.ndarray, points) -> np.ndarray: - img_copy = img.copy() - for point in points.astype(int): - point = point.reshape(4, 2) - cv2.polylines(img_copy, [point.astype(int)], True, (255, 0, 0), 2) - return img_copy - - @staticmethod - def save_img(save_path: Union[str, Path], img: np.ndarray): - cv2.imwrite(str(save_path), img) - - @staticmethod - def save_html(save_path: Union[str, Path], html: str): - with open(save_path, "w", encoding="utf-8") as f: - f.write(html) diff --git a/requirements_torch.txt b/requirements_torch.txt deleted file mode 100644 index 4ba3572..0000000 --- a/requirements_torch.txt +++ /dev/null @@ -1,8 +0,0 @@ -onnxruntime>=1.7.0 -opencv_python>=4.5.1.48 -numpy>=1.21.6,<2 -Pillow -requests -torch -torchvision -tokenizers \ No newline at end of file diff --git a/setup.py b/setup.py index 0539473..0489760 100644 --- a/setup.py +++ b/setup.py @@ -66,4 +66,5 @@ def get_readme(): ], python_requires=">=3.6,<3.13", entry_points={"console_scripts": [f"{MODULE_NAME}={MODULE_NAME}.main:main"]}, + extras_require={"torch": ["torch", "torchvision", "tokenizers"]}, ) diff --git a/setup_torch.py b/setup_torch.py deleted file mode 100644 index b332a20..0000000 --- a/setup_torch.py +++ /dev/null @@ -1,69 +0,0 @@ -# -*- encoding: utf-8 -*- -# @Author: SWHL -# @Contact: liekkaskono@163.com -import sys -from pathlib import Path - -import setuptools -from get_pypi_latest_version import GetPyPiLatestVersion - - -def get_readme(): - root_dir = Path(__file__).resolve().parent - readme_path = str(root_dir / "docs" / "doc_whl_rapid_table.md") - with open(readme_path, "r", encoding="utf-8") as f: - readme = f.read() - return readme - - -MODULE_NAME = "rapid_table_torch" -obtainer = GetPyPiLatestVersion() -try: - latest_version = obtainer(MODULE_NAME) -except Exception: - latest_version = "0.0.0" -VERSION_NUM = obtainer.version_add_one(latest_version) - -if len(sys.argv) > 2: - match_str = " ".join(sys.argv[2:]) - matched_versions = obtainer.extract_version(match_str) - if matched_versions: - VERSION_NUM = matched_versions -sys.argv = sys.argv[:2] - -setuptools.setup( - name=MODULE_NAME, - version=VERSION_NUM, - platforms="Any", - long_description=get_readme(), - long_description_content_type="text/markdown", - description="Tools for parsing table structures based pytorch.", - author="SWHL", - author_email="liekkaskono@163.com", - url="https://github.com/RapidAI/RapidTable", - license="Apache-2.0", - include_package_data=True, - install_requires=[ - "opencv_python>=4.5.1.48", - "numpy>=1.21.6", - "Pillow", - "torch", - "torchvision", - "tokenizers" - ], - packages=[ - MODULE_NAME, - f"{MODULE_NAME}.models", - f"{MODULE_NAME}.table_matcher", - f"{MODULE_NAME}.table_structure", - ], - package_data={"": [".gitkeep"]}, - keywords=["unitable,table,rapidocr,rapid_table"], - classifiers=[ - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", - ], - python_requires=">=3.10,<3.13", - entry_points={"console_scripts": [f"{MODULE_NAME}={MODULE_NAME}.main:main"]}, -) diff --git a/tests/test_table_torch.py b/tests/test_table_torch.py index 640257c..1eb4505 100644 --- a/tests/test_table_torch.py +++ b/tests/test_table_torch.py @@ -11,10 +11,10 @@ sys.path.append(str(root_dir)) -from rapid_table_torch import RapidTable +from rapid_table import RapidTable ocr_engine = RapidOCR() -table_engine = RapidTable() +table_engine = RapidTable(model_type="unitable") test_file_dir = cur_dir / "test_files" img_path = str(test_file_dir / "table.jpg") @@ -22,14 +22,14 @@ def test_ocr_input(): ocr_res, _ = ocr_engine(img_path) - table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path, ocr_res) + table_html_str, table_cell_bboxes, elapse = table_engine(img_path, ocr_res) assert table_html_str.count("") == 16 def test_input_ocr_none(): - table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path) + table_html_str, table_cell_bboxes, elapse = table_engine(img_path) assert table_html_str.count("") == 16 def test_logic_points_out(): - table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path) + table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path, return_logic_points=True) assert len(table_cell_bboxes) == len(logic_points) From 2e514121079bcca130c09482cfd2365014f778ad Mon Sep 17 00:00:00 2001 From: Joker1212 <519548295@qq.com> Date: Mon, 30 Dec 2024 17:09:03 +0800 Subject: [PATCH 07/23] chore: rm extra words --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 89b0f59..d0f6594 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,6 @@ table_engine = RapidTable() 完整示例: -#### onnx版本 ```python from pathlib import Path From 4a70f601ee1120841fc0661b0959305f9df1914d Mon Sep 17 00:00:00 2001 From: Jokcer <519548295@qq.com> Date: Mon, 30 Dec 2024 22:36:56 +0800 Subject: [PATCH 08/23] fix: adapt unitable no content label token --- rapid_table/main.py | 3 +++ rapid_table/table_matcher/matcher.py | 5 ++++- rapid_table/table_structure/table_structure_unitable.py | 8 +++++--- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/rapid_table/main.py b/rapid_table/main.py index 202f6e0..b412790 100644 --- a/rapid_table/main.py +++ b/rapid_table/main.py @@ -65,6 +65,9 @@ def __call__( if self.model_type == "slanet-plus": pred_bboxes = self.adapt_slanet_plus(img, pred_bboxes) pred_html = self.table_matcher(pred_structures, pred_bboxes, dt_boxes, rec_res) + # 过滤掉占位的bbox + mask = ~np.all(pred_bboxes == 0, axis=1) + pred_bboxes = pred_bboxes[mask] # 避免低版本升级后出现问题,默认不打开 if return_logic_points: logic_points = self.table_matcher.decode_logic_points(pred_structures) diff --git a/rapid_table/table_matcher/matcher.py b/rapid_table/table_matcher/matcher.py index 0453929..bc976ed 100644 --- a/rapid_table/table_matcher/matcher.py +++ b/rapid_table/table_matcher/matcher.py @@ -29,7 +29,7 @@ def __call__(self, pred_structures, pred_bboxes, dt_boxes, rec_res): pred_html, pred = self.get_pred_html(pred_structures, matched_index, rec_res) return pred_html - def match_result(self, dt_boxes, pred_bboxes): + def match_result(self, dt_boxes, pred_bboxes, min_iou=0.1 ** 8): matched = {} for i, gt_box in enumerate(dt_boxes): distances = [] @@ -49,6 +49,9 @@ def match_result(self, dt_boxes, pred_bboxes): sorted_distances = sorted( sorted_distances, key=lambda item: (item[1], item[0]) ) + # must > min_iou + if sorted_distances[0][1] >= 1 - min_iou: + continue if distances.index(sorted_distances[0]) not in matched.keys(): matched[distances.index(sorted_distances[0])] = [i] else: diff --git a/rapid_table/table_structure/table_structure_unitable.py b/rapid_table/table_structure/table_structure_unitable.py index da9ed7f..fdc42b4 100644 --- a/rapid_table/table_structure/table_structure_unitable.py +++ b/rapid_table/table_structure/table_structure_unitable.py @@ -183,8 +183,8 @@ def decode_tokens(self, context): td_attrs = td_match.group(1).strip() td_content = td_match.group(2).strip() if td_attrs: - decoded_list.append('') decoded_list.append('') else: @@ -197,7 +197,9 @@ def decode_tokens(self, context): # 将坐标转换为从左上角开始顺时针到左下角的点的坐标 coords = np.array([xmin, ymin, xmax, ymin, xmax, ymax, xmin, ymax]) bbox_coords.append(coords) - + else: + # 填充占位的bbox,保证后续流程统一 + bbox_coords.append(np.array([0, 0, 0,0,0,0, 0, 0])) decoded_list.append('') # 将 bbox_coords 转换为 numpy 数组 From 8904b15db071de9b5d5b9703a6508d65f4d2ad85 Mon Sep 17 00:00:00 2001 From: SWHL Date: Wed, 1 Jan 2025 22:44:20 +0800 Subject: [PATCH 09/23] chore: optimize code --- README.md | 154 +++-- rapid_table/download_model.py | 9 +- rapid_table/main.py | 23 +- rapid_table/params.py | 29 +- rapid_table/table_matcher/matcher.py | 26 +- rapid_table/table_matcher/utils.py | 9 +- .../table_structure/table_structure.py | 2 +- .../table_structure/unitable_modules.py | 635 ++++++++++++++++-- rapid_table/table_structure/utils.py | 5 +- rapid_table/utils.py | 37 +- setup.py | 2 +- 11 files changed, 742 insertions(+), 189 deletions(-) diff --git a/README.md b/README.md index d0f6594..3f2397a 100644 --- a/README.md +++ b/README.md @@ -21,16 +21,16 @@ slanet_plus是paddlex内置的SLANet升级版模型,准确率有大幅提升 unitable是来源unitable的transformer模型,精度最高,暂仅支持pytorch推理,支持gpu推理加速,训练权重来源于 [OhMyTable项目](https://github.com/Sanster/OhMyTable) -| 模型类型 | 模型名称 | 推理框架 |模型大小 |推理耗时(单图 60KB)| - |:--------------:|:--------------------------------------:| :------: |:------: |:------: | -| 英文 | `en_ppstructure_mobile_v2_SLANet.onnx` | onnxruntime |7.3M |0.15s | -| 中文 | `ch_ppstructure_mobile_v2_SLANet.onnx` | onnxruntime |7.4M |0.15s | -| slanet_plus 中文 | `slanet-plus.onnx` | onnxruntime |6.8M |0.15s | -| unitable 中文 | `unitable(encoder.pth,decoder.pth)` | pytorch |500M |cpu(6s) gpu-4090(1.5s)| +| `model_type` | 模型名称 | 推理框架 |模型大小 |推理耗时(单图 60KB)| + |:--------------|:--------------------------------------| :------: |:------ |:------ | +| `ppstructure_en` | `en_ppstructure_mobile_v2_SLANet.onnx` | onnxruntime |7.3M |0.15s | +| `ppstructure_zh` | `ch_ppstructure_mobile_v2_SLANet.onnx` | onnxruntime |7.4M |0.15s | +| `slanet_plus` | `slanet-plus.onnx` | onnxruntime |6.8M |0.15s | +| `unitable` | `unitable(encoder.pth,decoder.pth)` | pytorch |500M |cpu(6s) gpu-4090(1.5s)| 模型来源\ -[PaddleOCR 表格识别](https://github.com/PaddlePaddle/PaddleOCR/blob/133d67f27dc8a241d6b2e30a9f047a0fb75bebbe/ppstructure/table/README_ch.md) \ -[PaddleX-SlaNetPlus 表格识别](https://github.com/PaddlePaddle/PaddleX/blob/release/3.0-beta1/docs/module_usage/tutorials/ocr_modules/table_structure_recognition.md) \ +[PaddleOCR 表格识别](https://github.com/PaddlePaddle/PaddleOCR/blob/133d67f27dc8a241d6b2e30a9f047a0fb75bebbe/ppstructure/table/README_ch.md)\ +[PaddleX-SlaNetPlus 表格识别](https://github.com/PaddlePaddle/PaddleX/blob/release/3.0-beta1/docs/module_usage/tutorials/ocr_modules/table_structure_recognition.md)\ [Unitable](https://github.com/poloclub/unitable?tab=readme-ov-file) 模型下载地址为:[link](https://github.com/RapidAI/RapidTable/releases/tag/assets) @@ -41,51 +41,6 @@ unitable是来源unitable的transformer模型,精度最高,暂仅支持pytor Demo -### 更新日志 - -

+```html @@ -316,9 +275,56 @@ print(table_html_str) ``` + + #### 可视化结果
<>
MethodsFPS
SegLink [26]70.086d>77.08.9
PixelLink [4]73.283.077.8
TextSnake [18]73.983.278.31.1
TextField [37]75.987.481.35.2
MSR[38]76.787.87.481.7
FTSN [3]77.187.682.0
LSE[30]81.784.282.9
CRAFT [2]78.288.282.98.6
MCN[16]798883
ATRR[35]82.185.283.6
PAN [34]83.884.484.130.2
DB[12]79.291.584.932.0
DRRG[41]82.3088.0585.08
Ours (SynText)80.688582.9712.68
Ours (MLT-17)84.5486.6285.5712.31
+ +### 更新日志 + +
+ +#### 2024.12.30 update + +- 支持Unitable模型的表格识别,使用pytorch框架 + +#### 2024.11.24 update + +- 支持gpu推理,适配 rapidOCR 单字识别匹配,支持逻辑坐标返回及可视化 + +#### 2024.10.13 update + +- 补充最新paddlex-SLANet-plus 模型(paddle2onnx原因暂不能支持onnx) + +#### 2023-12-29 v0.1.3 update + +- 优化可视化结果部分 + +#### 2023-12-27 v0.1.2 update + +- 添加返回cell坐标框参数 +- 完善可视化函数 + +#### 2023-07-17 v0.1.0 update + +- 将`rapidocr_onnxruntime`部分从`rapid_table`中解耦合出来,给出选项是否依赖,更加灵活。 + +- 增加接口输入参数`ocr_result`: + - 如果在调用函数时,事先指定了`ocr_result`参数值,则不会再走OCR。其中`ocr_result`格式需要和`rapidocr_onnxruntime`返回值一致。 + - 如果未指定`ocr_result`参数值,但是事先安装了`rapidocr_onnxruntime`库,则会自动调用该库,进行识别。 + - 如果`ocr_result`未指定,且`rapidocr_onnxruntime`未安装,则会报错。必须满足两个条件中一个。 + +#### 2023-07-10 v0.0.13 updata + +- 更改传入表格还原中OCR的实例接口,可以传入其他OCR实例,前提要与`rapidocr_onnxruntime`接口一致 + +#### 2023-07-06 v0.0.12 update + +- 去掉返回表格的html字符串中的``元素,便于后续统一。 +- 采用Black工具优化代码 + +
diff --git a/rapid_table/download_model.py b/rapid_table/download_model.py index 9e9c496..ab65fe3 100644 --- a/rapid_table/download_model.py +++ b/rapid_table/download_model.py @@ -19,11 +19,14 @@ } } + class DownloadModel: cur_dir = PROJECT_DIR @staticmethod - def get_model_path(model_type: str, sub_file_type: str, path: Union[str, Path, None]) -> str: + def get_model_path( + model_type: str, sub_file_type: str, path: Union[str, Path, None] + ) -> str: if path is not None: return path @@ -32,9 +35,7 @@ def get_model_path(model_type: str, sub_file_type: str, path: Union[str, Path, N model_path = DownloadModel.download(model_url) return model_path - logger.info( - "model url is None, using the default download model %s", path - ) + logger.info("model url is None, using the default download model %s", path) return path @classmethod diff --git a/rapid_table/main.py b/rapid_table/main.py index b412790..9567e6c 100644 --- a/rapid_table/main.py +++ b/rapid_table/main.py @@ -13,7 +13,7 @@ import numpy as np from .download_model import DownloadModel -from .params import accept_kwargs_as_dataclass, BaseConfig +from .params import BaseConfig, accept_kwargs_as_dataclass from .table_matcher import TableMatch from .table_structure import TableStructurer, TableStructureUnitable from .utils import LoadImage, VisTable @@ -26,13 +26,21 @@ class RapidTable: def __init__(self, config: BaseConfig): self.model_type = config.model_type self.load_img = LoadImage() + if self.model_type == "unitable": - config.encoder_path = DownloadModel.get_model_path(self.model_type, "encoder", config.encoder_path) - config.decoder_path = DownloadModel.get_model_path(self.model_type, "decoder", config.decoder_path) - config.vocab_path = DownloadModel.get_model_path(self.model_type, "vocab", config.vocab_path) + config.encoder_path = DownloadModel.get_model_path( + self.model_type, "encoder", config.encoder_path + ) + config.decoder_path = DownloadModel.get_model_path( + self.model_type, "decoder", config.decoder_path + ) + config.vocab_path = DownloadModel.get_model_path( + self.model_type, "vocab", config.vocab_path + ) self.table_structure = TableStructureUnitable(asdict(config)) else: self.table_structure = TableStructurer(asdict(config)) + self.table_matcher = TableMatch() try: @@ -44,7 +52,7 @@ def __call__( self, img_content: Union[str, np.ndarray, bytes, Path], ocr_result: List[Union[List[List[float]], str, str]] = None, - return_logic_points = False + return_logic_points=False, ) -> Tuple[str, float]: if self.ocr_engine is None and ocr_result is None: raise ValueError( @@ -65,14 +73,17 @@ def __call__( if self.model_type == "slanet-plus": pred_bboxes = self.adapt_slanet_plus(img, pred_bboxes) pred_html = self.table_matcher(pred_structures, pred_bboxes, dt_boxes, rec_res) + # 过滤掉占位的bbox mask = ~np.all(pred_bboxes == 0, axis=1) pred_bboxes = pred_bboxes[mask] + # 避免低版本升级后出现问题,默认不打开 if return_logic_points: logic_points = self.table_matcher.decode_logic_points(pred_structures) elapse = time.time() - s return pred_html, pred_bboxes, logic_points, elapse + elapse = time.time() - s return pred_html, pred_bboxes, elapse @@ -93,6 +104,7 @@ def get_boxes_recs( r_boxes.append(box) dt_boxes = np.array(r_boxes) return dt_boxes, rec_res + def adapt_slanet_plus(self, img: np.ndarray, pred_bboxes: np.ndarray) -> np.ndarray: h, w = img.shape[:2] resized = 488 @@ -103,6 +115,7 @@ def adapt_slanet_plus(self, img: np.ndarray, pred_bboxes: np.ndarray) -> np.ndar pred_bboxes[:, 1::2] *= h_ratio return pred_bboxes + def main(): parser = argparse.ArgumentParser() parser.add_argument( diff --git a/rapid_table/params.py b/rapid_table/params.py index c5756aa..cbbaaee 100644 --- a/rapid_table/params.py +++ b/rapid_table/params.py @@ -7,6 +7,7 @@ root_dir = Path(__file__).resolve().parent logger = get_logger("params") + @dataclass class BaseConfig: model_type: str = "slanet-plus" @@ -25,16 +26,20 @@ def wrapper(*args, **kwargs): if len(args) == 2 and isinstance(args[1], cls): # 如果已经传递了 ModelConfig 实例,直接调用函数 return func(*args, **kwargs) - else: - # 提取 cls 中定义的字段 - cls_fields = {field.name for field in fields(cls)} - # 过滤掉未定义的字段 - filtered_kwargs = {k: v for k, v in kwargs.items() if k in cls_fields} - # 发出警告对于未定义的字段 - for k in (kwargs.keys() - cls_fields): - logger.warning(f"Warning: '{k}' is not a valid field in {cls.__name__} and will be ignored.") - # 创建 ModelConfig 实例并调用函数 - config = cls(**filtered_kwargs) - return func(args[0], config=config) + + # 提取 cls 中定义的字段 + cls_fields = {field.name for field in fields(cls)} + # 过滤掉未定义的字段 + filtered_kwargs = {k: v for k, v in kwargs.items() if k in cls_fields} + # 发出警告对于未定义的字段 + for k in kwargs.keys() - cls_fields: + logger.warning( + f"Warning: '{k}' is not a valid field in {cls.__name__} and will be ignored." + ) + # 创建 ModelConfig 实例并调用函数 + config = cls(**filtered_kwargs) + return func(args[0], config=config) + return wrapper - return decorator \ No newline at end of file + + return decorator diff --git a/rapid_table/table_matcher/matcher.py b/rapid_table/table_matcher/matcher.py index bc976ed..00bea6a 100644 --- a/rapid_table/table_matcher/matcher.py +++ b/rapid_table/table_matcher/matcher.py @@ -29,7 +29,7 @@ def __call__(self, pred_structures, pred_bboxes, dt_boxes, rec_res): pred_html, pred = self.get_pred_html(pred_structures, matched_index, rec_res) return pred_html - def match_result(self, dt_boxes, pred_bboxes, min_iou=0.1 ** 8): + def match_result(self, dt_boxes, pred_bboxes, min_iou=0.1**8): matched = {} for i, gt_box in enumerate(dt_boxes): distances = [] @@ -52,7 +52,8 @@ def match_result(self, dt_boxes, pred_bboxes, min_iou=0.1 ** 8): # must > min_iou if sorted_distances[0][1] >= 1 - min_iou: continue - if distances.index(sorted_distances[0]) not in matched.keys(): + + if distances.index(sorted_distances[0]) not in matched: matched[distances.index(sorted_distances[0])] = [i] else: matched[distances.index(sorted_distances[0])].append(i) @@ -114,6 +115,7 @@ def get_pred_html(self, pred_structures, matched_index, ocr_contents): filter_elements = ["", "", "", ""] end_html = [v for v in end_html if v not in filter_elements] return "".join(end_html), end_html + def decode_logic_points(self, pred_structures): logic_points = [] current_row = 0 @@ -134,22 +136,24 @@ def mark_occupied(row, col, rowspan, colspan): while i < len(pred_structures): token = pred_structures[i] - if token == '': + if token == "": current_col = 0 # 每次遇到 时,重置当前列号 - elif token == '': + elif token == "": current_row += 1 # 行结束,行号增加 - elif token .startswith(''): - if 'colspan=' in pred_structures[j]: - colspan = int(pred_structures[j].split('=')[1].strip('"\'')) - elif 'rowspan=' in pred_structures[j]: - rowspan = int(pred_structures[j].split('=')[1].strip('"\'')) + while j < len(pred_structures) and not pred_structures[ + j + ].startswith(">"): + if "colspan=" in pred_structures[j]: + colspan = int(pred_structures[j].split("=")[1].strip("\"'")) + elif "rowspan=" in pred_structures[j]: + rowspan = int(pred_structures[j].split("=")[1].strip("\"'")) j += 1 # 跳过已经处理过的属性 token diff --git a/rapid_table/table_matcher/utils.py b/rapid_table/table_matcher/utils.py index 3ec8fcc..57a613c 100644 --- a/rapid_table/table_matcher/utils.py +++ b/rapid_table/table_matcher/utils.py @@ -14,6 +14,7 @@ # -*- encoding: utf-8 -*- # @Author: SWHL # @Contact: liekkaskono@163.com +import copy import re @@ -48,7 +49,7 @@ def deal_isolate_span(thead_part): spanStr_in_isolateItem = span_part.group() # 3. merge the span number into the span token format string. if spanStr_in_isolateItem is not None: - corrected_item = "".format(spanStr_in_isolateItem) + corrected_item = f"" corrected_list.append(corrected_item) else: corrected_list.append(None) @@ -243,6 +244,6 @@ def compute_iou(rec1, rec2): # judge if there is an intersect if left_line >= right_line or top_line >= bottom_line: return 0.0 - else: - intersect = (right_line - left_line) * (bottom_line - top_line) - return (intersect / (sum_area - intersect)) * 1.0 + + intersect = (right_line - left_line) * (bottom_line - top_line) + return (intersect / (sum_area - intersect)) * 1.0 diff --git a/rapid_table/table_structure/table_structure.py b/rapid_table/table_structure/table_structure.py index c2509d8..9152603 100644 --- a/rapid_table/table_structure/table_structure.py +++ b/rapid_table/table_structure/table_structure.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. import time -from typing import Dict, Any +from typing import Any, Dict import numpy as np diff --git a/rapid_table/table_structure/unitable_modules.py b/rapid_table/table_structure/unitable_modules.py index 367bd57..5b8dac3 100644 --- a/rapid_table/table_structure/unitable_modules.py +++ b/rapid_table/table_structure/unitable_modules.py @@ -1,21 +1,522 @@ -from functools import partial from dataclasses import dataclass +from functools import partial from typing import Optional + import torch import torch.nn as nn from torch import Tensor from torch.nn import functional as F from torch.nn.modules.transformer import _get_activation_fn -TOKEN_WHITE_LIST = [1, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509] +TOKEN_WHITE_LIST = [ + 1, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, +] class ImgLinearBackbone(nn.Module): def __init__( - self, - d_model: int, - patch_size: int, - in_chan: int = 3, + self, + d_model: int, + patch_size: int, + in_chan: int = 3, ) -> None: super().__init__() @@ -34,9 +535,7 @@ def forward(self, x: Tensor) -> Tensor: class Encoder(nn.Module): - def __init__( - self - ) -> None: + def __init__(self) -> None: super().__init__() self.patch_size = 16 @@ -57,11 +556,17 @@ def __init__( batch_first=True, norm_first=self.norm_first, ) - norm_layer=partial(nn.LayerNorm, eps=1e-6) + norm_layer = partial(nn.LayerNorm, eps=1e-6) self.norm = norm_layer(self.d_model) - self.backbone = ImgLinearBackbone(d_model=self.d_model, patch_size=self.patch_size) - self.pos_embed = PositionEmbedding(max_seq_len=self.max_seq_len, d_model=self.d_model, dropout=self.dropout) - self.encoder = nn.TransformerEncoder(encoder_layer, num_layers=self.n_encoder_layer, enable_nested_tensor=False) + self.backbone = ImgLinearBackbone( + d_model=self.d_model, patch_size=self.patch_size + ) + self.pos_embed = PositionEmbedding( + max_seq_len=self.max_seq_len, d_model=self.d_model, dropout=self.dropout + ) + self.encoder = nn.TransformerEncoder( + encoder_layer, num_layers=self.n_encoder_layer, enable_nested_tensor=False + ) def forward(self, x: Tensor) -> Tensor: src_feature = self.backbone(x) @@ -89,10 +594,10 @@ def forward(self, x: Tensor, input_pos: Optional[Tensor] = None) -> Tensor: class TokenEmbedding(nn.Module): def __init__( - self, - vocab_size: int, - d_model: int, - padding_idx: int, + self, + vocab_size: int, + d_model: int, + padding_idx: int, ) -> None: super().__init__() assert vocab_size > 0 @@ -125,20 +630,29 @@ def __post_init__(self): self.intermediate_size = find_multiple(n_hidden, 256) self.head_dim = self.dim // self.n_head + class KVCache(nn.Module): def __init__( - self, - max_batch_size, - max_seq_length, - n_heads, - head_dim, - dtype=torch.bfloat16, - device="cpu", + self, + max_batch_size, + max_seq_length, + n_heads, + head_dim, + dtype=torch.bfloat16, + device="cpu", ): super().__init__() cache_shape = (max_batch_size, n_heads, max_seq_length, head_dim) - self.register_buffer("k_cache", torch.zeros(cache_shape, dtype=dtype, device=device), persistent=False) - self.register_buffer("v_cache", torch.zeros(cache_shape, dtype=dtype, device=device), persistent=False) + self.register_buffer( + "k_cache", + torch.zeros(cache_shape, dtype=dtype, device=device), + persistent=False, + ) + self.register_buffer( + "v_cache", + torch.zeros(cache_shape, dtype=dtype, device=device), + persistent=False, + ) def update(self, input_pos, k_val, v_val): # input_pos: [S], k_val: [B, H, S, D] @@ -152,13 +666,11 @@ def update(self, input_pos, k_val, v_val): return k_out[:bs], v_out[:bs] + class GPTFastDecoder(nn.Module): - def __init__( - self - ) -> None: + def __init__(self) -> None: super().__init__() - self.vocab_size = 960 self.padding_idx = 2 self.prefix_token_id = 11 @@ -179,9 +691,17 @@ def __init__( norm_first=self.norm_first, ) self.config = config - self.layers = nn.ModuleList(TransformerBlock(config) for _ in range(config.n_layer)) - self.token_embed = TokenEmbedding(vocab_size=self.vocab_size, d_model=self.d_model, padding_idx=self.padding_idx) - self.pos_embed = PositionEmbedding(max_seq_len=self.max_seq_len, d_model=self.d_model, dropout=self.dropout) + self.layers = nn.ModuleList( + TransformerBlock(config) for _ in range(config.n_layer) + ) + self.token_embed = TokenEmbedding( + vocab_size=self.vocab_size, + d_model=self.d_model, + padding_idx=self.padding_idx, + ) + self.pos_embed = PositionEmbedding( + max_seq_len=self.max_seq_len, d_model=self.d_model, dropout=self.dropout + ) self.generator = nn.Linear(self.d_model, self.vocab_size) self.token_white_list = TOKEN_WHITE_LIST self.mask_cache: Optional[Tensor] = None @@ -193,7 +713,10 @@ def setup_caches(self, max_batch_size, max_seq_length, dtype, device): b.multihead_attn.k_cache = None b.multihead_attn.v_cache = None - if self.max_seq_length >= max_seq_length and self.max_batch_size >= max_batch_size: + if ( + self.max_seq_length >= max_seq_length + and self.max_batch_size >= max_batch_size + ): return head_dim = self.config.dim // self.config.n_head max_seq_length = find_multiple(max_seq_length, 8) @@ -207,24 +730,23 @@ def setup_caches(self, max_batch_size, max_seq_length, dtype, device): self.config.n_head, head_dim, dtype, - device + device, ) b.multihead_attn.k_cache = None b.multihead_attn.v_cache = None - self.causal_mask = torch.tril(torch.ones(self.max_seq_length, self.max_seq_length, dtype=torch.bool)).to(device) - - def forward( - self, - memory: Tensor, - tgt: Tensor - ) -> Tensor: + self.causal_mask = torch.tril( + torch.ones(self.max_seq_length, self.max_seq_length, dtype=torch.bool) + ).to(device) + def forward(self, memory: Tensor, tgt: Tensor) -> Tensor: input_pos = torch.tensor([tgt.shape[1] - 1], device=tgt.device, dtype=torch.int) tgt = tgt[:, -1:] tgt_feature = self.pos_embed(self.token_embed(tgt), input_pos=input_pos) # tgt = self.decoder(tgt_feature, memory, input_pos) - with torch.backends.cuda.sdp_kernel(enable_flash=False, enable_mem_efficient=False, enable_math=True): + with torch.backends.cuda.sdp_kernel( + enable_flash=False, enable_mem_efficient=False, enable_math=True + ): logits = tgt_feature tgt_mask = self.causal_mask[None, None, input_pos] for i, layer in enumerate(self.layers): @@ -238,6 +760,7 @@ def forward( _, next_tokens = probs.topk(1) return next_tokens + class TransformerBlock(nn.Module): def __init__(self, config: ModelArgs) -> None: super().__init__() @@ -260,11 +783,11 @@ def __init__(self, config: ModelArgs) -> None: self.activation = _get_activation_fn(config.activation) def forward( - self, - tgt: Tensor, - memory: Tensor, - tgt_mask: Tensor, - input_pos: Tensor, + self, + tgt: Tensor, + memory: Tensor, + tgt_mask: Tensor, + input_pos: Tensor, ) -> Tensor: if self.norm_first: x = tgt @@ -299,10 +822,10 @@ def __init__(self, config: ModelArgs): self.dim = config.dim def forward( - self, - x: Tensor, - mask: Tensor, - input_pos: Optional[Tensor] = None, + self, + x: Tensor, + mask: Tensor, + input_pos: Optional[Tensor] = None, ) -> Tensor: bsz, seqlen, _ = x.shape @@ -362,9 +885,9 @@ def get_kv(self, xa: torch.Tensor): return k, v def forward( - self, - x: Tensor, - xa: Tensor, + self, + x: Tensor, + xa: Tensor, ): q = self.query(x) batch_size, target_seq_len, _ = q.shape @@ -383,6 +906,6 @@ def forward( batch_size, target_seq_len, self.n_head * self.head_dim, - ) + ) return self.out(wv) diff --git a/rapid_table/table_structure/utils.py b/rapid_table/table_structure/utils.py index c88cf3c..e06f610 100644 --- a/rapid_table/table_structure/utils.py +++ b/rapid_table/table_structure/utils.py @@ -17,12 +17,11 @@ import os import platform import traceback - -import cv2 from enum import Enum from pathlib import Path from typing import Any, Dict, List, Tuple, Union +import cv2 import numpy as np from onnxruntime import ( GraphOptimizationLevel, @@ -79,10 +78,12 @@ def _init_sess_opts(config: Dict[str, Any]) -> SessionOptions: sess_opt.inter_op_num_threads = inter_op_num_threads return sess_opt + def get_metadata(self, key: str = "character") -> list: meta_dict = self.session.get_modelmeta().custom_metadata_map content_list = meta_dict[key].splitlines() return content_list + def _get_ep_list(self) -> List[Tuple[str, Dict[str, Any]]]: cpu_provider_opts = { "arena_extend_strategy": "kSameAsRequested", diff --git a/rapid_table/utils.py b/rapid_table/utils.py index 77224ce..82d7cef 100644 --- a/rapid_table/utils.py +++ b/rapid_table/utils.py @@ -4,7 +4,7 @@ import os from io import BytesIO from pathlib import Path -from typing import Optional, Union, List +from typing import List, Optional, Union import cv2 import numpy as np @@ -14,9 +14,7 @@ class LoadImage: - def __init__( - self, - ): + def __init__(self): pass def __call__(self, img: InputType) -> np.ndarray: @@ -79,20 +77,18 @@ class LoadImageError(Exception): class VisTable: - def __init__( - self, - ): + def __init__(self): self.load_img = LoadImage() def __call__( - self, - img_path: Union[str, Path], - table_html_str: str, - save_html_path: Optional[str] = None, - table_cell_bboxes: Optional[np.ndarray] = None, - save_drawed_path: Optional[str] = None, - logic_points: List[List[float]] = None, - save_logic_path: Optional[str] = None, + self, + img_path: Union[str, Path], + table_html_str: str, + save_html_path: Optional[str] = None, + table_cell_bboxes: Optional[np.ndarray] = None, + save_drawed_path: Optional[str] = None, + logic_points: List[List[float]] = None, + save_logic_path: Optional[str] = None, ) -> None: if save_html_path: html_with_border = self.insert_border_style(table_html_str) @@ -114,8 +110,10 @@ def __call__( if save_drawed_path: self.save_img(save_drawed_path, drawed_img) if save_logic_path and logic_points: - polygons = [[box[0],box[1], box[4], box[5]] for box in table_cell_bboxes] - self.plot_rec_box_with_logic_info(img_path, save_logic_path, logic_points, polygons) + polygons = [[box[0], box[1], box[4], box[5]] for box in table_cell_bboxes] + self.plot_rec_box_with_logic_info( + img_path, save_logic_path, logic_points, polygons + ) return drawed_img def insert_border_style(self, table_html_str: str): @@ -137,7 +135,9 @@ def insert_border_style(self, table_html_str: str): html_with_border = f"{prefix_table}{style_res}{suffix_table}" return html_with_border - def plot_rec_box_with_logic_info(self, img_path, output_path, logic_points, sorted_polygons): + def plot_rec_box_with_logic_info( + self, img_path, output_path, logic_points, sorted_polygons + ): """ :param img_path :param output_path @@ -208,4 +208,3 @@ def save_img(save_path: Union[str, Path], img: np.ndarray): def save_html(save_path: Union[str, Path], html: str): with open(save_path, "w", encoding="utf-8") as f: f.write(html) - diff --git a/setup.py b/setup.py index 0489760..8dc2e60 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ def get_readme(): MODULE_NAME = "rapid_table" obtainer = GetPyPiLatestVersion() latest_version = obtainer(MODULE_NAME) -VERSION_NUM = obtainer.version_add_one(latest_version) +VERSION_NUM = obtainer.version_add_one(latest_version, add_patch=True) if len(sys.argv) > 2: match_str = " ".join(sys.argv[2:]) From 7810dfdb0411eddf53ff27fb0c5c379a20a2e496 Mon Sep 17 00:00:00 2001 From: SWHL Date: Wed, 1 Jan 2025 22:47:58 +0800 Subject: [PATCH 10/23] docs: update README --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3f2397a..82285cf 100644 --- a/README.md +++ b/README.md @@ -60,8 +60,13 @@ RapidTable是整理自PP-Structure中表格识别部分而来。由于PP-Structu ```bash pip install rapidocr_onnxruntime pip install rapid_table -# pip install rapid_table[torch] # for unitable inference -# pip install onnxruntime-gpu # for onnx gpu inference + +# 基于torch来推理unitable模型 +pip install rapid_table[torch] # for unitable inference + +# onnxruntime-gpu推理 +pip uninstall onnxruntime +pip install onnxruntime-gpu # for onnx gpu inference ``` ### 使用方式 From d7e8d1af386080360f6a89e22445191741b47f28 Mon Sep 17 00:00:00 2001 From: SWHL Date: Mon, 6 Jan 2025 22:32:55 +0800 Subject: [PATCH 11/23] chore: optimize code --- rapid_table/__init__.py | 2 +- rapid_table/download_model.py | 9 +-- rapid_table/main.py | 32 +++++++-- rapid_table/params.py | 10 +++ .../table_structure_unitable.py | 65 ++++++++++--------- rapid_table/utils.py | 15 +++-- tests/test_table_torch.py | 5 +- 7 files changed, 85 insertions(+), 53 deletions(-) diff --git a/rapid_table/__init__.py b/rapid_table/__init__.py index 93c6a5d..702f7d0 100644 --- a/rapid_table/__init__.py +++ b/rapid_table/__init__.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- # @Author: SWHL # @Contact: liekkaskono@163.com -from .main import RapidTable +from .main import RapidTable, RapidTableInput from .utils import VisTable diff --git a/rapid_table/download_model.py b/rapid_table/download_model.py index ab65fe3..bce876a 100644 --- a/rapid_table/download_model.py +++ b/rapid_table/download_model.py @@ -8,16 +8,9 @@ from .logger import get_logger logger = get_logger("DownloadModel") + CUR_DIR = Path(__file__).resolve() PROJECT_DIR = CUR_DIR.parent -ROOT_URL = "https://www.modelscope.cn/studio/jockerK/TableRec/resolve/master/models/table_rec/unitable/" -KEY_TO_MODEL_URL = { - "unitable": { - "encoder": f"{ROOT_URL}/encoder.pth", - "decoder": f"{ROOT_URL}/decoder.pth", - "vocab": f"{ROOT_URL}/vocab.json", - } -} class DownloadModel: diff --git a/rapid_table/main.py b/rapid_table/main.py index 9567e6c..9e7cdeb 100644 --- a/rapid_table/main.py +++ b/rapid_table/main.py @@ -5,25 +5,43 @@ import copy import importlib import time -from dataclasses import asdict +from dataclasses import asdict, dataclass from pathlib import Path -from typing import List, Tuple, Union +from typing import List, Optional, Tuple, Union import cv2 import numpy as np from .download_model import DownloadModel -from .params import BaseConfig, accept_kwargs_as_dataclass from .table_matcher import TableMatch from .table_structure import TableStructurer, TableStructureUnitable from .utils import LoadImage, VisTable root_dir = Path(__file__).resolve().parent +ROOT_URL = "https://www.modelscope.cn/models/RapidAI-NG/RapidTable/resolve/master/" +KEY_TO_MODEL_URL = { + "ppstructure_en": f"{ROOT_URL}/en_ppstructure_mobile_v2_SLANet.onnx", + "ppstructure_zh": f"{ROOT_URL}/ch_ppstructure_mobile_v2_SLANet.onnx", + "slanet_plus": f"{ROOT_URL}/slanet-plus.onnx", + "unitable": { + "encoder": f"{ROOT_URL}/unitable/encoder.pth", + "decoder": f"{ROOT_URL}/unitable/decoder.pth", + "vocab": f"{ROOT_URL}/unitable/vocab.json", + }, +} + + +@dataclass +class RapidTableInput: + model_type: Optional[str] = None + model_path_or_dir: Union[str, Path, None] = None + use_cuda: bool = False + device: str = "cpu" + class RapidTable: - @accept_kwargs_as_dataclass(BaseConfig) - def __init__(self, config: BaseConfig): + def __init__(self, config: RapidTableInput): self.model_type = config.model_type self.load_img = LoadImage() @@ -52,7 +70,7 @@ def __call__( self, img_content: Union[str, np.ndarray, bytes, Path], ocr_result: List[Union[List[List[float]], str, str]] = None, - return_logic_points=False, + return_logic_points: bool = False, ) -> Tuple[str, float]: if self.ocr_engine is None and ocr_result is None: raise ValueError( @@ -69,9 +87,11 @@ def __call__( dt_boxes, rec_res = self.get_boxes_recs(ocr_result, h, w) pred_structures, pred_bboxes, _ = self.table_structure(copy.deepcopy(img)) + # 适配slanet-plus模型输出的box缩放还原 if self.model_type == "slanet-plus": pred_bboxes = self.adapt_slanet_plus(img, pred_bboxes) + pred_html = self.table_matcher(pred_structures, pred_bboxes, dt_boxes, rec_res) # 过滤掉占位的bbox diff --git a/rapid_table/params.py b/rapid_table/params.py index cbbaaee..b831587 100644 --- a/rapid_table/params.py +++ b/rapid_table/params.py @@ -1,6 +1,8 @@ +# -*- encoding: utf-8 -*- from dataclasses import dataclass, fields from functools import wraps from pathlib import Path +from typing import Optional, Union from rapid_table.logger import get_logger @@ -8,6 +10,14 @@ logger = get_logger("params") +@dataclass +class RapidTableInput: + model_type: Optional[str] = None + model_path_or_dir: Union[str, Path, None] = None + use_cuda: bool = False + device: str = "cpu" + + @dataclass class BaseConfig: model_type: str = "slanet-plus" diff --git a/rapid_table/table_structure/table_structure_unitable.py b/rapid_table/table_structure/table_structure_unitable.py index fdc42b4..e14f548 100644 --- a/rapid_table/table_structure/table_structure_unitable.py +++ b/rapid_table/table_structure/table_structure_unitable.py @@ -1,15 +1,15 @@ import re import time -from typing import Dict, Any +from typing import Any, Dict import cv2 import numpy as np import torch from PIL import Image from tokenizers import Tokenizer +from torchvision import transforms from .unitable_modules import Encoder, GPTFastDecoder -from torchvision import transforms IMG_SIZE = 448 EOS_TOKEN = "" @@ -79,7 +79,7 @@ class TableStructureUnitable: - def __init__(self, config:Dict[str, Any]): + def __init__(self, config: Dict[str, Any]): # encoder_path: str, decoder_path: str, vocab_path: str, device: str vocab_path = config["vocab_path"] encoder_path = config["encoder_path"] @@ -87,24 +87,29 @@ def __init__(self, config:Dict[str, Any]): device = config.get("device", "cuda:0") if config["use_cuda"] else "cpu" self.vocab = Tokenizer.from_file(vocab_path) - self.token_white_list = [self.vocab.token_to_id(i) for i in VALID_HTML_BBOX_TOKENS] - self.bbox_token_ids = set([self.vocab.token_to_id(i) for i in BBOX_TOKENS]) + self.token_white_list = [ + self.vocab.token_to_id(i) for i in VALID_HTML_BBOX_TOKENS + ] + self.bbox_token_ids = set(self.vocab.token_to_id(i) for i in BBOX_TOKENS) self.bbox_close_html_token = self.vocab.token_to_id("]") self.prefix_token_id = self.vocab.token_to_id("[html+bbox]") self.eos_id = self.vocab.token_to_id(EOS_TOKEN) self.max_seq_len = 1024 self.device = device self.img_size = IMG_SIZE + # init encoder encoder_state_dict = torch.load(encoder_path, map_location=device) self.encoder = Encoder() self.encoder.load_state_dict(encoder_state_dict) self.encoder.eval().to(device) + # init decoder decoder_state_dict = torch.load(decoder_path, map_location=device) self.decoder = GPTFastDecoder() self.decoder.load_state_dict(decoder_state_dict) self.decoder.eval().to(device) + # define img transform self.transform = transforms.Compose( [ @@ -117,12 +122,8 @@ def __init__(self, config:Dict[str, Any]): ] ) - @torch.inference_mode() - def __call__( - self, - image: np.ndarray, - ): + def __call__(self, image: np.ndarray): start_time = time.time() ori_h, ori_w = image.shape[:2] image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB) @@ -132,14 +133,19 @@ def __call__( max_batch_size=1, max_seq_length=self.max_seq_len, dtype=image.dtype, - device=self.device + device=self.device, + ) + context = ( + torch.tensor([self.prefix_token_id], dtype=torch.int32) + .repeat(1, 1) + .to(self.device) ) - context = torch.tensor([self.prefix_token_id], dtype=torch.int32).repeat(1, 1).to(self.device) eos_id_tensor = torch.tensor(self.eos_id, dtype=torch.int32).to(self.device) memory = self.encoder(image) context = self.loop_decode(context, eos_id_tensor, memory) bboxes, html_tokens = self.decode_tokens(context) bboxes = bboxes.astype(np.float32) + # rescale boxes scale_h = ori_h / self.img_size scale_w = ori_w / self.img_size @@ -148,9 +154,9 @@ def __call__( bboxes[:, 0::2] = np.clip(bboxes[:, 0::2], 0, ori_w - 1) bboxes[:, 1::2] = np.clip(bboxes[:, 1::2], 0, ori_h - 1) structure_str_list = ( - ["", "", ""] - + html_tokens - + ["
", "", ""] + ["", "", ""] + + html_tokens + + ["
", "", ""] ) return structure_str_list, bboxes, time.time() - start_time @@ -158,37 +164,34 @@ def decode_tokens(self, context): pred_html = context[0] pred_html = pred_html.detach().cpu().numpy() pred_html = self.vocab.decode(pred_html, skip_special_tokens=False) - # pred_html = html_str_to_token_list(pred_html) seq = pred_html.split("")[0] token_black_list = ["", "", *TASK_TOKENS] for i in token_black_list: seq = seq.replace(i, "") - # 正则表达式模式 - tr_pattern = re.compile(r'(.*?)', re.DOTALL) - td_pattern = re.compile(r'(.*?)', re.DOTALL) - bbox_pattern = re.compile(r'\[ bbox-(\d+) bbox-(\d+) bbox-(\d+) bbox-(\d+) \]') + tr_pattern = re.compile(r"(.*?)", re.DOTALL) + td_pattern = re.compile(r"(.*?)", re.DOTALL) + bbox_pattern = re.compile(r"\[ bbox-(\d+) bbox-(\d+) bbox-(\d+) bbox-(\d+) \]") - # 存储解码后的结果 decoded_list = [] bbox_coords = [] # 查找所有的 标签 for tr_match in tr_pattern.finditer(pred_html): tr_content = tr_match.group(1) - decoded_list.append('') + decoded_list.append("") # 查找所有的 标签 for td_match in td_pattern.finditer(tr_content): td_attrs = td_match.group(1).strip() td_content = td_match.group(2).strip() if td_attrs: - decoded_list.append('') - decoded_list.append('') + decoded_list.append(">") + decoded_list.append("") else: - decoded_list.append('') + decoded_list.append("") # 查找 bbox 坐标 bbox_match = bbox_pattern.search(td_content) @@ -199,10 +202,9 @@ def decode_tokens(self, context): bbox_coords.append(coords) else: # 填充占位的bbox,保证后续流程统一 - bbox_coords.append(np.array([0, 0, 0,0,0,0, 0, 0])) - decoded_list.append('') + bbox_coords.append(np.array([0, 0, 0, 0, 0, 0, 0, 0])) + decoded_list.append("") - # 将 bbox_coords 转换为 numpy 数组 bbox_coords_array = np.array(bbox_coords) return bbox_coords_array, decoded_list @@ -212,11 +214,14 @@ def loop_decode(self, context, eos_id_tensor, memory): eos_flag = (context == eos_id_tensor).any(dim=1) if torch.all(eos_flag): break + next_tokens = self.decoder(memory, context) if next_tokens[0] in self.bbox_token_ids: box_token_count += 1 if box_token_count > 4: - next_tokens = torch.tensor([self.bbox_close_html_token], dtype=torch.int32) + next_tokens = torch.tensor( + [self.bbox_close_html_token], dtype=torch.int32 + ) box_token_count = 0 context = torch.cat([context, next_tokens], dim=1) return context diff --git a/rapid_table/utils.py b/rapid_table/utils.py index 82d7cef..7370016 100644 --- a/rapid_table/utils.py +++ b/rapid_table/utils.py @@ -117,20 +117,21 @@ def __call__( return drawed_img def insert_border_style(self, table_html_str: str): - style_res = f"""""" + prefix_table, suffix_table = table_html_str.split("") html_with_border = f"{prefix_table}{style_res}{suffix_table}" return html_with_border diff --git a/tests/test_table_torch.py b/tests/test_table_torch.py index 1eb4505..3526d11 100644 --- a/tests/test_table_torch.py +++ b/tests/test_table_torch.py @@ -30,6 +30,9 @@ def test_input_ocr_none(): table_html_str, table_cell_bboxes, elapse = table_engine(img_path) assert table_html_str.count("") == 16 + def test_logic_points_out(): - table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path, return_logic_points=True) + table_html_str, table_cell_bboxes, logic_points, elapse = table_engine( + img_path, return_logic_points=True + ) assert len(table_cell_bboxes) == len(logic_points) From 8ec990d3894ea7f498124155822fb1fa6dea4454 Mon Sep 17 00:00:00 2001 From: SWHL Date: Tue, 7 Jan 2025 23:10:06 +0800 Subject: [PATCH 12/23] chore: optimize code --- LICENSE | 2 +- demo.py | 9 +- demo_torch.py | 32 - rapid_table/download_model.py | 25 +- rapid_table/main.py | 91 +- rapid_table/models/unitable_vocab.json | 9650 +++++++++++++++++ rapid_table/models/vocab.json | 9650 +++++++++++++++++ rapid_table/table_structure/logger.py | 21 - .../table_structure_unitable.py | 9 +- rapid_table/table_structure/utils.py | 2 +- setup.py | 19 +- tests/test_main.py | 50 + tests/test_table.py | 35 - tests/test_table_torch.py | 38 - 14 files changed, 19455 insertions(+), 178 deletions(-) delete mode 100644 demo_torch.py create mode 100644 rapid_table/models/unitable_vocab.json create mode 100644 rapid_table/models/vocab.json delete mode 100644 rapid_table/table_structure/logger.py create mode 100644 tests/test_main.py delete mode 100644 tests/test_table.py delete mode 100644 tests/test_table_torch.py diff --git a/LICENSE b/LICENSE index a13bf2b..16c91c5 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2024 RapidAI + Copyright 2025 RapidAI Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/demo.py b/demo.py index fb13d21..22022a7 100644 --- a/demo.py +++ b/demo.py @@ -6,12 +6,14 @@ import cv2 from rapidocr_onnxruntime import RapidOCR, VisRes -from rapid_table import RapidTable, VisTable +from rapid_table import RapidTable, RapidTableInput, VisTable # Init ocr_engine = RapidOCR() vis_ocr = VisRes() -table_engine = RapidTable() + +input_args = RapidTableInput(model_type="unitable") +table_engine = RapidTable(input_args) viser = VisTable() img_path = "tests/test_files/table.jpg" @@ -21,7 +23,8 @@ boxes, txts, scores = list(zip(*ocr_result)) # Table Rec -table_html_str, table_cell_bboxes, _ = table_engine(img_path, ocr_result) +table_results = table_engine(img_path, ocr_result) +table_html_str, table_cell_bboxes = table_results.pred_html, table_results.pred_bboxes # Save save_dir = Path("outputs") diff --git a/demo_torch.py b/demo_torch.py deleted file mode 100644 index 72a2d44..0000000 --- a/demo_torch.py +++ /dev/null @@ -1,32 +0,0 @@ -# -*- encoding: utf-8 -*- -# @Author: SWHL -# @Contact: liekkaskono@163.com -from pathlib import Path -from rapidocr_onnxruntime import RapidOCR - -from rapid_table import RapidTable, VisTable -from rapid_table.table_structure.utils import trans_char_ocr_res - -ocr_engine = RapidOCR() -table_engine = RapidTable(use_cuda=True, device="cuda:0", model_type="unitable") -viser = VisTable() -img_path = "tests/test_files/table.jpg" -# OCR -ocr_result, _ = ocr_engine(img_path, return_word_box=True) -ocr_result = trans_char_ocr_res(ocr_result) -boxes, txts, scores = list(zip(*ocr_result)) -# Save -save_dir = Path("outputs") -save_dir.mkdir(parents=True, exist_ok=True) - -save_html_path = save_dir / f"{Path(img_path).stem}.html" -save_drawed_path = save_dir / f"{Path(img_path).stem}_table_vis{Path(img_path).suffix}" - -table_html_str, table_cell_bboxes, elapse = table_engine(img_path, ocr_result) -viser(img_path, table_html_str, save_html_path, table_cell_bboxes, save_drawed_path) -# 返回逻辑坐标 -# table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path, ocr_result, return_logic_points=True) -# save_logic_path = save_dir / f"vis_logic_{Path(img_path).name}" -# vis_imged = viser(img_path, table_html_str, save_html_path, table_cell_bboxes, save_drawed_path, logic_points, -# save_logic_path) -print(f"elapse:{elapse}") diff --git a/rapid_table/download_model.py b/rapid_table/download_model.py index bce876a..312afa2 100644 --- a/rapid_table/download_model.py +++ b/rapid_table/download_model.py @@ -9,13 +9,11 @@ logger = get_logger("DownloadModel") -CUR_DIR = Path(__file__).resolve() -PROJECT_DIR = CUR_DIR.parent +PROJECT_DIR = Path(__file__).resolve().parent +DEFAULT_MODEL_DIR = PROJECT_DIR / "models" class DownloadModel: - cur_dir = PROJECT_DIR - @staticmethod def get_model_path( model_type: str, sub_file_type: str, path: Union[str, Path, None] @@ -32,19 +30,28 @@ def get_model_path( return path @classmethod - def download(cls, model_full_url: Union[str, Path]) -> str: - save_dir = cls.cur_dir / "models" + def download( + cls, + model_full_url: Union[str, Path], + save_dir: Union[str, Path, None] = None, + save_model_name: Optional[str] = None, + ) -> str: + if save_dir is None: + save_dir = DEFAULT_MODEL_DIR + save_dir.mkdir(parents=True, exist_ok=True) - model_name = Path(model_full_url).name - save_file_path = save_dir / model_name + if save_model_name is None: + save_model_name = Path(model_full_url).name + + save_file_path = save_dir / save_model_name if save_file_path.exists(): logger.debug("%s already exists", save_file_path) return str(save_file_path) try: logger.info("Download %s to %s", model_full_url, save_dir) - file = cls.download_as_bytes_with_progress(model_full_url, model_name) + file = cls.download_as_bytes_with_progress(model_full_url, save_model_name) cls.save_file(save_file_path, file) except Exception as exc: raise DownloadModelError from exc diff --git a/rapid_table/main.py b/rapid_table/main.py index 9e7cdeb..30068fc 100644 --- a/rapid_table/main.py +++ b/rapid_table/main.py @@ -6,25 +6,37 @@ import importlib import time from dataclasses import asdict, dataclass +from enum import Enum from pathlib import Path -from typing import List, Optional, Tuple, Union +from typing import Dict, List, Optional, Tuple, Union import cv2 import numpy as np +from rapid_table.logger import get_logger + from .download_model import DownloadModel from .table_matcher import TableMatch from .table_structure import TableStructurer, TableStructureUnitable from .utils import LoadImage, VisTable +logger = get_logger("main") root_dir = Path(__file__).resolve().parent + +class ModelType(Enum): + PPSTRUCTURE_EN = "ppstructure_en" + PPSTRUCTURE_ZH = "ppstructure_zh" + SLANETPLUS = "slanet_plus" + UNITABLE = "unitable" + + ROOT_URL = "https://www.modelscope.cn/models/RapidAI-NG/RapidTable/resolve/master/" KEY_TO_MODEL_URL = { - "ppstructure_en": f"{ROOT_URL}/en_ppstructure_mobile_v2_SLANet.onnx", - "ppstructure_zh": f"{ROOT_URL}/ch_ppstructure_mobile_v2_SLANet.onnx", - "slanet_plus": f"{ROOT_URL}/slanet-plus.onnx", - "unitable": { + ModelType.PPSTRUCTURE_EN.value: f"{ROOT_URL}/en_ppstructure_mobile_v2_SLANet.onnx", + ModelType.PPSTRUCTURE_ZH.value: f"{ROOT_URL}/ch_ppstructure_mobile_v2_SLANet.onnx", + ModelType.SLANETPLUS.value: f"{ROOT_URL}/slanet-plus.onnx", + ModelType.UNITABLE.value: { "encoder": f"{ROOT_URL}/unitable/encoder.pth", "decoder": f"{ROOT_URL}/unitable/decoder.pth", "vocab": f"{ROOT_URL}/unitable/vocab.json", @@ -34,27 +46,32 @@ @dataclass class RapidTableInput: - model_type: Optional[str] = None - model_path_or_dir: Union[str, Path, None] = None + model_type: Optional[str] = ModelType.SLANETPLUS.value + model_path: Union[str, Path, None, Dict[str, str]] = None use_cuda: bool = False device: str = "cpu" +@dataclass +class RapidTableOutput: + pred_html: Optional[str] = None + pred_bboxes: Optional[np.ndarray] = None + logic_points: Optional[np.ndarray] = None + elapse: Optional[float] = None + + class RapidTable: def __init__(self, config: RapidTableInput): self.model_type = config.model_type - self.load_img = LoadImage() - if self.model_type == "unitable": - config.encoder_path = DownloadModel.get_model_path( - self.model_type, "encoder", config.encoder_path - ) - config.decoder_path = DownloadModel.get_model_path( - self.model_type, "decoder", config.decoder_path - ) - config.vocab_path = DownloadModel.get_model_path( - self.model_type, "vocab", config.vocab_path + if self.model_type not in KEY_TO_MODEL_URL: + model_list = ",".join(KEY_TO_MODEL_URL.keys()) + raise ValueError( + f"{self.model_type} is not supported. The currently supported models are {model_list}." ) + + config.model_path = self.get_model_path(config.model_type, config.model_path) + if self.model_type == ModelType.UNITABLE.value: self.table_structure = TableStructureUnitable(asdict(config)) else: self.table_structure = TableStructurer(asdict(config)) @@ -66,12 +83,14 @@ def __init__(self, config: RapidTableInput): except ModuleNotFoundError: self.ocr_engine = None + self.load_img = LoadImage() + def __call__( self, img_content: Union[str, np.ndarray, bytes, Path], ocr_result: List[Union[List[List[float]], str, str]] = None, return_logic_points: bool = False, - ) -> Tuple[str, float]: + ) -> RapidTableOutput: if self.ocr_engine is None and ocr_result is None: raise ValueError( "One of two conditions must be met: ocr_result is not empty, or rapidocr_onnxruntime is installed." @@ -79,7 +98,7 @@ def __call__( img = self.load_img(img_content) - s = time.time() + s = time.perf_counter() h, w = img.shape[:2] if ocr_result is None: @@ -89,7 +108,7 @@ def __call__( pred_structures, pred_bboxes, _ = self.table_structure(copy.deepcopy(img)) # 适配slanet-plus模型输出的box缩放还原 - if self.model_type == "slanet-plus": + if self.model_type == ModelType.SLANETPLUS.value: pred_bboxes = self.adapt_slanet_plus(img, pred_bboxes) pred_html = self.table_matcher(pred_structures, pred_bboxes, dt_boxes, rec_res) @@ -101,11 +120,13 @@ def __call__( # 避免低版本升级后出现问题,默认不打开 if return_logic_points: logic_points = self.table_matcher.decode_logic_points(pred_structures) - elapse = time.time() - s - return pred_html, pred_bboxes, logic_points, elapse + elapse = time.perf_counter() - s + return RapidTableOutput(pred_html, pred_bboxes, logic_points, elapse) - elapse = time.time() - s - return pred_html, pred_bboxes, elapse + elapse = time.perf_counter() - s + return RapidTableOutput( + pred_html=pred_html, pred_bboxes=pred_bboxes, elapse=elapse + ) def get_boxes_recs( self, ocr_result: List[Union[List[List[float]], str, str]], h: int, w: int @@ -135,6 +156,28 @@ def adapt_slanet_plus(self, img: np.ndarray, pred_bboxes: np.ndarray) -> np.ndar pred_bboxes[:, 1::2] *= h_ratio return pred_bboxes + @staticmethod + def get_model_path( + model_type: str, model_path: Union[str, Path, None] + ) -> Union[str, Dict[str, str]]: + if model_path is not None: + return model_path + + model_url = KEY_TO_MODEL_URL.get(model_type, None) + if isinstance(model_url, str): + model_path = DownloadModel.download(model_url) + return model_path + + if isinstance(model_url, dict): + model_paths = {} + for k, url in model_url.items(): + model_paths[k] = DownloadModel.download( + url, save_model_name=f"{model_type}_{Path(url).name}" + ) + return model_paths + + raise ValueError(f"Model URL: {type(model_url)} is not between str and dict.") + def main(): parser = argparse.ArgumentParser() diff --git a/rapid_table/models/unitable_vocab.json b/rapid_table/models/unitable_vocab.json new file mode 100644 index 0000000..c13ccef --- /dev/null +++ b/rapid_table/models/unitable_vocab.json @@ -0,0 +1,9650 @@ +{ + "version": "1.0", + "truncation": null, + "padding": { + "strategy": "BatchLongest", + "direction": "Right", + "pad_to_multiple_of": null, + "pad_id": 2, + "pad_type_id": 0, + "pad_token": "" + }, + "added_tokens": [ + { + "id": 0, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 1, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 2, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 3, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 4, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 5, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 6, + "content": "[table]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 7, + "content": "[html]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 8, + "content": "[cell]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 9, + "content": "[bbox]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 10, + "content": "[cell+bbox]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 11, + "content": "[html+bbox]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 12, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 13, + "content": "[", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 14, + "content": "]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 15, + "content": "[", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 17, + "content": ">", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 18, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 19, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 20, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 21, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 22, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 23, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 24, + "content": " rowspan=\"2\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 25, + "content": " rowspan=\"3\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 26, + "content": " rowspan=\"4\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 27, + "content": " rowspan=\"5\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 28, + "content": " rowspan=\"6\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 29, + "content": " rowspan=\"7\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 30, + "content": " rowspan=\"8\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 31, + "content": " rowspan=\"9\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 32, + "content": " rowspan=\"10\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 33, + "content": " rowspan=\"11\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 34, + "content": " rowspan=\"12\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 35, + "content": " rowspan=\"13\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 36, + "content": " rowspan=\"14\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 37, + "content": " rowspan=\"15\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 38, + "content": " rowspan=\"16\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 39, + "content": " rowspan=\"17\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 40, + "content": " rowspan=\"18\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 41, + "content": " rowspan=\"19\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 42, + "content": " colspan=\"2\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 43, + "content": " colspan=\"3\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 44, + "content": " colspan=\"4\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 45, + "content": " colspan=\"5\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 46, + "content": " colspan=\"6\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 47, + "content": " colspan=\"7\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 48, + "content": " colspan=\"8\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 49, + "content": " colspan=\"9\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 50, + "content": " colspan=\"10\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 51, + "content": " colspan=\"11\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 52, + "content": " colspan=\"12\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 53, + "content": " colspan=\"13\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 54, + "content": " colspan=\"14\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 55, + "content": " colspan=\"15\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 56, + "content": " colspan=\"16\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 57, + "content": " colspan=\"17\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 58, + "content": " colspan=\"18\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 59, + "content": " colspan=\"19\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 60, + "content": " colspan=\"25\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 61, + "content": "bbox-0", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 62, + "content": "bbox-1", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 63, + "content": "bbox-2", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 64, + "content": "bbox-3", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 65, + "content": "bbox-4", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 66, + "content": "bbox-5", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 67, + "content": "bbox-6", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 68, + "content": "bbox-7", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 69, + "content": "bbox-8", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 70, + "content": "bbox-9", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 71, + "content": "bbox-10", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 72, + "content": "bbox-11", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 73, + "content": "bbox-12", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 74, + "content": "bbox-13", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 75, + "content": "bbox-14", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 76, + "content": "bbox-15", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 77, + "content": "bbox-16", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 78, + "content": "bbox-17", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 79, + "content": "bbox-18", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 80, + "content": "bbox-19", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 81, + "content": "bbox-20", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 82, + "content": "bbox-21", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 83, + "content": "bbox-22", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 84, + "content": "bbox-23", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 85, + "content": "bbox-24", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 86, + "content": "bbox-25", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 87, + "content": "bbox-26", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 88, + "content": "bbox-27", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 89, + "content": "bbox-28", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 90, + "content": "bbox-29", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 91, + "content": "bbox-30", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 92, + "content": "bbox-31", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 93, + "content": "bbox-32", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 94, + "content": "bbox-33", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 95, + "content": "bbox-34", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 96, + "content": "bbox-35", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 97, + "content": "bbox-36", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 98, + "content": "bbox-37", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 99, + "content": "bbox-38", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 100, + "content": "bbox-39", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 101, + "content": "bbox-40", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 102, + "content": "bbox-41", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 103, + "content": "bbox-42", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 104, + "content": "bbox-43", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 105, + "content": "bbox-44", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 106, + "content": "bbox-45", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 107, + "content": "bbox-46", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 108, + "content": "bbox-47", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 109, + "content": "bbox-48", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 110, + "content": "bbox-49", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 111, + "content": "bbox-50", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 112, + "content": "bbox-51", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 113, + "content": "bbox-52", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 114, + "content": "bbox-53", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 115, + "content": "bbox-54", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 116, + "content": "bbox-55", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 117, + "content": "bbox-56", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 118, + "content": "bbox-57", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 119, + "content": "bbox-58", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 120, + "content": "bbox-59", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 121, + "content": "bbox-60", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 122, + "content": "bbox-61", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 123, + "content": "bbox-62", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 124, + "content": "bbox-63", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 125, + "content": "bbox-64", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 126, + "content": "bbox-65", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 127, + "content": "bbox-66", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 128, + "content": "bbox-67", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 129, + "content": "bbox-68", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 130, + "content": "bbox-69", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 131, + "content": "bbox-70", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 132, + "content": "bbox-71", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 133, + "content": "bbox-72", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 134, + "content": "bbox-73", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 135, + "content": "bbox-74", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 136, + "content": "bbox-75", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 137, + "content": "bbox-76", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 138, + "content": "bbox-77", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 139, + "content": "bbox-78", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 140, + "content": "bbox-79", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 141, + "content": "bbox-80", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 142, + "content": "bbox-81", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 143, + "content": "bbox-82", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 144, + "content": "bbox-83", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 145, + "content": "bbox-84", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 146, + "content": "bbox-85", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 147, + "content": "bbox-86", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 148, + "content": "bbox-87", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 149, + "content": "bbox-88", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 150, + "content": "bbox-89", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 151, + "content": "bbox-90", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 152, + "content": "bbox-91", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 153, + "content": "bbox-92", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 154, + "content": "bbox-93", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 155, + "content": "bbox-94", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 156, + "content": "bbox-95", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 157, + "content": "bbox-96", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 158, + "content": "bbox-97", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 159, + "content": "bbox-98", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 160, + "content": "bbox-99", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 161, + "content": "bbox-100", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 162, + "content": "bbox-101", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 163, + "content": "bbox-102", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 164, + "content": "bbox-103", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 165, + "content": "bbox-104", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 166, + "content": "bbox-105", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 167, + "content": "bbox-106", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 168, + "content": "bbox-107", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 169, + "content": "bbox-108", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 170, + "content": "bbox-109", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 171, + "content": "bbox-110", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 172, + "content": "bbox-111", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 173, + "content": "bbox-112", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 174, + "content": "bbox-113", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 175, + "content": "bbox-114", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 176, + "content": "bbox-115", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 177, + "content": "bbox-116", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 178, + "content": "bbox-117", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 179, + "content": "bbox-118", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 180, + "content": "bbox-119", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 181, + "content": "bbox-120", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 182, + "content": "bbox-121", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 183, + "content": "bbox-122", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 184, + "content": "bbox-123", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 185, + "content": "bbox-124", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 186, + "content": "bbox-125", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 187, + "content": "bbox-126", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 188, + "content": "bbox-127", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 189, + "content": "bbox-128", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 190, + "content": "bbox-129", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 191, + "content": "bbox-130", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 192, + "content": "bbox-131", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 193, + "content": "bbox-132", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 194, + "content": "bbox-133", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 195, + "content": "bbox-134", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 196, + "content": "bbox-135", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 197, + "content": "bbox-136", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 198, + "content": "bbox-137", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 199, + "content": "bbox-138", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 200, + "content": "bbox-139", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 201, + "content": "bbox-140", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 202, + "content": "bbox-141", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 203, + "content": "bbox-142", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 204, + "content": "bbox-143", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 205, + "content": "bbox-144", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 206, + "content": "bbox-145", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 207, + "content": "bbox-146", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 208, + "content": "bbox-147", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 209, + "content": "bbox-148", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 210, + "content": "bbox-149", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 211, + "content": "bbox-150", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 212, + "content": "bbox-151", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 213, + "content": "bbox-152", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 214, + "content": "bbox-153", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 215, + "content": "bbox-154", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 216, + "content": "bbox-155", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 217, + "content": "bbox-156", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 218, + "content": "bbox-157", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 219, + "content": "bbox-158", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 220, + "content": "bbox-159", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 221, + "content": "bbox-160", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 222, + "content": "bbox-161", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 223, + "content": "bbox-162", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 224, + "content": "bbox-163", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 225, + "content": "bbox-164", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 226, + "content": "bbox-165", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 227, + "content": "bbox-166", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 228, + "content": "bbox-167", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 229, + "content": "bbox-168", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 230, + "content": "bbox-169", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 231, + "content": "bbox-170", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 232, + "content": "bbox-171", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 233, + "content": "bbox-172", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 234, + "content": "bbox-173", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 235, + "content": "bbox-174", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 236, + "content": "bbox-175", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 237, + "content": "bbox-176", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 238, + "content": "bbox-177", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 239, + "content": "bbox-178", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 240, + "content": "bbox-179", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 241, + "content": "bbox-180", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 242, + "content": "bbox-181", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 243, + "content": "bbox-182", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 244, + "content": "bbox-183", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 245, + "content": "bbox-184", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 246, + "content": "bbox-185", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 247, + "content": "bbox-186", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 248, + "content": "bbox-187", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 249, + "content": "bbox-188", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 250, + "content": "bbox-189", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 251, + "content": "bbox-190", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 252, + "content": "bbox-191", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 253, + "content": "bbox-192", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 254, + "content": "bbox-193", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 255, + "content": "bbox-194", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 256, + "content": "bbox-195", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 257, + "content": "bbox-196", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 258, + "content": "bbox-197", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 259, + "content": "bbox-198", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 260, + "content": "bbox-199", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 261, + "content": "bbox-200", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 262, + "content": "bbox-201", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 263, + "content": "bbox-202", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 264, + "content": "bbox-203", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 265, + "content": "bbox-204", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 266, + "content": "bbox-205", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 267, + "content": "bbox-206", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 268, + "content": "bbox-207", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 269, + "content": "bbox-208", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 270, + "content": "bbox-209", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 271, + "content": "bbox-210", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 272, + "content": "bbox-211", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 273, + "content": "bbox-212", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 274, + "content": "bbox-213", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 275, + "content": "bbox-214", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 276, + "content": "bbox-215", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 277, + "content": "bbox-216", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 278, + "content": "bbox-217", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 279, + "content": "bbox-218", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 280, + "content": "bbox-219", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 281, + "content": "bbox-220", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 282, + "content": "bbox-221", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 283, + "content": "bbox-222", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 284, + "content": "bbox-223", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 285, + "content": "bbox-224", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 286, + "content": "bbox-225", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 287, + "content": "bbox-226", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 288, + "content": "bbox-227", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 289, + "content": "bbox-228", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 290, + "content": "bbox-229", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 291, + "content": "bbox-230", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 292, + "content": "bbox-231", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 293, + "content": "bbox-232", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 294, + "content": "bbox-233", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 295, + "content": "bbox-234", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 296, + "content": "bbox-235", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 297, + "content": "bbox-236", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 298, + "content": "bbox-237", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 299, + "content": "bbox-238", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 300, + "content": "bbox-239", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 301, + "content": "bbox-240", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 302, + "content": "bbox-241", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 303, + "content": "bbox-242", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 304, + "content": "bbox-243", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 305, + "content": "bbox-244", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 306, + "content": "bbox-245", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 307, + "content": "bbox-246", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 308, + "content": "bbox-247", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 309, + "content": "bbox-248", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 310, + "content": "bbox-249", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 311, + "content": "bbox-250", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 312, + "content": "bbox-251", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 313, + "content": "bbox-252", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 314, + "content": "bbox-253", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 315, + "content": "bbox-254", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 316, + "content": "bbox-255", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 317, + "content": "bbox-256", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 318, + "content": "bbox-257", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 319, + "content": "bbox-258", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 320, + "content": "bbox-259", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 321, + "content": "bbox-260", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 322, + "content": "bbox-261", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 323, + "content": "bbox-262", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 324, + "content": "bbox-263", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 325, + "content": "bbox-264", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 326, + "content": "bbox-265", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 327, + "content": "bbox-266", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 328, + "content": "bbox-267", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 329, + "content": "bbox-268", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 330, + "content": "bbox-269", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 331, + "content": "bbox-270", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 332, + "content": "bbox-271", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 333, + "content": "bbox-272", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 334, + "content": "bbox-273", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 335, + "content": "bbox-274", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 336, + "content": "bbox-275", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 337, + "content": "bbox-276", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 338, + "content": "bbox-277", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 339, + "content": "bbox-278", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 340, + "content": "bbox-279", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 341, + "content": "bbox-280", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 342, + "content": "bbox-281", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 343, + "content": "bbox-282", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 344, + "content": "bbox-283", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 345, + "content": "bbox-284", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 346, + "content": "bbox-285", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 347, + "content": "bbox-286", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 348, + "content": "bbox-287", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 349, + "content": "bbox-288", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 350, + "content": "bbox-289", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 351, + "content": "bbox-290", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 352, + "content": "bbox-291", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 353, + "content": "bbox-292", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 354, + "content": "bbox-293", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 355, + "content": "bbox-294", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 356, + "content": "bbox-295", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 357, + "content": "bbox-296", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 358, + "content": "bbox-297", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 359, + "content": "bbox-298", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 360, + "content": "bbox-299", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 361, + "content": "bbox-300", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 362, + "content": "bbox-301", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 363, + "content": "bbox-302", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 364, + "content": "bbox-303", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 365, + "content": "bbox-304", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 366, + "content": "bbox-305", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 367, + "content": "bbox-306", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 368, + "content": "bbox-307", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 369, + "content": "bbox-308", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 370, + "content": "bbox-309", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 371, + "content": "bbox-310", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 372, + "content": "bbox-311", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 373, + "content": "bbox-312", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 374, + "content": "bbox-313", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 375, + "content": "bbox-314", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 376, + "content": "bbox-315", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 377, + "content": "bbox-316", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 378, + "content": "bbox-317", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 379, + "content": "bbox-318", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 380, + "content": "bbox-319", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 381, + "content": "bbox-320", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 382, + "content": "bbox-321", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 383, + "content": "bbox-322", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 384, + "content": "bbox-323", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 385, + "content": "bbox-324", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 386, + "content": "bbox-325", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 387, + "content": "bbox-326", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 388, + "content": "bbox-327", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 389, + "content": "bbox-328", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 390, + "content": "bbox-329", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 391, + "content": "bbox-330", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 392, + "content": "bbox-331", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 393, + "content": "bbox-332", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 394, + "content": "bbox-333", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 395, + "content": "bbox-334", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 396, + "content": "bbox-335", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 397, + "content": "bbox-336", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 398, + "content": "bbox-337", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 399, + "content": "bbox-338", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 400, + "content": "bbox-339", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 401, + "content": "bbox-340", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 402, + "content": "bbox-341", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 403, + "content": "bbox-342", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 404, + "content": "bbox-343", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 405, + "content": "bbox-344", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 406, + "content": "bbox-345", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 407, + "content": "bbox-346", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 408, + "content": "bbox-347", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 409, + "content": "bbox-348", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 410, + "content": "bbox-349", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 411, + "content": "bbox-350", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 412, + "content": "bbox-351", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 413, + "content": "bbox-352", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 414, + "content": "bbox-353", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 415, + "content": "bbox-354", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 416, + "content": "bbox-355", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 417, + "content": "bbox-356", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 418, + "content": "bbox-357", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 419, + "content": "bbox-358", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 420, + "content": "bbox-359", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 421, + "content": "bbox-360", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 422, + "content": "bbox-361", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 423, + "content": "bbox-362", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 424, + "content": "bbox-363", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 425, + "content": "bbox-364", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 426, + "content": "bbox-365", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 427, + "content": "bbox-366", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 428, + "content": "bbox-367", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 429, + "content": "bbox-368", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 430, + "content": "bbox-369", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 431, + "content": "bbox-370", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 432, + "content": "bbox-371", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 433, + "content": "bbox-372", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 434, + "content": "bbox-373", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 435, + "content": "bbox-374", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 436, + "content": "bbox-375", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 437, + "content": "bbox-376", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 438, + "content": "bbox-377", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 439, + "content": "bbox-378", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 440, + "content": "bbox-379", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 441, + "content": "bbox-380", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 442, + "content": "bbox-381", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 443, + "content": "bbox-382", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 444, + "content": "bbox-383", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 445, + "content": "bbox-384", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 446, + "content": "bbox-385", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 447, + "content": "bbox-386", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 448, + "content": "bbox-387", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 449, + "content": "bbox-388", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 450, + "content": "bbox-389", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 451, + "content": "bbox-390", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 452, + "content": "bbox-391", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 453, + "content": "bbox-392", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 454, + "content": "bbox-393", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 455, + "content": "bbox-394", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 456, + "content": "bbox-395", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 457, + "content": "bbox-396", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 458, + "content": "bbox-397", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 459, + "content": "bbox-398", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 460, + "content": "bbox-399", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 461, + "content": "bbox-400", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 462, + "content": "bbox-401", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 463, + "content": "bbox-402", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 464, + "content": "bbox-403", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 465, + "content": "bbox-404", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 466, + "content": "bbox-405", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 467, + "content": "bbox-406", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 468, + "content": "bbox-407", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 469, + "content": "bbox-408", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 470, + "content": "bbox-409", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 471, + "content": "bbox-410", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 472, + "content": "bbox-411", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 473, + "content": "bbox-412", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 474, + "content": "bbox-413", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 475, + "content": "bbox-414", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 476, + "content": "bbox-415", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 477, + "content": "bbox-416", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 478, + "content": "bbox-417", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 479, + "content": "bbox-418", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 480, + "content": "bbox-419", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 481, + "content": "bbox-420", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 482, + "content": "bbox-421", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 483, + "content": "bbox-422", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 484, + "content": "bbox-423", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 485, + "content": "bbox-424", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 486, + "content": "bbox-425", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 487, + "content": "bbox-426", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 488, + "content": "bbox-427", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 489, + "content": "bbox-428", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 490, + "content": "bbox-429", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 491, + "content": "bbox-430", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 492, + "content": "bbox-431", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 493, + "content": "bbox-432", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 494, + "content": "bbox-433", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 495, + "content": "bbox-434", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 496, + "content": "bbox-435", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 497, + "content": "bbox-436", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 498, + "content": "bbox-437", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 499, + "content": "bbox-438", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 500, + "content": "bbox-439", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 501, + "content": "bbox-440", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 502, + "content": "bbox-441", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 503, + "content": "bbox-442", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 504, + "content": "bbox-443", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 505, + "content": "bbox-444", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 506, + "content": "bbox-445", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 507, + "content": "bbox-446", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 508, + "content": "bbox-447", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 509, + "content": "bbox-448", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 510, + "content": "bbox-449", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 511, + "content": "bbox-450", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 512, + "content": "bbox-451", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 513, + "content": "bbox-452", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 514, + "content": "bbox-453", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 515, + "content": "bbox-454", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 516, + "content": "bbox-455", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 517, + "content": "bbox-456", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 518, + "content": "bbox-457", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 519, + "content": "bbox-458", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 520, + "content": "bbox-459", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 521, + "content": "bbox-460", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 522, + "content": "bbox-461", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 523, + "content": "bbox-462", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 524, + "content": "bbox-463", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 525, + "content": "bbox-464", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 526, + "content": "bbox-465", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 527, + "content": "bbox-466", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 528, + "content": "bbox-467", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 529, + "content": "bbox-468", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 530, + "content": "bbox-469", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 531, + "content": "bbox-470", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 532, + "content": "bbox-471", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 533, + "content": "bbox-472", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 534, + "content": "bbox-473", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 535, + "content": "bbox-474", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 536, + "content": "bbox-475", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 537, + "content": "bbox-476", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 538, + "content": "bbox-477", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 539, + "content": "bbox-478", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 540, + "content": "bbox-479", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 541, + "content": "bbox-480", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 542, + "content": "bbox-481", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 543, + "content": "bbox-482", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 544, + "content": "bbox-483", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 545, + "content": "bbox-484", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 546, + "content": "bbox-485", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 547, + "content": "bbox-486", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 548, + "content": "bbox-487", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 549, + "content": "bbox-488", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 550, + "content": "bbox-489", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 551, + "content": "bbox-490", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 552, + "content": "bbox-491", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 553, + "content": "bbox-492", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 554, + "content": "bbox-493", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 555, + "content": "bbox-494", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 556, + "content": "bbox-495", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 557, + "content": "bbox-496", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 558, + "content": "bbox-497", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 559, + "content": "bbox-498", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 560, + "content": "bbox-499", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 561, + "content": "bbox-500", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 562, + "content": "bbox-501", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 563, + "content": "bbox-502", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 564, + "content": "bbox-503", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 565, + "content": "bbox-504", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 566, + "content": "bbox-505", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 567, + "content": "bbox-506", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 568, + "content": "bbox-507", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 569, + "content": "bbox-508", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 570, + "content": "bbox-509", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 571, + "content": "bbox-510", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 572, + "content": "bbox-511", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 573, + "content": "bbox-512", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 574, + "content": "bbox-513", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 575, + "content": "bbox-514", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 576, + "content": "bbox-515", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 577, + "content": "bbox-516", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 578, + "content": "bbox-517", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 579, + "content": "bbox-518", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 580, + "content": "bbox-519", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 581, + "content": "bbox-520", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 582, + "content": "bbox-521", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 583, + "content": "bbox-522", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 584, + "content": "bbox-523", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 585, + "content": "bbox-524", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 586, + "content": "bbox-525", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 587, + "content": "bbox-526", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 588, + "content": "bbox-527", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 589, + "content": "bbox-528", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 590, + "content": "bbox-529", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 591, + "content": "bbox-530", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 592, + "content": "bbox-531", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 593, + "content": "bbox-532", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 594, + "content": "bbox-533", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 595, + "content": "bbox-534", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 596, + "content": "bbox-535", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 597, + "content": "bbox-536", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 598, + "content": "bbox-537", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 599, + "content": "bbox-538", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 600, + "content": "bbox-539", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 601, + "content": "bbox-540", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 602, + "content": "bbox-541", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 603, + "content": "bbox-542", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 604, + "content": "bbox-543", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 605, + "content": "bbox-544", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 606, + "content": "bbox-545", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 607, + "content": "bbox-546", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 608, + "content": "bbox-547", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 609, + "content": "bbox-548", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 610, + "content": "bbox-549", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 611, + "content": "bbox-550", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 612, + "content": "bbox-551", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 613, + "content": "bbox-552", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 614, + "content": "bbox-553", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 615, + "content": "bbox-554", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 616, + "content": "bbox-555", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 617, + "content": "bbox-556", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 618, + "content": "bbox-557", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 619, + "content": "bbox-558", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 620, + "content": "bbox-559", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 621, + "content": "bbox-560", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 622, + "content": "bbox-561", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 623, + "content": "bbox-562", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 624, + "content": "bbox-563", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 625, + "content": "bbox-564", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 626, + "content": "bbox-565", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 627, + "content": "bbox-566", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 628, + "content": "bbox-567", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 629, + "content": "bbox-568", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 630, + "content": "bbox-569", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 631, + "content": "bbox-570", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 632, + "content": "bbox-571", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 633, + "content": "bbox-572", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 634, + "content": "bbox-573", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 635, + "content": "bbox-574", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 636, + "content": "bbox-575", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 637, + "content": "bbox-576", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 638, + "content": "bbox-577", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 639, + "content": "bbox-578", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 640, + "content": "bbox-579", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 641, + "content": "bbox-580", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 642, + "content": "bbox-581", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 643, + "content": "bbox-582", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 644, + "content": "bbox-583", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 645, + "content": "bbox-584", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 646, + "content": "bbox-585", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 647, + "content": "bbox-586", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 648, + "content": "bbox-587", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 649, + "content": "bbox-588", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 650, + "content": "bbox-589", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 651, + "content": "bbox-590", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 652, + "content": "bbox-591", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 653, + "content": "bbox-592", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 654, + "content": "bbox-593", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 655, + "content": "bbox-594", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 656, + "content": "bbox-595", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 657, + "content": "bbox-596", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 658, + "content": "bbox-597", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 659, + "content": "bbox-598", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 660, + "content": "bbox-599", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 661, + "content": "bbox-600", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 662, + "content": "bbox-601", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 663, + "content": "bbox-602", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 664, + "content": "bbox-603", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 665, + "content": "bbox-604", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 666, + "content": "bbox-605", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 667, + "content": "bbox-606", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 668, + "content": "bbox-607", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 669, + "content": "bbox-608", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 670, + "content": "bbox-609", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 671, + "content": "bbox-610", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 672, + "content": "bbox-611", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 673, + "content": "bbox-612", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 674, + "content": "bbox-613", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 675, + "content": "bbox-614", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 676, + "content": "bbox-615", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 677, + "content": "bbox-616", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 678, + "content": "bbox-617", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 679, + "content": "bbox-618", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 680, + "content": "bbox-619", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 681, + "content": "bbox-620", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 682, + "content": "bbox-621", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 683, + "content": "bbox-622", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 684, + "content": "bbox-623", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 685, + "content": "bbox-624", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 686, + "content": "bbox-625", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 687, + "content": "bbox-626", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 688, + "content": "bbox-627", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 689, + "content": "bbox-628", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 690, + "content": "bbox-629", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 691, + "content": "bbox-630", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 692, + "content": "bbox-631", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 693, + "content": "bbox-632", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 694, + "content": "bbox-633", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 695, + "content": "bbox-634", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 696, + "content": "bbox-635", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 697, + "content": "bbox-636", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 698, + "content": "bbox-637", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 699, + "content": "bbox-638", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 700, + "content": "bbox-639", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 701, + "content": "bbox-640", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 702, + "content": "bbox-641", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 703, + "content": "bbox-642", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 704, + "content": "bbox-643", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 705, + "content": "bbox-644", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 706, + "content": "bbox-645", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 707, + "content": "bbox-646", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 708, + "content": "bbox-647", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 709, + "content": "bbox-648", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 710, + "content": "bbox-649", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 711, + "content": "bbox-650", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 712, + "content": "bbox-651", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 713, + "content": "bbox-652", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 714, + "content": "bbox-653", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 715, + "content": "bbox-654", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 716, + "content": "bbox-655", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 717, + "content": "bbox-656", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 718, + "content": "bbox-657", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 719, + "content": "bbox-658", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 720, + "content": "bbox-659", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 721, + "content": "bbox-660", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 722, + "content": "bbox-661", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 723, + "content": "bbox-662", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 724, + "content": "bbox-663", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 725, + "content": "bbox-664", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 726, + "content": "bbox-665", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 727, + "content": "bbox-666", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 728, + "content": "bbox-667", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 729, + "content": "bbox-668", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 730, + "content": "bbox-669", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 731, + "content": "bbox-670", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 732, + "content": "bbox-671", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 733, + "content": "bbox-672", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 734, + "content": "bbox-673", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 735, + "content": "bbox-674", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 736, + "content": "bbox-675", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 737, + "content": "bbox-676", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 738, + "content": "bbox-677", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 739, + "content": "bbox-678", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 740, + "content": "bbox-679", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 741, + "content": "bbox-680", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 742, + "content": "bbox-681", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 743, + "content": "bbox-682", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 744, + "content": "bbox-683", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 745, + "content": "bbox-684", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 746, + "content": "bbox-685", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 747, + "content": "bbox-686", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 748, + "content": "bbox-687", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 749, + "content": "bbox-688", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 750, + "content": "bbox-689", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 751, + "content": "bbox-690", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 752, + "content": "bbox-691", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 753, + "content": "bbox-692", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 754, + "content": "bbox-693", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 755, + "content": "bbox-694", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 756, + "content": "bbox-695", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 757, + "content": "bbox-696", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 758, + "content": "bbox-697", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 759, + "content": "bbox-698", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 760, + "content": "bbox-699", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 761, + "content": "bbox-700", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 762, + "content": "bbox-701", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 763, + "content": "bbox-702", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 764, + "content": "bbox-703", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 765, + "content": "bbox-704", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 766, + "content": "bbox-705", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 767, + "content": "bbox-706", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 768, + "content": "bbox-707", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 769, + "content": "bbox-708", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 770, + "content": "bbox-709", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 771, + "content": "bbox-710", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 772, + "content": "bbox-711", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 773, + "content": "bbox-712", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 774, + "content": "bbox-713", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 775, + "content": "bbox-714", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 776, + "content": "bbox-715", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 777, + "content": "bbox-716", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 778, + "content": "bbox-717", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 779, + "content": "bbox-718", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 780, + "content": "bbox-719", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 781, + "content": "bbox-720", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 782, + "content": "bbox-721", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 783, + "content": "bbox-722", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 784, + "content": "bbox-723", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 785, + "content": "bbox-724", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 786, + "content": "bbox-725", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 787, + "content": "bbox-726", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 788, + "content": "bbox-727", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 789, + "content": "bbox-728", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 790, + "content": "bbox-729", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 791, + "content": "bbox-730", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 792, + "content": "bbox-731", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 793, + "content": "bbox-732", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 794, + "content": "bbox-733", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 795, + "content": "bbox-734", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 796, + "content": "bbox-735", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 797, + "content": "bbox-736", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 798, + "content": "bbox-737", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 799, + "content": "bbox-738", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 800, + "content": "bbox-739", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 801, + "content": "bbox-740", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 802, + "content": "bbox-741", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 803, + "content": "bbox-742", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 804, + "content": "bbox-743", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 805, + "content": "bbox-744", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 806, + "content": "bbox-745", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 807, + "content": "bbox-746", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 808, + "content": "bbox-747", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 809, + "content": "bbox-748", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 810, + "content": "bbox-749", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 811, + "content": "bbox-750", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 812, + "content": "bbox-751", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 813, + "content": "bbox-752", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 814, + "content": "bbox-753", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 815, + "content": "bbox-754", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 816, + "content": "bbox-755", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 817, + "content": "bbox-756", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 818, + "content": "bbox-757", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 819, + "content": "bbox-758", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 820, + "content": "bbox-759", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 821, + "content": "bbox-760", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 822, + "content": "bbox-761", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 823, + "content": "bbox-762", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 824, + "content": "bbox-763", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 825, + "content": "bbox-764", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 826, + "content": "bbox-765", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 827, + "content": "bbox-766", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 828, + "content": "bbox-767", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 829, + "content": "bbox-768", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 830, + "content": "bbox-769", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 831, + "content": "bbox-770", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 832, + "content": "bbox-771", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 833, + "content": "bbox-772", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 834, + "content": "bbox-773", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 835, + "content": "bbox-774", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 836, + "content": "bbox-775", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 837, + "content": "bbox-776", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 838, + "content": "bbox-777", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 839, + "content": "bbox-778", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 840, + "content": "bbox-779", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 841, + "content": "bbox-780", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 842, + "content": "bbox-781", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 843, + "content": "bbox-782", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 844, + "content": "bbox-783", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 845, + "content": "bbox-784", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 846, + "content": "bbox-785", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 847, + "content": "bbox-786", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 848, + "content": "bbox-787", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 849, + "content": "bbox-788", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 850, + "content": "bbox-789", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 851, + "content": "bbox-790", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 852, + "content": "bbox-791", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 853, + "content": "bbox-792", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 854, + "content": "bbox-793", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 855, + "content": "bbox-794", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 856, + "content": "bbox-795", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 857, + "content": "bbox-796", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 858, + "content": "bbox-797", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 859, + "content": "bbox-798", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 860, + "content": "bbox-799", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 861, + "content": "bbox-800", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 862, + "content": "bbox-801", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 863, + "content": "bbox-802", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 864, + "content": "bbox-803", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 865, + "content": "bbox-804", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 866, + "content": "bbox-805", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 867, + "content": "bbox-806", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 868, + "content": "bbox-807", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 869, + "content": "bbox-808", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 870, + "content": "bbox-809", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 871, + "content": "bbox-810", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 872, + "content": "bbox-811", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 873, + "content": "bbox-812", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 874, + "content": "bbox-813", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 875, + "content": "bbox-814", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 876, + "content": "bbox-815", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 877, + "content": "bbox-816", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 878, + "content": "bbox-817", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 879, + "content": "bbox-818", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 880, + "content": "bbox-819", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 881, + "content": "bbox-820", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 882, + "content": "bbox-821", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 883, + "content": "bbox-822", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 884, + "content": "bbox-823", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 885, + "content": "bbox-824", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 886, + "content": "bbox-825", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 887, + "content": "bbox-826", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 888, + "content": "bbox-827", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 889, + "content": "bbox-828", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 890, + "content": "bbox-829", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 891, + "content": "bbox-830", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 892, + "content": "bbox-831", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 893, + "content": "bbox-832", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 894, + "content": "bbox-833", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 895, + "content": "bbox-834", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 896, + "content": "bbox-835", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 897, + "content": "bbox-836", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 898, + "content": "bbox-837", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 899, + "content": "bbox-838", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 900, + "content": "bbox-839", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 901, + "content": "bbox-840", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 902, + "content": "bbox-841", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 903, + "content": "bbox-842", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 904, + "content": "bbox-843", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 905, + "content": "bbox-844", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 906, + "content": "bbox-845", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 907, + "content": "bbox-846", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 908, + "content": "bbox-847", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 909, + "content": "bbox-848", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 910, + "content": "bbox-849", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 911, + "content": "bbox-850", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 912, + "content": "bbox-851", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 913, + "content": "bbox-852", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 914, + "content": "bbox-853", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 915, + "content": "bbox-854", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 916, + "content": "bbox-855", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 917, + "content": "bbox-856", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 918, + "content": "bbox-857", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 919, + "content": "bbox-858", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 920, + "content": "bbox-859", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 921, + "content": "bbox-860", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 922, + "content": "bbox-861", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 923, + "content": "bbox-862", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 924, + "content": "bbox-863", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 925, + "content": "bbox-864", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 926, + "content": "bbox-865", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 927, + "content": "bbox-866", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 928, + "content": "bbox-867", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 929, + "content": "bbox-868", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 930, + "content": "bbox-869", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 931, + "content": "bbox-870", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 932, + "content": "bbox-871", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 933, + "content": "bbox-872", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 934, + "content": "bbox-873", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 935, + "content": "bbox-874", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 936, + "content": "bbox-875", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 937, + "content": "bbox-876", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 938, + "content": "bbox-877", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 939, + "content": "bbox-878", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 940, + "content": "bbox-879", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 941, + "content": "bbox-880", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 942, + "content": "bbox-881", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 943, + "content": "bbox-882", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 944, + "content": "bbox-883", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 945, + "content": "bbox-884", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 946, + "content": "bbox-885", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 947, + "content": "bbox-886", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 948, + "content": "bbox-887", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 949, + "content": "bbox-888", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 950, + "content": "bbox-889", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 951, + "content": "bbox-890", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 952, + "content": "bbox-891", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 953, + "content": "bbox-892", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 954, + "content": "bbox-893", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 955, + "content": "bbox-894", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 956, + "content": "bbox-895", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 957, + "content": "bbox-896", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 958, + "content": "bbox-897", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 959, + "content": "bbox-898", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + } + ], + "normalizer": { + "type": "Sequence", + "normalizers": [ + { + "type": "NFD" + }, + { + "type": "Lowercase" + }, + { + "type": "StripAccents" + }, + { + "type": "Strip", + "strip_left": true, + "strip_right": true + } + ] + }, + "pre_tokenizer": { + "type": "Whitespace" + }, + "post_processor": null, + "decoder": { + "type": "WordPiece", + "prefix": "##", + "cleanup": true + }, + "model": { + "type": "WordPiece", + "unk_token": "", + "continuing_subword_prefix": "##", + "max_input_chars_per_word": 100, + "vocab": { + "": 0, + "": 1, + "": 2, + "": 3, + "": 4, + "": 5, + "[table]": 6, + "[html]": 7, + "[cell]": 8, + "[bbox]": 9, + "[cell+bbox]": 10, + "[html+bbox]": 11, + "": 12, + "[": 13, + "]": 14, + "[": 16, + ">": 17, + "": 18, + "": 19, + "": 20, + "": 21, + "": 22, + "": 23, + " rowspan=\"2\"": 24, + " rowspan=\"3\"": 25, + " rowspan=\"4\"": 26, + " rowspan=\"5\"": 27, + " rowspan=\"6\"": 28, + " rowspan=\"7\"": 29, + " rowspan=\"8\"": 30, + " rowspan=\"9\"": 31, + " rowspan=\"10\"": 32, + " rowspan=\"11\"": 33, + " rowspan=\"12\"": 34, + " rowspan=\"13\"": 35, + " rowspan=\"14\"": 36, + " rowspan=\"15\"": 37, + " rowspan=\"16\"": 38, + " rowspan=\"17\"": 39, + " rowspan=\"18\"": 40, + " rowspan=\"19\"": 41, + " colspan=\"2\"": 42, + " colspan=\"3\"": 43, + " colspan=\"4\"": 44, + " colspan=\"5\"": 45, + " colspan=\"6\"": 46, + " colspan=\"7\"": 47, + " colspan=\"8\"": 48, + " colspan=\"9\"": 49, + " colspan=\"10\"": 50, + " colspan=\"11\"": 51, + " colspan=\"12\"": 52, + " colspan=\"13\"": 53, + " colspan=\"14\"": 54, + " colspan=\"15\"": 55, + " colspan=\"16\"": 56, + " colspan=\"17\"": 57, + " colspan=\"18\"": 58, + " colspan=\"19\"": 59, + " colspan=\"25\"": 60, + "bbox-0": 61, + "bbox-1": 62, + "bbox-2": 63, + "bbox-3": 64, + "bbox-4": 65, + "bbox-5": 66, + "bbox-6": 67, + "bbox-7": 68, + "bbox-8": 69, + "bbox-9": 70, + "bbox-10": 71, + "bbox-11": 72, + "bbox-12": 73, + "bbox-13": 74, + "bbox-14": 75, + "bbox-15": 76, + "bbox-16": 77, + "bbox-17": 78, + "bbox-18": 79, + "bbox-19": 80, + "bbox-20": 81, + "bbox-21": 82, + "bbox-22": 83, + "bbox-23": 84, + "bbox-24": 85, + "bbox-25": 86, + "bbox-26": 87, + "bbox-27": 88, + "bbox-28": 89, + "bbox-29": 90, + "bbox-30": 91, + "bbox-31": 92, + "bbox-32": 93, + "bbox-33": 94, + "bbox-34": 95, + "bbox-35": 96, + "bbox-36": 97, + "bbox-37": 98, + "bbox-38": 99, + "bbox-39": 100, + "bbox-40": 101, + "bbox-41": 102, + "bbox-42": 103, + "bbox-43": 104, + "bbox-44": 105, + "bbox-45": 106, + "bbox-46": 107, + "bbox-47": 108, + "bbox-48": 109, + "bbox-49": 110, + "bbox-50": 111, + "bbox-51": 112, + "bbox-52": 113, + "bbox-53": 114, + "bbox-54": 115, + "bbox-55": 116, + "bbox-56": 117, + "bbox-57": 118, + "bbox-58": 119, + "bbox-59": 120, + "bbox-60": 121, + "bbox-61": 122, + "bbox-62": 123, + "bbox-63": 124, + "bbox-64": 125, + "bbox-65": 126, + "bbox-66": 127, + "bbox-67": 128, + "bbox-68": 129, + "bbox-69": 130, + "bbox-70": 131, + "bbox-71": 132, + "bbox-72": 133, + "bbox-73": 134, + "bbox-74": 135, + "bbox-75": 136, + "bbox-76": 137, + "bbox-77": 138, + "bbox-78": 139, + "bbox-79": 140, + "bbox-80": 141, + "bbox-81": 142, + "bbox-82": 143, + "bbox-83": 144, + "bbox-84": 145, + "bbox-85": 146, + "bbox-86": 147, + "bbox-87": 148, + "bbox-88": 149, + "bbox-89": 150, + "bbox-90": 151, + "bbox-91": 152, + "bbox-92": 153, + "bbox-93": 154, + "bbox-94": 155, + "bbox-95": 156, + "bbox-96": 157, + "bbox-97": 158, + "bbox-98": 159, + "bbox-99": 160, + "bbox-100": 161, + "bbox-101": 162, + "bbox-102": 163, + "bbox-103": 164, + "bbox-104": 165, + "bbox-105": 166, + "bbox-106": 167, + "bbox-107": 168, + "bbox-108": 169, + "bbox-109": 170, + "bbox-110": 171, + "bbox-111": 172, + "bbox-112": 173, + "bbox-113": 174, + "bbox-114": 175, + "bbox-115": 176, + "bbox-116": 177, + "bbox-117": 178, + "bbox-118": 179, + "bbox-119": 180, + "bbox-120": 181, + "bbox-121": 182, + "bbox-122": 183, + "bbox-123": 184, + "bbox-124": 185, + "bbox-125": 186, + "bbox-126": 187, + "bbox-127": 188, + "bbox-128": 189, + "bbox-129": 190, + "bbox-130": 191, + "bbox-131": 192, + "bbox-132": 193, + "bbox-133": 194, + "bbox-134": 195, + "bbox-135": 196, + "bbox-136": 197, + "bbox-137": 198, + "bbox-138": 199, + "bbox-139": 200, + "bbox-140": 201, + "bbox-141": 202, + "bbox-142": 203, + "bbox-143": 204, + "bbox-144": 205, + "bbox-145": 206, + "bbox-146": 207, + "bbox-147": 208, + "bbox-148": 209, + "bbox-149": 210, + "bbox-150": 211, + "bbox-151": 212, + "bbox-152": 213, + "bbox-153": 214, + "bbox-154": 215, + "bbox-155": 216, + "bbox-156": 217, + "bbox-157": 218, + "bbox-158": 219, + "bbox-159": 220, + "bbox-160": 221, + "bbox-161": 222, + "bbox-162": 223, + "bbox-163": 224, + "bbox-164": 225, + "bbox-165": 226, + "bbox-166": 227, + "bbox-167": 228, + "bbox-168": 229, + "bbox-169": 230, + "bbox-170": 231, + "bbox-171": 232, + "bbox-172": 233, + "bbox-173": 234, + "bbox-174": 235, + "bbox-175": 236, + "bbox-176": 237, + "bbox-177": 238, + "bbox-178": 239, + "bbox-179": 240, + "bbox-180": 241, + "bbox-181": 242, + "bbox-182": 243, + "bbox-183": 244, + "bbox-184": 245, + "bbox-185": 246, + "bbox-186": 247, + "bbox-187": 248, + "bbox-188": 249, + "bbox-189": 250, + "bbox-190": 251, + "bbox-191": 252, + "bbox-192": 253, + "bbox-193": 254, + "bbox-194": 255, + "bbox-195": 256, + "bbox-196": 257, + "bbox-197": 258, + "bbox-198": 259, + "bbox-199": 260, + "bbox-200": 261, + "bbox-201": 262, + "bbox-202": 263, + "bbox-203": 264, + "bbox-204": 265, + "bbox-205": 266, + "bbox-206": 267, + "bbox-207": 268, + "bbox-208": 269, + "bbox-209": 270, + "bbox-210": 271, + "bbox-211": 272, + "bbox-212": 273, + "bbox-213": 274, + "bbox-214": 275, + "bbox-215": 276, + "bbox-216": 277, + "bbox-217": 278, + "bbox-218": 279, + "bbox-219": 280, + "bbox-220": 281, + "bbox-221": 282, + "bbox-222": 283, + "bbox-223": 284, + "bbox-224": 285, + "bbox-225": 286, + "bbox-226": 287, + "bbox-227": 288, + "bbox-228": 289, + "bbox-229": 290, + "bbox-230": 291, + "bbox-231": 292, + "bbox-232": 293, + "bbox-233": 294, + "bbox-234": 295, + "bbox-235": 296, + "bbox-236": 297, + "bbox-237": 298, + "bbox-238": 299, + "bbox-239": 300, + "bbox-240": 301, + "bbox-241": 302, + "bbox-242": 303, + "bbox-243": 304, + "bbox-244": 305, + "bbox-245": 306, + "bbox-246": 307, + "bbox-247": 308, + "bbox-248": 309, + "bbox-249": 310, + "bbox-250": 311, + "bbox-251": 312, + "bbox-252": 313, + "bbox-253": 314, + "bbox-254": 315, + "bbox-255": 316, + "bbox-256": 317, + "bbox-257": 318, + "bbox-258": 319, + "bbox-259": 320, + "bbox-260": 321, + "bbox-261": 322, + "bbox-262": 323, + "bbox-263": 324, + "bbox-264": 325, + "bbox-265": 326, + "bbox-266": 327, + "bbox-267": 328, + "bbox-268": 329, + "bbox-269": 330, + "bbox-270": 331, + "bbox-271": 332, + "bbox-272": 333, + "bbox-273": 334, + "bbox-274": 335, + "bbox-275": 336, + "bbox-276": 337, + "bbox-277": 338, + "bbox-278": 339, + "bbox-279": 340, + "bbox-280": 341, + "bbox-281": 342, + "bbox-282": 343, + "bbox-283": 344, + "bbox-284": 345, + "bbox-285": 346, + "bbox-286": 347, + "bbox-287": 348, + "bbox-288": 349, + "bbox-289": 350, + "bbox-290": 351, + "bbox-291": 352, + "bbox-292": 353, + "bbox-293": 354, + "bbox-294": 355, + "bbox-295": 356, + "bbox-296": 357, + "bbox-297": 358, + "bbox-298": 359, + "bbox-299": 360, + "bbox-300": 361, + "bbox-301": 362, + "bbox-302": 363, + "bbox-303": 364, + "bbox-304": 365, + "bbox-305": 366, + "bbox-306": 367, + "bbox-307": 368, + "bbox-308": 369, + "bbox-309": 370, + "bbox-310": 371, + "bbox-311": 372, + "bbox-312": 373, + "bbox-313": 374, + "bbox-314": 375, + "bbox-315": 376, + "bbox-316": 377, + "bbox-317": 378, + "bbox-318": 379, + "bbox-319": 380, + "bbox-320": 381, + "bbox-321": 382, + "bbox-322": 383, + "bbox-323": 384, + "bbox-324": 385, + "bbox-325": 386, + "bbox-326": 387, + "bbox-327": 388, + "bbox-328": 389, + "bbox-329": 390, + "bbox-330": 391, + "bbox-331": 392, + "bbox-332": 393, + "bbox-333": 394, + "bbox-334": 395, + "bbox-335": 396, + "bbox-336": 397, + "bbox-337": 398, + "bbox-338": 399, + "bbox-339": 400, + "bbox-340": 401, + "bbox-341": 402, + "bbox-342": 403, + "bbox-343": 404, + "bbox-344": 405, + "bbox-345": 406, + "bbox-346": 407, + "bbox-347": 408, + "bbox-348": 409, + "bbox-349": 410, + "bbox-350": 411, + "bbox-351": 412, + "bbox-352": 413, + "bbox-353": 414, + "bbox-354": 415, + "bbox-355": 416, + "bbox-356": 417, + "bbox-357": 418, + "bbox-358": 419, + "bbox-359": 420, + "bbox-360": 421, + "bbox-361": 422, + "bbox-362": 423, + "bbox-363": 424, + "bbox-364": 425, + "bbox-365": 426, + "bbox-366": 427, + "bbox-367": 428, + "bbox-368": 429, + "bbox-369": 430, + "bbox-370": 431, + "bbox-371": 432, + "bbox-372": 433, + "bbox-373": 434, + "bbox-374": 435, + "bbox-375": 436, + "bbox-376": 437, + "bbox-377": 438, + "bbox-378": 439, + "bbox-379": 440, + "bbox-380": 441, + "bbox-381": 442, + "bbox-382": 443, + "bbox-383": 444, + "bbox-384": 445, + "bbox-385": 446, + "bbox-386": 447, + "bbox-387": 448, + "bbox-388": 449, + "bbox-389": 450, + "bbox-390": 451, + "bbox-391": 452, + "bbox-392": 453, + "bbox-393": 454, + "bbox-394": 455, + "bbox-395": 456, + "bbox-396": 457, + "bbox-397": 458, + "bbox-398": 459, + "bbox-399": 460, + "bbox-400": 461, + "bbox-401": 462, + "bbox-402": 463, + "bbox-403": 464, + "bbox-404": 465, + "bbox-405": 466, + "bbox-406": 467, + "bbox-407": 468, + "bbox-408": 469, + "bbox-409": 470, + "bbox-410": 471, + "bbox-411": 472, + "bbox-412": 473, + "bbox-413": 474, + "bbox-414": 475, + "bbox-415": 476, + "bbox-416": 477, + "bbox-417": 478, + "bbox-418": 479, + "bbox-419": 480, + "bbox-420": 481, + "bbox-421": 482, + "bbox-422": 483, + "bbox-423": 484, + "bbox-424": 485, + "bbox-425": 486, + "bbox-426": 487, + "bbox-427": 488, + "bbox-428": 489, + "bbox-429": 490, + "bbox-430": 491, + "bbox-431": 492, + "bbox-432": 493, + "bbox-433": 494, + "bbox-434": 495, + "bbox-435": 496, + "bbox-436": 497, + "bbox-437": 498, + "bbox-438": 499, + "bbox-439": 500, + "bbox-440": 501, + "bbox-441": 502, + "bbox-442": 503, + "bbox-443": 504, + "bbox-444": 505, + "bbox-445": 506, + "bbox-446": 507, + "bbox-447": 508, + "bbox-448": 509, + "bbox-449": 510, + "bbox-450": 511, + "bbox-451": 512, + "bbox-452": 513, + "bbox-453": 514, + "bbox-454": 515, + "bbox-455": 516, + "bbox-456": 517, + "bbox-457": 518, + "bbox-458": 519, + "bbox-459": 520, + "bbox-460": 521, + "bbox-461": 522, + "bbox-462": 523, + "bbox-463": 524, + "bbox-464": 525, + "bbox-465": 526, + "bbox-466": 527, + "bbox-467": 528, + "bbox-468": 529, + "bbox-469": 530, + "bbox-470": 531, + "bbox-471": 532, + "bbox-472": 533, + "bbox-473": 534, + "bbox-474": 535, + "bbox-475": 536, + "bbox-476": 537, + "bbox-477": 538, + "bbox-478": 539, + "bbox-479": 540, + "bbox-480": 541, + "bbox-481": 542, + "bbox-482": 543, + "bbox-483": 544, + "bbox-484": 545, + "bbox-485": 546, + "bbox-486": 547, + "bbox-487": 548, + "bbox-488": 549, + "bbox-489": 550, + "bbox-490": 551, + "bbox-491": 552, + "bbox-492": 553, + "bbox-493": 554, + "bbox-494": 555, + "bbox-495": 556, + "bbox-496": 557, + "bbox-497": 558, + "bbox-498": 559, + "bbox-499": 560, + "bbox-500": 561, + "bbox-501": 562, + "bbox-502": 563, + "bbox-503": 564, + "bbox-504": 565, + "bbox-505": 566, + "bbox-506": 567, + "bbox-507": 568, + "bbox-508": 569, + "bbox-509": 570, + "bbox-510": 571, + "bbox-511": 572, + "bbox-512": 573, + "bbox-513": 574, + "bbox-514": 575, + "bbox-515": 576, + "bbox-516": 577, + "bbox-517": 578, + "bbox-518": 579, + "bbox-519": 580, + "bbox-520": 581, + "bbox-521": 582, + "bbox-522": 583, + "bbox-523": 584, + "bbox-524": 585, + "bbox-525": 586, + "bbox-526": 587, + "bbox-527": 588, + "bbox-528": 589, + "bbox-529": 590, + "bbox-530": 591, + "bbox-531": 592, + "bbox-532": 593, + "bbox-533": 594, + "bbox-534": 595, + "bbox-535": 596, + "bbox-536": 597, + "bbox-537": 598, + "bbox-538": 599, + "bbox-539": 600, + "bbox-540": 601, + "bbox-541": 602, + "bbox-542": 603, + "bbox-543": 604, + "bbox-544": 605, + "bbox-545": 606, + "bbox-546": 607, + "bbox-547": 608, + "bbox-548": 609, + "bbox-549": 610, + "bbox-550": 611, + "bbox-551": 612, + "bbox-552": 613, + "bbox-553": 614, + "bbox-554": 615, + "bbox-555": 616, + "bbox-556": 617, + "bbox-557": 618, + "bbox-558": 619, + "bbox-559": 620, + "bbox-560": 621, + "bbox-561": 622, + "bbox-562": 623, + "bbox-563": 624, + "bbox-564": 625, + "bbox-565": 626, + "bbox-566": 627, + "bbox-567": 628, + "bbox-568": 629, + "bbox-569": 630, + "bbox-570": 631, + "bbox-571": 632, + "bbox-572": 633, + "bbox-573": 634, + "bbox-574": 635, + "bbox-575": 636, + "bbox-576": 637, + "bbox-577": 638, + "bbox-578": 639, + "bbox-579": 640, + "bbox-580": 641, + "bbox-581": 642, + "bbox-582": 643, + "bbox-583": 644, + "bbox-584": 645, + "bbox-585": 646, + "bbox-586": 647, + "bbox-587": 648, + "bbox-588": 649, + "bbox-589": 650, + "bbox-590": 651, + "bbox-591": 652, + "bbox-592": 653, + "bbox-593": 654, + "bbox-594": 655, + "bbox-595": 656, + "bbox-596": 657, + "bbox-597": 658, + "bbox-598": 659, + "bbox-599": 660, + "bbox-600": 661, + "bbox-601": 662, + "bbox-602": 663, + "bbox-603": 664, + "bbox-604": 665, + "bbox-605": 666, + "bbox-606": 667, + "bbox-607": 668, + "bbox-608": 669, + "bbox-609": 670, + "bbox-610": 671, + "bbox-611": 672, + "bbox-612": 673, + "bbox-613": 674, + "bbox-614": 675, + "bbox-615": 676, + "bbox-616": 677, + "bbox-617": 678, + "bbox-618": 679, + "bbox-619": 680, + "bbox-620": 681, + "bbox-621": 682, + "bbox-622": 683, + "bbox-623": 684, + "bbox-624": 685, + "bbox-625": 686, + "bbox-626": 687, + "bbox-627": 688, + "bbox-628": 689, + "bbox-629": 690, + "bbox-630": 691, + "bbox-631": 692, + "bbox-632": 693, + "bbox-633": 694, + "bbox-634": 695, + "bbox-635": 696, + "bbox-636": 697, + "bbox-637": 698, + "bbox-638": 699, + "bbox-639": 700, + "bbox-640": 701, + "bbox-641": 702, + "bbox-642": 703, + "bbox-643": 704, + "bbox-644": 705, + "bbox-645": 706, + "bbox-646": 707, + "bbox-647": 708, + "bbox-648": 709, + "bbox-649": 710, + "bbox-650": 711, + "bbox-651": 712, + "bbox-652": 713, + "bbox-653": 714, + "bbox-654": 715, + "bbox-655": 716, + "bbox-656": 717, + "bbox-657": 718, + "bbox-658": 719, + "bbox-659": 720, + "bbox-660": 721, + "bbox-661": 722, + "bbox-662": 723, + "bbox-663": 724, + "bbox-664": 725, + "bbox-665": 726, + "bbox-666": 727, + "bbox-667": 728, + "bbox-668": 729, + "bbox-669": 730, + "bbox-670": 731, + "bbox-671": 732, + "bbox-672": 733, + "bbox-673": 734, + "bbox-674": 735, + "bbox-675": 736, + "bbox-676": 737, + "bbox-677": 738, + "bbox-678": 739, + "bbox-679": 740, + "bbox-680": 741, + "bbox-681": 742, + "bbox-682": 743, + "bbox-683": 744, + "bbox-684": 745, + "bbox-685": 746, + "bbox-686": 747, + "bbox-687": 748, + "bbox-688": 749, + "bbox-689": 750, + "bbox-690": 751, + "bbox-691": 752, + "bbox-692": 753, + "bbox-693": 754, + "bbox-694": 755, + "bbox-695": 756, + "bbox-696": 757, + "bbox-697": 758, + "bbox-698": 759, + "bbox-699": 760, + "bbox-700": 761, + "bbox-701": 762, + "bbox-702": 763, + "bbox-703": 764, + "bbox-704": 765, + "bbox-705": 766, + "bbox-706": 767, + "bbox-707": 768, + "bbox-708": 769, + "bbox-709": 770, + "bbox-710": 771, + "bbox-711": 772, + "bbox-712": 773, + "bbox-713": 774, + "bbox-714": 775, + "bbox-715": 776, + "bbox-716": 777, + "bbox-717": 778, + "bbox-718": 779, + "bbox-719": 780, + "bbox-720": 781, + "bbox-721": 782, + "bbox-722": 783, + "bbox-723": 784, + "bbox-724": 785, + "bbox-725": 786, + "bbox-726": 787, + "bbox-727": 788, + "bbox-728": 789, + "bbox-729": 790, + "bbox-730": 791, + "bbox-731": 792, + "bbox-732": 793, + "bbox-733": 794, + "bbox-734": 795, + "bbox-735": 796, + "bbox-736": 797, + "bbox-737": 798, + "bbox-738": 799, + "bbox-739": 800, + "bbox-740": 801, + "bbox-741": 802, + "bbox-742": 803, + "bbox-743": 804, + "bbox-744": 805, + "bbox-745": 806, + "bbox-746": 807, + "bbox-747": 808, + "bbox-748": 809, + "bbox-749": 810, + "bbox-750": 811, + "bbox-751": 812, + "bbox-752": 813, + "bbox-753": 814, + "bbox-754": 815, + "bbox-755": 816, + "bbox-756": 817, + "bbox-757": 818, + "bbox-758": 819, + "bbox-759": 820, + "bbox-760": 821, + "bbox-761": 822, + "bbox-762": 823, + "bbox-763": 824, + "bbox-764": 825, + "bbox-765": 826, + "bbox-766": 827, + "bbox-767": 828, + "bbox-768": 829, + "bbox-769": 830, + "bbox-770": 831, + "bbox-771": 832, + "bbox-772": 833, + "bbox-773": 834, + "bbox-774": 835, + "bbox-775": 836, + "bbox-776": 837, + "bbox-777": 838, + "bbox-778": 839, + "bbox-779": 840, + "bbox-780": 841, + "bbox-781": 842, + "bbox-782": 843, + "bbox-783": 844, + "bbox-784": 845, + "bbox-785": 846, + "bbox-786": 847, + "bbox-787": 848, + "bbox-788": 849, + "bbox-789": 850, + "bbox-790": 851, + "bbox-791": 852, + "bbox-792": 853, + "bbox-793": 854, + "bbox-794": 855, + "bbox-795": 856, + "bbox-796": 857, + "bbox-797": 858, + "bbox-798": 859, + "bbox-799": 860, + "bbox-800": 861, + "bbox-801": 862, + "bbox-802": 863, + "bbox-803": 864, + "bbox-804": 865, + "bbox-805": 866, + "bbox-806": 867, + "bbox-807": 868, + "bbox-808": 869, + "bbox-809": 870, + "bbox-810": 871, + "bbox-811": 872, + "bbox-812": 873, + "bbox-813": 874, + "bbox-814": 875, + "bbox-815": 876, + "bbox-816": 877, + "bbox-817": 878, + "bbox-818": 879, + "bbox-819": 880, + "bbox-820": 881, + "bbox-821": 882, + "bbox-822": 883, + "bbox-823": 884, + "bbox-824": 885, + "bbox-825": 886, + "bbox-826": 887, + "bbox-827": 888, + "bbox-828": 889, + "bbox-829": 890, + "bbox-830": 891, + "bbox-831": 892, + "bbox-832": 893, + "bbox-833": 894, + "bbox-834": 895, + "bbox-835": 896, + "bbox-836": 897, + "bbox-837": 898, + "bbox-838": 899, + "bbox-839": 900, + "bbox-840": 901, + "bbox-841": 902, + "bbox-842": 903, + "bbox-843": 904, + "bbox-844": 905, + "bbox-845": 906, + "bbox-846": 907, + "bbox-847": 908, + "bbox-848": 909, + "bbox-849": 910, + "bbox-850": 911, + "bbox-851": 912, + "bbox-852": 913, + "bbox-853": 914, + "bbox-854": 915, + "bbox-855": 916, + "bbox-856": 917, + "bbox-857": 918, + "bbox-858": 919, + "bbox-859": 920, + "bbox-860": 921, + "bbox-861": 922, + "bbox-862": 923, + "bbox-863": 924, + "bbox-864": 925, + "bbox-865": 926, + "bbox-866": 927, + "bbox-867": 928, + "bbox-868": 929, + "bbox-869": 930, + "bbox-870": 931, + "bbox-871": 932, + "bbox-872": 933, + "bbox-873": 934, + "bbox-874": 935, + "bbox-875": 936, + "bbox-876": 937, + "bbox-877": 938, + "bbox-878": 939, + "bbox-879": 940, + "bbox-880": 941, + "bbox-881": 942, + "bbox-882": 943, + "bbox-883": 944, + "bbox-884": 945, + "bbox-885": 946, + "bbox-886": 947, + "bbox-887": 948, + "bbox-888": 949, + "bbox-889": 950, + "bbox-890": 951, + "bbox-891": 952, + "bbox-892": 953, + "bbox-893": 954, + "bbox-894": 955, + "bbox-895": 956, + "bbox-896": 957, + "bbox-897": 958, + "bbox-898": 959 + } + } +} \ No newline at end of file diff --git a/rapid_table/models/vocab.json b/rapid_table/models/vocab.json new file mode 100644 index 0000000..c13ccef --- /dev/null +++ b/rapid_table/models/vocab.json @@ -0,0 +1,9650 @@ +{ + "version": "1.0", + "truncation": null, + "padding": { + "strategy": "BatchLongest", + "direction": "Right", + "pad_to_multiple_of": null, + "pad_id": 2, + "pad_type_id": 0, + "pad_token": "" + }, + "added_tokens": [ + { + "id": 0, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 1, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 2, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 3, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 4, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 5, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 6, + "content": "[table]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 7, + "content": "[html]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 8, + "content": "[cell]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 9, + "content": "[bbox]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 10, + "content": "[cell+bbox]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 11, + "content": "[html+bbox]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 12, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 13, + "content": "[", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 14, + "content": "]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 15, + "content": "[", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 17, + "content": ">", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 18, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 19, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 20, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 21, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 22, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 23, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 24, + "content": " rowspan=\"2\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 25, + "content": " rowspan=\"3\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 26, + "content": " rowspan=\"4\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 27, + "content": " rowspan=\"5\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 28, + "content": " rowspan=\"6\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 29, + "content": " rowspan=\"7\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 30, + "content": " rowspan=\"8\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 31, + "content": " rowspan=\"9\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 32, + "content": " rowspan=\"10\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 33, + "content": " rowspan=\"11\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 34, + "content": " rowspan=\"12\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 35, + "content": " rowspan=\"13\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 36, + "content": " rowspan=\"14\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 37, + "content": " rowspan=\"15\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 38, + "content": " rowspan=\"16\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 39, + "content": " rowspan=\"17\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 40, + "content": " rowspan=\"18\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 41, + "content": " rowspan=\"19\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 42, + "content": " colspan=\"2\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 43, + "content": " colspan=\"3\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 44, + "content": " colspan=\"4\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 45, + "content": " colspan=\"5\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 46, + "content": " colspan=\"6\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 47, + "content": " colspan=\"7\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 48, + "content": " colspan=\"8\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 49, + "content": " colspan=\"9\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 50, + "content": " colspan=\"10\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 51, + "content": " colspan=\"11\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 52, + "content": " colspan=\"12\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 53, + "content": " colspan=\"13\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 54, + "content": " colspan=\"14\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 55, + "content": " colspan=\"15\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 56, + "content": " colspan=\"16\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 57, + "content": " colspan=\"17\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 58, + "content": " colspan=\"18\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 59, + "content": " colspan=\"19\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 60, + "content": " colspan=\"25\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 61, + "content": "bbox-0", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 62, + "content": "bbox-1", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 63, + "content": "bbox-2", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 64, + "content": "bbox-3", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 65, + "content": "bbox-4", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 66, + "content": "bbox-5", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 67, + "content": "bbox-6", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 68, + "content": "bbox-7", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 69, + "content": "bbox-8", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 70, + "content": "bbox-9", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 71, + "content": "bbox-10", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 72, + "content": "bbox-11", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 73, + "content": "bbox-12", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 74, + "content": "bbox-13", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 75, + "content": "bbox-14", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 76, + "content": "bbox-15", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 77, + "content": "bbox-16", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 78, + "content": "bbox-17", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 79, + "content": "bbox-18", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 80, + "content": "bbox-19", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 81, + "content": "bbox-20", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 82, + "content": "bbox-21", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 83, + "content": "bbox-22", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 84, + "content": "bbox-23", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 85, + "content": "bbox-24", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 86, + "content": "bbox-25", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 87, + "content": "bbox-26", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 88, + "content": "bbox-27", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 89, + "content": "bbox-28", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 90, + "content": "bbox-29", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 91, + "content": "bbox-30", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 92, + "content": "bbox-31", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 93, + "content": "bbox-32", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 94, + "content": "bbox-33", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 95, + "content": "bbox-34", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 96, + "content": "bbox-35", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 97, + "content": "bbox-36", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 98, + "content": "bbox-37", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 99, + "content": "bbox-38", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 100, + "content": "bbox-39", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 101, + "content": "bbox-40", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 102, + "content": "bbox-41", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 103, + "content": "bbox-42", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 104, + "content": "bbox-43", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 105, + "content": "bbox-44", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 106, + "content": "bbox-45", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 107, + "content": "bbox-46", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 108, + "content": "bbox-47", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 109, + "content": "bbox-48", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 110, + "content": "bbox-49", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 111, + "content": "bbox-50", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 112, + "content": "bbox-51", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 113, + "content": "bbox-52", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 114, + "content": "bbox-53", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 115, + "content": "bbox-54", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 116, + "content": "bbox-55", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 117, + "content": "bbox-56", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 118, + "content": "bbox-57", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 119, + "content": "bbox-58", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 120, + "content": "bbox-59", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 121, + "content": "bbox-60", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 122, + "content": "bbox-61", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 123, + "content": "bbox-62", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 124, + "content": "bbox-63", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 125, + "content": "bbox-64", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 126, + "content": "bbox-65", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 127, + "content": "bbox-66", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 128, + "content": "bbox-67", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 129, + "content": "bbox-68", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 130, + "content": "bbox-69", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 131, + "content": "bbox-70", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 132, + "content": "bbox-71", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 133, + "content": "bbox-72", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 134, + "content": "bbox-73", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 135, + "content": "bbox-74", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 136, + "content": "bbox-75", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 137, + "content": "bbox-76", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 138, + "content": "bbox-77", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 139, + "content": "bbox-78", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 140, + "content": "bbox-79", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 141, + "content": "bbox-80", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 142, + "content": "bbox-81", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 143, + "content": "bbox-82", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 144, + "content": "bbox-83", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 145, + "content": "bbox-84", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 146, + "content": "bbox-85", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 147, + "content": "bbox-86", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 148, + "content": "bbox-87", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 149, + "content": "bbox-88", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 150, + "content": "bbox-89", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 151, + "content": "bbox-90", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 152, + "content": "bbox-91", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 153, + "content": "bbox-92", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 154, + "content": "bbox-93", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 155, + "content": "bbox-94", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 156, + "content": "bbox-95", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 157, + "content": "bbox-96", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 158, + "content": "bbox-97", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 159, + "content": "bbox-98", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 160, + "content": "bbox-99", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 161, + "content": "bbox-100", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 162, + "content": "bbox-101", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 163, + "content": "bbox-102", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 164, + "content": "bbox-103", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 165, + "content": "bbox-104", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 166, + "content": "bbox-105", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 167, + "content": "bbox-106", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 168, + "content": "bbox-107", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 169, + "content": "bbox-108", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 170, + "content": "bbox-109", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 171, + "content": "bbox-110", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 172, + "content": "bbox-111", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 173, + "content": "bbox-112", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 174, + "content": "bbox-113", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 175, + "content": "bbox-114", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 176, + "content": "bbox-115", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 177, + "content": "bbox-116", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 178, + "content": "bbox-117", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 179, + "content": "bbox-118", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 180, + "content": "bbox-119", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 181, + "content": "bbox-120", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 182, + "content": "bbox-121", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 183, + "content": "bbox-122", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 184, + "content": "bbox-123", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 185, + "content": "bbox-124", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 186, + "content": "bbox-125", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 187, + "content": "bbox-126", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 188, + "content": "bbox-127", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 189, + "content": "bbox-128", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 190, + "content": "bbox-129", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 191, + "content": "bbox-130", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 192, + "content": "bbox-131", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 193, + "content": "bbox-132", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 194, + "content": "bbox-133", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 195, + "content": "bbox-134", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 196, + "content": "bbox-135", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 197, + "content": "bbox-136", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 198, + "content": "bbox-137", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 199, + "content": "bbox-138", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 200, + "content": "bbox-139", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 201, + "content": "bbox-140", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 202, + "content": "bbox-141", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 203, + "content": "bbox-142", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 204, + "content": "bbox-143", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 205, + "content": "bbox-144", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 206, + "content": "bbox-145", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 207, + "content": "bbox-146", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 208, + "content": "bbox-147", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 209, + "content": "bbox-148", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 210, + "content": "bbox-149", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 211, + "content": "bbox-150", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 212, + "content": "bbox-151", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 213, + "content": "bbox-152", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 214, + "content": "bbox-153", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 215, + "content": "bbox-154", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 216, + "content": "bbox-155", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 217, + "content": "bbox-156", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 218, + "content": "bbox-157", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 219, + "content": "bbox-158", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 220, + "content": "bbox-159", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 221, + "content": "bbox-160", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 222, + "content": "bbox-161", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 223, + "content": "bbox-162", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 224, + "content": "bbox-163", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 225, + "content": "bbox-164", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 226, + "content": "bbox-165", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 227, + "content": "bbox-166", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 228, + "content": "bbox-167", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 229, + "content": "bbox-168", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 230, + "content": "bbox-169", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 231, + "content": "bbox-170", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 232, + "content": "bbox-171", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 233, + "content": "bbox-172", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 234, + "content": "bbox-173", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 235, + "content": "bbox-174", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 236, + "content": "bbox-175", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 237, + "content": "bbox-176", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 238, + "content": "bbox-177", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 239, + "content": "bbox-178", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 240, + "content": "bbox-179", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 241, + "content": "bbox-180", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 242, + "content": "bbox-181", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 243, + "content": "bbox-182", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 244, + "content": "bbox-183", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 245, + "content": "bbox-184", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 246, + "content": "bbox-185", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 247, + "content": "bbox-186", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 248, + "content": "bbox-187", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 249, + "content": "bbox-188", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 250, + "content": "bbox-189", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 251, + "content": "bbox-190", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 252, + "content": "bbox-191", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 253, + "content": "bbox-192", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 254, + "content": "bbox-193", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 255, + "content": "bbox-194", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 256, + "content": "bbox-195", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 257, + "content": "bbox-196", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 258, + "content": "bbox-197", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 259, + "content": "bbox-198", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 260, + "content": "bbox-199", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 261, + "content": "bbox-200", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 262, + "content": "bbox-201", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 263, + "content": "bbox-202", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 264, + "content": "bbox-203", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 265, + "content": "bbox-204", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 266, + "content": "bbox-205", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 267, + "content": "bbox-206", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 268, + "content": "bbox-207", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 269, + "content": "bbox-208", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 270, + "content": "bbox-209", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 271, + "content": "bbox-210", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 272, + "content": "bbox-211", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 273, + "content": "bbox-212", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 274, + "content": "bbox-213", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 275, + "content": "bbox-214", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 276, + "content": "bbox-215", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 277, + "content": "bbox-216", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 278, + "content": "bbox-217", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 279, + "content": "bbox-218", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 280, + "content": "bbox-219", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 281, + "content": "bbox-220", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 282, + "content": "bbox-221", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 283, + "content": "bbox-222", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 284, + "content": "bbox-223", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 285, + "content": "bbox-224", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 286, + "content": "bbox-225", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 287, + "content": "bbox-226", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 288, + "content": "bbox-227", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 289, + "content": "bbox-228", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 290, + "content": "bbox-229", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 291, + "content": "bbox-230", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 292, + "content": "bbox-231", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 293, + "content": "bbox-232", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 294, + "content": "bbox-233", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 295, + "content": "bbox-234", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 296, + "content": "bbox-235", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 297, + "content": "bbox-236", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 298, + "content": "bbox-237", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 299, + "content": "bbox-238", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 300, + "content": "bbox-239", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 301, + "content": "bbox-240", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 302, + "content": "bbox-241", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 303, + "content": "bbox-242", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 304, + "content": "bbox-243", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 305, + "content": "bbox-244", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 306, + "content": "bbox-245", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 307, + "content": "bbox-246", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 308, + "content": "bbox-247", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 309, + "content": "bbox-248", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 310, + "content": "bbox-249", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 311, + "content": "bbox-250", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 312, + "content": "bbox-251", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 313, + "content": "bbox-252", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 314, + "content": "bbox-253", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 315, + "content": "bbox-254", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 316, + "content": "bbox-255", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 317, + "content": "bbox-256", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 318, + "content": "bbox-257", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 319, + "content": "bbox-258", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 320, + "content": "bbox-259", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 321, + "content": "bbox-260", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 322, + "content": "bbox-261", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 323, + "content": "bbox-262", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 324, + "content": "bbox-263", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 325, + "content": "bbox-264", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 326, + "content": "bbox-265", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 327, + "content": "bbox-266", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 328, + "content": "bbox-267", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 329, + "content": "bbox-268", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 330, + "content": "bbox-269", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 331, + "content": "bbox-270", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 332, + "content": "bbox-271", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 333, + "content": "bbox-272", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 334, + "content": "bbox-273", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 335, + "content": "bbox-274", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 336, + "content": "bbox-275", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 337, + "content": "bbox-276", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 338, + "content": "bbox-277", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 339, + "content": "bbox-278", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 340, + "content": "bbox-279", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 341, + "content": "bbox-280", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 342, + "content": "bbox-281", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 343, + "content": "bbox-282", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 344, + "content": "bbox-283", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 345, + "content": "bbox-284", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 346, + "content": "bbox-285", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 347, + "content": "bbox-286", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 348, + "content": "bbox-287", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 349, + "content": "bbox-288", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 350, + "content": "bbox-289", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 351, + "content": "bbox-290", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 352, + "content": "bbox-291", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 353, + "content": "bbox-292", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 354, + "content": "bbox-293", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 355, + "content": "bbox-294", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 356, + "content": "bbox-295", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 357, + "content": "bbox-296", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 358, + "content": "bbox-297", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 359, + "content": "bbox-298", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 360, + "content": "bbox-299", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 361, + "content": "bbox-300", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 362, + "content": "bbox-301", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 363, + "content": "bbox-302", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 364, + "content": "bbox-303", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 365, + "content": "bbox-304", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 366, + "content": "bbox-305", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 367, + "content": "bbox-306", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 368, + "content": "bbox-307", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 369, + "content": "bbox-308", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 370, + "content": "bbox-309", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 371, + "content": "bbox-310", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 372, + "content": "bbox-311", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 373, + "content": "bbox-312", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 374, + "content": "bbox-313", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 375, + "content": "bbox-314", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 376, + "content": "bbox-315", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 377, + "content": "bbox-316", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 378, + "content": "bbox-317", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 379, + "content": "bbox-318", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 380, + "content": "bbox-319", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 381, + "content": "bbox-320", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 382, + "content": "bbox-321", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 383, + "content": "bbox-322", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 384, + "content": "bbox-323", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 385, + "content": "bbox-324", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 386, + "content": "bbox-325", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 387, + "content": "bbox-326", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 388, + "content": "bbox-327", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 389, + "content": "bbox-328", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 390, + "content": "bbox-329", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 391, + "content": "bbox-330", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 392, + "content": "bbox-331", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 393, + "content": "bbox-332", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 394, + "content": "bbox-333", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 395, + "content": "bbox-334", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 396, + "content": "bbox-335", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 397, + "content": "bbox-336", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 398, + "content": "bbox-337", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 399, + "content": "bbox-338", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 400, + "content": "bbox-339", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 401, + "content": "bbox-340", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 402, + "content": "bbox-341", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 403, + "content": "bbox-342", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 404, + "content": "bbox-343", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 405, + "content": "bbox-344", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 406, + "content": "bbox-345", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 407, + "content": "bbox-346", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 408, + "content": "bbox-347", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 409, + "content": "bbox-348", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 410, + "content": "bbox-349", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 411, + "content": "bbox-350", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 412, + "content": "bbox-351", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 413, + "content": "bbox-352", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 414, + "content": "bbox-353", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 415, + "content": "bbox-354", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 416, + "content": "bbox-355", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 417, + "content": "bbox-356", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 418, + "content": "bbox-357", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 419, + "content": "bbox-358", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 420, + "content": "bbox-359", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 421, + "content": "bbox-360", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 422, + "content": "bbox-361", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 423, + "content": "bbox-362", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 424, + "content": "bbox-363", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 425, + "content": "bbox-364", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 426, + "content": "bbox-365", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 427, + "content": "bbox-366", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 428, + "content": "bbox-367", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 429, + "content": "bbox-368", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 430, + "content": "bbox-369", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 431, + "content": "bbox-370", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 432, + "content": "bbox-371", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 433, + "content": "bbox-372", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 434, + "content": "bbox-373", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 435, + "content": "bbox-374", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 436, + "content": "bbox-375", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 437, + "content": "bbox-376", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 438, + "content": "bbox-377", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 439, + "content": "bbox-378", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 440, + "content": "bbox-379", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 441, + "content": "bbox-380", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 442, + "content": "bbox-381", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 443, + "content": "bbox-382", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 444, + "content": "bbox-383", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 445, + "content": "bbox-384", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 446, + "content": "bbox-385", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 447, + "content": "bbox-386", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 448, + "content": "bbox-387", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 449, + "content": "bbox-388", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 450, + "content": "bbox-389", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 451, + "content": "bbox-390", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 452, + "content": "bbox-391", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 453, + "content": "bbox-392", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 454, + "content": "bbox-393", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 455, + "content": "bbox-394", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 456, + "content": "bbox-395", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 457, + "content": "bbox-396", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 458, + "content": "bbox-397", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 459, + "content": "bbox-398", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 460, + "content": "bbox-399", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 461, + "content": "bbox-400", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 462, + "content": "bbox-401", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 463, + "content": "bbox-402", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 464, + "content": "bbox-403", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 465, + "content": "bbox-404", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 466, + "content": "bbox-405", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 467, + "content": "bbox-406", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 468, + "content": "bbox-407", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 469, + "content": "bbox-408", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 470, + "content": "bbox-409", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 471, + "content": "bbox-410", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 472, + "content": "bbox-411", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 473, + "content": "bbox-412", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 474, + "content": "bbox-413", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 475, + "content": "bbox-414", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 476, + "content": "bbox-415", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 477, + "content": "bbox-416", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 478, + "content": "bbox-417", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 479, + "content": "bbox-418", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 480, + "content": "bbox-419", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 481, + "content": "bbox-420", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 482, + "content": "bbox-421", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 483, + "content": "bbox-422", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 484, + "content": "bbox-423", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 485, + "content": "bbox-424", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 486, + "content": "bbox-425", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 487, + "content": "bbox-426", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 488, + "content": "bbox-427", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 489, + "content": "bbox-428", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 490, + "content": "bbox-429", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 491, + "content": "bbox-430", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 492, + "content": "bbox-431", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 493, + "content": "bbox-432", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 494, + "content": "bbox-433", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 495, + "content": "bbox-434", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 496, + "content": "bbox-435", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 497, + "content": "bbox-436", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 498, + "content": "bbox-437", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 499, + "content": "bbox-438", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 500, + "content": "bbox-439", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 501, + "content": "bbox-440", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 502, + "content": "bbox-441", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 503, + "content": "bbox-442", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 504, + "content": "bbox-443", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 505, + "content": "bbox-444", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 506, + "content": "bbox-445", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 507, + "content": "bbox-446", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 508, + "content": "bbox-447", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 509, + "content": "bbox-448", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 510, + "content": "bbox-449", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 511, + "content": "bbox-450", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 512, + "content": "bbox-451", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 513, + "content": "bbox-452", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 514, + "content": "bbox-453", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 515, + "content": "bbox-454", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 516, + "content": "bbox-455", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 517, + "content": "bbox-456", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 518, + "content": "bbox-457", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 519, + "content": "bbox-458", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 520, + "content": "bbox-459", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 521, + "content": "bbox-460", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 522, + "content": "bbox-461", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 523, + "content": "bbox-462", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 524, + "content": "bbox-463", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 525, + "content": "bbox-464", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 526, + "content": "bbox-465", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 527, + "content": "bbox-466", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 528, + "content": "bbox-467", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 529, + "content": "bbox-468", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 530, + "content": "bbox-469", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 531, + "content": "bbox-470", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 532, + "content": "bbox-471", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 533, + "content": "bbox-472", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 534, + "content": "bbox-473", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 535, + "content": "bbox-474", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 536, + "content": "bbox-475", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 537, + "content": "bbox-476", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 538, + "content": "bbox-477", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 539, + "content": "bbox-478", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 540, + "content": "bbox-479", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 541, + "content": "bbox-480", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 542, + "content": "bbox-481", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 543, + "content": "bbox-482", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 544, + "content": "bbox-483", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 545, + "content": "bbox-484", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 546, + "content": "bbox-485", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 547, + "content": "bbox-486", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 548, + "content": "bbox-487", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 549, + "content": "bbox-488", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 550, + "content": "bbox-489", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 551, + "content": "bbox-490", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 552, + "content": "bbox-491", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 553, + "content": "bbox-492", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 554, + "content": "bbox-493", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 555, + "content": "bbox-494", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 556, + "content": "bbox-495", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 557, + "content": "bbox-496", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 558, + "content": "bbox-497", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 559, + "content": "bbox-498", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 560, + "content": "bbox-499", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 561, + "content": "bbox-500", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 562, + "content": "bbox-501", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 563, + "content": "bbox-502", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 564, + "content": "bbox-503", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 565, + "content": "bbox-504", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 566, + "content": "bbox-505", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 567, + "content": "bbox-506", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 568, + "content": "bbox-507", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 569, + "content": "bbox-508", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 570, + "content": "bbox-509", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 571, + "content": "bbox-510", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 572, + "content": "bbox-511", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 573, + "content": "bbox-512", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 574, + "content": "bbox-513", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 575, + "content": "bbox-514", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 576, + "content": "bbox-515", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 577, + "content": "bbox-516", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 578, + "content": "bbox-517", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 579, + "content": "bbox-518", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 580, + "content": "bbox-519", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 581, + "content": "bbox-520", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 582, + "content": "bbox-521", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 583, + "content": "bbox-522", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 584, + "content": "bbox-523", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 585, + "content": "bbox-524", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 586, + "content": "bbox-525", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 587, + "content": "bbox-526", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 588, + "content": "bbox-527", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 589, + "content": "bbox-528", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 590, + "content": "bbox-529", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 591, + "content": "bbox-530", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 592, + "content": "bbox-531", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 593, + "content": "bbox-532", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 594, + "content": "bbox-533", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 595, + "content": "bbox-534", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 596, + "content": "bbox-535", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 597, + "content": "bbox-536", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 598, + "content": "bbox-537", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 599, + "content": "bbox-538", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 600, + "content": "bbox-539", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 601, + "content": "bbox-540", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 602, + "content": "bbox-541", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 603, + "content": "bbox-542", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 604, + "content": "bbox-543", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 605, + "content": "bbox-544", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 606, + "content": "bbox-545", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 607, + "content": "bbox-546", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 608, + "content": "bbox-547", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 609, + "content": "bbox-548", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 610, + "content": "bbox-549", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 611, + "content": "bbox-550", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 612, + "content": "bbox-551", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 613, + "content": "bbox-552", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 614, + "content": "bbox-553", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 615, + "content": "bbox-554", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 616, + "content": "bbox-555", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 617, + "content": "bbox-556", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 618, + "content": "bbox-557", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 619, + "content": "bbox-558", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 620, + "content": "bbox-559", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 621, + "content": "bbox-560", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 622, + "content": "bbox-561", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 623, + "content": "bbox-562", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 624, + "content": "bbox-563", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 625, + "content": "bbox-564", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 626, + "content": "bbox-565", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 627, + "content": "bbox-566", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 628, + "content": "bbox-567", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 629, + "content": "bbox-568", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 630, + "content": "bbox-569", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 631, + "content": "bbox-570", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 632, + "content": "bbox-571", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 633, + "content": "bbox-572", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 634, + "content": "bbox-573", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 635, + "content": "bbox-574", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 636, + "content": "bbox-575", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 637, + "content": "bbox-576", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 638, + "content": "bbox-577", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 639, + "content": "bbox-578", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 640, + "content": "bbox-579", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 641, + "content": "bbox-580", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 642, + "content": "bbox-581", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 643, + "content": "bbox-582", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 644, + "content": "bbox-583", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 645, + "content": "bbox-584", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 646, + "content": "bbox-585", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 647, + "content": "bbox-586", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 648, + "content": "bbox-587", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 649, + "content": "bbox-588", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 650, + "content": "bbox-589", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 651, + "content": "bbox-590", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 652, + "content": "bbox-591", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 653, + "content": "bbox-592", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 654, + "content": "bbox-593", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 655, + "content": "bbox-594", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 656, + "content": "bbox-595", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 657, + "content": "bbox-596", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 658, + "content": "bbox-597", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 659, + "content": "bbox-598", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 660, + "content": "bbox-599", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 661, + "content": "bbox-600", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 662, + "content": "bbox-601", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 663, + "content": "bbox-602", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 664, + "content": "bbox-603", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 665, + "content": "bbox-604", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 666, + "content": "bbox-605", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 667, + "content": "bbox-606", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 668, + "content": "bbox-607", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 669, + "content": "bbox-608", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 670, + "content": "bbox-609", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 671, + "content": "bbox-610", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 672, + "content": "bbox-611", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 673, + "content": "bbox-612", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 674, + "content": "bbox-613", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 675, + "content": "bbox-614", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 676, + "content": "bbox-615", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 677, + "content": "bbox-616", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 678, + "content": "bbox-617", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 679, + "content": "bbox-618", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 680, + "content": "bbox-619", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 681, + "content": "bbox-620", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 682, + "content": "bbox-621", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 683, + "content": "bbox-622", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 684, + "content": "bbox-623", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 685, + "content": "bbox-624", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 686, + "content": "bbox-625", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 687, + "content": "bbox-626", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 688, + "content": "bbox-627", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 689, + "content": "bbox-628", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 690, + "content": "bbox-629", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 691, + "content": "bbox-630", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 692, + "content": "bbox-631", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 693, + "content": "bbox-632", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 694, + "content": "bbox-633", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 695, + "content": "bbox-634", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 696, + "content": "bbox-635", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 697, + "content": "bbox-636", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 698, + "content": "bbox-637", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 699, + "content": "bbox-638", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 700, + "content": "bbox-639", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 701, + "content": "bbox-640", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 702, + "content": "bbox-641", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 703, + "content": "bbox-642", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 704, + "content": "bbox-643", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 705, + "content": "bbox-644", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 706, + "content": "bbox-645", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 707, + "content": "bbox-646", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 708, + "content": "bbox-647", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 709, + "content": "bbox-648", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 710, + "content": "bbox-649", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 711, + "content": "bbox-650", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 712, + "content": "bbox-651", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 713, + "content": "bbox-652", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 714, + "content": "bbox-653", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 715, + "content": "bbox-654", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 716, + "content": "bbox-655", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 717, + "content": "bbox-656", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 718, + "content": "bbox-657", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 719, + "content": "bbox-658", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 720, + "content": "bbox-659", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 721, + "content": "bbox-660", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 722, + "content": "bbox-661", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 723, + "content": "bbox-662", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 724, + "content": "bbox-663", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 725, + "content": "bbox-664", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 726, + "content": "bbox-665", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 727, + "content": "bbox-666", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 728, + "content": "bbox-667", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 729, + "content": "bbox-668", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 730, + "content": "bbox-669", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 731, + "content": "bbox-670", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 732, + "content": "bbox-671", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 733, + "content": "bbox-672", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 734, + "content": "bbox-673", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 735, + "content": "bbox-674", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 736, + "content": "bbox-675", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 737, + "content": "bbox-676", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 738, + "content": "bbox-677", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 739, + "content": "bbox-678", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 740, + "content": "bbox-679", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 741, + "content": "bbox-680", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 742, + "content": "bbox-681", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 743, + "content": "bbox-682", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 744, + "content": "bbox-683", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 745, + "content": "bbox-684", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 746, + "content": "bbox-685", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 747, + "content": "bbox-686", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 748, + "content": "bbox-687", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 749, + "content": "bbox-688", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 750, + "content": "bbox-689", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 751, + "content": "bbox-690", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 752, + "content": "bbox-691", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 753, + "content": "bbox-692", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 754, + "content": "bbox-693", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 755, + "content": "bbox-694", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 756, + "content": "bbox-695", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 757, + "content": "bbox-696", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 758, + "content": "bbox-697", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 759, + "content": "bbox-698", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 760, + "content": "bbox-699", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 761, + "content": "bbox-700", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 762, + "content": "bbox-701", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 763, + "content": "bbox-702", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 764, + "content": "bbox-703", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 765, + "content": "bbox-704", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 766, + "content": "bbox-705", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 767, + "content": "bbox-706", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 768, + "content": "bbox-707", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 769, + "content": "bbox-708", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 770, + "content": "bbox-709", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 771, + "content": "bbox-710", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 772, + "content": "bbox-711", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 773, + "content": "bbox-712", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 774, + "content": "bbox-713", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 775, + "content": "bbox-714", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 776, + "content": "bbox-715", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 777, + "content": "bbox-716", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 778, + "content": "bbox-717", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 779, + "content": "bbox-718", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 780, + "content": "bbox-719", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 781, + "content": "bbox-720", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 782, + "content": "bbox-721", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 783, + "content": "bbox-722", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 784, + "content": "bbox-723", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 785, + "content": "bbox-724", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 786, + "content": "bbox-725", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 787, + "content": "bbox-726", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 788, + "content": "bbox-727", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 789, + "content": "bbox-728", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 790, + "content": "bbox-729", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 791, + "content": "bbox-730", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 792, + "content": "bbox-731", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 793, + "content": "bbox-732", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 794, + "content": "bbox-733", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 795, + "content": "bbox-734", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 796, + "content": "bbox-735", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 797, + "content": "bbox-736", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 798, + "content": "bbox-737", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 799, + "content": "bbox-738", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 800, + "content": "bbox-739", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 801, + "content": "bbox-740", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 802, + "content": "bbox-741", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 803, + "content": "bbox-742", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 804, + "content": "bbox-743", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 805, + "content": "bbox-744", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 806, + "content": "bbox-745", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 807, + "content": "bbox-746", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 808, + "content": "bbox-747", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 809, + "content": "bbox-748", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 810, + "content": "bbox-749", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 811, + "content": "bbox-750", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 812, + "content": "bbox-751", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 813, + "content": "bbox-752", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 814, + "content": "bbox-753", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 815, + "content": "bbox-754", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 816, + "content": "bbox-755", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 817, + "content": "bbox-756", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 818, + "content": "bbox-757", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 819, + "content": "bbox-758", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 820, + "content": "bbox-759", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 821, + "content": "bbox-760", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 822, + "content": "bbox-761", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 823, + "content": "bbox-762", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 824, + "content": "bbox-763", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 825, + "content": "bbox-764", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 826, + "content": "bbox-765", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 827, + "content": "bbox-766", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 828, + "content": "bbox-767", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 829, + "content": "bbox-768", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 830, + "content": "bbox-769", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 831, + "content": "bbox-770", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 832, + "content": "bbox-771", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 833, + "content": "bbox-772", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 834, + "content": "bbox-773", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 835, + "content": "bbox-774", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 836, + "content": "bbox-775", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 837, + "content": "bbox-776", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 838, + "content": "bbox-777", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 839, + "content": "bbox-778", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 840, + "content": "bbox-779", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 841, + "content": "bbox-780", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 842, + "content": "bbox-781", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 843, + "content": "bbox-782", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 844, + "content": "bbox-783", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 845, + "content": "bbox-784", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 846, + "content": "bbox-785", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 847, + "content": "bbox-786", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 848, + "content": "bbox-787", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 849, + "content": "bbox-788", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 850, + "content": "bbox-789", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 851, + "content": "bbox-790", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 852, + "content": "bbox-791", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 853, + "content": "bbox-792", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 854, + "content": "bbox-793", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 855, + "content": "bbox-794", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 856, + "content": "bbox-795", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 857, + "content": "bbox-796", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 858, + "content": "bbox-797", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 859, + "content": "bbox-798", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 860, + "content": "bbox-799", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 861, + "content": "bbox-800", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 862, + "content": "bbox-801", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 863, + "content": "bbox-802", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 864, + "content": "bbox-803", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 865, + "content": "bbox-804", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 866, + "content": "bbox-805", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 867, + "content": "bbox-806", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 868, + "content": "bbox-807", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 869, + "content": "bbox-808", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 870, + "content": "bbox-809", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 871, + "content": "bbox-810", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 872, + "content": "bbox-811", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 873, + "content": "bbox-812", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 874, + "content": "bbox-813", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 875, + "content": "bbox-814", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 876, + "content": "bbox-815", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 877, + "content": "bbox-816", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 878, + "content": "bbox-817", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 879, + "content": "bbox-818", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 880, + "content": "bbox-819", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 881, + "content": "bbox-820", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 882, + "content": "bbox-821", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 883, + "content": "bbox-822", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 884, + "content": "bbox-823", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 885, + "content": "bbox-824", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 886, + "content": "bbox-825", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 887, + "content": "bbox-826", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 888, + "content": "bbox-827", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 889, + "content": "bbox-828", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 890, + "content": "bbox-829", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 891, + "content": "bbox-830", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 892, + "content": "bbox-831", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 893, + "content": "bbox-832", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 894, + "content": "bbox-833", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 895, + "content": "bbox-834", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 896, + "content": "bbox-835", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 897, + "content": "bbox-836", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 898, + "content": "bbox-837", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 899, + "content": "bbox-838", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 900, + "content": "bbox-839", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 901, + "content": "bbox-840", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 902, + "content": "bbox-841", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 903, + "content": "bbox-842", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 904, + "content": "bbox-843", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 905, + "content": "bbox-844", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 906, + "content": "bbox-845", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 907, + "content": "bbox-846", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 908, + "content": "bbox-847", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 909, + "content": "bbox-848", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 910, + "content": "bbox-849", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 911, + "content": "bbox-850", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 912, + "content": "bbox-851", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 913, + "content": "bbox-852", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 914, + "content": "bbox-853", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 915, + "content": "bbox-854", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 916, + "content": "bbox-855", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 917, + "content": "bbox-856", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 918, + "content": "bbox-857", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 919, + "content": "bbox-858", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 920, + "content": "bbox-859", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 921, + "content": "bbox-860", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 922, + "content": "bbox-861", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 923, + "content": "bbox-862", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 924, + "content": "bbox-863", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 925, + "content": "bbox-864", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 926, + "content": "bbox-865", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 927, + "content": "bbox-866", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 928, + "content": "bbox-867", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 929, + "content": "bbox-868", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 930, + "content": "bbox-869", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 931, + "content": "bbox-870", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 932, + "content": "bbox-871", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 933, + "content": "bbox-872", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 934, + "content": "bbox-873", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 935, + "content": "bbox-874", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 936, + "content": "bbox-875", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 937, + "content": "bbox-876", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 938, + "content": "bbox-877", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 939, + "content": "bbox-878", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 940, + "content": "bbox-879", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 941, + "content": "bbox-880", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 942, + "content": "bbox-881", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 943, + "content": "bbox-882", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 944, + "content": "bbox-883", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 945, + "content": "bbox-884", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 946, + "content": "bbox-885", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 947, + "content": "bbox-886", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 948, + "content": "bbox-887", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 949, + "content": "bbox-888", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 950, + "content": "bbox-889", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 951, + "content": "bbox-890", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 952, + "content": "bbox-891", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 953, + "content": "bbox-892", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 954, + "content": "bbox-893", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 955, + "content": "bbox-894", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 956, + "content": "bbox-895", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 957, + "content": "bbox-896", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 958, + "content": "bbox-897", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 959, + "content": "bbox-898", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + } + ], + "normalizer": { + "type": "Sequence", + "normalizers": [ + { + "type": "NFD" + }, + { + "type": "Lowercase" + }, + { + "type": "StripAccents" + }, + { + "type": "Strip", + "strip_left": true, + "strip_right": true + } + ] + }, + "pre_tokenizer": { + "type": "Whitespace" + }, + "post_processor": null, + "decoder": { + "type": "WordPiece", + "prefix": "##", + "cleanup": true + }, + "model": { + "type": "WordPiece", + "unk_token": "", + "continuing_subword_prefix": "##", + "max_input_chars_per_word": 100, + "vocab": { + "": 0, + "": 1, + "": 2, + "": 3, + "": 4, + "": 5, + "[table]": 6, + "[html]": 7, + "[cell]": 8, + "[bbox]": 9, + "[cell+bbox]": 10, + "[html+bbox]": 11, + "": 12, + "[": 13, + "]": 14, + "[": 16, + ">": 17, + "": 18, + "": 19, + "": 20, + "": 21, + "": 22, + "": 23, + " rowspan=\"2\"": 24, + " rowspan=\"3\"": 25, + " rowspan=\"4\"": 26, + " rowspan=\"5\"": 27, + " rowspan=\"6\"": 28, + " rowspan=\"7\"": 29, + " rowspan=\"8\"": 30, + " rowspan=\"9\"": 31, + " rowspan=\"10\"": 32, + " rowspan=\"11\"": 33, + " rowspan=\"12\"": 34, + " rowspan=\"13\"": 35, + " rowspan=\"14\"": 36, + " rowspan=\"15\"": 37, + " rowspan=\"16\"": 38, + " rowspan=\"17\"": 39, + " rowspan=\"18\"": 40, + " rowspan=\"19\"": 41, + " colspan=\"2\"": 42, + " colspan=\"3\"": 43, + " colspan=\"4\"": 44, + " colspan=\"5\"": 45, + " colspan=\"6\"": 46, + " colspan=\"7\"": 47, + " colspan=\"8\"": 48, + " colspan=\"9\"": 49, + " colspan=\"10\"": 50, + " colspan=\"11\"": 51, + " colspan=\"12\"": 52, + " colspan=\"13\"": 53, + " colspan=\"14\"": 54, + " colspan=\"15\"": 55, + " colspan=\"16\"": 56, + " colspan=\"17\"": 57, + " colspan=\"18\"": 58, + " colspan=\"19\"": 59, + " colspan=\"25\"": 60, + "bbox-0": 61, + "bbox-1": 62, + "bbox-2": 63, + "bbox-3": 64, + "bbox-4": 65, + "bbox-5": 66, + "bbox-6": 67, + "bbox-7": 68, + "bbox-8": 69, + "bbox-9": 70, + "bbox-10": 71, + "bbox-11": 72, + "bbox-12": 73, + "bbox-13": 74, + "bbox-14": 75, + "bbox-15": 76, + "bbox-16": 77, + "bbox-17": 78, + "bbox-18": 79, + "bbox-19": 80, + "bbox-20": 81, + "bbox-21": 82, + "bbox-22": 83, + "bbox-23": 84, + "bbox-24": 85, + "bbox-25": 86, + "bbox-26": 87, + "bbox-27": 88, + "bbox-28": 89, + "bbox-29": 90, + "bbox-30": 91, + "bbox-31": 92, + "bbox-32": 93, + "bbox-33": 94, + "bbox-34": 95, + "bbox-35": 96, + "bbox-36": 97, + "bbox-37": 98, + "bbox-38": 99, + "bbox-39": 100, + "bbox-40": 101, + "bbox-41": 102, + "bbox-42": 103, + "bbox-43": 104, + "bbox-44": 105, + "bbox-45": 106, + "bbox-46": 107, + "bbox-47": 108, + "bbox-48": 109, + "bbox-49": 110, + "bbox-50": 111, + "bbox-51": 112, + "bbox-52": 113, + "bbox-53": 114, + "bbox-54": 115, + "bbox-55": 116, + "bbox-56": 117, + "bbox-57": 118, + "bbox-58": 119, + "bbox-59": 120, + "bbox-60": 121, + "bbox-61": 122, + "bbox-62": 123, + "bbox-63": 124, + "bbox-64": 125, + "bbox-65": 126, + "bbox-66": 127, + "bbox-67": 128, + "bbox-68": 129, + "bbox-69": 130, + "bbox-70": 131, + "bbox-71": 132, + "bbox-72": 133, + "bbox-73": 134, + "bbox-74": 135, + "bbox-75": 136, + "bbox-76": 137, + "bbox-77": 138, + "bbox-78": 139, + "bbox-79": 140, + "bbox-80": 141, + "bbox-81": 142, + "bbox-82": 143, + "bbox-83": 144, + "bbox-84": 145, + "bbox-85": 146, + "bbox-86": 147, + "bbox-87": 148, + "bbox-88": 149, + "bbox-89": 150, + "bbox-90": 151, + "bbox-91": 152, + "bbox-92": 153, + "bbox-93": 154, + "bbox-94": 155, + "bbox-95": 156, + "bbox-96": 157, + "bbox-97": 158, + "bbox-98": 159, + "bbox-99": 160, + "bbox-100": 161, + "bbox-101": 162, + "bbox-102": 163, + "bbox-103": 164, + "bbox-104": 165, + "bbox-105": 166, + "bbox-106": 167, + "bbox-107": 168, + "bbox-108": 169, + "bbox-109": 170, + "bbox-110": 171, + "bbox-111": 172, + "bbox-112": 173, + "bbox-113": 174, + "bbox-114": 175, + "bbox-115": 176, + "bbox-116": 177, + "bbox-117": 178, + "bbox-118": 179, + "bbox-119": 180, + "bbox-120": 181, + "bbox-121": 182, + "bbox-122": 183, + "bbox-123": 184, + "bbox-124": 185, + "bbox-125": 186, + "bbox-126": 187, + "bbox-127": 188, + "bbox-128": 189, + "bbox-129": 190, + "bbox-130": 191, + "bbox-131": 192, + "bbox-132": 193, + "bbox-133": 194, + "bbox-134": 195, + "bbox-135": 196, + "bbox-136": 197, + "bbox-137": 198, + "bbox-138": 199, + "bbox-139": 200, + "bbox-140": 201, + "bbox-141": 202, + "bbox-142": 203, + "bbox-143": 204, + "bbox-144": 205, + "bbox-145": 206, + "bbox-146": 207, + "bbox-147": 208, + "bbox-148": 209, + "bbox-149": 210, + "bbox-150": 211, + "bbox-151": 212, + "bbox-152": 213, + "bbox-153": 214, + "bbox-154": 215, + "bbox-155": 216, + "bbox-156": 217, + "bbox-157": 218, + "bbox-158": 219, + "bbox-159": 220, + "bbox-160": 221, + "bbox-161": 222, + "bbox-162": 223, + "bbox-163": 224, + "bbox-164": 225, + "bbox-165": 226, + "bbox-166": 227, + "bbox-167": 228, + "bbox-168": 229, + "bbox-169": 230, + "bbox-170": 231, + "bbox-171": 232, + "bbox-172": 233, + "bbox-173": 234, + "bbox-174": 235, + "bbox-175": 236, + "bbox-176": 237, + "bbox-177": 238, + "bbox-178": 239, + "bbox-179": 240, + "bbox-180": 241, + "bbox-181": 242, + "bbox-182": 243, + "bbox-183": 244, + "bbox-184": 245, + "bbox-185": 246, + "bbox-186": 247, + "bbox-187": 248, + "bbox-188": 249, + "bbox-189": 250, + "bbox-190": 251, + "bbox-191": 252, + "bbox-192": 253, + "bbox-193": 254, + "bbox-194": 255, + "bbox-195": 256, + "bbox-196": 257, + "bbox-197": 258, + "bbox-198": 259, + "bbox-199": 260, + "bbox-200": 261, + "bbox-201": 262, + "bbox-202": 263, + "bbox-203": 264, + "bbox-204": 265, + "bbox-205": 266, + "bbox-206": 267, + "bbox-207": 268, + "bbox-208": 269, + "bbox-209": 270, + "bbox-210": 271, + "bbox-211": 272, + "bbox-212": 273, + "bbox-213": 274, + "bbox-214": 275, + "bbox-215": 276, + "bbox-216": 277, + "bbox-217": 278, + "bbox-218": 279, + "bbox-219": 280, + "bbox-220": 281, + "bbox-221": 282, + "bbox-222": 283, + "bbox-223": 284, + "bbox-224": 285, + "bbox-225": 286, + "bbox-226": 287, + "bbox-227": 288, + "bbox-228": 289, + "bbox-229": 290, + "bbox-230": 291, + "bbox-231": 292, + "bbox-232": 293, + "bbox-233": 294, + "bbox-234": 295, + "bbox-235": 296, + "bbox-236": 297, + "bbox-237": 298, + "bbox-238": 299, + "bbox-239": 300, + "bbox-240": 301, + "bbox-241": 302, + "bbox-242": 303, + "bbox-243": 304, + "bbox-244": 305, + "bbox-245": 306, + "bbox-246": 307, + "bbox-247": 308, + "bbox-248": 309, + "bbox-249": 310, + "bbox-250": 311, + "bbox-251": 312, + "bbox-252": 313, + "bbox-253": 314, + "bbox-254": 315, + "bbox-255": 316, + "bbox-256": 317, + "bbox-257": 318, + "bbox-258": 319, + "bbox-259": 320, + "bbox-260": 321, + "bbox-261": 322, + "bbox-262": 323, + "bbox-263": 324, + "bbox-264": 325, + "bbox-265": 326, + "bbox-266": 327, + "bbox-267": 328, + "bbox-268": 329, + "bbox-269": 330, + "bbox-270": 331, + "bbox-271": 332, + "bbox-272": 333, + "bbox-273": 334, + "bbox-274": 335, + "bbox-275": 336, + "bbox-276": 337, + "bbox-277": 338, + "bbox-278": 339, + "bbox-279": 340, + "bbox-280": 341, + "bbox-281": 342, + "bbox-282": 343, + "bbox-283": 344, + "bbox-284": 345, + "bbox-285": 346, + "bbox-286": 347, + "bbox-287": 348, + "bbox-288": 349, + "bbox-289": 350, + "bbox-290": 351, + "bbox-291": 352, + "bbox-292": 353, + "bbox-293": 354, + "bbox-294": 355, + "bbox-295": 356, + "bbox-296": 357, + "bbox-297": 358, + "bbox-298": 359, + "bbox-299": 360, + "bbox-300": 361, + "bbox-301": 362, + "bbox-302": 363, + "bbox-303": 364, + "bbox-304": 365, + "bbox-305": 366, + "bbox-306": 367, + "bbox-307": 368, + "bbox-308": 369, + "bbox-309": 370, + "bbox-310": 371, + "bbox-311": 372, + "bbox-312": 373, + "bbox-313": 374, + "bbox-314": 375, + "bbox-315": 376, + "bbox-316": 377, + "bbox-317": 378, + "bbox-318": 379, + "bbox-319": 380, + "bbox-320": 381, + "bbox-321": 382, + "bbox-322": 383, + "bbox-323": 384, + "bbox-324": 385, + "bbox-325": 386, + "bbox-326": 387, + "bbox-327": 388, + "bbox-328": 389, + "bbox-329": 390, + "bbox-330": 391, + "bbox-331": 392, + "bbox-332": 393, + "bbox-333": 394, + "bbox-334": 395, + "bbox-335": 396, + "bbox-336": 397, + "bbox-337": 398, + "bbox-338": 399, + "bbox-339": 400, + "bbox-340": 401, + "bbox-341": 402, + "bbox-342": 403, + "bbox-343": 404, + "bbox-344": 405, + "bbox-345": 406, + "bbox-346": 407, + "bbox-347": 408, + "bbox-348": 409, + "bbox-349": 410, + "bbox-350": 411, + "bbox-351": 412, + "bbox-352": 413, + "bbox-353": 414, + "bbox-354": 415, + "bbox-355": 416, + "bbox-356": 417, + "bbox-357": 418, + "bbox-358": 419, + "bbox-359": 420, + "bbox-360": 421, + "bbox-361": 422, + "bbox-362": 423, + "bbox-363": 424, + "bbox-364": 425, + "bbox-365": 426, + "bbox-366": 427, + "bbox-367": 428, + "bbox-368": 429, + "bbox-369": 430, + "bbox-370": 431, + "bbox-371": 432, + "bbox-372": 433, + "bbox-373": 434, + "bbox-374": 435, + "bbox-375": 436, + "bbox-376": 437, + "bbox-377": 438, + "bbox-378": 439, + "bbox-379": 440, + "bbox-380": 441, + "bbox-381": 442, + "bbox-382": 443, + "bbox-383": 444, + "bbox-384": 445, + "bbox-385": 446, + "bbox-386": 447, + "bbox-387": 448, + "bbox-388": 449, + "bbox-389": 450, + "bbox-390": 451, + "bbox-391": 452, + "bbox-392": 453, + "bbox-393": 454, + "bbox-394": 455, + "bbox-395": 456, + "bbox-396": 457, + "bbox-397": 458, + "bbox-398": 459, + "bbox-399": 460, + "bbox-400": 461, + "bbox-401": 462, + "bbox-402": 463, + "bbox-403": 464, + "bbox-404": 465, + "bbox-405": 466, + "bbox-406": 467, + "bbox-407": 468, + "bbox-408": 469, + "bbox-409": 470, + "bbox-410": 471, + "bbox-411": 472, + "bbox-412": 473, + "bbox-413": 474, + "bbox-414": 475, + "bbox-415": 476, + "bbox-416": 477, + "bbox-417": 478, + "bbox-418": 479, + "bbox-419": 480, + "bbox-420": 481, + "bbox-421": 482, + "bbox-422": 483, + "bbox-423": 484, + "bbox-424": 485, + "bbox-425": 486, + "bbox-426": 487, + "bbox-427": 488, + "bbox-428": 489, + "bbox-429": 490, + "bbox-430": 491, + "bbox-431": 492, + "bbox-432": 493, + "bbox-433": 494, + "bbox-434": 495, + "bbox-435": 496, + "bbox-436": 497, + "bbox-437": 498, + "bbox-438": 499, + "bbox-439": 500, + "bbox-440": 501, + "bbox-441": 502, + "bbox-442": 503, + "bbox-443": 504, + "bbox-444": 505, + "bbox-445": 506, + "bbox-446": 507, + "bbox-447": 508, + "bbox-448": 509, + "bbox-449": 510, + "bbox-450": 511, + "bbox-451": 512, + "bbox-452": 513, + "bbox-453": 514, + "bbox-454": 515, + "bbox-455": 516, + "bbox-456": 517, + "bbox-457": 518, + "bbox-458": 519, + "bbox-459": 520, + "bbox-460": 521, + "bbox-461": 522, + "bbox-462": 523, + "bbox-463": 524, + "bbox-464": 525, + "bbox-465": 526, + "bbox-466": 527, + "bbox-467": 528, + "bbox-468": 529, + "bbox-469": 530, + "bbox-470": 531, + "bbox-471": 532, + "bbox-472": 533, + "bbox-473": 534, + "bbox-474": 535, + "bbox-475": 536, + "bbox-476": 537, + "bbox-477": 538, + "bbox-478": 539, + "bbox-479": 540, + "bbox-480": 541, + "bbox-481": 542, + "bbox-482": 543, + "bbox-483": 544, + "bbox-484": 545, + "bbox-485": 546, + "bbox-486": 547, + "bbox-487": 548, + "bbox-488": 549, + "bbox-489": 550, + "bbox-490": 551, + "bbox-491": 552, + "bbox-492": 553, + "bbox-493": 554, + "bbox-494": 555, + "bbox-495": 556, + "bbox-496": 557, + "bbox-497": 558, + "bbox-498": 559, + "bbox-499": 560, + "bbox-500": 561, + "bbox-501": 562, + "bbox-502": 563, + "bbox-503": 564, + "bbox-504": 565, + "bbox-505": 566, + "bbox-506": 567, + "bbox-507": 568, + "bbox-508": 569, + "bbox-509": 570, + "bbox-510": 571, + "bbox-511": 572, + "bbox-512": 573, + "bbox-513": 574, + "bbox-514": 575, + "bbox-515": 576, + "bbox-516": 577, + "bbox-517": 578, + "bbox-518": 579, + "bbox-519": 580, + "bbox-520": 581, + "bbox-521": 582, + "bbox-522": 583, + "bbox-523": 584, + "bbox-524": 585, + "bbox-525": 586, + "bbox-526": 587, + "bbox-527": 588, + "bbox-528": 589, + "bbox-529": 590, + "bbox-530": 591, + "bbox-531": 592, + "bbox-532": 593, + "bbox-533": 594, + "bbox-534": 595, + "bbox-535": 596, + "bbox-536": 597, + "bbox-537": 598, + "bbox-538": 599, + "bbox-539": 600, + "bbox-540": 601, + "bbox-541": 602, + "bbox-542": 603, + "bbox-543": 604, + "bbox-544": 605, + "bbox-545": 606, + "bbox-546": 607, + "bbox-547": 608, + "bbox-548": 609, + "bbox-549": 610, + "bbox-550": 611, + "bbox-551": 612, + "bbox-552": 613, + "bbox-553": 614, + "bbox-554": 615, + "bbox-555": 616, + "bbox-556": 617, + "bbox-557": 618, + "bbox-558": 619, + "bbox-559": 620, + "bbox-560": 621, + "bbox-561": 622, + "bbox-562": 623, + "bbox-563": 624, + "bbox-564": 625, + "bbox-565": 626, + "bbox-566": 627, + "bbox-567": 628, + "bbox-568": 629, + "bbox-569": 630, + "bbox-570": 631, + "bbox-571": 632, + "bbox-572": 633, + "bbox-573": 634, + "bbox-574": 635, + "bbox-575": 636, + "bbox-576": 637, + "bbox-577": 638, + "bbox-578": 639, + "bbox-579": 640, + "bbox-580": 641, + "bbox-581": 642, + "bbox-582": 643, + "bbox-583": 644, + "bbox-584": 645, + "bbox-585": 646, + "bbox-586": 647, + "bbox-587": 648, + "bbox-588": 649, + "bbox-589": 650, + "bbox-590": 651, + "bbox-591": 652, + "bbox-592": 653, + "bbox-593": 654, + "bbox-594": 655, + "bbox-595": 656, + "bbox-596": 657, + "bbox-597": 658, + "bbox-598": 659, + "bbox-599": 660, + "bbox-600": 661, + "bbox-601": 662, + "bbox-602": 663, + "bbox-603": 664, + "bbox-604": 665, + "bbox-605": 666, + "bbox-606": 667, + "bbox-607": 668, + "bbox-608": 669, + "bbox-609": 670, + "bbox-610": 671, + "bbox-611": 672, + "bbox-612": 673, + "bbox-613": 674, + "bbox-614": 675, + "bbox-615": 676, + "bbox-616": 677, + "bbox-617": 678, + "bbox-618": 679, + "bbox-619": 680, + "bbox-620": 681, + "bbox-621": 682, + "bbox-622": 683, + "bbox-623": 684, + "bbox-624": 685, + "bbox-625": 686, + "bbox-626": 687, + "bbox-627": 688, + "bbox-628": 689, + "bbox-629": 690, + "bbox-630": 691, + "bbox-631": 692, + "bbox-632": 693, + "bbox-633": 694, + "bbox-634": 695, + "bbox-635": 696, + "bbox-636": 697, + "bbox-637": 698, + "bbox-638": 699, + "bbox-639": 700, + "bbox-640": 701, + "bbox-641": 702, + "bbox-642": 703, + "bbox-643": 704, + "bbox-644": 705, + "bbox-645": 706, + "bbox-646": 707, + "bbox-647": 708, + "bbox-648": 709, + "bbox-649": 710, + "bbox-650": 711, + "bbox-651": 712, + "bbox-652": 713, + "bbox-653": 714, + "bbox-654": 715, + "bbox-655": 716, + "bbox-656": 717, + "bbox-657": 718, + "bbox-658": 719, + "bbox-659": 720, + "bbox-660": 721, + "bbox-661": 722, + "bbox-662": 723, + "bbox-663": 724, + "bbox-664": 725, + "bbox-665": 726, + "bbox-666": 727, + "bbox-667": 728, + "bbox-668": 729, + "bbox-669": 730, + "bbox-670": 731, + "bbox-671": 732, + "bbox-672": 733, + "bbox-673": 734, + "bbox-674": 735, + "bbox-675": 736, + "bbox-676": 737, + "bbox-677": 738, + "bbox-678": 739, + "bbox-679": 740, + "bbox-680": 741, + "bbox-681": 742, + "bbox-682": 743, + "bbox-683": 744, + "bbox-684": 745, + "bbox-685": 746, + "bbox-686": 747, + "bbox-687": 748, + "bbox-688": 749, + "bbox-689": 750, + "bbox-690": 751, + "bbox-691": 752, + "bbox-692": 753, + "bbox-693": 754, + "bbox-694": 755, + "bbox-695": 756, + "bbox-696": 757, + "bbox-697": 758, + "bbox-698": 759, + "bbox-699": 760, + "bbox-700": 761, + "bbox-701": 762, + "bbox-702": 763, + "bbox-703": 764, + "bbox-704": 765, + "bbox-705": 766, + "bbox-706": 767, + "bbox-707": 768, + "bbox-708": 769, + "bbox-709": 770, + "bbox-710": 771, + "bbox-711": 772, + "bbox-712": 773, + "bbox-713": 774, + "bbox-714": 775, + "bbox-715": 776, + "bbox-716": 777, + "bbox-717": 778, + "bbox-718": 779, + "bbox-719": 780, + "bbox-720": 781, + "bbox-721": 782, + "bbox-722": 783, + "bbox-723": 784, + "bbox-724": 785, + "bbox-725": 786, + "bbox-726": 787, + "bbox-727": 788, + "bbox-728": 789, + "bbox-729": 790, + "bbox-730": 791, + "bbox-731": 792, + "bbox-732": 793, + "bbox-733": 794, + "bbox-734": 795, + "bbox-735": 796, + "bbox-736": 797, + "bbox-737": 798, + "bbox-738": 799, + "bbox-739": 800, + "bbox-740": 801, + "bbox-741": 802, + "bbox-742": 803, + "bbox-743": 804, + "bbox-744": 805, + "bbox-745": 806, + "bbox-746": 807, + "bbox-747": 808, + "bbox-748": 809, + "bbox-749": 810, + "bbox-750": 811, + "bbox-751": 812, + "bbox-752": 813, + "bbox-753": 814, + "bbox-754": 815, + "bbox-755": 816, + "bbox-756": 817, + "bbox-757": 818, + "bbox-758": 819, + "bbox-759": 820, + "bbox-760": 821, + "bbox-761": 822, + "bbox-762": 823, + "bbox-763": 824, + "bbox-764": 825, + "bbox-765": 826, + "bbox-766": 827, + "bbox-767": 828, + "bbox-768": 829, + "bbox-769": 830, + "bbox-770": 831, + "bbox-771": 832, + "bbox-772": 833, + "bbox-773": 834, + "bbox-774": 835, + "bbox-775": 836, + "bbox-776": 837, + "bbox-777": 838, + "bbox-778": 839, + "bbox-779": 840, + "bbox-780": 841, + "bbox-781": 842, + "bbox-782": 843, + "bbox-783": 844, + "bbox-784": 845, + "bbox-785": 846, + "bbox-786": 847, + "bbox-787": 848, + "bbox-788": 849, + "bbox-789": 850, + "bbox-790": 851, + "bbox-791": 852, + "bbox-792": 853, + "bbox-793": 854, + "bbox-794": 855, + "bbox-795": 856, + "bbox-796": 857, + "bbox-797": 858, + "bbox-798": 859, + "bbox-799": 860, + "bbox-800": 861, + "bbox-801": 862, + "bbox-802": 863, + "bbox-803": 864, + "bbox-804": 865, + "bbox-805": 866, + "bbox-806": 867, + "bbox-807": 868, + "bbox-808": 869, + "bbox-809": 870, + "bbox-810": 871, + "bbox-811": 872, + "bbox-812": 873, + "bbox-813": 874, + "bbox-814": 875, + "bbox-815": 876, + "bbox-816": 877, + "bbox-817": 878, + "bbox-818": 879, + "bbox-819": 880, + "bbox-820": 881, + "bbox-821": 882, + "bbox-822": 883, + "bbox-823": 884, + "bbox-824": 885, + "bbox-825": 886, + "bbox-826": 887, + "bbox-827": 888, + "bbox-828": 889, + "bbox-829": 890, + "bbox-830": 891, + "bbox-831": 892, + "bbox-832": 893, + "bbox-833": 894, + "bbox-834": 895, + "bbox-835": 896, + "bbox-836": 897, + "bbox-837": 898, + "bbox-838": 899, + "bbox-839": 900, + "bbox-840": 901, + "bbox-841": 902, + "bbox-842": 903, + "bbox-843": 904, + "bbox-844": 905, + "bbox-845": 906, + "bbox-846": 907, + "bbox-847": 908, + "bbox-848": 909, + "bbox-849": 910, + "bbox-850": 911, + "bbox-851": 912, + "bbox-852": 913, + "bbox-853": 914, + "bbox-854": 915, + "bbox-855": 916, + "bbox-856": 917, + "bbox-857": 918, + "bbox-858": 919, + "bbox-859": 920, + "bbox-860": 921, + "bbox-861": 922, + "bbox-862": 923, + "bbox-863": 924, + "bbox-864": 925, + "bbox-865": 926, + "bbox-866": 927, + "bbox-867": 928, + "bbox-868": 929, + "bbox-869": 930, + "bbox-870": 931, + "bbox-871": 932, + "bbox-872": 933, + "bbox-873": 934, + "bbox-874": 935, + "bbox-875": 936, + "bbox-876": 937, + "bbox-877": 938, + "bbox-878": 939, + "bbox-879": 940, + "bbox-880": 941, + "bbox-881": 942, + "bbox-882": 943, + "bbox-883": 944, + "bbox-884": 945, + "bbox-885": 946, + "bbox-886": 947, + "bbox-887": 948, + "bbox-888": 949, + "bbox-889": 950, + "bbox-890": 951, + "bbox-891": 952, + "bbox-892": 953, + "bbox-893": 954, + "bbox-894": 955, + "bbox-895": 956, + "bbox-896": 957, + "bbox-897": 958, + "bbox-898": 959 + } + } +} \ No newline at end of file diff --git a/rapid_table/table_structure/logger.py b/rapid_table/table_structure/logger.py deleted file mode 100644 index 2950987..0000000 --- a/rapid_table/table_structure/logger.py +++ /dev/null @@ -1,21 +0,0 @@ -# -*- encoding: utf-8 -*- -# @Author: Jocker1212 -# @Contact: xinyijianggo@gmail.com -import logging -from functools import lru_cache - - -@lru_cache(maxsize=32) -def get_logger(name: str) -> logging.Logger: - logger = logging.getLogger(name) - logger.setLevel(logging.DEBUG) - - fmt = "%(asctime)s - %(name)s - %(levelname)s: %(message)s" - format_str = logging.Formatter(fmt) - - sh = logging.StreamHandler() - sh.setLevel(logging.DEBUG) - - logger.addHandler(sh) - sh.setFormatter(format_str) - return logger diff --git a/rapid_table/table_structure/table_structure_unitable.py b/rapid_table/table_structure/table_structure_unitable.py index e14f548..c04e8f8 100644 --- a/rapid_table/table_structure/table_structure_unitable.py +++ b/rapid_table/table_structure/table_structure_unitable.py @@ -1,6 +1,5 @@ import re import time -from typing import Any, Dict import cv2 import numpy as np @@ -79,11 +78,11 @@ class TableStructureUnitable: - def __init__(self, config: Dict[str, Any]): + def __init__(self, config): # encoder_path: str, decoder_path: str, vocab_path: str, device: str - vocab_path = config["vocab_path"] - encoder_path = config["encoder_path"] - decoder_path = config["decoder_path"] + vocab_path = config["model_path"]["vocab"] + encoder_path = config["model_path"]["encoder"] + decoder_path = config["model_path"]["decoder"] device = config.get("device", "cuda:0") if config["use_cuda"] else "cpu" self.vocab = Tokenizer.from_file(vocab_path) diff --git a/rapid_table/table_structure/utils.py b/rapid_table/table_structure/utils.py index e06f610..1f1d8dd 100644 --- a/rapid_table/table_structure/utils.py +++ b/rapid_table/table_structure/utils.py @@ -31,7 +31,7 @@ get_device, ) -from rapid_table.table_structure.logger import get_logger +from rapid_table.logger import get_logger class EP(Enum): diff --git a/setup.py b/setup.py index 8dc2e60..caf2114 100644 --- a/setup.py +++ b/setup.py @@ -3,11 +3,18 @@ # @Contact: liekkaskono@163.com import sys from pathlib import Path +from typing import List, Union import setuptools from get_pypi_latest_version import GetPyPiLatestVersion +def read_txt(txt_path: Union[Path, str]) -> List[str]: + with open(txt_path, "r", encoding="utf-8") as f: + data = [v.rstrip("\n") for v in f] + return data + + def get_readme(): root_dir = Path(__file__).resolve().parent readme_path = str(root_dir / "docs" / "doc_whl_rapid_table.md") @@ -34,19 +41,13 @@ def get_readme(): platforms="Any", long_description=get_readme(), long_description_content_type="text/markdown", - description="Tools for parsing table structures based ONNXRuntime.", + description="Table Recognition", author="SWHL", author_email="liekkaskono@163.com", - url="https://github.com/RapidAI/RapidStructure", + url="https://github.com/RapidAI/RapidTable", license="Apache-2.0", include_package_data=True, - install_requires=[ - "onnxruntime>=1.7.0", - "PyYAML>=6.0", - "opencv_python>=4.5.1.48", - "numpy>=1.21.6", - "Pillow", - ], + install_requires=read_txt("requirements.txt"), packages=[ MODULE_NAME, f"{MODULE_NAME}.models", diff --git a/tests/test_main.py b/tests/test_main.py new file mode 100644 index 0000000..11db74c --- /dev/null +++ b/tests/test_main.py @@ -0,0 +1,50 @@ +# -*- encoding: utf-8 -*- +# @Author: SWHL +# @Contact: liekkaskono@163.com +import sys +from pathlib import Path + +import pytest +from rapidocr_onnxruntime import RapidOCR + +cur_dir = Path(__file__).resolve().parent +root_dir = cur_dir.parent + +sys.path.append(str(root_dir)) + +from rapid_table import RapidTable, RapidTableInput + +ocr_engine = RapidOCR() + +input_args = RapidTableInput() +table_engine = RapidTable(input_args) + +test_file_dir = cur_dir / "test_files" +img_path = str(test_file_dir / "table.jpg") + + +@pytest.mark.parametrize("model_type", ["slanet_plus", "unitable"]) +def test_ocr_input(model_type): + ocr_res, _ = ocr_engine(img_path) + + input_args = RapidTableInput(model_type=model_type) + table_engine = RapidTable(input_args) + + table_results = table_engine(img_path, ocr_res) + assert table_results.pred_html.count("") == 16 + + +@pytest.mark.parametrize("model_type", ["slanet_plus", "unitable"]) +def test_input_ocr_none(model_type): + input_args = RapidTableInput(model_type=model_type) + table_engine = RapidTable(input_args) + table_results = table_engine(img_path) + assert table_results.pred_html.count("") == 16 + + +@pytest.mark.parametrize("model_type", ["slanet_plus", "unitable"]) +def test_logic_points_out(model_type): + input_args = RapidTableInput(model_type=model_type) + table_engine = RapidTable(input_args) + table_results = table_engine(img_path, return_logic_points=True) + assert len(table_results.pred_bboxes) == len(table_results.logic_points) diff --git a/tests/test_table.py b/tests/test_table.py deleted file mode 100644 index 41a2060..0000000 --- a/tests/test_table.py +++ /dev/null @@ -1,35 +0,0 @@ -# -*- encoding: utf-8 -*- -# @Author: SWHL -# @Contact: liekkaskono@163.com -import sys -from pathlib import Path - -from rapidocr_onnxruntime import RapidOCR - -cur_dir = Path(__file__).resolve().parent -root_dir = cur_dir.parent - -sys.path.append(str(root_dir)) - -from rapid_table import RapidTable - -ocr_engine = RapidOCR() -table_engine = RapidTable() - -test_file_dir = cur_dir / "test_files" -img_path = str(test_file_dir / "table.jpg") - - -def test_ocr_input(): - ocr_res, _ = ocr_engine(img_path) - table_html_str, table_cell_bboxes, elapse = table_engine(img_path, ocr_res) - assert table_html_str.count("") == 16 - - -def test_input_ocr_none(): - table_html_str, table_cell_bboxes, elapse = table_engine(img_path) - assert table_html_str.count("") == 16 - -def test_logic_points_out(): - table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path, return_logic_points=True) - assert len(table_cell_bboxes) == len(logic_points) diff --git a/tests/test_table_torch.py b/tests/test_table_torch.py deleted file mode 100644 index 3526d11..0000000 --- a/tests/test_table_torch.py +++ /dev/null @@ -1,38 +0,0 @@ -# -*- encoding: utf-8 -*- -# @Author: SWHL -# @Contact: liekkaskono@163.com -import sys -from pathlib import Path - -from rapidocr_onnxruntime import RapidOCR - -cur_dir = Path(__file__).resolve().parent -root_dir = cur_dir.parent - -sys.path.append(str(root_dir)) - -from rapid_table import RapidTable - -ocr_engine = RapidOCR() -table_engine = RapidTable(model_type="unitable") - -test_file_dir = cur_dir / "test_files" -img_path = str(test_file_dir / "table.jpg") - - -def test_ocr_input(): - ocr_res, _ = ocr_engine(img_path) - table_html_str, table_cell_bboxes, elapse = table_engine(img_path, ocr_res) - assert table_html_str.count("") == 16 - - -def test_input_ocr_none(): - table_html_str, table_cell_bboxes, elapse = table_engine(img_path) - assert table_html_str.count("") == 16 - - -def test_logic_points_out(): - table_html_str, table_cell_bboxes, logic_points, elapse = table_engine( - img_path, return_logic_points=True - ) - assert len(table_cell_bboxes) == len(logic_points) From e9b6456414b09f3a0075bb037fa3fb2ed0da29c9 Mon Sep 17 00:00:00 2001 From: SWHL Date: Tue, 7 Jan 2025 23:11:20 +0800 Subject: [PATCH 13/23] ci: update unit testing --- .github/workflows/publish_whl.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/publish_whl.yml b/.github/workflows/publish_whl.yml index 7e135b3..c668a7a 100644 --- a/.github/workflows/publish_whl.yml +++ b/.github/workflows/publish_whl.yml @@ -38,8 +38,7 @@ jobs: pip install torchvision pip install tokenizers pip install pytest - pytest tests/test_table.py - pytest tests/test_table_torch.py + pytest tests/test_main.py GenerateWHL_PushPyPi: needs: UnitTesting From 269baf84dfa1733c8585ce7065292d8b73ded3ff Mon Sep 17 00:00:00 2001 From: SWHL Date: Wed, 8 Jan 2025 09:11:15 +0800 Subject: [PATCH 14/23] chore: optimize code --- README.md | 2 +- rapid_table/__init__.py | 2 +- rapid_table/main.py | 24 +- rapid_table/params.py | 55 - rapid_table/table_structure/utils.py | 2 +- rapid_table/utils/__init__.py | 3 + rapid_table/{ => utils}/download_model.py | 15 - rapid_table/{ => utils}/logger.py | 0 rapid_table/utils/models/unitable_vocab.json | 9650 ++++++++++++++++++ rapid_table/{ => utils}/utils.py | 0 10 files changed, 9670 insertions(+), 83 deletions(-) delete mode 100644 rapid_table/params.py create mode 100644 rapid_table/utils/__init__.py rename rapid_table/{ => utils}/download_model.py (80%) rename rapid_table/{ => utils}/logger.py (100%) create mode 100644 rapid_table/utils/models/unitable_vocab.json rename rapid_table/{ => utils}/utils.py (100%) diff --git a/README.md b/README.md index 82285cf..685d8c2 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ unitable是来源unitable的transformer模型,精度最高,暂仅支持pytor [PaddleX-SlaNetPlus 表格识别](https://github.com/PaddlePaddle/PaddleX/blob/release/3.0-beta1/docs/module_usage/tutorials/ocr_modules/table_structure_recognition.md)\ [Unitable](https://github.com/poloclub/unitable?tab=readme-ov-file) -模型下载地址为:[link](https://github.com/RapidAI/RapidTable/releases/tag/assets) +模型托管在modelscope上,具体下载地址为:[link](https://www.modelscope.cn/models/RapidAI-NG/RapidTable/files) ### 效果展示 diff --git a/rapid_table/__init__.py b/rapid_table/__init__.py index 702f7d0..e152860 100644 --- a/rapid_table/__init__.py +++ b/rapid_table/__init__.py @@ -2,4 +2,4 @@ # @Author: SWHL # @Contact: liekkaskono@163.com from .main import RapidTable, RapidTableInput -from .utils import VisTable +from .utils.utils import VisTable diff --git a/rapid_table/main.py b/rapid_table/main.py index 30068fc..3d496f1 100644 --- a/rapid_table/main.py +++ b/rapid_table/main.py @@ -13,12 +13,12 @@ import cv2 import numpy as np -from rapid_table.logger import get_logger +from rapid_table.utils.download_model import DownloadModel +from rapid_table.utils.logger import get_logger +from rapid_table.utils.utils import LoadImage, VisTable -from .download_model import DownloadModel from .table_matcher import TableMatch from .table_structure import TableStructurer, TableStructureUnitable -from .utils import LoadImage, VisTable logger = get_logger("main") root_dir = Path(__file__).resolve().parent @@ -63,9 +63,8 @@ class RapidTableOutput: class RapidTable: def __init__(self, config: RapidTableInput): self.model_type = config.model_type - if self.model_type not in KEY_TO_MODEL_URL: - model_list = ",".join(KEY_TO_MODEL_URL.keys()) + model_list = ",".join(KEY_TO_MODEL_URL) raise ValueError( f"{self.model_type} is not supported. The currently supported models are {model_list}." ) @@ -185,6 +184,7 @@ def main(): "-v", "--vis", action="store_true", + default=False, help="Wheter to visualize the layout results.", ) parser.add_argument( @@ -192,10 +192,10 @@ def main(): ) parser.add_argument( "-m", - "--model_path", + "--model_type", type=str, - default=str(root_dir / "models" / "en_ppstructure_mobile_v2_SLANet.onnx"), - help="The model path used for inference.", + default=ModelType.SLANETPLUS.value, + choices=list(KEY_TO_MODEL_URL), ) args = parser.parse_args() @@ -206,12 +206,16 @@ def main(): "Please install the rapidocr_onnxruntime by pip install rapidocr_onnxruntime." ) from exc - rapid_table = RapidTable(args.model_path) + table_engine = RapidTable(args.model_path) img = cv2.imread(args.img_path) ocr_result, _ = ocr_engine(img) - table_html_str, table_cell_bboxes, elapse = rapid_table(img, ocr_result) + table_results = table_engine(img, ocr_result) + table_html_str, table_cell_bboxes = ( + table_results.pred_html, + table_results.pred_bboxes, + ) print(table_html_str) viser = VisTable() diff --git a/rapid_table/params.py b/rapid_table/params.py deleted file mode 100644 index b831587..0000000 --- a/rapid_table/params.py +++ /dev/null @@ -1,55 +0,0 @@ -# -*- encoding: utf-8 -*- -from dataclasses import dataclass, fields -from functools import wraps -from pathlib import Path -from typing import Optional, Union - -from rapid_table.logger import get_logger - -root_dir = Path(__file__).resolve().parent -logger = get_logger("params") - - -@dataclass -class RapidTableInput: - model_type: Optional[str] = None - model_path_or_dir: Union[str, Path, None] = None - use_cuda: bool = False - device: str = "cpu" - - -@dataclass -class BaseConfig: - model_type: str = "slanet-plus" - model_path: str = str(root_dir / "models" / "slanet-plus.onnx") - use_cuda: bool = False - device: str = "cpu" - encoder_path: str = None - decoder_path: str = None - vocab_path: str = None - - -def accept_kwargs_as_dataclass(cls): - def decorator(func): - @wraps(func) - def wrapper(*args, **kwargs): - if len(args) == 2 and isinstance(args[1], cls): - # 如果已经传递了 ModelConfig 实例,直接调用函数 - return func(*args, **kwargs) - - # 提取 cls 中定义的字段 - cls_fields = {field.name for field in fields(cls)} - # 过滤掉未定义的字段 - filtered_kwargs = {k: v for k, v in kwargs.items() if k in cls_fields} - # 发出警告对于未定义的字段 - for k in kwargs.keys() - cls_fields: - logger.warning( - f"Warning: '{k}' is not a valid field in {cls.__name__} and will be ignored." - ) - # 创建 ModelConfig 实例并调用函数 - config = cls(**filtered_kwargs) - return func(args[0], config=config) - - return wrapper - - return decorator diff --git a/rapid_table/table_structure/utils.py b/rapid_table/table_structure/utils.py index 1f1d8dd..78f41d2 100644 --- a/rapid_table/table_structure/utils.py +++ b/rapid_table/table_structure/utils.py @@ -31,7 +31,7 @@ get_device, ) -from rapid_table.logger import get_logger +from rapid_table.utils.logger import get_logger class EP(Enum): diff --git a/rapid_table/utils/__init__.py b/rapid_table/utils/__init__.py new file mode 100644 index 0000000..0ecdd4f --- /dev/null +++ b/rapid_table/utils/__init__.py @@ -0,0 +1,3 @@ +# -*- encoding: utf-8 -*- +# @Author: SWHL +# @Contact: liekkaskono@163.com diff --git a/rapid_table/download_model.py b/rapid_table/utils/download_model.py similarity index 80% rename from rapid_table/download_model.py rename to rapid_table/utils/download_model.py index 312afa2..a228238 100644 --- a/rapid_table/download_model.py +++ b/rapid_table/utils/download_model.py @@ -14,21 +14,6 @@ class DownloadModel: - @staticmethod - def get_model_path( - model_type: str, sub_file_type: str, path: Union[str, Path, None] - ) -> str: - if path is not None: - return path - - model_url = KEY_TO_MODEL_URL.get(model_type, {}).get(sub_file_type, None) - if model_url: - model_path = DownloadModel.download(model_url) - return model_path - - logger.info("model url is None, using the default download model %s", path) - return path - @classmethod def download( cls, diff --git a/rapid_table/logger.py b/rapid_table/utils/logger.py similarity index 100% rename from rapid_table/logger.py rename to rapid_table/utils/logger.py diff --git a/rapid_table/utils/models/unitable_vocab.json b/rapid_table/utils/models/unitable_vocab.json new file mode 100644 index 0000000..c13ccef --- /dev/null +++ b/rapid_table/utils/models/unitable_vocab.json @@ -0,0 +1,9650 @@ +{ + "version": "1.0", + "truncation": null, + "padding": { + "strategy": "BatchLongest", + "direction": "Right", + "pad_to_multiple_of": null, + "pad_id": 2, + "pad_type_id": 0, + "pad_token": "" + }, + "added_tokens": [ + { + "id": 0, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 1, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 2, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 3, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 4, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 5, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 6, + "content": "[table]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 7, + "content": "[html]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 8, + "content": "[cell]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 9, + "content": "[bbox]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 10, + "content": "[cell+bbox]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 11, + "content": "[html+bbox]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 12, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 13, + "content": "[", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 14, + "content": "]", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 15, + "content": "[", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 17, + "content": ">", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 18, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 19, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 20, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 21, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 22, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 23, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 24, + "content": " rowspan=\"2\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 25, + "content": " rowspan=\"3\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 26, + "content": " rowspan=\"4\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 27, + "content": " rowspan=\"5\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 28, + "content": " rowspan=\"6\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 29, + "content": " rowspan=\"7\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 30, + "content": " rowspan=\"8\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 31, + "content": " rowspan=\"9\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 32, + "content": " rowspan=\"10\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 33, + "content": " rowspan=\"11\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 34, + "content": " rowspan=\"12\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 35, + "content": " rowspan=\"13\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 36, + "content": " rowspan=\"14\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 37, + "content": " rowspan=\"15\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 38, + "content": " rowspan=\"16\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 39, + "content": " rowspan=\"17\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 40, + "content": " rowspan=\"18\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 41, + "content": " rowspan=\"19\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 42, + "content": " colspan=\"2\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 43, + "content": " colspan=\"3\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 44, + "content": " colspan=\"4\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 45, + "content": " colspan=\"5\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 46, + "content": " colspan=\"6\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 47, + "content": " colspan=\"7\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 48, + "content": " colspan=\"8\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 49, + "content": " colspan=\"9\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 50, + "content": " colspan=\"10\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 51, + "content": " colspan=\"11\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 52, + "content": " colspan=\"12\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 53, + "content": " colspan=\"13\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 54, + "content": " colspan=\"14\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 55, + "content": " colspan=\"15\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 56, + "content": " colspan=\"16\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 57, + "content": " colspan=\"17\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 58, + "content": " colspan=\"18\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 59, + "content": " colspan=\"19\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 60, + "content": " colspan=\"25\"", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 61, + "content": "bbox-0", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 62, + "content": "bbox-1", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 63, + "content": "bbox-2", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 64, + "content": "bbox-3", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 65, + "content": "bbox-4", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 66, + "content": "bbox-5", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 67, + "content": "bbox-6", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 68, + "content": "bbox-7", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 69, + "content": "bbox-8", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 70, + "content": "bbox-9", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 71, + "content": "bbox-10", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 72, + "content": "bbox-11", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 73, + "content": "bbox-12", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 74, + "content": "bbox-13", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 75, + "content": "bbox-14", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 76, + "content": "bbox-15", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 77, + "content": "bbox-16", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 78, + "content": "bbox-17", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 79, + "content": "bbox-18", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 80, + "content": "bbox-19", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 81, + "content": "bbox-20", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 82, + "content": "bbox-21", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 83, + "content": "bbox-22", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 84, + "content": "bbox-23", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 85, + "content": "bbox-24", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 86, + "content": "bbox-25", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 87, + "content": "bbox-26", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 88, + "content": "bbox-27", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 89, + "content": "bbox-28", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 90, + "content": "bbox-29", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 91, + "content": "bbox-30", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 92, + "content": "bbox-31", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 93, + "content": "bbox-32", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 94, + "content": "bbox-33", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 95, + "content": "bbox-34", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 96, + "content": "bbox-35", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 97, + "content": "bbox-36", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 98, + "content": "bbox-37", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 99, + "content": "bbox-38", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 100, + "content": "bbox-39", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 101, + "content": "bbox-40", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 102, + "content": "bbox-41", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 103, + "content": "bbox-42", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 104, + "content": "bbox-43", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 105, + "content": "bbox-44", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 106, + "content": "bbox-45", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 107, + "content": "bbox-46", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 108, + "content": "bbox-47", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 109, + "content": "bbox-48", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 110, + "content": "bbox-49", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 111, + "content": "bbox-50", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 112, + "content": "bbox-51", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 113, + "content": "bbox-52", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 114, + "content": "bbox-53", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 115, + "content": "bbox-54", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 116, + "content": "bbox-55", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 117, + "content": "bbox-56", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 118, + "content": "bbox-57", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 119, + "content": "bbox-58", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 120, + "content": "bbox-59", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 121, + "content": "bbox-60", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 122, + "content": "bbox-61", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 123, + "content": "bbox-62", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 124, + "content": "bbox-63", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 125, + "content": "bbox-64", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 126, + "content": "bbox-65", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 127, + "content": "bbox-66", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 128, + "content": "bbox-67", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 129, + "content": "bbox-68", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 130, + "content": "bbox-69", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 131, + "content": "bbox-70", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 132, + "content": "bbox-71", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 133, + "content": "bbox-72", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 134, + "content": "bbox-73", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 135, + "content": "bbox-74", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 136, + "content": "bbox-75", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 137, + "content": "bbox-76", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 138, + "content": "bbox-77", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 139, + "content": "bbox-78", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 140, + "content": "bbox-79", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 141, + "content": "bbox-80", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 142, + "content": "bbox-81", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 143, + "content": "bbox-82", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 144, + "content": "bbox-83", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 145, + "content": "bbox-84", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 146, + "content": "bbox-85", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 147, + "content": "bbox-86", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 148, + "content": "bbox-87", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 149, + "content": "bbox-88", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 150, + "content": "bbox-89", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 151, + "content": "bbox-90", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 152, + "content": "bbox-91", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 153, + "content": "bbox-92", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 154, + "content": "bbox-93", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 155, + "content": "bbox-94", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 156, + "content": "bbox-95", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 157, + "content": "bbox-96", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 158, + "content": "bbox-97", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 159, + "content": "bbox-98", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 160, + "content": "bbox-99", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 161, + "content": "bbox-100", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 162, + "content": "bbox-101", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 163, + "content": "bbox-102", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 164, + "content": "bbox-103", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 165, + "content": "bbox-104", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 166, + "content": "bbox-105", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 167, + "content": "bbox-106", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 168, + "content": "bbox-107", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 169, + "content": "bbox-108", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 170, + "content": "bbox-109", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 171, + "content": "bbox-110", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 172, + "content": "bbox-111", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 173, + "content": "bbox-112", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 174, + "content": "bbox-113", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 175, + "content": "bbox-114", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 176, + "content": "bbox-115", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 177, + "content": "bbox-116", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 178, + "content": "bbox-117", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 179, + "content": "bbox-118", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 180, + "content": "bbox-119", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 181, + "content": "bbox-120", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 182, + "content": "bbox-121", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 183, + "content": "bbox-122", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 184, + "content": "bbox-123", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 185, + "content": "bbox-124", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 186, + "content": "bbox-125", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 187, + "content": "bbox-126", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 188, + "content": "bbox-127", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 189, + "content": "bbox-128", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 190, + "content": "bbox-129", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 191, + "content": "bbox-130", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 192, + "content": "bbox-131", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 193, + "content": "bbox-132", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 194, + "content": "bbox-133", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 195, + "content": "bbox-134", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 196, + "content": "bbox-135", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 197, + "content": "bbox-136", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 198, + "content": "bbox-137", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 199, + "content": "bbox-138", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 200, + "content": "bbox-139", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 201, + "content": "bbox-140", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 202, + "content": "bbox-141", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 203, + "content": "bbox-142", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 204, + "content": "bbox-143", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 205, + "content": "bbox-144", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 206, + "content": "bbox-145", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 207, + "content": "bbox-146", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 208, + "content": "bbox-147", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 209, + "content": "bbox-148", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 210, + "content": "bbox-149", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 211, + "content": "bbox-150", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 212, + "content": "bbox-151", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 213, + "content": "bbox-152", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 214, + "content": "bbox-153", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 215, + "content": "bbox-154", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 216, + "content": "bbox-155", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 217, + "content": "bbox-156", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 218, + "content": "bbox-157", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 219, + "content": "bbox-158", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 220, + "content": "bbox-159", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 221, + "content": "bbox-160", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 222, + "content": "bbox-161", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 223, + "content": "bbox-162", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 224, + "content": "bbox-163", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 225, + "content": "bbox-164", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 226, + "content": "bbox-165", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 227, + "content": "bbox-166", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 228, + "content": "bbox-167", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 229, + "content": "bbox-168", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 230, + "content": "bbox-169", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 231, + "content": "bbox-170", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 232, + "content": "bbox-171", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 233, + "content": "bbox-172", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 234, + "content": "bbox-173", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 235, + "content": "bbox-174", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 236, + "content": "bbox-175", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 237, + "content": "bbox-176", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 238, + "content": "bbox-177", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 239, + "content": "bbox-178", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 240, + "content": "bbox-179", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 241, + "content": "bbox-180", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 242, + "content": "bbox-181", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 243, + "content": "bbox-182", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 244, + "content": "bbox-183", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 245, + "content": "bbox-184", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 246, + "content": "bbox-185", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 247, + "content": "bbox-186", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 248, + "content": "bbox-187", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 249, + "content": "bbox-188", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 250, + "content": "bbox-189", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 251, + "content": "bbox-190", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 252, + "content": "bbox-191", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 253, + "content": "bbox-192", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 254, + "content": "bbox-193", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 255, + "content": "bbox-194", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 256, + "content": "bbox-195", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 257, + "content": "bbox-196", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 258, + "content": "bbox-197", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 259, + "content": "bbox-198", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 260, + "content": "bbox-199", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 261, + "content": "bbox-200", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 262, + "content": "bbox-201", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 263, + "content": "bbox-202", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 264, + "content": "bbox-203", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 265, + "content": "bbox-204", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 266, + "content": "bbox-205", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 267, + "content": "bbox-206", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 268, + "content": "bbox-207", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 269, + "content": "bbox-208", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 270, + "content": "bbox-209", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 271, + "content": "bbox-210", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 272, + "content": "bbox-211", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 273, + "content": "bbox-212", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 274, + "content": "bbox-213", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 275, + "content": "bbox-214", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 276, + "content": "bbox-215", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 277, + "content": "bbox-216", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 278, + "content": "bbox-217", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 279, + "content": "bbox-218", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 280, + "content": "bbox-219", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 281, + "content": "bbox-220", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 282, + "content": "bbox-221", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 283, + "content": "bbox-222", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 284, + "content": "bbox-223", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 285, + "content": "bbox-224", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 286, + "content": "bbox-225", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 287, + "content": "bbox-226", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 288, + "content": "bbox-227", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 289, + "content": "bbox-228", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 290, + "content": "bbox-229", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 291, + "content": "bbox-230", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 292, + "content": "bbox-231", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 293, + "content": "bbox-232", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 294, + "content": "bbox-233", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 295, + "content": "bbox-234", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 296, + "content": "bbox-235", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 297, + "content": "bbox-236", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 298, + "content": "bbox-237", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 299, + "content": "bbox-238", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 300, + "content": "bbox-239", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 301, + "content": "bbox-240", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 302, + "content": "bbox-241", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 303, + "content": "bbox-242", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 304, + "content": "bbox-243", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 305, + "content": "bbox-244", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 306, + "content": "bbox-245", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 307, + "content": "bbox-246", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 308, + "content": "bbox-247", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 309, + "content": "bbox-248", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 310, + "content": "bbox-249", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 311, + "content": "bbox-250", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 312, + "content": "bbox-251", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 313, + "content": "bbox-252", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 314, + "content": "bbox-253", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 315, + "content": "bbox-254", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 316, + "content": "bbox-255", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 317, + "content": "bbox-256", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 318, + "content": "bbox-257", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 319, + "content": "bbox-258", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 320, + "content": "bbox-259", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 321, + "content": "bbox-260", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 322, + "content": "bbox-261", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 323, + "content": "bbox-262", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 324, + "content": "bbox-263", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 325, + "content": "bbox-264", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 326, + "content": "bbox-265", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 327, + "content": "bbox-266", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 328, + "content": "bbox-267", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 329, + "content": "bbox-268", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 330, + "content": "bbox-269", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 331, + "content": "bbox-270", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 332, + "content": "bbox-271", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 333, + "content": "bbox-272", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 334, + "content": "bbox-273", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 335, + "content": "bbox-274", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 336, + "content": "bbox-275", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 337, + "content": "bbox-276", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 338, + "content": "bbox-277", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 339, + "content": "bbox-278", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 340, + "content": "bbox-279", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 341, + "content": "bbox-280", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 342, + "content": "bbox-281", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 343, + "content": "bbox-282", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 344, + "content": "bbox-283", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 345, + "content": "bbox-284", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 346, + "content": "bbox-285", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 347, + "content": "bbox-286", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 348, + "content": "bbox-287", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 349, + "content": "bbox-288", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 350, + "content": "bbox-289", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 351, + "content": "bbox-290", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 352, + "content": "bbox-291", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 353, + "content": "bbox-292", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 354, + "content": "bbox-293", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 355, + "content": "bbox-294", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 356, + "content": "bbox-295", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 357, + "content": "bbox-296", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 358, + "content": "bbox-297", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 359, + "content": "bbox-298", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 360, + "content": "bbox-299", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 361, + "content": "bbox-300", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 362, + "content": "bbox-301", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 363, + "content": "bbox-302", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 364, + "content": "bbox-303", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 365, + "content": "bbox-304", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 366, + "content": "bbox-305", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 367, + "content": "bbox-306", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 368, + "content": "bbox-307", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 369, + "content": "bbox-308", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 370, + "content": "bbox-309", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 371, + "content": "bbox-310", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 372, + "content": "bbox-311", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 373, + "content": "bbox-312", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 374, + "content": "bbox-313", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 375, + "content": "bbox-314", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 376, + "content": "bbox-315", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 377, + "content": "bbox-316", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 378, + "content": "bbox-317", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 379, + "content": "bbox-318", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 380, + "content": "bbox-319", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 381, + "content": "bbox-320", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 382, + "content": "bbox-321", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 383, + "content": "bbox-322", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 384, + "content": "bbox-323", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 385, + "content": "bbox-324", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 386, + "content": "bbox-325", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 387, + "content": "bbox-326", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 388, + "content": "bbox-327", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 389, + "content": "bbox-328", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 390, + "content": "bbox-329", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 391, + "content": "bbox-330", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 392, + "content": "bbox-331", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 393, + "content": "bbox-332", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 394, + "content": "bbox-333", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 395, + "content": "bbox-334", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 396, + "content": "bbox-335", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 397, + "content": "bbox-336", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 398, + "content": "bbox-337", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 399, + "content": "bbox-338", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 400, + "content": "bbox-339", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 401, + "content": "bbox-340", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 402, + "content": "bbox-341", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 403, + "content": "bbox-342", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 404, + "content": "bbox-343", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 405, + "content": "bbox-344", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 406, + "content": "bbox-345", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 407, + "content": "bbox-346", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 408, + "content": "bbox-347", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 409, + "content": "bbox-348", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 410, + "content": "bbox-349", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 411, + "content": "bbox-350", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 412, + "content": "bbox-351", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 413, + "content": "bbox-352", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 414, + "content": "bbox-353", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 415, + "content": "bbox-354", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 416, + "content": "bbox-355", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 417, + "content": "bbox-356", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 418, + "content": "bbox-357", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 419, + "content": "bbox-358", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 420, + "content": "bbox-359", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 421, + "content": "bbox-360", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 422, + "content": "bbox-361", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 423, + "content": "bbox-362", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 424, + "content": "bbox-363", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 425, + "content": "bbox-364", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 426, + "content": "bbox-365", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 427, + "content": "bbox-366", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 428, + "content": "bbox-367", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 429, + "content": "bbox-368", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 430, + "content": "bbox-369", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 431, + "content": "bbox-370", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 432, + "content": "bbox-371", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 433, + "content": "bbox-372", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 434, + "content": "bbox-373", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 435, + "content": "bbox-374", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 436, + "content": "bbox-375", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 437, + "content": "bbox-376", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 438, + "content": "bbox-377", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 439, + "content": "bbox-378", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 440, + "content": "bbox-379", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 441, + "content": "bbox-380", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 442, + "content": "bbox-381", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 443, + "content": "bbox-382", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 444, + "content": "bbox-383", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 445, + "content": "bbox-384", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 446, + "content": "bbox-385", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 447, + "content": "bbox-386", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 448, + "content": "bbox-387", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 449, + "content": "bbox-388", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 450, + "content": "bbox-389", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 451, + "content": "bbox-390", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 452, + "content": "bbox-391", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 453, + "content": "bbox-392", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 454, + "content": "bbox-393", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 455, + "content": "bbox-394", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 456, + "content": "bbox-395", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 457, + "content": "bbox-396", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 458, + "content": "bbox-397", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 459, + "content": "bbox-398", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 460, + "content": "bbox-399", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 461, + "content": "bbox-400", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 462, + "content": "bbox-401", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 463, + "content": "bbox-402", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 464, + "content": "bbox-403", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 465, + "content": "bbox-404", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 466, + "content": "bbox-405", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 467, + "content": "bbox-406", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 468, + "content": "bbox-407", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 469, + "content": "bbox-408", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 470, + "content": "bbox-409", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 471, + "content": "bbox-410", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 472, + "content": "bbox-411", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 473, + "content": "bbox-412", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 474, + "content": "bbox-413", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 475, + "content": "bbox-414", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 476, + "content": "bbox-415", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 477, + "content": "bbox-416", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 478, + "content": "bbox-417", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 479, + "content": "bbox-418", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 480, + "content": "bbox-419", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 481, + "content": "bbox-420", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 482, + "content": "bbox-421", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 483, + "content": "bbox-422", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 484, + "content": "bbox-423", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 485, + "content": "bbox-424", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 486, + "content": "bbox-425", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 487, + "content": "bbox-426", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 488, + "content": "bbox-427", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 489, + "content": "bbox-428", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 490, + "content": "bbox-429", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 491, + "content": "bbox-430", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 492, + "content": "bbox-431", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 493, + "content": "bbox-432", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 494, + "content": "bbox-433", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 495, + "content": "bbox-434", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 496, + "content": "bbox-435", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 497, + "content": "bbox-436", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 498, + "content": "bbox-437", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 499, + "content": "bbox-438", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 500, + "content": "bbox-439", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 501, + "content": "bbox-440", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 502, + "content": "bbox-441", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 503, + "content": "bbox-442", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 504, + "content": "bbox-443", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 505, + "content": "bbox-444", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 506, + "content": "bbox-445", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 507, + "content": "bbox-446", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 508, + "content": "bbox-447", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 509, + "content": "bbox-448", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 510, + "content": "bbox-449", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 511, + "content": "bbox-450", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 512, + "content": "bbox-451", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 513, + "content": "bbox-452", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 514, + "content": "bbox-453", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 515, + "content": "bbox-454", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 516, + "content": "bbox-455", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 517, + "content": "bbox-456", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 518, + "content": "bbox-457", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 519, + "content": "bbox-458", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 520, + "content": "bbox-459", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 521, + "content": "bbox-460", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 522, + "content": "bbox-461", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 523, + "content": "bbox-462", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 524, + "content": "bbox-463", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 525, + "content": "bbox-464", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 526, + "content": "bbox-465", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 527, + "content": "bbox-466", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 528, + "content": "bbox-467", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 529, + "content": "bbox-468", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 530, + "content": "bbox-469", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 531, + "content": "bbox-470", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 532, + "content": "bbox-471", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 533, + "content": "bbox-472", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 534, + "content": "bbox-473", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 535, + "content": "bbox-474", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 536, + "content": "bbox-475", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 537, + "content": "bbox-476", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 538, + "content": "bbox-477", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 539, + "content": "bbox-478", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 540, + "content": "bbox-479", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 541, + "content": "bbox-480", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 542, + "content": "bbox-481", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 543, + "content": "bbox-482", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 544, + "content": "bbox-483", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 545, + "content": "bbox-484", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 546, + "content": "bbox-485", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 547, + "content": "bbox-486", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 548, + "content": "bbox-487", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 549, + "content": "bbox-488", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 550, + "content": "bbox-489", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 551, + "content": "bbox-490", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 552, + "content": "bbox-491", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 553, + "content": "bbox-492", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 554, + "content": "bbox-493", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 555, + "content": "bbox-494", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 556, + "content": "bbox-495", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 557, + "content": "bbox-496", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 558, + "content": "bbox-497", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 559, + "content": "bbox-498", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 560, + "content": "bbox-499", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 561, + "content": "bbox-500", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 562, + "content": "bbox-501", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 563, + "content": "bbox-502", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 564, + "content": "bbox-503", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 565, + "content": "bbox-504", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 566, + "content": "bbox-505", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 567, + "content": "bbox-506", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 568, + "content": "bbox-507", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 569, + "content": "bbox-508", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 570, + "content": "bbox-509", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 571, + "content": "bbox-510", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 572, + "content": "bbox-511", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 573, + "content": "bbox-512", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 574, + "content": "bbox-513", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 575, + "content": "bbox-514", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 576, + "content": "bbox-515", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 577, + "content": "bbox-516", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 578, + "content": "bbox-517", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 579, + "content": "bbox-518", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 580, + "content": "bbox-519", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 581, + "content": "bbox-520", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 582, + "content": "bbox-521", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 583, + "content": "bbox-522", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 584, + "content": "bbox-523", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 585, + "content": "bbox-524", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 586, + "content": "bbox-525", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 587, + "content": "bbox-526", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 588, + "content": "bbox-527", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 589, + "content": "bbox-528", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 590, + "content": "bbox-529", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 591, + "content": "bbox-530", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 592, + "content": "bbox-531", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 593, + "content": "bbox-532", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 594, + "content": "bbox-533", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 595, + "content": "bbox-534", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 596, + "content": "bbox-535", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 597, + "content": "bbox-536", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 598, + "content": "bbox-537", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 599, + "content": "bbox-538", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 600, + "content": "bbox-539", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 601, + "content": "bbox-540", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 602, + "content": "bbox-541", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 603, + "content": "bbox-542", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 604, + "content": "bbox-543", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 605, + "content": "bbox-544", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 606, + "content": "bbox-545", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 607, + "content": "bbox-546", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 608, + "content": "bbox-547", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 609, + "content": "bbox-548", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 610, + "content": "bbox-549", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 611, + "content": "bbox-550", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 612, + "content": "bbox-551", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 613, + "content": "bbox-552", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 614, + "content": "bbox-553", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 615, + "content": "bbox-554", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 616, + "content": "bbox-555", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 617, + "content": "bbox-556", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 618, + "content": "bbox-557", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 619, + "content": "bbox-558", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 620, + "content": "bbox-559", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 621, + "content": "bbox-560", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 622, + "content": "bbox-561", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 623, + "content": "bbox-562", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 624, + "content": "bbox-563", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 625, + "content": "bbox-564", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 626, + "content": "bbox-565", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 627, + "content": "bbox-566", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 628, + "content": "bbox-567", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 629, + "content": "bbox-568", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 630, + "content": "bbox-569", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 631, + "content": "bbox-570", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 632, + "content": "bbox-571", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 633, + "content": "bbox-572", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 634, + "content": "bbox-573", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 635, + "content": "bbox-574", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 636, + "content": "bbox-575", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 637, + "content": "bbox-576", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 638, + "content": "bbox-577", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 639, + "content": "bbox-578", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 640, + "content": "bbox-579", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 641, + "content": "bbox-580", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 642, + "content": "bbox-581", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 643, + "content": "bbox-582", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 644, + "content": "bbox-583", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 645, + "content": "bbox-584", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 646, + "content": "bbox-585", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 647, + "content": "bbox-586", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 648, + "content": "bbox-587", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 649, + "content": "bbox-588", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 650, + "content": "bbox-589", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 651, + "content": "bbox-590", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 652, + "content": "bbox-591", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 653, + "content": "bbox-592", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 654, + "content": "bbox-593", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 655, + "content": "bbox-594", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 656, + "content": "bbox-595", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 657, + "content": "bbox-596", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 658, + "content": "bbox-597", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 659, + "content": "bbox-598", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 660, + "content": "bbox-599", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 661, + "content": "bbox-600", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 662, + "content": "bbox-601", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 663, + "content": "bbox-602", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 664, + "content": "bbox-603", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 665, + "content": "bbox-604", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 666, + "content": "bbox-605", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 667, + "content": "bbox-606", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 668, + "content": "bbox-607", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 669, + "content": "bbox-608", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 670, + "content": "bbox-609", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 671, + "content": "bbox-610", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 672, + "content": "bbox-611", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 673, + "content": "bbox-612", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 674, + "content": "bbox-613", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 675, + "content": "bbox-614", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 676, + "content": "bbox-615", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 677, + "content": "bbox-616", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 678, + "content": "bbox-617", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 679, + "content": "bbox-618", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 680, + "content": "bbox-619", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 681, + "content": "bbox-620", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 682, + "content": "bbox-621", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 683, + "content": "bbox-622", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 684, + "content": "bbox-623", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 685, + "content": "bbox-624", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 686, + "content": "bbox-625", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 687, + "content": "bbox-626", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 688, + "content": "bbox-627", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 689, + "content": "bbox-628", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 690, + "content": "bbox-629", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 691, + "content": "bbox-630", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 692, + "content": "bbox-631", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 693, + "content": "bbox-632", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 694, + "content": "bbox-633", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 695, + "content": "bbox-634", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 696, + "content": "bbox-635", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 697, + "content": "bbox-636", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 698, + "content": "bbox-637", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 699, + "content": "bbox-638", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 700, + "content": "bbox-639", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 701, + "content": "bbox-640", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 702, + "content": "bbox-641", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 703, + "content": "bbox-642", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 704, + "content": "bbox-643", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 705, + "content": "bbox-644", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 706, + "content": "bbox-645", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 707, + "content": "bbox-646", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 708, + "content": "bbox-647", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 709, + "content": "bbox-648", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 710, + "content": "bbox-649", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 711, + "content": "bbox-650", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 712, + "content": "bbox-651", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 713, + "content": "bbox-652", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 714, + "content": "bbox-653", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 715, + "content": "bbox-654", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 716, + "content": "bbox-655", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 717, + "content": "bbox-656", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 718, + "content": "bbox-657", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 719, + "content": "bbox-658", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 720, + "content": "bbox-659", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 721, + "content": "bbox-660", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 722, + "content": "bbox-661", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 723, + "content": "bbox-662", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 724, + "content": "bbox-663", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 725, + "content": "bbox-664", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 726, + "content": "bbox-665", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 727, + "content": "bbox-666", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 728, + "content": "bbox-667", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 729, + "content": "bbox-668", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 730, + "content": "bbox-669", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 731, + "content": "bbox-670", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 732, + "content": "bbox-671", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 733, + "content": "bbox-672", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 734, + "content": "bbox-673", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 735, + "content": "bbox-674", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 736, + "content": "bbox-675", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 737, + "content": "bbox-676", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 738, + "content": "bbox-677", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 739, + "content": "bbox-678", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 740, + "content": "bbox-679", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 741, + "content": "bbox-680", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 742, + "content": "bbox-681", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 743, + "content": "bbox-682", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 744, + "content": "bbox-683", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 745, + "content": "bbox-684", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 746, + "content": "bbox-685", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 747, + "content": "bbox-686", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 748, + "content": "bbox-687", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 749, + "content": "bbox-688", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 750, + "content": "bbox-689", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 751, + "content": "bbox-690", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 752, + "content": "bbox-691", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 753, + "content": "bbox-692", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 754, + "content": "bbox-693", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 755, + "content": "bbox-694", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 756, + "content": "bbox-695", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 757, + "content": "bbox-696", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 758, + "content": "bbox-697", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 759, + "content": "bbox-698", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 760, + "content": "bbox-699", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 761, + "content": "bbox-700", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 762, + "content": "bbox-701", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 763, + "content": "bbox-702", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 764, + "content": "bbox-703", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 765, + "content": "bbox-704", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 766, + "content": "bbox-705", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 767, + "content": "bbox-706", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 768, + "content": "bbox-707", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 769, + "content": "bbox-708", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 770, + "content": "bbox-709", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 771, + "content": "bbox-710", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 772, + "content": "bbox-711", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 773, + "content": "bbox-712", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 774, + "content": "bbox-713", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 775, + "content": "bbox-714", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 776, + "content": "bbox-715", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 777, + "content": "bbox-716", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 778, + "content": "bbox-717", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 779, + "content": "bbox-718", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 780, + "content": "bbox-719", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 781, + "content": "bbox-720", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 782, + "content": "bbox-721", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 783, + "content": "bbox-722", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 784, + "content": "bbox-723", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 785, + "content": "bbox-724", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 786, + "content": "bbox-725", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 787, + "content": "bbox-726", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 788, + "content": "bbox-727", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 789, + "content": "bbox-728", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 790, + "content": "bbox-729", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 791, + "content": "bbox-730", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 792, + "content": "bbox-731", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 793, + "content": "bbox-732", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 794, + "content": "bbox-733", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 795, + "content": "bbox-734", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 796, + "content": "bbox-735", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 797, + "content": "bbox-736", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 798, + "content": "bbox-737", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 799, + "content": "bbox-738", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 800, + "content": "bbox-739", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 801, + "content": "bbox-740", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 802, + "content": "bbox-741", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 803, + "content": "bbox-742", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 804, + "content": "bbox-743", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 805, + "content": "bbox-744", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 806, + "content": "bbox-745", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 807, + "content": "bbox-746", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 808, + "content": "bbox-747", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 809, + "content": "bbox-748", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 810, + "content": "bbox-749", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 811, + "content": "bbox-750", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 812, + "content": "bbox-751", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 813, + "content": "bbox-752", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 814, + "content": "bbox-753", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 815, + "content": "bbox-754", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 816, + "content": "bbox-755", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 817, + "content": "bbox-756", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 818, + "content": "bbox-757", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 819, + "content": "bbox-758", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 820, + "content": "bbox-759", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 821, + "content": "bbox-760", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 822, + "content": "bbox-761", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 823, + "content": "bbox-762", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 824, + "content": "bbox-763", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 825, + "content": "bbox-764", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 826, + "content": "bbox-765", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 827, + "content": "bbox-766", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 828, + "content": "bbox-767", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 829, + "content": "bbox-768", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 830, + "content": "bbox-769", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 831, + "content": "bbox-770", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 832, + "content": "bbox-771", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 833, + "content": "bbox-772", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 834, + "content": "bbox-773", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 835, + "content": "bbox-774", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 836, + "content": "bbox-775", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 837, + "content": "bbox-776", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 838, + "content": "bbox-777", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 839, + "content": "bbox-778", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 840, + "content": "bbox-779", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 841, + "content": "bbox-780", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 842, + "content": "bbox-781", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 843, + "content": "bbox-782", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 844, + "content": "bbox-783", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 845, + "content": "bbox-784", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 846, + "content": "bbox-785", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 847, + "content": "bbox-786", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 848, + "content": "bbox-787", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 849, + "content": "bbox-788", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 850, + "content": "bbox-789", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 851, + "content": "bbox-790", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 852, + "content": "bbox-791", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 853, + "content": "bbox-792", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 854, + "content": "bbox-793", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 855, + "content": "bbox-794", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 856, + "content": "bbox-795", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 857, + "content": "bbox-796", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 858, + "content": "bbox-797", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 859, + "content": "bbox-798", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 860, + "content": "bbox-799", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 861, + "content": "bbox-800", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 862, + "content": "bbox-801", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 863, + "content": "bbox-802", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 864, + "content": "bbox-803", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 865, + "content": "bbox-804", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 866, + "content": "bbox-805", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 867, + "content": "bbox-806", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 868, + "content": "bbox-807", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 869, + "content": "bbox-808", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 870, + "content": "bbox-809", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 871, + "content": "bbox-810", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 872, + "content": "bbox-811", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 873, + "content": "bbox-812", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 874, + "content": "bbox-813", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 875, + "content": "bbox-814", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 876, + "content": "bbox-815", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 877, + "content": "bbox-816", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 878, + "content": "bbox-817", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 879, + "content": "bbox-818", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 880, + "content": "bbox-819", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 881, + "content": "bbox-820", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 882, + "content": "bbox-821", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 883, + "content": "bbox-822", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 884, + "content": "bbox-823", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 885, + "content": "bbox-824", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 886, + "content": "bbox-825", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 887, + "content": "bbox-826", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 888, + "content": "bbox-827", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 889, + "content": "bbox-828", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 890, + "content": "bbox-829", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 891, + "content": "bbox-830", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 892, + "content": "bbox-831", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 893, + "content": "bbox-832", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 894, + "content": "bbox-833", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 895, + "content": "bbox-834", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 896, + "content": "bbox-835", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 897, + "content": "bbox-836", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 898, + "content": "bbox-837", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 899, + "content": "bbox-838", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 900, + "content": "bbox-839", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 901, + "content": "bbox-840", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 902, + "content": "bbox-841", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 903, + "content": "bbox-842", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 904, + "content": "bbox-843", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 905, + "content": "bbox-844", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 906, + "content": "bbox-845", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 907, + "content": "bbox-846", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 908, + "content": "bbox-847", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 909, + "content": "bbox-848", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 910, + "content": "bbox-849", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 911, + "content": "bbox-850", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 912, + "content": "bbox-851", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 913, + "content": "bbox-852", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 914, + "content": "bbox-853", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 915, + "content": "bbox-854", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 916, + "content": "bbox-855", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 917, + "content": "bbox-856", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 918, + "content": "bbox-857", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 919, + "content": "bbox-858", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 920, + "content": "bbox-859", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 921, + "content": "bbox-860", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 922, + "content": "bbox-861", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 923, + "content": "bbox-862", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 924, + "content": "bbox-863", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 925, + "content": "bbox-864", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 926, + "content": "bbox-865", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 927, + "content": "bbox-866", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 928, + "content": "bbox-867", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 929, + "content": "bbox-868", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 930, + "content": "bbox-869", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 931, + "content": "bbox-870", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 932, + "content": "bbox-871", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 933, + "content": "bbox-872", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 934, + "content": "bbox-873", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 935, + "content": "bbox-874", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 936, + "content": "bbox-875", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 937, + "content": "bbox-876", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 938, + "content": "bbox-877", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 939, + "content": "bbox-878", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 940, + "content": "bbox-879", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 941, + "content": "bbox-880", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 942, + "content": "bbox-881", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 943, + "content": "bbox-882", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 944, + "content": "bbox-883", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 945, + "content": "bbox-884", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 946, + "content": "bbox-885", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 947, + "content": "bbox-886", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 948, + "content": "bbox-887", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 949, + "content": "bbox-888", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 950, + "content": "bbox-889", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 951, + "content": "bbox-890", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 952, + "content": "bbox-891", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 953, + "content": "bbox-892", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 954, + "content": "bbox-893", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 955, + "content": "bbox-894", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 956, + "content": "bbox-895", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 957, + "content": "bbox-896", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 958, + "content": "bbox-897", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 959, + "content": "bbox-898", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + } + ], + "normalizer": { + "type": "Sequence", + "normalizers": [ + { + "type": "NFD" + }, + { + "type": "Lowercase" + }, + { + "type": "StripAccents" + }, + { + "type": "Strip", + "strip_left": true, + "strip_right": true + } + ] + }, + "pre_tokenizer": { + "type": "Whitespace" + }, + "post_processor": null, + "decoder": { + "type": "WordPiece", + "prefix": "##", + "cleanup": true + }, + "model": { + "type": "WordPiece", + "unk_token": "", + "continuing_subword_prefix": "##", + "max_input_chars_per_word": 100, + "vocab": { + "": 0, + "": 1, + "": 2, + "": 3, + "": 4, + "": 5, + "[table]": 6, + "[html]": 7, + "[cell]": 8, + "[bbox]": 9, + "[cell+bbox]": 10, + "[html+bbox]": 11, + "": 12, + "[": 13, + "]": 14, + "[": 16, + ">": 17, + "": 18, + "": 19, + "": 20, + "": 21, + "": 22, + "": 23, + " rowspan=\"2\"": 24, + " rowspan=\"3\"": 25, + " rowspan=\"4\"": 26, + " rowspan=\"5\"": 27, + " rowspan=\"6\"": 28, + " rowspan=\"7\"": 29, + " rowspan=\"8\"": 30, + " rowspan=\"9\"": 31, + " rowspan=\"10\"": 32, + " rowspan=\"11\"": 33, + " rowspan=\"12\"": 34, + " rowspan=\"13\"": 35, + " rowspan=\"14\"": 36, + " rowspan=\"15\"": 37, + " rowspan=\"16\"": 38, + " rowspan=\"17\"": 39, + " rowspan=\"18\"": 40, + " rowspan=\"19\"": 41, + " colspan=\"2\"": 42, + " colspan=\"3\"": 43, + " colspan=\"4\"": 44, + " colspan=\"5\"": 45, + " colspan=\"6\"": 46, + " colspan=\"7\"": 47, + " colspan=\"8\"": 48, + " colspan=\"9\"": 49, + " colspan=\"10\"": 50, + " colspan=\"11\"": 51, + " colspan=\"12\"": 52, + " colspan=\"13\"": 53, + " colspan=\"14\"": 54, + " colspan=\"15\"": 55, + " colspan=\"16\"": 56, + " colspan=\"17\"": 57, + " colspan=\"18\"": 58, + " colspan=\"19\"": 59, + " colspan=\"25\"": 60, + "bbox-0": 61, + "bbox-1": 62, + "bbox-2": 63, + "bbox-3": 64, + "bbox-4": 65, + "bbox-5": 66, + "bbox-6": 67, + "bbox-7": 68, + "bbox-8": 69, + "bbox-9": 70, + "bbox-10": 71, + "bbox-11": 72, + "bbox-12": 73, + "bbox-13": 74, + "bbox-14": 75, + "bbox-15": 76, + "bbox-16": 77, + "bbox-17": 78, + "bbox-18": 79, + "bbox-19": 80, + "bbox-20": 81, + "bbox-21": 82, + "bbox-22": 83, + "bbox-23": 84, + "bbox-24": 85, + "bbox-25": 86, + "bbox-26": 87, + "bbox-27": 88, + "bbox-28": 89, + "bbox-29": 90, + "bbox-30": 91, + "bbox-31": 92, + "bbox-32": 93, + "bbox-33": 94, + "bbox-34": 95, + "bbox-35": 96, + "bbox-36": 97, + "bbox-37": 98, + "bbox-38": 99, + "bbox-39": 100, + "bbox-40": 101, + "bbox-41": 102, + "bbox-42": 103, + "bbox-43": 104, + "bbox-44": 105, + "bbox-45": 106, + "bbox-46": 107, + "bbox-47": 108, + "bbox-48": 109, + "bbox-49": 110, + "bbox-50": 111, + "bbox-51": 112, + "bbox-52": 113, + "bbox-53": 114, + "bbox-54": 115, + "bbox-55": 116, + "bbox-56": 117, + "bbox-57": 118, + "bbox-58": 119, + "bbox-59": 120, + "bbox-60": 121, + "bbox-61": 122, + "bbox-62": 123, + "bbox-63": 124, + "bbox-64": 125, + "bbox-65": 126, + "bbox-66": 127, + "bbox-67": 128, + "bbox-68": 129, + "bbox-69": 130, + "bbox-70": 131, + "bbox-71": 132, + "bbox-72": 133, + "bbox-73": 134, + "bbox-74": 135, + "bbox-75": 136, + "bbox-76": 137, + "bbox-77": 138, + "bbox-78": 139, + "bbox-79": 140, + "bbox-80": 141, + "bbox-81": 142, + "bbox-82": 143, + "bbox-83": 144, + "bbox-84": 145, + "bbox-85": 146, + "bbox-86": 147, + "bbox-87": 148, + "bbox-88": 149, + "bbox-89": 150, + "bbox-90": 151, + "bbox-91": 152, + "bbox-92": 153, + "bbox-93": 154, + "bbox-94": 155, + "bbox-95": 156, + "bbox-96": 157, + "bbox-97": 158, + "bbox-98": 159, + "bbox-99": 160, + "bbox-100": 161, + "bbox-101": 162, + "bbox-102": 163, + "bbox-103": 164, + "bbox-104": 165, + "bbox-105": 166, + "bbox-106": 167, + "bbox-107": 168, + "bbox-108": 169, + "bbox-109": 170, + "bbox-110": 171, + "bbox-111": 172, + "bbox-112": 173, + "bbox-113": 174, + "bbox-114": 175, + "bbox-115": 176, + "bbox-116": 177, + "bbox-117": 178, + "bbox-118": 179, + "bbox-119": 180, + "bbox-120": 181, + "bbox-121": 182, + "bbox-122": 183, + "bbox-123": 184, + "bbox-124": 185, + "bbox-125": 186, + "bbox-126": 187, + "bbox-127": 188, + "bbox-128": 189, + "bbox-129": 190, + "bbox-130": 191, + "bbox-131": 192, + "bbox-132": 193, + "bbox-133": 194, + "bbox-134": 195, + "bbox-135": 196, + "bbox-136": 197, + "bbox-137": 198, + "bbox-138": 199, + "bbox-139": 200, + "bbox-140": 201, + "bbox-141": 202, + "bbox-142": 203, + "bbox-143": 204, + "bbox-144": 205, + "bbox-145": 206, + "bbox-146": 207, + "bbox-147": 208, + "bbox-148": 209, + "bbox-149": 210, + "bbox-150": 211, + "bbox-151": 212, + "bbox-152": 213, + "bbox-153": 214, + "bbox-154": 215, + "bbox-155": 216, + "bbox-156": 217, + "bbox-157": 218, + "bbox-158": 219, + "bbox-159": 220, + "bbox-160": 221, + "bbox-161": 222, + "bbox-162": 223, + "bbox-163": 224, + "bbox-164": 225, + "bbox-165": 226, + "bbox-166": 227, + "bbox-167": 228, + "bbox-168": 229, + "bbox-169": 230, + "bbox-170": 231, + "bbox-171": 232, + "bbox-172": 233, + "bbox-173": 234, + "bbox-174": 235, + "bbox-175": 236, + "bbox-176": 237, + "bbox-177": 238, + "bbox-178": 239, + "bbox-179": 240, + "bbox-180": 241, + "bbox-181": 242, + "bbox-182": 243, + "bbox-183": 244, + "bbox-184": 245, + "bbox-185": 246, + "bbox-186": 247, + "bbox-187": 248, + "bbox-188": 249, + "bbox-189": 250, + "bbox-190": 251, + "bbox-191": 252, + "bbox-192": 253, + "bbox-193": 254, + "bbox-194": 255, + "bbox-195": 256, + "bbox-196": 257, + "bbox-197": 258, + "bbox-198": 259, + "bbox-199": 260, + "bbox-200": 261, + "bbox-201": 262, + "bbox-202": 263, + "bbox-203": 264, + "bbox-204": 265, + "bbox-205": 266, + "bbox-206": 267, + "bbox-207": 268, + "bbox-208": 269, + "bbox-209": 270, + "bbox-210": 271, + "bbox-211": 272, + "bbox-212": 273, + "bbox-213": 274, + "bbox-214": 275, + "bbox-215": 276, + "bbox-216": 277, + "bbox-217": 278, + "bbox-218": 279, + "bbox-219": 280, + "bbox-220": 281, + "bbox-221": 282, + "bbox-222": 283, + "bbox-223": 284, + "bbox-224": 285, + "bbox-225": 286, + "bbox-226": 287, + "bbox-227": 288, + "bbox-228": 289, + "bbox-229": 290, + "bbox-230": 291, + "bbox-231": 292, + "bbox-232": 293, + "bbox-233": 294, + "bbox-234": 295, + "bbox-235": 296, + "bbox-236": 297, + "bbox-237": 298, + "bbox-238": 299, + "bbox-239": 300, + "bbox-240": 301, + "bbox-241": 302, + "bbox-242": 303, + "bbox-243": 304, + "bbox-244": 305, + "bbox-245": 306, + "bbox-246": 307, + "bbox-247": 308, + "bbox-248": 309, + "bbox-249": 310, + "bbox-250": 311, + "bbox-251": 312, + "bbox-252": 313, + "bbox-253": 314, + "bbox-254": 315, + "bbox-255": 316, + "bbox-256": 317, + "bbox-257": 318, + "bbox-258": 319, + "bbox-259": 320, + "bbox-260": 321, + "bbox-261": 322, + "bbox-262": 323, + "bbox-263": 324, + "bbox-264": 325, + "bbox-265": 326, + "bbox-266": 327, + "bbox-267": 328, + "bbox-268": 329, + "bbox-269": 330, + "bbox-270": 331, + "bbox-271": 332, + "bbox-272": 333, + "bbox-273": 334, + "bbox-274": 335, + "bbox-275": 336, + "bbox-276": 337, + "bbox-277": 338, + "bbox-278": 339, + "bbox-279": 340, + "bbox-280": 341, + "bbox-281": 342, + "bbox-282": 343, + "bbox-283": 344, + "bbox-284": 345, + "bbox-285": 346, + "bbox-286": 347, + "bbox-287": 348, + "bbox-288": 349, + "bbox-289": 350, + "bbox-290": 351, + "bbox-291": 352, + "bbox-292": 353, + "bbox-293": 354, + "bbox-294": 355, + "bbox-295": 356, + "bbox-296": 357, + "bbox-297": 358, + "bbox-298": 359, + "bbox-299": 360, + "bbox-300": 361, + "bbox-301": 362, + "bbox-302": 363, + "bbox-303": 364, + "bbox-304": 365, + "bbox-305": 366, + "bbox-306": 367, + "bbox-307": 368, + "bbox-308": 369, + "bbox-309": 370, + "bbox-310": 371, + "bbox-311": 372, + "bbox-312": 373, + "bbox-313": 374, + "bbox-314": 375, + "bbox-315": 376, + "bbox-316": 377, + "bbox-317": 378, + "bbox-318": 379, + "bbox-319": 380, + "bbox-320": 381, + "bbox-321": 382, + "bbox-322": 383, + "bbox-323": 384, + "bbox-324": 385, + "bbox-325": 386, + "bbox-326": 387, + "bbox-327": 388, + "bbox-328": 389, + "bbox-329": 390, + "bbox-330": 391, + "bbox-331": 392, + "bbox-332": 393, + "bbox-333": 394, + "bbox-334": 395, + "bbox-335": 396, + "bbox-336": 397, + "bbox-337": 398, + "bbox-338": 399, + "bbox-339": 400, + "bbox-340": 401, + "bbox-341": 402, + "bbox-342": 403, + "bbox-343": 404, + "bbox-344": 405, + "bbox-345": 406, + "bbox-346": 407, + "bbox-347": 408, + "bbox-348": 409, + "bbox-349": 410, + "bbox-350": 411, + "bbox-351": 412, + "bbox-352": 413, + "bbox-353": 414, + "bbox-354": 415, + "bbox-355": 416, + "bbox-356": 417, + "bbox-357": 418, + "bbox-358": 419, + "bbox-359": 420, + "bbox-360": 421, + "bbox-361": 422, + "bbox-362": 423, + "bbox-363": 424, + "bbox-364": 425, + "bbox-365": 426, + "bbox-366": 427, + "bbox-367": 428, + "bbox-368": 429, + "bbox-369": 430, + "bbox-370": 431, + "bbox-371": 432, + "bbox-372": 433, + "bbox-373": 434, + "bbox-374": 435, + "bbox-375": 436, + "bbox-376": 437, + "bbox-377": 438, + "bbox-378": 439, + "bbox-379": 440, + "bbox-380": 441, + "bbox-381": 442, + "bbox-382": 443, + "bbox-383": 444, + "bbox-384": 445, + "bbox-385": 446, + "bbox-386": 447, + "bbox-387": 448, + "bbox-388": 449, + "bbox-389": 450, + "bbox-390": 451, + "bbox-391": 452, + "bbox-392": 453, + "bbox-393": 454, + "bbox-394": 455, + "bbox-395": 456, + "bbox-396": 457, + "bbox-397": 458, + "bbox-398": 459, + "bbox-399": 460, + "bbox-400": 461, + "bbox-401": 462, + "bbox-402": 463, + "bbox-403": 464, + "bbox-404": 465, + "bbox-405": 466, + "bbox-406": 467, + "bbox-407": 468, + "bbox-408": 469, + "bbox-409": 470, + "bbox-410": 471, + "bbox-411": 472, + "bbox-412": 473, + "bbox-413": 474, + "bbox-414": 475, + "bbox-415": 476, + "bbox-416": 477, + "bbox-417": 478, + "bbox-418": 479, + "bbox-419": 480, + "bbox-420": 481, + "bbox-421": 482, + "bbox-422": 483, + "bbox-423": 484, + "bbox-424": 485, + "bbox-425": 486, + "bbox-426": 487, + "bbox-427": 488, + "bbox-428": 489, + "bbox-429": 490, + "bbox-430": 491, + "bbox-431": 492, + "bbox-432": 493, + "bbox-433": 494, + "bbox-434": 495, + "bbox-435": 496, + "bbox-436": 497, + "bbox-437": 498, + "bbox-438": 499, + "bbox-439": 500, + "bbox-440": 501, + "bbox-441": 502, + "bbox-442": 503, + "bbox-443": 504, + "bbox-444": 505, + "bbox-445": 506, + "bbox-446": 507, + "bbox-447": 508, + "bbox-448": 509, + "bbox-449": 510, + "bbox-450": 511, + "bbox-451": 512, + "bbox-452": 513, + "bbox-453": 514, + "bbox-454": 515, + "bbox-455": 516, + "bbox-456": 517, + "bbox-457": 518, + "bbox-458": 519, + "bbox-459": 520, + "bbox-460": 521, + "bbox-461": 522, + "bbox-462": 523, + "bbox-463": 524, + "bbox-464": 525, + "bbox-465": 526, + "bbox-466": 527, + "bbox-467": 528, + "bbox-468": 529, + "bbox-469": 530, + "bbox-470": 531, + "bbox-471": 532, + "bbox-472": 533, + "bbox-473": 534, + "bbox-474": 535, + "bbox-475": 536, + "bbox-476": 537, + "bbox-477": 538, + "bbox-478": 539, + "bbox-479": 540, + "bbox-480": 541, + "bbox-481": 542, + "bbox-482": 543, + "bbox-483": 544, + "bbox-484": 545, + "bbox-485": 546, + "bbox-486": 547, + "bbox-487": 548, + "bbox-488": 549, + "bbox-489": 550, + "bbox-490": 551, + "bbox-491": 552, + "bbox-492": 553, + "bbox-493": 554, + "bbox-494": 555, + "bbox-495": 556, + "bbox-496": 557, + "bbox-497": 558, + "bbox-498": 559, + "bbox-499": 560, + "bbox-500": 561, + "bbox-501": 562, + "bbox-502": 563, + "bbox-503": 564, + "bbox-504": 565, + "bbox-505": 566, + "bbox-506": 567, + "bbox-507": 568, + "bbox-508": 569, + "bbox-509": 570, + "bbox-510": 571, + "bbox-511": 572, + "bbox-512": 573, + "bbox-513": 574, + "bbox-514": 575, + "bbox-515": 576, + "bbox-516": 577, + "bbox-517": 578, + "bbox-518": 579, + "bbox-519": 580, + "bbox-520": 581, + "bbox-521": 582, + "bbox-522": 583, + "bbox-523": 584, + "bbox-524": 585, + "bbox-525": 586, + "bbox-526": 587, + "bbox-527": 588, + "bbox-528": 589, + "bbox-529": 590, + "bbox-530": 591, + "bbox-531": 592, + "bbox-532": 593, + "bbox-533": 594, + "bbox-534": 595, + "bbox-535": 596, + "bbox-536": 597, + "bbox-537": 598, + "bbox-538": 599, + "bbox-539": 600, + "bbox-540": 601, + "bbox-541": 602, + "bbox-542": 603, + "bbox-543": 604, + "bbox-544": 605, + "bbox-545": 606, + "bbox-546": 607, + "bbox-547": 608, + "bbox-548": 609, + "bbox-549": 610, + "bbox-550": 611, + "bbox-551": 612, + "bbox-552": 613, + "bbox-553": 614, + "bbox-554": 615, + "bbox-555": 616, + "bbox-556": 617, + "bbox-557": 618, + "bbox-558": 619, + "bbox-559": 620, + "bbox-560": 621, + "bbox-561": 622, + "bbox-562": 623, + "bbox-563": 624, + "bbox-564": 625, + "bbox-565": 626, + "bbox-566": 627, + "bbox-567": 628, + "bbox-568": 629, + "bbox-569": 630, + "bbox-570": 631, + "bbox-571": 632, + "bbox-572": 633, + "bbox-573": 634, + "bbox-574": 635, + "bbox-575": 636, + "bbox-576": 637, + "bbox-577": 638, + "bbox-578": 639, + "bbox-579": 640, + "bbox-580": 641, + "bbox-581": 642, + "bbox-582": 643, + "bbox-583": 644, + "bbox-584": 645, + "bbox-585": 646, + "bbox-586": 647, + "bbox-587": 648, + "bbox-588": 649, + "bbox-589": 650, + "bbox-590": 651, + "bbox-591": 652, + "bbox-592": 653, + "bbox-593": 654, + "bbox-594": 655, + "bbox-595": 656, + "bbox-596": 657, + "bbox-597": 658, + "bbox-598": 659, + "bbox-599": 660, + "bbox-600": 661, + "bbox-601": 662, + "bbox-602": 663, + "bbox-603": 664, + "bbox-604": 665, + "bbox-605": 666, + "bbox-606": 667, + "bbox-607": 668, + "bbox-608": 669, + "bbox-609": 670, + "bbox-610": 671, + "bbox-611": 672, + "bbox-612": 673, + "bbox-613": 674, + "bbox-614": 675, + "bbox-615": 676, + "bbox-616": 677, + "bbox-617": 678, + "bbox-618": 679, + "bbox-619": 680, + "bbox-620": 681, + "bbox-621": 682, + "bbox-622": 683, + "bbox-623": 684, + "bbox-624": 685, + "bbox-625": 686, + "bbox-626": 687, + "bbox-627": 688, + "bbox-628": 689, + "bbox-629": 690, + "bbox-630": 691, + "bbox-631": 692, + "bbox-632": 693, + "bbox-633": 694, + "bbox-634": 695, + "bbox-635": 696, + "bbox-636": 697, + "bbox-637": 698, + "bbox-638": 699, + "bbox-639": 700, + "bbox-640": 701, + "bbox-641": 702, + "bbox-642": 703, + "bbox-643": 704, + "bbox-644": 705, + "bbox-645": 706, + "bbox-646": 707, + "bbox-647": 708, + "bbox-648": 709, + "bbox-649": 710, + "bbox-650": 711, + "bbox-651": 712, + "bbox-652": 713, + "bbox-653": 714, + "bbox-654": 715, + "bbox-655": 716, + "bbox-656": 717, + "bbox-657": 718, + "bbox-658": 719, + "bbox-659": 720, + "bbox-660": 721, + "bbox-661": 722, + "bbox-662": 723, + "bbox-663": 724, + "bbox-664": 725, + "bbox-665": 726, + "bbox-666": 727, + "bbox-667": 728, + "bbox-668": 729, + "bbox-669": 730, + "bbox-670": 731, + "bbox-671": 732, + "bbox-672": 733, + "bbox-673": 734, + "bbox-674": 735, + "bbox-675": 736, + "bbox-676": 737, + "bbox-677": 738, + "bbox-678": 739, + "bbox-679": 740, + "bbox-680": 741, + "bbox-681": 742, + "bbox-682": 743, + "bbox-683": 744, + "bbox-684": 745, + "bbox-685": 746, + "bbox-686": 747, + "bbox-687": 748, + "bbox-688": 749, + "bbox-689": 750, + "bbox-690": 751, + "bbox-691": 752, + "bbox-692": 753, + "bbox-693": 754, + "bbox-694": 755, + "bbox-695": 756, + "bbox-696": 757, + "bbox-697": 758, + "bbox-698": 759, + "bbox-699": 760, + "bbox-700": 761, + "bbox-701": 762, + "bbox-702": 763, + "bbox-703": 764, + "bbox-704": 765, + "bbox-705": 766, + "bbox-706": 767, + "bbox-707": 768, + "bbox-708": 769, + "bbox-709": 770, + "bbox-710": 771, + "bbox-711": 772, + "bbox-712": 773, + "bbox-713": 774, + "bbox-714": 775, + "bbox-715": 776, + "bbox-716": 777, + "bbox-717": 778, + "bbox-718": 779, + "bbox-719": 780, + "bbox-720": 781, + "bbox-721": 782, + "bbox-722": 783, + "bbox-723": 784, + "bbox-724": 785, + "bbox-725": 786, + "bbox-726": 787, + "bbox-727": 788, + "bbox-728": 789, + "bbox-729": 790, + "bbox-730": 791, + "bbox-731": 792, + "bbox-732": 793, + "bbox-733": 794, + "bbox-734": 795, + "bbox-735": 796, + "bbox-736": 797, + "bbox-737": 798, + "bbox-738": 799, + "bbox-739": 800, + "bbox-740": 801, + "bbox-741": 802, + "bbox-742": 803, + "bbox-743": 804, + "bbox-744": 805, + "bbox-745": 806, + "bbox-746": 807, + "bbox-747": 808, + "bbox-748": 809, + "bbox-749": 810, + "bbox-750": 811, + "bbox-751": 812, + "bbox-752": 813, + "bbox-753": 814, + "bbox-754": 815, + "bbox-755": 816, + "bbox-756": 817, + "bbox-757": 818, + "bbox-758": 819, + "bbox-759": 820, + "bbox-760": 821, + "bbox-761": 822, + "bbox-762": 823, + "bbox-763": 824, + "bbox-764": 825, + "bbox-765": 826, + "bbox-766": 827, + "bbox-767": 828, + "bbox-768": 829, + "bbox-769": 830, + "bbox-770": 831, + "bbox-771": 832, + "bbox-772": 833, + "bbox-773": 834, + "bbox-774": 835, + "bbox-775": 836, + "bbox-776": 837, + "bbox-777": 838, + "bbox-778": 839, + "bbox-779": 840, + "bbox-780": 841, + "bbox-781": 842, + "bbox-782": 843, + "bbox-783": 844, + "bbox-784": 845, + "bbox-785": 846, + "bbox-786": 847, + "bbox-787": 848, + "bbox-788": 849, + "bbox-789": 850, + "bbox-790": 851, + "bbox-791": 852, + "bbox-792": 853, + "bbox-793": 854, + "bbox-794": 855, + "bbox-795": 856, + "bbox-796": 857, + "bbox-797": 858, + "bbox-798": 859, + "bbox-799": 860, + "bbox-800": 861, + "bbox-801": 862, + "bbox-802": 863, + "bbox-803": 864, + "bbox-804": 865, + "bbox-805": 866, + "bbox-806": 867, + "bbox-807": 868, + "bbox-808": 869, + "bbox-809": 870, + "bbox-810": 871, + "bbox-811": 872, + "bbox-812": 873, + "bbox-813": 874, + "bbox-814": 875, + "bbox-815": 876, + "bbox-816": 877, + "bbox-817": 878, + "bbox-818": 879, + "bbox-819": 880, + "bbox-820": 881, + "bbox-821": 882, + "bbox-822": 883, + "bbox-823": 884, + "bbox-824": 885, + "bbox-825": 886, + "bbox-826": 887, + "bbox-827": 888, + "bbox-828": 889, + "bbox-829": 890, + "bbox-830": 891, + "bbox-831": 892, + "bbox-832": 893, + "bbox-833": 894, + "bbox-834": 895, + "bbox-835": 896, + "bbox-836": 897, + "bbox-837": 898, + "bbox-838": 899, + "bbox-839": 900, + "bbox-840": 901, + "bbox-841": 902, + "bbox-842": 903, + "bbox-843": 904, + "bbox-844": 905, + "bbox-845": 906, + "bbox-846": 907, + "bbox-847": 908, + "bbox-848": 909, + "bbox-849": 910, + "bbox-850": 911, + "bbox-851": 912, + "bbox-852": 913, + "bbox-853": 914, + "bbox-854": 915, + "bbox-855": 916, + "bbox-856": 917, + "bbox-857": 918, + "bbox-858": 919, + "bbox-859": 920, + "bbox-860": 921, + "bbox-861": 922, + "bbox-862": 923, + "bbox-863": 924, + "bbox-864": 925, + "bbox-865": 926, + "bbox-866": 927, + "bbox-867": 928, + "bbox-868": 929, + "bbox-869": 930, + "bbox-870": 931, + "bbox-871": 932, + "bbox-872": 933, + "bbox-873": 934, + "bbox-874": 935, + "bbox-875": 936, + "bbox-876": 937, + "bbox-877": 938, + "bbox-878": 939, + "bbox-879": 940, + "bbox-880": 941, + "bbox-881": 942, + "bbox-882": 943, + "bbox-883": 944, + "bbox-884": 945, + "bbox-885": 946, + "bbox-886": 947, + "bbox-887": 948, + "bbox-888": 949, + "bbox-889": 950, + "bbox-890": 951, + "bbox-891": 952, + "bbox-892": 953, + "bbox-893": 954, + "bbox-894": 955, + "bbox-895": 956, + "bbox-896": 957, + "bbox-897": 958, + "bbox-898": 959 + } + } +} \ No newline at end of file diff --git a/rapid_table/utils.py b/rapid_table/utils/utils.py similarity index 100% rename from rapid_table/utils.py rename to rapid_table/utils/utils.py From dbfcc4d2b45e04dbd134696f9608ad1356a7d9b5 Mon Sep 17 00:00:00 2001 From: SWHL Date: Wed, 8 Jan 2025 21:18:49 +0800 Subject: [PATCH 15/23] chore: update gitignore --- .gitignore | 2 + rapid_table/models/vocab.json | 9650 --------------------------------- 2 files changed, 2 insertions(+), 9650 deletions(-) delete mode 100644 rapid_table/models/vocab.json diff --git a/.gitignore b/.gitignore index 378c8a8..e7007dc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +*.json + # Created by .ignore support plugin (hsz.mobi) ### Python template # Byte-compiled / optimized / DLL files diff --git a/rapid_table/models/vocab.json b/rapid_table/models/vocab.json deleted file mode 100644 index c13ccef..0000000 --- a/rapid_table/models/vocab.json +++ /dev/null @@ -1,9650 +0,0 @@ -{ - "version": "1.0", - "truncation": null, - "padding": { - "strategy": "BatchLongest", - "direction": "Right", - "pad_to_multiple_of": null, - "pad_id": 2, - "pad_type_id": 0, - "pad_token": "" - }, - "added_tokens": [ - { - "id": 0, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 1, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 2, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 3, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 4, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 5, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 6, - "content": "[table]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 7, - "content": "[html]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 8, - "content": "[cell]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 9, - "content": "[bbox]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 10, - "content": "[cell+bbox]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 11, - "content": "[html+bbox]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 12, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 13, - "content": "[", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 14, - "content": "]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 15, - "content": "[", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 17, - "content": ">", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 18, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 19, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 20, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 21, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 22, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 23, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 24, - "content": " rowspan=\"2\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 25, - "content": " rowspan=\"3\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 26, - "content": " rowspan=\"4\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 27, - "content": " rowspan=\"5\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 28, - "content": " rowspan=\"6\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 29, - "content": " rowspan=\"7\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 30, - "content": " rowspan=\"8\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 31, - "content": " rowspan=\"9\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 32, - "content": " rowspan=\"10\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 33, - "content": " rowspan=\"11\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 34, - "content": " rowspan=\"12\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 35, - "content": " rowspan=\"13\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 36, - "content": " rowspan=\"14\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 37, - "content": " rowspan=\"15\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 38, - "content": " rowspan=\"16\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 39, - "content": " rowspan=\"17\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 40, - "content": " rowspan=\"18\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 41, - "content": " rowspan=\"19\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 42, - "content": " colspan=\"2\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 43, - "content": " colspan=\"3\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 44, - "content": " colspan=\"4\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 45, - "content": " colspan=\"5\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 46, - "content": " colspan=\"6\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 47, - "content": " colspan=\"7\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 48, - "content": " colspan=\"8\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 49, - "content": " colspan=\"9\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 50, - "content": " colspan=\"10\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 51, - "content": " colspan=\"11\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 52, - "content": " colspan=\"12\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 53, - "content": " colspan=\"13\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 54, - "content": " colspan=\"14\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 55, - "content": " colspan=\"15\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 56, - "content": " colspan=\"16\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 57, - "content": " colspan=\"17\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 58, - "content": " colspan=\"18\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 59, - "content": " colspan=\"19\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 60, - "content": " colspan=\"25\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 61, - "content": "bbox-0", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 62, - "content": "bbox-1", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 63, - "content": "bbox-2", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 64, - "content": "bbox-3", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 65, - "content": "bbox-4", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 66, - "content": "bbox-5", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 67, - "content": "bbox-6", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 68, - "content": "bbox-7", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 69, - "content": "bbox-8", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 70, - "content": "bbox-9", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 71, - "content": "bbox-10", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 72, - "content": "bbox-11", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 73, - "content": "bbox-12", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 74, - "content": "bbox-13", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 75, - "content": "bbox-14", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 76, - "content": "bbox-15", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 77, - "content": "bbox-16", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 78, - "content": "bbox-17", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 79, - "content": "bbox-18", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 80, - "content": "bbox-19", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 81, - "content": "bbox-20", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 82, - "content": "bbox-21", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 83, - "content": "bbox-22", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 84, - "content": "bbox-23", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 85, - "content": "bbox-24", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 86, - "content": "bbox-25", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 87, - "content": "bbox-26", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 88, - "content": "bbox-27", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 89, - "content": "bbox-28", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 90, - "content": "bbox-29", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 91, - "content": "bbox-30", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 92, - "content": "bbox-31", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 93, - "content": "bbox-32", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 94, - "content": "bbox-33", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 95, - "content": "bbox-34", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 96, - "content": "bbox-35", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 97, - "content": "bbox-36", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 98, - "content": "bbox-37", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 99, - "content": "bbox-38", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 100, - "content": "bbox-39", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 101, - "content": "bbox-40", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 102, - "content": "bbox-41", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 103, - "content": "bbox-42", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 104, - "content": "bbox-43", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 105, - "content": "bbox-44", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 106, - "content": "bbox-45", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 107, - "content": "bbox-46", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 108, - "content": "bbox-47", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 109, - "content": "bbox-48", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 110, - "content": "bbox-49", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 111, - "content": "bbox-50", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 112, - "content": "bbox-51", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 113, - "content": "bbox-52", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 114, - "content": "bbox-53", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 115, - "content": "bbox-54", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 116, - "content": "bbox-55", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 117, - "content": "bbox-56", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 118, - "content": "bbox-57", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 119, - "content": "bbox-58", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 120, - "content": "bbox-59", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 121, - "content": "bbox-60", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 122, - "content": "bbox-61", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 123, - "content": "bbox-62", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 124, - "content": "bbox-63", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 125, - "content": "bbox-64", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 126, - "content": "bbox-65", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 127, - "content": "bbox-66", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 128, - "content": "bbox-67", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 129, - "content": "bbox-68", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 130, - "content": "bbox-69", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 131, - "content": "bbox-70", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 132, - "content": "bbox-71", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 133, - "content": "bbox-72", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 134, - "content": "bbox-73", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 135, - "content": "bbox-74", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 136, - "content": "bbox-75", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 137, - "content": "bbox-76", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 138, - "content": "bbox-77", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 139, - "content": "bbox-78", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 140, - "content": "bbox-79", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 141, - "content": "bbox-80", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 142, - "content": "bbox-81", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 143, - "content": "bbox-82", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 144, - "content": "bbox-83", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 145, - "content": "bbox-84", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 146, - "content": "bbox-85", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 147, - "content": "bbox-86", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 148, - "content": "bbox-87", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 149, - "content": "bbox-88", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 150, - "content": "bbox-89", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 151, - "content": "bbox-90", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 152, - "content": "bbox-91", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 153, - "content": "bbox-92", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 154, - "content": "bbox-93", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 155, - "content": "bbox-94", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 156, - "content": "bbox-95", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 157, - "content": "bbox-96", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 158, - "content": "bbox-97", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 159, - "content": "bbox-98", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 160, - "content": "bbox-99", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 161, - "content": "bbox-100", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 162, - "content": "bbox-101", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 163, - "content": "bbox-102", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 164, - "content": "bbox-103", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 165, - "content": "bbox-104", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 166, - "content": "bbox-105", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 167, - "content": "bbox-106", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 168, - "content": "bbox-107", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 169, - "content": "bbox-108", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 170, - "content": "bbox-109", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 171, - "content": "bbox-110", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 172, - "content": "bbox-111", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 173, - "content": "bbox-112", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 174, - "content": "bbox-113", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 175, - "content": "bbox-114", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 176, - "content": "bbox-115", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 177, - "content": "bbox-116", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 178, - "content": "bbox-117", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 179, - "content": "bbox-118", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 180, - "content": "bbox-119", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 181, - "content": "bbox-120", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 182, - "content": "bbox-121", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 183, - "content": "bbox-122", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 184, - "content": "bbox-123", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 185, - "content": "bbox-124", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 186, - "content": "bbox-125", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 187, - "content": "bbox-126", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 188, - "content": "bbox-127", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 189, - "content": "bbox-128", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 190, - "content": "bbox-129", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 191, - "content": "bbox-130", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 192, - "content": "bbox-131", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 193, - "content": "bbox-132", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 194, - "content": "bbox-133", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 195, - "content": "bbox-134", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 196, - "content": "bbox-135", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 197, - "content": "bbox-136", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 198, - "content": "bbox-137", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 199, - "content": "bbox-138", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 200, - "content": "bbox-139", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 201, - "content": "bbox-140", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 202, - "content": "bbox-141", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 203, - "content": "bbox-142", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 204, - "content": "bbox-143", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 205, - "content": "bbox-144", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 206, - "content": "bbox-145", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 207, - "content": "bbox-146", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 208, - "content": "bbox-147", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 209, - "content": "bbox-148", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 210, - "content": "bbox-149", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 211, - "content": "bbox-150", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 212, - "content": "bbox-151", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 213, - "content": "bbox-152", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 214, - "content": "bbox-153", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 215, - "content": "bbox-154", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 216, - "content": "bbox-155", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 217, - "content": "bbox-156", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 218, - "content": "bbox-157", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 219, - "content": "bbox-158", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 220, - "content": "bbox-159", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 221, - "content": "bbox-160", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 222, - "content": "bbox-161", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 223, - "content": "bbox-162", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 224, - "content": "bbox-163", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 225, - "content": "bbox-164", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 226, - "content": "bbox-165", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 227, - "content": "bbox-166", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 228, - "content": "bbox-167", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 229, - "content": "bbox-168", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 230, - "content": "bbox-169", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 231, - "content": "bbox-170", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 232, - "content": "bbox-171", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 233, - "content": "bbox-172", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 234, - "content": "bbox-173", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 235, - "content": "bbox-174", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 236, - "content": "bbox-175", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 237, - "content": "bbox-176", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 238, - "content": "bbox-177", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 239, - "content": "bbox-178", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 240, - "content": "bbox-179", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 241, - "content": "bbox-180", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 242, - "content": "bbox-181", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 243, - "content": "bbox-182", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 244, - "content": "bbox-183", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 245, - "content": "bbox-184", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 246, - "content": "bbox-185", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 247, - "content": "bbox-186", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 248, - "content": "bbox-187", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 249, - "content": "bbox-188", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 250, - "content": "bbox-189", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 251, - "content": "bbox-190", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 252, - "content": "bbox-191", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 253, - "content": "bbox-192", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 254, - "content": "bbox-193", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 255, - "content": "bbox-194", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 256, - "content": "bbox-195", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 257, - "content": "bbox-196", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 258, - "content": "bbox-197", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 259, - "content": "bbox-198", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 260, - "content": "bbox-199", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 261, - "content": "bbox-200", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 262, - "content": "bbox-201", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 263, - "content": "bbox-202", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 264, - "content": "bbox-203", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 265, - "content": "bbox-204", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 266, - "content": "bbox-205", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 267, - "content": "bbox-206", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 268, - "content": "bbox-207", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 269, - "content": "bbox-208", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 270, - "content": "bbox-209", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 271, - "content": "bbox-210", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 272, - "content": "bbox-211", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 273, - "content": "bbox-212", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 274, - "content": "bbox-213", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 275, - "content": "bbox-214", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 276, - "content": "bbox-215", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 277, - "content": "bbox-216", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 278, - "content": "bbox-217", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 279, - "content": "bbox-218", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 280, - "content": "bbox-219", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 281, - "content": "bbox-220", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 282, - "content": "bbox-221", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 283, - "content": "bbox-222", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 284, - "content": "bbox-223", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 285, - "content": "bbox-224", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 286, - "content": "bbox-225", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 287, - "content": "bbox-226", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 288, - "content": "bbox-227", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 289, - "content": "bbox-228", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 290, - "content": "bbox-229", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 291, - "content": "bbox-230", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 292, - "content": "bbox-231", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 293, - "content": "bbox-232", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 294, - "content": "bbox-233", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 295, - "content": "bbox-234", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 296, - "content": "bbox-235", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 297, - "content": "bbox-236", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 298, - "content": "bbox-237", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 299, - "content": "bbox-238", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 300, - "content": "bbox-239", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 301, - "content": "bbox-240", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 302, - "content": "bbox-241", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 303, - "content": "bbox-242", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 304, - "content": "bbox-243", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 305, - "content": "bbox-244", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 306, - "content": "bbox-245", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 307, - "content": "bbox-246", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 308, - "content": "bbox-247", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 309, - "content": "bbox-248", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 310, - "content": "bbox-249", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 311, - "content": "bbox-250", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 312, - "content": "bbox-251", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 313, - "content": "bbox-252", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 314, - "content": "bbox-253", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 315, - "content": "bbox-254", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 316, - "content": "bbox-255", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 317, - "content": "bbox-256", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 318, - "content": "bbox-257", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 319, - "content": "bbox-258", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 320, - "content": "bbox-259", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 321, - "content": "bbox-260", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 322, - "content": "bbox-261", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 323, - "content": "bbox-262", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 324, - "content": "bbox-263", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 325, - "content": "bbox-264", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 326, - "content": "bbox-265", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 327, - "content": "bbox-266", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 328, - "content": "bbox-267", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 329, - "content": "bbox-268", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 330, - "content": "bbox-269", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 331, - "content": "bbox-270", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 332, - "content": "bbox-271", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 333, - "content": "bbox-272", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 334, - "content": "bbox-273", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 335, - "content": "bbox-274", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 336, - "content": "bbox-275", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 337, - "content": "bbox-276", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 338, - "content": "bbox-277", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 339, - "content": "bbox-278", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 340, - "content": "bbox-279", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 341, - "content": "bbox-280", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 342, - "content": "bbox-281", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 343, - "content": "bbox-282", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 344, - "content": "bbox-283", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 345, - "content": "bbox-284", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 346, - "content": "bbox-285", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 347, - "content": "bbox-286", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 348, - "content": "bbox-287", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 349, - "content": "bbox-288", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 350, - "content": "bbox-289", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 351, - "content": "bbox-290", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 352, - "content": "bbox-291", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 353, - "content": "bbox-292", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 354, - "content": "bbox-293", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 355, - "content": "bbox-294", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 356, - "content": "bbox-295", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 357, - "content": "bbox-296", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 358, - "content": "bbox-297", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 359, - "content": "bbox-298", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 360, - "content": "bbox-299", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 361, - "content": "bbox-300", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 362, - "content": "bbox-301", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 363, - "content": "bbox-302", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 364, - "content": "bbox-303", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 365, - "content": "bbox-304", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 366, - "content": "bbox-305", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 367, - "content": "bbox-306", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 368, - "content": "bbox-307", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 369, - "content": "bbox-308", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 370, - "content": "bbox-309", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 371, - "content": "bbox-310", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 372, - "content": "bbox-311", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 373, - "content": "bbox-312", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 374, - "content": "bbox-313", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 375, - "content": "bbox-314", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 376, - "content": "bbox-315", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 377, - "content": "bbox-316", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 378, - "content": "bbox-317", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 379, - "content": "bbox-318", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 380, - "content": "bbox-319", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 381, - "content": "bbox-320", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 382, - "content": "bbox-321", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 383, - "content": "bbox-322", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 384, - "content": "bbox-323", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 385, - "content": "bbox-324", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 386, - "content": "bbox-325", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 387, - "content": "bbox-326", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 388, - "content": "bbox-327", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 389, - "content": "bbox-328", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 390, - "content": "bbox-329", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 391, - "content": "bbox-330", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 392, - "content": "bbox-331", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 393, - "content": "bbox-332", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 394, - "content": "bbox-333", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 395, - "content": "bbox-334", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 396, - "content": "bbox-335", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 397, - "content": "bbox-336", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 398, - "content": "bbox-337", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 399, - "content": "bbox-338", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 400, - "content": "bbox-339", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 401, - "content": "bbox-340", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 402, - "content": "bbox-341", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 403, - "content": "bbox-342", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 404, - "content": "bbox-343", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 405, - "content": "bbox-344", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 406, - "content": "bbox-345", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 407, - "content": "bbox-346", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 408, - "content": "bbox-347", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 409, - "content": "bbox-348", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 410, - "content": "bbox-349", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 411, - "content": "bbox-350", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 412, - "content": "bbox-351", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 413, - "content": "bbox-352", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 414, - "content": "bbox-353", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 415, - "content": "bbox-354", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 416, - "content": "bbox-355", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 417, - "content": "bbox-356", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 418, - "content": "bbox-357", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 419, - "content": "bbox-358", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 420, - "content": "bbox-359", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 421, - "content": "bbox-360", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 422, - "content": "bbox-361", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 423, - "content": "bbox-362", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 424, - "content": "bbox-363", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 425, - "content": "bbox-364", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 426, - "content": "bbox-365", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 427, - "content": "bbox-366", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 428, - "content": "bbox-367", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 429, - "content": "bbox-368", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 430, - "content": "bbox-369", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 431, - "content": "bbox-370", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 432, - "content": "bbox-371", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 433, - "content": "bbox-372", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 434, - "content": "bbox-373", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 435, - "content": "bbox-374", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 436, - "content": "bbox-375", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 437, - "content": "bbox-376", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 438, - "content": "bbox-377", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 439, - "content": "bbox-378", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 440, - "content": "bbox-379", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 441, - "content": "bbox-380", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 442, - "content": "bbox-381", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 443, - "content": "bbox-382", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 444, - "content": "bbox-383", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 445, - "content": "bbox-384", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 446, - "content": "bbox-385", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 447, - "content": "bbox-386", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 448, - "content": "bbox-387", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 449, - "content": "bbox-388", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 450, - "content": "bbox-389", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 451, - "content": "bbox-390", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 452, - "content": "bbox-391", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 453, - "content": "bbox-392", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 454, - "content": "bbox-393", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 455, - "content": "bbox-394", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 456, - "content": "bbox-395", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 457, - "content": "bbox-396", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 458, - "content": "bbox-397", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 459, - "content": "bbox-398", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 460, - "content": "bbox-399", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 461, - "content": "bbox-400", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 462, - "content": "bbox-401", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 463, - "content": "bbox-402", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 464, - "content": "bbox-403", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 465, - "content": "bbox-404", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 466, - "content": "bbox-405", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 467, - "content": "bbox-406", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 468, - "content": "bbox-407", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 469, - "content": "bbox-408", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 470, - "content": "bbox-409", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 471, - "content": "bbox-410", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 472, - "content": "bbox-411", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 473, - "content": "bbox-412", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 474, - "content": "bbox-413", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 475, - "content": "bbox-414", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 476, - "content": "bbox-415", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 477, - "content": "bbox-416", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 478, - "content": "bbox-417", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 479, - "content": "bbox-418", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 480, - "content": "bbox-419", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 481, - "content": "bbox-420", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 482, - "content": "bbox-421", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 483, - "content": "bbox-422", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 484, - "content": "bbox-423", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 485, - "content": "bbox-424", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 486, - "content": "bbox-425", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 487, - "content": "bbox-426", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 488, - "content": "bbox-427", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 489, - "content": "bbox-428", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 490, - "content": "bbox-429", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 491, - "content": "bbox-430", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 492, - "content": "bbox-431", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 493, - "content": "bbox-432", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 494, - "content": "bbox-433", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 495, - "content": "bbox-434", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 496, - "content": "bbox-435", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 497, - "content": "bbox-436", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 498, - "content": "bbox-437", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 499, - "content": "bbox-438", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 500, - "content": "bbox-439", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 501, - "content": "bbox-440", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 502, - "content": "bbox-441", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 503, - "content": "bbox-442", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 504, - "content": "bbox-443", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 505, - "content": "bbox-444", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 506, - "content": "bbox-445", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 507, - "content": "bbox-446", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 508, - "content": "bbox-447", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 509, - "content": "bbox-448", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 510, - "content": "bbox-449", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 511, - "content": "bbox-450", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 512, - "content": "bbox-451", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 513, - "content": "bbox-452", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 514, - "content": "bbox-453", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 515, - "content": "bbox-454", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 516, - "content": "bbox-455", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 517, - "content": "bbox-456", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 518, - "content": "bbox-457", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 519, - "content": "bbox-458", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 520, - "content": "bbox-459", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 521, - "content": "bbox-460", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 522, - "content": "bbox-461", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 523, - "content": "bbox-462", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 524, - "content": "bbox-463", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 525, - "content": "bbox-464", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 526, - "content": "bbox-465", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 527, - "content": "bbox-466", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 528, - "content": "bbox-467", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 529, - "content": "bbox-468", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 530, - "content": "bbox-469", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 531, - "content": "bbox-470", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 532, - "content": "bbox-471", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 533, - "content": "bbox-472", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 534, - "content": "bbox-473", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 535, - "content": "bbox-474", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 536, - "content": "bbox-475", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 537, - "content": "bbox-476", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 538, - "content": "bbox-477", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 539, - "content": "bbox-478", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 540, - "content": "bbox-479", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 541, - "content": "bbox-480", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 542, - "content": "bbox-481", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 543, - "content": "bbox-482", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 544, - "content": "bbox-483", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 545, - "content": "bbox-484", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 546, - "content": "bbox-485", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 547, - "content": "bbox-486", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 548, - "content": "bbox-487", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 549, - "content": "bbox-488", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 550, - "content": "bbox-489", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 551, - "content": "bbox-490", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 552, - "content": "bbox-491", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 553, - "content": "bbox-492", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 554, - "content": "bbox-493", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 555, - "content": "bbox-494", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 556, - "content": "bbox-495", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 557, - "content": "bbox-496", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 558, - "content": "bbox-497", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 559, - "content": "bbox-498", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 560, - "content": "bbox-499", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 561, - "content": "bbox-500", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 562, - "content": "bbox-501", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 563, - "content": "bbox-502", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 564, - "content": "bbox-503", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 565, - "content": "bbox-504", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 566, - "content": "bbox-505", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 567, - "content": "bbox-506", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 568, - "content": "bbox-507", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 569, - "content": "bbox-508", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 570, - "content": "bbox-509", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 571, - "content": "bbox-510", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 572, - "content": "bbox-511", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 573, - "content": "bbox-512", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 574, - "content": "bbox-513", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 575, - "content": "bbox-514", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 576, - "content": "bbox-515", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 577, - "content": "bbox-516", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 578, - "content": "bbox-517", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 579, - "content": "bbox-518", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 580, - "content": "bbox-519", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 581, - "content": "bbox-520", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 582, - "content": "bbox-521", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 583, - "content": "bbox-522", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 584, - "content": "bbox-523", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 585, - "content": "bbox-524", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 586, - "content": "bbox-525", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 587, - "content": "bbox-526", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 588, - "content": "bbox-527", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 589, - "content": "bbox-528", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 590, - "content": "bbox-529", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 591, - "content": "bbox-530", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 592, - "content": "bbox-531", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 593, - "content": "bbox-532", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 594, - "content": "bbox-533", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 595, - "content": "bbox-534", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 596, - "content": "bbox-535", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 597, - "content": "bbox-536", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 598, - "content": "bbox-537", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 599, - "content": "bbox-538", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 600, - "content": "bbox-539", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 601, - "content": "bbox-540", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 602, - "content": "bbox-541", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 603, - "content": "bbox-542", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 604, - "content": "bbox-543", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 605, - "content": "bbox-544", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 606, - "content": "bbox-545", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 607, - "content": "bbox-546", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 608, - "content": "bbox-547", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 609, - "content": "bbox-548", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 610, - "content": "bbox-549", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 611, - "content": "bbox-550", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 612, - "content": "bbox-551", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 613, - "content": "bbox-552", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 614, - "content": "bbox-553", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 615, - "content": "bbox-554", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 616, - "content": "bbox-555", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 617, - "content": "bbox-556", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 618, - "content": "bbox-557", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 619, - "content": "bbox-558", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 620, - "content": "bbox-559", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 621, - "content": "bbox-560", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 622, - "content": "bbox-561", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 623, - "content": "bbox-562", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 624, - "content": "bbox-563", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 625, - "content": "bbox-564", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 626, - "content": "bbox-565", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 627, - "content": "bbox-566", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 628, - "content": "bbox-567", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 629, - "content": "bbox-568", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 630, - "content": "bbox-569", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 631, - "content": "bbox-570", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 632, - "content": "bbox-571", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 633, - "content": "bbox-572", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 634, - "content": "bbox-573", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 635, - "content": "bbox-574", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 636, - "content": "bbox-575", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 637, - "content": "bbox-576", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 638, - "content": "bbox-577", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 639, - "content": "bbox-578", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 640, - "content": "bbox-579", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 641, - "content": "bbox-580", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 642, - "content": "bbox-581", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 643, - "content": "bbox-582", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 644, - "content": "bbox-583", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 645, - "content": "bbox-584", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 646, - "content": "bbox-585", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 647, - "content": "bbox-586", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 648, - "content": "bbox-587", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 649, - "content": "bbox-588", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 650, - "content": "bbox-589", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 651, - "content": "bbox-590", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 652, - "content": "bbox-591", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 653, - "content": "bbox-592", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 654, - "content": "bbox-593", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 655, - "content": "bbox-594", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 656, - "content": "bbox-595", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 657, - "content": "bbox-596", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 658, - "content": "bbox-597", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 659, - "content": "bbox-598", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 660, - "content": "bbox-599", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 661, - "content": "bbox-600", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 662, - "content": "bbox-601", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 663, - "content": "bbox-602", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 664, - "content": "bbox-603", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 665, - "content": "bbox-604", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 666, - "content": "bbox-605", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 667, - "content": "bbox-606", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 668, - "content": "bbox-607", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 669, - "content": "bbox-608", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 670, - "content": "bbox-609", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 671, - "content": "bbox-610", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 672, - "content": "bbox-611", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 673, - "content": "bbox-612", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 674, - "content": "bbox-613", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 675, - "content": "bbox-614", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 676, - "content": "bbox-615", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 677, - "content": "bbox-616", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 678, - "content": "bbox-617", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 679, - "content": "bbox-618", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 680, - "content": "bbox-619", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 681, - "content": "bbox-620", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 682, - "content": "bbox-621", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 683, - "content": "bbox-622", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 684, - "content": "bbox-623", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 685, - "content": "bbox-624", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 686, - "content": "bbox-625", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 687, - "content": "bbox-626", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 688, - "content": "bbox-627", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 689, - "content": "bbox-628", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 690, - "content": "bbox-629", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 691, - "content": "bbox-630", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 692, - "content": "bbox-631", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 693, - "content": "bbox-632", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 694, - "content": "bbox-633", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 695, - "content": "bbox-634", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 696, - "content": "bbox-635", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 697, - "content": "bbox-636", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 698, - "content": "bbox-637", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 699, - "content": "bbox-638", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 700, - "content": "bbox-639", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 701, - "content": "bbox-640", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 702, - "content": "bbox-641", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 703, - "content": "bbox-642", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 704, - "content": "bbox-643", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 705, - "content": "bbox-644", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 706, - "content": "bbox-645", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 707, - "content": "bbox-646", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 708, - "content": "bbox-647", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 709, - "content": "bbox-648", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 710, - "content": "bbox-649", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 711, - "content": "bbox-650", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 712, - "content": "bbox-651", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 713, - "content": "bbox-652", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 714, - "content": "bbox-653", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 715, - "content": "bbox-654", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 716, - "content": "bbox-655", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 717, - "content": "bbox-656", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 718, - "content": "bbox-657", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 719, - "content": "bbox-658", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 720, - "content": "bbox-659", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 721, - "content": "bbox-660", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 722, - "content": "bbox-661", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 723, - "content": "bbox-662", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 724, - "content": "bbox-663", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 725, - "content": "bbox-664", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 726, - "content": "bbox-665", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 727, - "content": "bbox-666", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 728, - "content": "bbox-667", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 729, - "content": "bbox-668", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 730, - "content": "bbox-669", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 731, - "content": "bbox-670", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 732, - "content": "bbox-671", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 733, - "content": "bbox-672", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 734, - "content": "bbox-673", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 735, - "content": "bbox-674", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 736, - "content": "bbox-675", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 737, - "content": "bbox-676", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 738, - "content": "bbox-677", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 739, - "content": "bbox-678", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 740, - "content": "bbox-679", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 741, - "content": "bbox-680", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 742, - "content": "bbox-681", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 743, - "content": "bbox-682", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 744, - "content": "bbox-683", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 745, - "content": "bbox-684", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 746, - "content": "bbox-685", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 747, - "content": "bbox-686", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 748, - "content": "bbox-687", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 749, - "content": "bbox-688", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 750, - "content": "bbox-689", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 751, - "content": "bbox-690", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 752, - "content": "bbox-691", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 753, - "content": "bbox-692", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 754, - "content": "bbox-693", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 755, - "content": "bbox-694", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 756, - "content": "bbox-695", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 757, - "content": "bbox-696", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 758, - "content": "bbox-697", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 759, - "content": "bbox-698", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 760, - "content": "bbox-699", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 761, - "content": "bbox-700", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 762, - "content": "bbox-701", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 763, - "content": "bbox-702", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 764, - "content": "bbox-703", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 765, - "content": "bbox-704", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 766, - "content": "bbox-705", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 767, - "content": "bbox-706", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 768, - "content": "bbox-707", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 769, - "content": "bbox-708", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 770, - "content": "bbox-709", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 771, - "content": "bbox-710", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 772, - "content": "bbox-711", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 773, - "content": "bbox-712", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 774, - "content": "bbox-713", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 775, - "content": "bbox-714", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 776, - "content": "bbox-715", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 777, - "content": "bbox-716", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 778, - "content": "bbox-717", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 779, - "content": "bbox-718", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 780, - "content": "bbox-719", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 781, - "content": "bbox-720", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 782, - "content": "bbox-721", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 783, - "content": "bbox-722", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 784, - "content": "bbox-723", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 785, - "content": "bbox-724", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 786, - "content": "bbox-725", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 787, - "content": "bbox-726", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 788, - "content": "bbox-727", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 789, - "content": "bbox-728", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 790, - "content": "bbox-729", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 791, - "content": "bbox-730", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 792, - "content": "bbox-731", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 793, - "content": "bbox-732", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 794, - "content": "bbox-733", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 795, - "content": "bbox-734", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 796, - "content": "bbox-735", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 797, - "content": "bbox-736", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 798, - "content": "bbox-737", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 799, - "content": "bbox-738", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 800, - "content": "bbox-739", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 801, - "content": "bbox-740", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 802, - "content": "bbox-741", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 803, - "content": "bbox-742", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 804, - "content": "bbox-743", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 805, - "content": "bbox-744", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 806, - "content": "bbox-745", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 807, - "content": "bbox-746", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 808, - "content": "bbox-747", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 809, - "content": "bbox-748", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 810, - "content": "bbox-749", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 811, - "content": "bbox-750", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 812, - "content": "bbox-751", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 813, - "content": "bbox-752", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 814, - "content": "bbox-753", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 815, - "content": "bbox-754", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 816, - "content": "bbox-755", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 817, - "content": "bbox-756", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 818, - "content": "bbox-757", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 819, - "content": "bbox-758", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 820, - "content": "bbox-759", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 821, - "content": "bbox-760", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 822, - "content": "bbox-761", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 823, - "content": "bbox-762", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 824, - "content": "bbox-763", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 825, - "content": "bbox-764", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 826, - "content": "bbox-765", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 827, - "content": "bbox-766", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 828, - "content": "bbox-767", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 829, - "content": "bbox-768", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 830, - "content": "bbox-769", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 831, - "content": "bbox-770", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 832, - "content": "bbox-771", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 833, - "content": "bbox-772", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 834, - "content": "bbox-773", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 835, - "content": "bbox-774", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 836, - "content": "bbox-775", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 837, - "content": "bbox-776", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 838, - "content": "bbox-777", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 839, - "content": "bbox-778", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 840, - "content": "bbox-779", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 841, - "content": "bbox-780", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 842, - "content": "bbox-781", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 843, - "content": "bbox-782", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 844, - "content": "bbox-783", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 845, - "content": "bbox-784", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 846, - "content": "bbox-785", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 847, - "content": "bbox-786", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 848, - "content": "bbox-787", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 849, - "content": "bbox-788", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 850, - "content": "bbox-789", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 851, - "content": "bbox-790", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 852, - "content": "bbox-791", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 853, - "content": "bbox-792", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 854, - "content": "bbox-793", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 855, - "content": "bbox-794", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 856, - "content": "bbox-795", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 857, - "content": "bbox-796", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 858, - "content": "bbox-797", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 859, - "content": "bbox-798", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 860, - "content": "bbox-799", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 861, - "content": "bbox-800", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 862, - "content": "bbox-801", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 863, - "content": "bbox-802", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 864, - "content": "bbox-803", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 865, - "content": "bbox-804", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 866, - "content": "bbox-805", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 867, - "content": "bbox-806", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 868, - "content": "bbox-807", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 869, - "content": "bbox-808", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 870, - "content": "bbox-809", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 871, - "content": "bbox-810", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 872, - "content": "bbox-811", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 873, - "content": "bbox-812", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 874, - "content": "bbox-813", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 875, - "content": "bbox-814", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 876, - "content": "bbox-815", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 877, - "content": "bbox-816", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 878, - "content": "bbox-817", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 879, - "content": "bbox-818", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 880, - "content": "bbox-819", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 881, - "content": "bbox-820", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 882, - "content": "bbox-821", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 883, - "content": "bbox-822", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 884, - "content": "bbox-823", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 885, - "content": "bbox-824", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 886, - "content": "bbox-825", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 887, - "content": "bbox-826", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 888, - "content": "bbox-827", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 889, - "content": "bbox-828", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 890, - "content": "bbox-829", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 891, - "content": "bbox-830", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 892, - "content": "bbox-831", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 893, - "content": "bbox-832", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 894, - "content": "bbox-833", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 895, - "content": "bbox-834", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 896, - "content": "bbox-835", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 897, - "content": "bbox-836", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 898, - "content": "bbox-837", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 899, - "content": "bbox-838", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 900, - "content": "bbox-839", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 901, - "content": "bbox-840", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 902, - "content": "bbox-841", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 903, - "content": "bbox-842", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 904, - "content": "bbox-843", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 905, - "content": "bbox-844", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 906, - "content": "bbox-845", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 907, - "content": "bbox-846", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 908, - "content": "bbox-847", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 909, - "content": "bbox-848", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 910, - "content": "bbox-849", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 911, - "content": "bbox-850", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 912, - "content": "bbox-851", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 913, - "content": "bbox-852", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 914, - "content": "bbox-853", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 915, - "content": "bbox-854", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 916, - "content": "bbox-855", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 917, - "content": "bbox-856", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 918, - "content": "bbox-857", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 919, - "content": "bbox-858", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 920, - "content": "bbox-859", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 921, - "content": "bbox-860", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 922, - "content": "bbox-861", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 923, - "content": "bbox-862", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 924, - "content": "bbox-863", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 925, - "content": "bbox-864", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 926, - "content": "bbox-865", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 927, - "content": "bbox-866", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 928, - "content": "bbox-867", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 929, - "content": "bbox-868", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 930, - "content": "bbox-869", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 931, - "content": "bbox-870", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 932, - "content": "bbox-871", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 933, - "content": "bbox-872", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 934, - "content": "bbox-873", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 935, - "content": "bbox-874", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 936, - "content": "bbox-875", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 937, - "content": "bbox-876", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 938, - "content": "bbox-877", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 939, - "content": "bbox-878", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 940, - "content": "bbox-879", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 941, - "content": "bbox-880", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 942, - "content": "bbox-881", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 943, - "content": "bbox-882", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 944, - "content": "bbox-883", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 945, - "content": "bbox-884", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 946, - "content": "bbox-885", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 947, - "content": "bbox-886", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 948, - "content": "bbox-887", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 949, - "content": "bbox-888", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 950, - "content": "bbox-889", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 951, - "content": "bbox-890", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 952, - "content": "bbox-891", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 953, - "content": "bbox-892", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 954, - "content": "bbox-893", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 955, - "content": "bbox-894", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 956, - "content": "bbox-895", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 957, - "content": "bbox-896", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 958, - "content": "bbox-897", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 959, - "content": "bbox-898", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - } - ], - "normalizer": { - "type": "Sequence", - "normalizers": [ - { - "type": "NFD" - }, - { - "type": "Lowercase" - }, - { - "type": "StripAccents" - }, - { - "type": "Strip", - "strip_left": true, - "strip_right": true - } - ] - }, - "pre_tokenizer": { - "type": "Whitespace" - }, - "post_processor": null, - "decoder": { - "type": "WordPiece", - "prefix": "##", - "cleanup": true - }, - "model": { - "type": "WordPiece", - "unk_token": "", - "continuing_subword_prefix": "##", - "max_input_chars_per_word": 100, - "vocab": { - "": 0, - "": 1, - "": 2, - "": 3, - "": 4, - "": 5, - "[table]": 6, - "[html]": 7, - "[cell]": 8, - "[bbox]": 9, - "[cell+bbox]": 10, - "[html+bbox]": 11, - "": 12, - "[": 13, - "]": 14, - "[": 16, - ">": 17, - "": 18, - "": 19, - "": 20, - "": 21, - "": 22, - "": 23, - " rowspan=\"2\"": 24, - " rowspan=\"3\"": 25, - " rowspan=\"4\"": 26, - " rowspan=\"5\"": 27, - " rowspan=\"6\"": 28, - " rowspan=\"7\"": 29, - " rowspan=\"8\"": 30, - " rowspan=\"9\"": 31, - " rowspan=\"10\"": 32, - " rowspan=\"11\"": 33, - " rowspan=\"12\"": 34, - " rowspan=\"13\"": 35, - " rowspan=\"14\"": 36, - " rowspan=\"15\"": 37, - " rowspan=\"16\"": 38, - " rowspan=\"17\"": 39, - " rowspan=\"18\"": 40, - " rowspan=\"19\"": 41, - " colspan=\"2\"": 42, - " colspan=\"3\"": 43, - " colspan=\"4\"": 44, - " colspan=\"5\"": 45, - " colspan=\"6\"": 46, - " colspan=\"7\"": 47, - " colspan=\"8\"": 48, - " colspan=\"9\"": 49, - " colspan=\"10\"": 50, - " colspan=\"11\"": 51, - " colspan=\"12\"": 52, - " colspan=\"13\"": 53, - " colspan=\"14\"": 54, - " colspan=\"15\"": 55, - " colspan=\"16\"": 56, - " colspan=\"17\"": 57, - " colspan=\"18\"": 58, - " colspan=\"19\"": 59, - " colspan=\"25\"": 60, - "bbox-0": 61, - "bbox-1": 62, - "bbox-2": 63, - "bbox-3": 64, - "bbox-4": 65, - "bbox-5": 66, - "bbox-6": 67, - "bbox-7": 68, - "bbox-8": 69, - "bbox-9": 70, - "bbox-10": 71, - "bbox-11": 72, - "bbox-12": 73, - "bbox-13": 74, - "bbox-14": 75, - "bbox-15": 76, - "bbox-16": 77, - "bbox-17": 78, - "bbox-18": 79, - "bbox-19": 80, - "bbox-20": 81, - "bbox-21": 82, - "bbox-22": 83, - "bbox-23": 84, - "bbox-24": 85, - "bbox-25": 86, - "bbox-26": 87, - "bbox-27": 88, - "bbox-28": 89, - "bbox-29": 90, - "bbox-30": 91, - "bbox-31": 92, - "bbox-32": 93, - "bbox-33": 94, - "bbox-34": 95, - "bbox-35": 96, - "bbox-36": 97, - "bbox-37": 98, - "bbox-38": 99, - "bbox-39": 100, - "bbox-40": 101, - "bbox-41": 102, - "bbox-42": 103, - "bbox-43": 104, - "bbox-44": 105, - "bbox-45": 106, - "bbox-46": 107, - "bbox-47": 108, - "bbox-48": 109, - "bbox-49": 110, - "bbox-50": 111, - "bbox-51": 112, - "bbox-52": 113, - "bbox-53": 114, - "bbox-54": 115, - "bbox-55": 116, - "bbox-56": 117, - "bbox-57": 118, - "bbox-58": 119, - "bbox-59": 120, - "bbox-60": 121, - "bbox-61": 122, - "bbox-62": 123, - "bbox-63": 124, - "bbox-64": 125, - "bbox-65": 126, - "bbox-66": 127, - "bbox-67": 128, - "bbox-68": 129, - "bbox-69": 130, - "bbox-70": 131, - "bbox-71": 132, - "bbox-72": 133, - "bbox-73": 134, - "bbox-74": 135, - "bbox-75": 136, - "bbox-76": 137, - "bbox-77": 138, - "bbox-78": 139, - "bbox-79": 140, - "bbox-80": 141, - "bbox-81": 142, - "bbox-82": 143, - "bbox-83": 144, - "bbox-84": 145, - "bbox-85": 146, - "bbox-86": 147, - "bbox-87": 148, - "bbox-88": 149, - "bbox-89": 150, - "bbox-90": 151, - "bbox-91": 152, - "bbox-92": 153, - "bbox-93": 154, - "bbox-94": 155, - "bbox-95": 156, - "bbox-96": 157, - "bbox-97": 158, - "bbox-98": 159, - "bbox-99": 160, - "bbox-100": 161, - "bbox-101": 162, - "bbox-102": 163, - "bbox-103": 164, - "bbox-104": 165, - "bbox-105": 166, - "bbox-106": 167, - "bbox-107": 168, - "bbox-108": 169, - "bbox-109": 170, - "bbox-110": 171, - "bbox-111": 172, - "bbox-112": 173, - "bbox-113": 174, - "bbox-114": 175, - "bbox-115": 176, - "bbox-116": 177, - "bbox-117": 178, - "bbox-118": 179, - "bbox-119": 180, - "bbox-120": 181, - "bbox-121": 182, - "bbox-122": 183, - "bbox-123": 184, - "bbox-124": 185, - "bbox-125": 186, - "bbox-126": 187, - "bbox-127": 188, - "bbox-128": 189, - "bbox-129": 190, - "bbox-130": 191, - "bbox-131": 192, - "bbox-132": 193, - "bbox-133": 194, - "bbox-134": 195, - "bbox-135": 196, - "bbox-136": 197, - "bbox-137": 198, - "bbox-138": 199, - "bbox-139": 200, - "bbox-140": 201, - "bbox-141": 202, - "bbox-142": 203, - "bbox-143": 204, - "bbox-144": 205, - "bbox-145": 206, - "bbox-146": 207, - "bbox-147": 208, - "bbox-148": 209, - "bbox-149": 210, - "bbox-150": 211, - "bbox-151": 212, - "bbox-152": 213, - "bbox-153": 214, - "bbox-154": 215, - "bbox-155": 216, - "bbox-156": 217, - "bbox-157": 218, - "bbox-158": 219, - "bbox-159": 220, - "bbox-160": 221, - "bbox-161": 222, - "bbox-162": 223, - "bbox-163": 224, - "bbox-164": 225, - "bbox-165": 226, - "bbox-166": 227, - "bbox-167": 228, - "bbox-168": 229, - "bbox-169": 230, - "bbox-170": 231, - "bbox-171": 232, - "bbox-172": 233, - "bbox-173": 234, - "bbox-174": 235, - "bbox-175": 236, - "bbox-176": 237, - "bbox-177": 238, - "bbox-178": 239, - "bbox-179": 240, - "bbox-180": 241, - "bbox-181": 242, - "bbox-182": 243, - "bbox-183": 244, - "bbox-184": 245, - "bbox-185": 246, - "bbox-186": 247, - "bbox-187": 248, - "bbox-188": 249, - "bbox-189": 250, - "bbox-190": 251, - "bbox-191": 252, - "bbox-192": 253, - "bbox-193": 254, - "bbox-194": 255, - "bbox-195": 256, - "bbox-196": 257, - "bbox-197": 258, - "bbox-198": 259, - "bbox-199": 260, - "bbox-200": 261, - "bbox-201": 262, - "bbox-202": 263, - "bbox-203": 264, - "bbox-204": 265, - "bbox-205": 266, - "bbox-206": 267, - "bbox-207": 268, - "bbox-208": 269, - "bbox-209": 270, - "bbox-210": 271, - "bbox-211": 272, - "bbox-212": 273, - "bbox-213": 274, - "bbox-214": 275, - "bbox-215": 276, - "bbox-216": 277, - "bbox-217": 278, - "bbox-218": 279, - "bbox-219": 280, - "bbox-220": 281, - "bbox-221": 282, - "bbox-222": 283, - "bbox-223": 284, - "bbox-224": 285, - "bbox-225": 286, - "bbox-226": 287, - "bbox-227": 288, - "bbox-228": 289, - "bbox-229": 290, - "bbox-230": 291, - "bbox-231": 292, - "bbox-232": 293, - "bbox-233": 294, - "bbox-234": 295, - "bbox-235": 296, - "bbox-236": 297, - "bbox-237": 298, - "bbox-238": 299, - "bbox-239": 300, - "bbox-240": 301, - "bbox-241": 302, - "bbox-242": 303, - "bbox-243": 304, - "bbox-244": 305, - "bbox-245": 306, - "bbox-246": 307, - "bbox-247": 308, - "bbox-248": 309, - "bbox-249": 310, - "bbox-250": 311, - "bbox-251": 312, - "bbox-252": 313, - "bbox-253": 314, - "bbox-254": 315, - "bbox-255": 316, - "bbox-256": 317, - "bbox-257": 318, - "bbox-258": 319, - "bbox-259": 320, - "bbox-260": 321, - "bbox-261": 322, - "bbox-262": 323, - "bbox-263": 324, - "bbox-264": 325, - "bbox-265": 326, - "bbox-266": 327, - "bbox-267": 328, - "bbox-268": 329, - "bbox-269": 330, - "bbox-270": 331, - "bbox-271": 332, - "bbox-272": 333, - "bbox-273": 334, - "bbox-274": 335, - "bbox-275": 336, - "bbox-276": 337, - "bbox-277": 338, - "bbox-278": 339, - "bbox-279": 340, - "bbox-280": 341, - "bbox-281": 342, - "bbox-282": 343, - "bbox-283": 344, - "bbox-284": 345, - "bbox-285": 346, - "bbox-286": 347, - "bbox-287": 348, - "bbox-288": 349, - "bbox-289": 350, - "bbox-290": 351, - "bbox-291": 352, - "bbox-292": 353, - "bbox-293": 354, - "bbox-294": 355, - "bbox-295": 356, - "bbox-296": 357, - "bbox-297": 358, - "bbox-298": 359, - "bbox-299": 360, - "bbox-300": 361, - "bbox-301": 362, - "bbox-302": 363, - "bbox-303": 364, - "bbox-304": 365, - "bbox-305": 366, - "bbox-306": 367, - "bbox-307": 368, - "bbox-308": 369, - "bbox-309": 370, - "bbox-310": 371, - "bbox-311": 372, - "bbox-312": 373, - "bbox-313": 374, - "bbox-314": 375, - "bbox-315": 376, - "bbox-316": 377, - "bbox-317": 378, - "bbox-318": 379, - "bbox-319": 380, - "bbox-320": 381, - "bbox-321": 382, - "bbox-322": 383, - "bbox-323": 384, - "bbox-324": 385, - "bbox-325": 386, - "bbox-326": 387, - "bbox-327": 388, - "bbox-328": 389, - "bbox-329": 390, - "bbox-330": 391, - "bbox-331": 392, - "bbox-332": 393, - "bbox-333": 394, - "bbox-334": 395, - "bbox-335": 396, - "bbox-336": 397, - "bbox-337": 398, - "bbox-338": 399, - "bbox-339": 400, - "bbox-340": 401, - "bbox-341": 402, - "bbox-342": 403, - "bbox-343": 404, - "bbox-344": 405, - "bbox-345": 406, - "bbox-346": 407, - "bbox-347": 408, - "bbox-348": 409, - "bbox-349": 410, - "bbox-350": 411, - "bbox-351": 412, - "bbox-352": 413, - "bbox-353": 414, - "bbox-354": 415, - "bbox-355": 416, - "bbox-356": 417, - "bbox-357": 418, - "bbox-358": 419, - "bbox-359": 420, - "bbox-360": 421, - "bbox-361": 422, - "bbox-362": 423, - "bbox-363": 424, - "bbox-364": 425, - "bbox-365": 426, - "bbox-366": 427, - "bbox-367": 428, - "bbox-368": 429, - "bbox-369": 430, - "bbox-370": 431, - "bbox-371": 432, - "bbox-372": 433, - "bbox-373": 434, - "bbox-374": 435, - "bbox-375": 436, - "bbox-376": 437, - "bbox-377": 438, - "bbox-378": 439, - "bbox-379": 440, - "bbox-380": 441, - "bbox-381": 442, - "bbox-382": 443, - "bbox-383": 444, - "bbox-384": 445, - "bbox-385": 446, - "bbox-386": 447, - "bbox-387": 448, - "bbox-388": 449, - "bbox-389": 450, - "bbox-390": 451, - "bbox-391": 452, - "bbox-392": 453, - "bbox-393": 454, - "bbox-394": 455, - "bbox-395": 456, - "bbox-396": 457, - "bbox-397": 458, - "bbox-398": 459, - "bbox-399": 460, - "bbox-400": 461, - "bbox-401": 462, - "bbox-402": 463, - "bbox-403": 464, - "bbox-404": 465, - "bbox-405": 466, - "bbox-406": 467, - "bbox-407": 468, - "bbox-408": 469, - "bbox-409": 470, - "bbox-410": 471, - "bbox-411": 472, - "bbox-412": 473, - "bbox-413": 474, - "bbox-414": 475, - "bbox-415": 476, - "bbox-416": 477, - "bbox-417": 478, - "bbox-418": 479, - "bbox-419": 480, - "bbox-420": 481, - "bbox-421": 482, - "bbox-422": 483, - "bbox-423": 484, - "bbox-424": 485, - "bbox-425": 486, - "bbox-426": 487, - "bbox-427": 488, - "bbox-428": 489, - "bbox-429": 490, - "bbox-430": 491, - "bbox-431": 492, - "bbox-432": 493, - "bbox-433": 494, - "bbox-434": 495, - "bbox-435": 496, - "bbox-436": 497, - "bbox-437": 498, - "bbox-438": 499, - "bbox-439": 500, - "bbox-440": 501, - "bbox-441": 502, - "bbox-442": 503, - "bbox-443": 504, - "bbox-444": 505, - "bbox-445": 506, - "bbox-446": 507, - "bbox-447": 508, - "bbox-448": 509, - "bbox-449": 510, - "bbox-450": 511, - "bbox-451": 512, - "bbox-452": 513, - "bbox-453": 514, - "bbox-454": 515, - "bbox-455": 516, - "bbox-456": 517, - "bbox-457": 518, - "bbox-458": 519, - "bbox-459": 520, - "bbox-460": 521, - "bbox-461": 522, - "bbox-462": 523, - "bbox-463": 524, - "bbox-464": 525, - "bbox-465": 526, - "bbox-466": 527, - "bbox-467": 528, - "bbox-468": 529, - "bbox-469": 530, - "bbox-470": 531, - "bbox-471": 532, - "bbox-472": 533, - "bbox-473": 534, - "bbox-474": 535, - "bbox-475": 536, - "bbox-476": 537, - "bbox-477": 538, - "bbox-478": 539, - "bbox-479": 540, - "bbox-480": 541, - "bbox-481": 542, - "bbox-482": 543, - "bbox-483": 544, - "bbox-484": 545, - "bbox-485": 546, - "bbox-486": 547, - "bbox-487": 548, - "bbox-488": 549, - "bbox-489": 550, - "bbox-490": 551, - "bbox-491": 552, - "bbox-492": 553, - "bbox-493": 554, - "bbox-494": 555, - "bbox-495": 556, - "bbox-496": 557, - "bbox-497": 558, - "bbox-498": 559, - "bbox-499": 560, - "bbox-500": 561, - "bbox-501": 562, - "bbox-502": 563, - "bbox-503": 564, - "bbox-504": 565, - "bbox-505": 566, - "bbox-506": 567, - "bbox-507": 568, - "bbox-508": 569, - "bbox-509": 570, - "bbox-510": 571, - "bbox-511": 572, - "bbox-512": 573, - "bbox-513": 574, - "bbox-514": 575, - "bbox-515": 576, - "bbox-516": 577, - "bbox-517": 578, - "bbox-518": 579, - "bbox-519": 580, - "bbox-520": 581, - "bbox-521": 582, - "bbox-522": 583, - "bbox-523": 584, - "bbox-524": 585, - "bbox-525": 586, - "bbox-526": 587, - "bbox-527": 588, - "bbox-528": 589, - "bbox-529": 590, - "bbox-530": 591, - "bbox-531": 592, - "bbox-532": 593, - "bbox-533": 594, - "bbox-534": 595, - "bbox-535": 596, - "bbox-536": 597, - "bbox-537": 598, - "bbox-538": 599, - "bbox-539": 600, - "bbox-540": 601, - "bbox-541": 602, - "bbox-542": 603, - "bbox-543": 604, - "bbox-544": 605, - "bbox-545": 606, - "bbox-546": 607, - "bbox-547": 608, - "bbox-548": 609, - "bbox-549": 610, - "bbox-550": 611, - "bbox-551": 612, - "bbox-552": 613, - "bbox-553": 614, - "bbox-554": 615, - "bbox-555": 616, - "bbox-556": 617, - "bbox-557": 618, - "bbox-558": 619, - "bbox-559": 620, - "bbox-560": 621, - "bbox-561": 622, - "bbox-562": 623, - "bbox-563": 624, - "bbox-564": 625, - "bbox-565": 626, - "bbox-566": 627, - "bbox-567": 628, - "bbox-568": 629, - "bbox-569": 630, - "bbox-570": 631, - "bbox-571": 632, - "bbox-572": 633, - "bbox-573": 634, - "bbox-574": 635, - "bbox-575": 636, - "bbox-576": 637, - "bbox-577": 638, - "bbox-578": 639, - "bbox-579": 640, - "bbox-580": 641, - "bbox-581": 642, - "bbox-582": 643, - "bbox-583": 644, - "bbox-584": 645, - "bbox-585": 646, - "bbox-586": 647, - "bbox-587": 648, - "bbox-588": 649, - "bbox-589": 650, - "bbox-590": 651, - "bbox-591": 652, - "bbox-592": 653, - "bbox-593": 654, - "bbox-594": 655, - "bbox-595": 656, - "bbox-596": 657, - "bbox-597": 658, - "bbox-598": 659, - "bbox-599": 660, - "bbox-600": 661, - "bbox-601": 662, - "bbox-602": 663, - "bbox-603": 664, - "bbox-604": 665, - "bbox-605": 666, - "bbox-606": 667, - "bbox-607": 668, - "bbox-608": 669, - "bbox-609": 670, - "bbox-610": 671, - "bbox-611": 672, - "bbox-612": 673, - "bbox-613": 674, - "bbox-614": 675, - "bbox-615": 676, - "bbox-616": 677, - "bbox-617": 678, - "bbox-618": 679, - "bbox-619": 680, - "bbox-620": 681, - "bbox-621": 682, - "bbox-622": 683, - "bbox-623": 684, - "bbox-624": 685, - "bbox-625": 686, - "bbox-626": 687, - "bbox-627": 688, - "bbox-628": 689, - "bbox-629": 690, - "bbox-630": 691, - "bbox-631": 692, - "bbox-632": 693, - "bbox-633": 694, - "bbox-634": 695, - "bbox-635": 696, - "bbox-636": 697, - "bbox-637": 698, - "bbox-638": 699, - "bbox-639": 700, - "bbox-640": 701, - "bbox-641": 702, - "bbox-642": 703, - "bbox-643": 704, - "bbox-644": 705, - "bbox-645": 706, - "bbox-646": 707, - "bbox-647": 708, - "bbox-648": 709, - "bbox-649": 710, - "bbox-650": 711, - "bbox-651": 712, - "bbox-652": 713, - "bbox-653": 714, - "bbox-654": 715, - "bbox-655": 716, - "bbox-656": 717, - "bbox-657": 718, - "bbox-658": 719, - "bbox-659": 720, - "bbox-660": 721, - "bbox-661": 722, - "bbox-662": 723, - "bbox-663": 724, - "bbox-664": 725, - "bbox-665": 726, - "bbox-666": 727, - "bbox-667": 728, - "bbox-668": 729, - "bbox-669": 730, - "bbox-670": 731, - "bbox-671": 732, - "bbox-672": 733, - "bbox-673": 734, - "bbox-674": 735, - "bbox-675": 736, - "bbox-676": 737, - "bbox-677": 738, - "bbox-678": 739, - "bbox-679": 740, - "bbox-680": 741, - "bbox-681": 742, - "bbox-682": 743, - "bbox-683": 744, - "bbox-684": 745, - "bbox-685": 746, - "bbox-686": 747, - "bbox-687": 748, - "bbox-688": 749, - "bbox-689": 750, - "bbox-690": 751, - "bbox-691": 752, - "bbox-692": 753, - "bbox-693": 754, - "bbox-694": 755, - "bbox-695": 756, - "bbox-696": 757, - "bbox-697": 758, - "bbox-698": 759, - "bbox-699": 760, - "bbox-700": 761, - "bbox-701": 762, - "bbox-702": 763, - "bbox-703": 764, - "bbox-704": 765, - "bbox-705": 766, - "bbox-706": 767, - "bbox-707": 768, - "bbox-708": 769, - "bbox-709": 770, - "bbox-710": 771, - "bbox-711": 772, - "bbox-712": 773, - "bbox-713": 774, - "bbox-714": 775, - "bbox-715": 776, - "bbox-716": 777, - "bbox-717": 778, - "bbox-718": 779, - "bbox-719": 780, - "bbox-720": 781, - "bbox-721": 782, - "bbox-722": 783, - "bbox-723": 784, - "bbox-724": 785, - "bbox-725": 786, - "bbox-726": 787, - "bbox-727": 788, - "bbox-728": 789, - "bbox-729": 790, - "bbox-730": 791, - "bbox-731": 792, - "bbox-732": 793, - "bbox-733": 794, - "bbox-734": 795, - "bbox-735": 796, - "bbox-736": 797, - "bbox-737": 798, - "bbox-738": 799, - "bbox-739": 800, - "bbox-740": 801, - "bbox-741": 802, - "bbox-742": 803, - "bbox-743": 804, - "bbox-744": 805, - "bbox-745": 806, - "bbox-746": 807, - "bbox-747": 808, - "bbox-748": 809, - "bbox-749": 810, - "bbox-750": 811, - "bbox-751": 812, - "bbox-752": 813, - "bbox-753": 814, - "bbox-754": 815, - "bbox-755": 816, - "bbox-756": 817, - "bbox-757": 818, - "bbox-758": 819, - "bbox-759": 820, - "bbox-760": 821, - "bbox-761": 822, - "bbox-762": 823, - "bbox-763": 824, - "bbox-764": 825, - "bbox-765": 826, - "bbox-766": 827, - "bbox-767": 828, - "bbox-768": 829, - "bbox-769": 830, - "bbox-770": 831, - "bbox-771": 832, - "bbox-772": 833, - "bbox-773": 834, - "bbox-774": 835, - "bbox-775": 836, - "bbox-776": 837, - "bbox-777": 838, - "bbox-778": 839, - "bbox-779": 840, - "bbox-780": 841, - "bbox-781": 842, - "bbox-782": 843, - "bbox-783": 844, - "bbox-784": 845, - "bbox-785": 846, - "bbox-786": 847, - "bbox-787": 848, - "bbox-788": 849, - "bbox-789": 850, - "bbox-790": 851, - "bbox-791": 852, - "bbox-792": 853, - "bbox-793": 854, - "bbox-794": 855, - "bbox-795": 856, - "bbox-796": 857, - "bbox-797": 858, - "bbox-798": 859, - "bbox-799": 860, - "bbox-800": 861, - "bbox-801": 862, - "bbox-802": 863, - "bbox-803": 864, - "bbox-804": 865, - "bbox-805": 866, - "bbox-806": 867, - "bbox-807": 868, - "bbox-808": 869, - "bbox-809": 870, - "bbox-810": 871, - "bbox-811": 872, - "bbox-812": 873, - "bbox-813": 874, - "bbox-814": 875, - "bbox-815": 876, - "bbox-816": 877, - "bbox-817": 878, - "bbox-818": 879, - "bbox-819": 880, - "bbox-820": 881, - "bbox-821": 882, - "bbox-822": 883, - "bbox-823": 884, - "bbox-824": 885, - "bbox-825": 886, - "bbox-826": 887, - "bbox-827": 888, - "bbox-828": 889, - "bbox-829": 890, - "bbox-830": 891, - "bbox-831": 892, - "bbox-832": 893, - "bbox-833": 894, - "bbox-834": 895, - "bbox-835": 896, - "bbox-836": 897, - "bbox-837": 898, - "bbox-838": 899, - "bbox-839": 900, - "bbox-840": 901, - "bbox-841": 902, - "bbox-842": 903, - "bbox-843": 904, - "bbox-844": 905, - "bbox-845": 906, - "bbox-846": 907, - "bbox-847": 908, - "bbox-848": 909, - "bbox-849": 910, - "bbox-850": 911, - "bbox-851": 912, - "bbox-852": 913, - "bbox-853": 914, - "bbox-854": 915, - "bbox-855": 916, - "bbox-856": 917, - "bbox-857": 918, - "bbox-858": 919, - "bbox-859": 920, - "bbox-860": 921, - "bbox-861": 922, - "bbox-862": 923, - "bbox-863": 924, - "bbox-864": 925, - "bbox-865": 926, - "bbox-866": 927, - "bbox-867": 928, - "bbox-868": 929, - "bbox-869": 930, - "bbox-870": 931, - "bbox-871": 932, - "bbox-872": 933, - "bbox-873": 934, - "bbox-874": 935, - "bbox-875": 936, - "bbox-876": 937, - "bbox-877": 938, - "bbox-878": 939, - "bbox-879": 940, - "bbox-880": 941, - "bbox-881": 942, - "bbox-882": 943, - "bbox-883": 944, - "bbox-884": 945, - "bbox-885": 946, - "bbox-886": 947, - "bbox-887": 948, - "bbox-888": 949, - "bbox-889": 950, - "bbox-890": 951, - "bbox-891": 952, - "bbox-892": 953, - "bbox-893": 954, - "bbox-894": 955, - "bbox-895": 956, - "bbox-896": 957, - "bbox-897": 958, - "bbox-898": 959 - } - } -} \ No newline at end of file From 4806b4bb80c5dffbb92c192a9a4705c754ed7e99 Mon Sep 17 00:00:00 2001 From: SWHL Date: Wed, 8 Jan 2025 21:54:57 +0800 Subject: [PATCH 16/23] chore: optimize code --- .github/workflows/publish_whl.yml | 15 +- README.md | 97 +- rapid_table/main.py | 2 +- rapid_table/models/unitable_vocab.json | 9650 ------------------ rapid_table/utils/download_model.py | 2 +- rapid_table/utils/models/unitable_vocab.json | 9650 ------------------ 6 files changed, 63 insertions(+), 19353 deletions(-) delete mode 100644 rapid_table/models/unitable_vocab.json delete mode 100644 rapid_table/utils/models/unitable_vocab.json diff --git a/.github/workflows/publish_whl.yml b/.github/workflows/publish_whl.yml index c668a7a..c2f6b44 100644 --- a/.github/workflows/publish_whl.yml +++ b/.github/workflows/publish_whl.yml @@ -6,7 +6,7 @@ on: - v* env: - RESOURCES_URL: https://github.com/RapidAI/RapidTable/releases/download/assets/rapid_table_models.zip + DEFAULT_MODEL: https://www.modelscope.cn/models/RapidAI/RapidTable/resolve/master/slanet-plus.onnx jobs: UnitTesting: @@ -26,11 +26,7 @@ jobs: - name: Unit testings run: | - wget $RESOURCES_URL - ZIP_NAME=${RESOURCES_URL##*/} - DIR_NAME=${ZIP_NAME%.*} - unzip $DIR_NAME - cp $DIR_NAME/*.onnx rapid_table/models/ + wget $DEFAULT_MODEL -P rapid_table/models pip install -r requirements.txt pip install rapidocr_onnxruntime @@ -58,11 +54,8 @@ jobs: pip install -r requirements.txt python -m pip install --upgrade pip pip install wheel get_pypi_latest_version - wget $RESOURCES_URL - ZIP_NAME=${RESOURCES_URL##*/} - DIR_NAME=${ZIP_NAME%.*} - unzip $ZIP_NAME - mv $DIR_NAME/slanet-plus.onnx rapid_table/models/ + + wget $DEFAULT_MODEL -P rapid_table/models python setup.py bdist_wheel ${{ github.ref_name }} - name: Publish distribution 📦 to PyPI diff --git a/README.md b/README.md index 685d8c2..f482210 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,14 @@ slanet_plus是paddlex内置的SLANet升级版模型,准确率有大幅提升 unitable是来源unitable的transformer模型,精度最高,暂仅支持pytorch推理,支持gpu推理加速,训练权重来源于 [OhMyTable项目](https://github.com/Sanster/OhMyTable) +### 效果展示 + +
+ Demo +
+ +### 模型列表 + | `model_type` | 模型名称 | 推理框架 |模型大小 |推理耗时(单图 60KB)| |:--------------|:--------------------------------------| :------: |:------ |:------ | | `ppstructure_en` | `en_ppstructure_mobile_v2_SLANet.onnx` | onnxruntime |7.3M |0.15s | @@ -33,23 +41,7 @@ unitable是来源unitable的transformer模型,精度最高,暂仅支持pytor [PaddleX-SlaNetPlus 表格识别](https://github.com/PaddlePaddle/PaddleX/blob/release/3.0-beta1/docs/module_usage/tutorials/ocr_modules/table_structure_recognition.md)\ [Unitable](https://github.com/poloclub/unitable?tab=readme-ov-file) -模型托管在modelscope上,具体下载地址为:[link](https://www.modelscope.cn/models/RapidAI-NG/RapidTable/files) - -### 效果展示 - -
- Demo -
- -### 与[TableStructureRec](https://github.com/RapidAI/TableStructureRec)关系 - -TableStructureRec库是一个表格识别算法的集合库,当前有`wired_table_rec`有线表格识别算法和`lineless_table_rec`无线表格识别算法的推理包。 - -RapidTable是整理自PP-Structure中表格识别部分而来。由于PP-Structure较早,这个库命名就成了`rapid_table`。 - -总之,RapidTable和TabelStructureRec都是表格识别的仓库。大家可以都试试,哪个好用用哪个。由于每个算法都不太同,暂时不打算做统一处理。 - -关于表格识别算法的比较,可参见[TableStructureRec测评](https://github.com/RapidAI/TableStructureRec#指标结果) +模型托管在modelscope上,具体下载地址为:[link](https://www.modelscope.cn/models/RapidAI/RapidTable/files) ### 安装 @@ -73,11 +65,33 @@ pip install onnxruntime-gpu # for onnx gpu inference #### python脚本运行 -RapidTable类提供model_path参数,可以自行指定上述2个模型,默认是`slanet-plus.onnx`。举例如下: +> ⚠️注意:在`rapid_table>=1.0.0`之后,模型输入均采用dataclasses封装,简化和兼容参数传递。输入和输出定义如下: ```python -table_engine = RapidTable() -# table_engine = RapidTable(use_cuda=True, device="cuda:0", model_type="unitable") +# 输入 +@dataclass +class RapidTableInput: + model_type: Optional[str] = ModelType.SLANETPLUS.value + model_path: Union[str, Path, None, Dict[str, str]] = None + use_cuda: bool = False + device: str = "cpu" + +# 输出 +@dataclass +class RapidTableOutput: + pred_html: Optional[str] = None + pred_bboxes: Optional[np.ndarray] = None + logic_points: Optional[np.ndarray] = None + elapse: Optional[float] = None + +# 使用示例 +input_args = RapidTableInput(model_type="unitable") +table_engine = RapidTable(input_args) + +img_path = 'test_images/table.jpg' +table_results = table_engine(img_path) + +print(table_results.pred_html) ``` 完整示例: @@ -101,13 +115,13 @@ ocr_engine = RapidOCR() viser = VisTable() img_path = 'test_images/table.jpg' - ocr_result, _ = ocr_engine(img_path) # 单字匹配 # ocr_result, _ = ocr_engine(img_path, return_word_box=True) # ocr_result = trans_char_ocr_res(ocr_result) -table_html_str, table_cell_bboxes, elapse = table_engine(img_path, ocr_result) +table_results = table_engine(img_path, ocr_result) +table_html_str, table_cell_bboxes = table_results.pred_html, table_results.pred_bboxes save_dir = Path("./inference_results/") save_dir.mkdir(parents=True, exist_ok=True) @@ -118,31 +132,24 @@ save_drawed_path = save_dir / f"vis_{Path(img_path).name}" viser(img_path, table_html_str, save_html_path, table_cell_bboxes, save_drawed_path) # 返回逻辑坐标 -# table_html_str, table_cell_bboxes, logic_points, elapse = table_engine(img_path, ocr_result, return_logic_points=True) - +# table_results = table_engine(img_path, ocr_result, return_logic_points=True) +# table_html_str, table_cell_bboxes = table_results.pred_html, table_results.pred_bboxes # save_logic_path = save_dir / f"vis_logic_{Path(img_path).name}" -# viser(img_path, table_html_str, save_html_path, table_cell_bboxes, save_drawed_path,logic_points, save_logic_path) +# viser( +# img_path, +# table_results.pred_html, +# save_html_path, +# table_results.pred_bboxes, +# save_drawed_path, +# table_results.logic_points, +# save_logic_path, +# ) print(table_html_str) ``` #### 终端运行 -```bash -$ rapid_table -h -usage: rapid_table [-h] [-v] -img IMG_PATH [-m MODEL_PATH] - -optional arguments: --h, --help show this help message and exit --v, --vis Whether to visualize the layout results. --img IMG_PATH, --img_path IMG_PATH - Path to image for layout. --m MODEL_PATH, --model_path MODEL_PATH - The model path used for inference. -``` - -示例: - ```bash rapid_table -v -img test_images/table.jpg ``` @@ -289,6 +296,16 @@ rapid_table -v -img test_images/table.jpg +### 与[TableStructureRec](https://github.com/RapidAI/TableStructureRec)关系 + +TableStructureRec库是一个表格识别算法的集合库,当前有`wired_table_rec`有线表格识别算法和`lineless_table_rec`无线表格识别算法的推理包。 + +RapidTable是整理自PP-Structure中表格识别部分而来。由于PP-Structure较早,这个库命名就成了`rapid_table`。 + +总之,RapidTable和TabelStructureRec都是表格识别的仓库。大家可以都试试,哪个好用用哪个。由于每个算法都不太同,暂时不打算做统一处理。 + +关于表格识别算法的比较,可参见[TableStructureRec测评](https://github.com/RapidAI/TableStructureRec#指标结果) + ### 更新日志
diff --git a/rapid_table/main.py b/rapid_table/main.py index 3d496f1..a5a226f 100644 --- a/rapid_table/main.py +++ b/rapid_table/main.py @@ -31,7 +31,7 @@ class ModelType(Enum): UNITABLE = "unitable" -ROOT_URL = "https://www.modelscope.cn/models/RapidAI-NG/RapidTable/resolve/master/" +ROOT_URL = "https://www.modelscope.cn/models/RapidAI/RapidTable/resolve/master/" KEY_TO_MODEL_URL = { ModelType.PPSTRUCTURE_EN.value: f"{ROOT_URL}/en_ppstructure_mobile_v2_SLANet.onnx", ModelType.PPSTRUCTURE_ZH.value: f"{ROOT_URL}/ch_ppstructure_mobile_v2_SLANet.onnx", diff --git a/rapid_table/models/unitable_vocab.json b/rapid_table/models/unitable_vocab.json deleted file mode 100644 index c13ccef..0000000 --- a/rapid_table/models/unitable_vocab.json +++ /dev/null @@ -1,9650 +0,0 @@ -{ - "version": "1.0", - "truncation": null, - "padding": { - "strategy": "BatchLongest", - "direction": "Right", - "pad_to_multiple_of": null, - "pad_id": 2, - "pad_type_id": 0, - "pad_token": "" - }, - "added_tokens": [ - { - "id": 0, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 1, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 2, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 3, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 4, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 5, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 6, - "content": "[table]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 7, - "content": "[html]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 8, - "content": "[cell]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 9, - "content": "[bbox]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 10, - "content": "[cell+bbox]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 11, - "content": "[html+bbox]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 12, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 13, - "content": "[", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 14, - "content": "]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 15, - "content": "[", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 17, - "content": ">", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 18, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 19, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 20, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 21, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 22, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 23, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 24, - "content": " rowspan=\"2\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 25, - "content": " rowspan=\"3\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 26, - "content": " rowspan=\"4\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 27, - "content": " rowspan=\"5\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 28, - "content": " rowspan=\"6\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 29, - "content": " rowspan=\"7\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 30, - "content": " rowspan=\"8\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 31, - "content": " rowspan=\"9\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 32, - "content": " rowspan=\"10\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 33, - "content": " rowspan=\"11\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 34, - "content": " rowspan=\"12\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 35, - "content": " rowspan=\"13\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 36, - "content": " rowspan=\"14\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 37, - "content": " rowspan=\"15\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 38, - "content": " rowspan=\"16\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 39, - "content": " rowspan=\"17\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 40, - "content": " rowspan=\"18\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 41, - "content": " rowspan=\"19\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 42, - "content": " colspan=\"2\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 43, - "content": " colspan=\"3\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 44, - "content": " colspan=\"4\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 45, - "content": " colspan=\"5\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 46, - "content": " colspan=\"6\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 47, - "content": " colspan=\"7\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 48, - "content": " colspan=\"8\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 49, - "content": " colspan=\"9\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 50, - "content": " colspan=\"10\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 51, - "content": " colspan=\"11\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 52, - "content": " colspan=\"12\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 53, - "content": " colspan=\"13\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 54, - "content": " colspan=\"14\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 55, - "content": " colspan=\"15\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 56, - "content": " colspan=\"16\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 57, - "content": " colspan=\"17\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 58, - "content": " colspan=\"18\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 59, - "content": " colspan=\"19\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 60, - "content": " colspan=\"25\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 61, - "content": "bbox-0", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 62, - "content": "bbox-1", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 63, - "content": "bbox-2", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 64, - "content": "bbox-3", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 65, - "content": "bbox-4", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 66, - "content": "bbox-5", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 67, - "content": "bbox-6", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 68, - "content": "bbox-7", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 69, - "content": "bbox-8", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 70, - "content": "bbox-9", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 71, - "content": "bbox-10", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 72, - "content": "bbox-11", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 73, - "content": "bbox-12", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 74, - "content": "bbox-13", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 75, - "content": "bbox-14", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 76, - "content": "bbox-15", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 77, - "content": "bbox-16", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 78, - "content": "bbox-17", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 79, - "content": "bbox-18", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 80, - "content": "bbox-19", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 81, - "content": "bbox-20", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 82, - "content": "bbox-21", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 83, - "content": "bbox-22", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 84, - "content": "bbox-23", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 85, - "content": "bbox-24", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 86, - "content": "bbox-25", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 87, - "content": "bbox-26", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 88, - "content": "bbox-27", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 89, - "content": "bbox-28", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 90, - "content": "bbox-29", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 91, - "content": "bbox-30", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 92, - "content": "bbox-31", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 93, - "content": "bbox-32", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 94, - "content": "bbox-33", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 95, - "content": "bbox-34", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 96, - "content": "bbox-35", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 97, - "content": "bbox-36", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 98, - "content": "bbox-37", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 99, - "content": "bbox-38", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 100, - "content": "bbox-39", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 101, - "content": "bbox-40", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 102, - "content": "bbox-41", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 103, - "content": "bbox-42", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 104, - "content": "bbox-43", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 105, - "content": "bbox-44", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 106, - "content": "bbox-45", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 107, - "content": "bbox-46", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 108, - "content": "bbox-47", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 109, - "content": "bbox-48", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 110, - "content": "bbox-49", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 111, - "content": "bbox-50", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 112, - "content": "bbox-51", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 113, - "content": "bbox-52", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 114, - "content": "bbox-53", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 115, - "content": "bbox-54", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 116, - "content": "bbox-55", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 117, - "content": "bbox-56", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 118, - "content": "bbox-57", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 119, - "content": "bbox-58", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 120, - "content": "bbox-59", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 121, - "content": "bbox-60", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 122, - "content": "bbox-61", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 123, - "content": "bbox-62", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 124, - "content": "bbox-63", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 125, - "content": "bbox-64", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 126, - "content": "bbox-65", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 127, - "content": "bbox-66", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 128, - "content": "bbox-67", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 129, - "content": "bbox-68", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 130, - "content": "bbox-69", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 131, - "content": "bbox-70", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 132, - "content": "bbox-71", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 133, - "content": "bbox-72", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 134, - "content": "bbox-73", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 135, - "content": "bbox-74", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 136, - "content": "bbox-75", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 137, - "content": "bbox-76", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 138, - "content": "bbox-77", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 139, - "content": "bbox-78", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 140, - "content": "bbox-79", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 141, - "content": "bbox-80", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 142, - "content": "bbox-81", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 143, - "content": "bbox-82", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 144, - "content": "bbox-83", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 145, - "content": "bbox-84", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 146, - "content": "bbox-85", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 147, - "content": "bbox-86", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 148, - "content": "bbox-87", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 149, - "content": "bbox-88", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 150, - "content": "bbox-89", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 151, - "content": "bbox-90", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 152, - "content": "bbox-91", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 153, - "content": "bbox-92", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 154, - "content": "bbox-93", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 155, - "content": "bbox-94", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 156, - "content": "bbox-95", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 157, - "content": "bbox-96", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 158, - "content": "bbox-97", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 159, - "content": "bbox-98", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 160, - "content": "bbox-99", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 161, - "content": "bbox-100", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 162, - "content": "bbox-101", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 163, - "content": "bbox-102", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 164, - "content": "bbox-103", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 165, - "content": "bbox-104", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 166, - "content": "bbox-105", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 167, - "content": "bbox-106", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 168, - "content": "bbox-107", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 169, - "content": "bbox-108", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 170, - "content": "bbox-109", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 171, - "content": "bbox-110", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 172, - "content": "bbox-111", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 173, - "content": "bbox-112", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 174, - "content": "bbox-113", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 175, - "content": "bbox-114", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 176, - "content": "bbox-115", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 177, - "content": "bbox-116", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 178, - "content": "bbox-117", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 179, - "content": "bbox-118", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 180, - "content": "bbox-119", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 181, - "content": "bbox-120", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 182, - "content": "bbox-121", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 183, - "content": "bbox-122", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 184, - "content": "bbox-123", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 185, - "content": "bbox-124", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 186, - "content": "bbox-125", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 187, - "content": "bbox-126", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 188, - "content": "bbox-127", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 189, - "content": "bbox-128", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 190, - "content": "bbox-129", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 191, - "content": "bbox-130", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 192, - "content": "bbox-131", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 193, - "content": "bbox-132", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 194, - "content": "bbox-133", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 195, - "content": "bbox-134", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 196, - "content": "bbox-135", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 197, - "content": "bbox-136", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 198, - "content": "bbox-137", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 199, - "content": "bbox-138", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 200, - "content": "bbox-139", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 201, - "content": "bbox-140", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 202, - "content": "bbox-141", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 203, - "content": "bbox-142", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 204, - "content": "bbox-143", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 205, - "content": "bbox-144", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 206, - "content": "bbox-145", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 207, - "content": "bbox-146", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 208, - "content": "bbox-147", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 209, - "content": "bbox-148", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 210, - "content": "bbox-149", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 211, - "content": "bbox-150", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 212, - "content": "bbox-151", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 213, - "content": "bbox-152", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 214, - "content": "bbox-153", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 215, - "content": "bbox-154", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 216, - "content": "bbox-155", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 217, - "content": "bbox-156", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 218, - "content": "bbox-157", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 219, - "content": "bbox-158", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 220, - "content": "bbox-159", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 221, - "content": "bbox-160", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 222, - "content": "bbox-161", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 223, - "content": "bbox-162", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 224, - "content": "bbox-163", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 225, - "content": "bbox-164", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 226, - "content": "bbox-165", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 227, - "content": "bbox-166", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 228, - "content": "bbox-167", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 229, - "content": "bbox-168", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 230, - "content": "bbox-169", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 231, - "content": "bbox-170", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 232, - "content": "bbox-171", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 233, - "content": "bbox-172", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 234, - "content": "bbox-173", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 235, - "content": "bbox-174", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 236, - "content": "bbox-175", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 237, - "content": "bbox-176", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 238, - "content": "bbox-177", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 239, - "content": "bbox-178", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 240, - "content": "bbox-179", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 241, - "content": "bbox-180", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 242, - "content": "bbox-181", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 243, - "content": "bbox-182", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 244, - "content": "bbox-183", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 245, - "content": "bbox-184", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 246, - "content": "bbox-185", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 247, - "content": "bbox-186", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 248, - "content": "bbox-187", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 249, - "content": "bbox-188", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 250, - "content": "bbox-189", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 251, - "content": "bbox-190", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 252, - "content": "bbox-191", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 253, - "content": "bbox-192", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 254, - "content": "bbox-193", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 255, - "content": "bbox-194", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 256, - "content": "bbox-195", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 257, - "content": "bbox-196", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 258, - "content": "bbox-197", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 259, - "content": "bbox-198", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 260, - "content": "bbox-199", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 261, - "content": "bbox-200", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 262, - "content": "bbox-201", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 263, - "content": "bbox-202", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 264, - "content": "bbox-203", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 265, - "content": "bbox-204", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 266, - "content": "bbox-205", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 267, - "content": "bbox-206", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 268, - "content": "bbox-207", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 269, - "content": "bbox-208", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 270, - "content": "bbox-209", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 271, - "content": "bbox-210", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 272, - "content": "bbox-211", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 273, - "content": "bbox-212", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 274, - "content": "bbox-213", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 275, - "content": "bbox-214", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 276, - "content": "bbox-215", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 277, - "content": "bbox-216", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 278, - "content": "bbox-217", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 279, - "content": "bbox-218", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 280, - "content": "bbox-219", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 281, - "content": "bbox-220", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 282, - "content": "bbox-221", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 283, - "content": "bbox-222", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 284, - "content": "bbox-223", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 285, - "content": "bbox-224", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 286, - "content": "bbox-225", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 287, - "content": "bbox-226", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 288, - "content": "bbox-227", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 289, - "content": "bbox-228", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 290, - "content": "bbox-229", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 291, - "content": "bbox-230", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 292, - "content": "bbox-231", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 293, - "content": "bbox-232", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 294, - "content": "bbox-233", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 295, - "content": "bbox-234", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 296, - "content": "bbox-235", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 297, - "content": "bbox-236", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 298, - "content": "bbox-237", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 299, - "content": "bbox-238", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 300, - "content": "bbox-239", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 301, - "content": "bbox-240", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 302, - "content": "bbox-241", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 303, - "content": "bbox-242", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 304, - "content": "bbox-243", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 305, - "content": "bbox-244", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 306, - "content": "bbox-245", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 307, - "content": "bbox-246", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 308, - "content": "bbox-247", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 309, - "content": "bbox-248", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 310, - "content": "bbox-249", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 311, - "content": "bbox-250", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 312, - "content": "bbox-251", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 313, - "content": "bbox-252", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 314, - "content": "bbox-253", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 315, - "content": "bbox-254", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 316, - "content": "bbox-255", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 317, - "content": "bbox-256", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 318, - "content": "bbox-257", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 319, - "content": "bbox-258", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 320, - "content": "bbox-259", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 321, - "content": "bbox-260", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 322, - "content": "bbox-261", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 323, - "content": "bbox-262", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 324, - "content": "bbox-263", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 325, - "content": "bbox-264", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 326, - "content": "bbox-265", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 327, - "content": "bbox-266", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 328, - "content": "bbox-267", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 329, - "content": "bbox-268", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 330, - "content": "bbox-269", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 331, - "content": "bbox-270", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 332, - "content": "bbox-271", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 333, - "content": "bbox-272", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 334, - "content": "bbox-273", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 335, - "content": "bbox-274", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 336, - "content": "bbox-275", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 337, - "content": "bbox-276", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 338, - "content": "bbox-277", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 339, - "content": "bbox-278", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 340, - "content": "bbox-279", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 341, - "content": "bbox-280", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 342, - "content": "bbox-281", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 343, - "content": "bbox-282", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 344, - "content": "bbox-283", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 345, - "content": "bbox-284", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 346, - "content": "bbox-285", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 347, - "content": "bbox-286", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 348, - "content": "bbox-287", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 349, - "content": "bbox-288", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 350, - "content": "bbox-289", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 351, - "content": "bbox-290", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 352, - "content": "bbox-291", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 353, - "content": "bbox-292", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 354, - "content": "bbox-293", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 355, - "content": "bbox-294", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 356, - "content": "bbox-295", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 357, - "content": "bbox-296", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 358, - "content": "bbox-297", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 359, - "content": "bbox-298", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 360, - "content": "bbox-299", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 361, - "content": "bbox-300", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 362, - "content": "bbox-301", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 363, - "content": "bbox-302", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 364, - "content": "bbox-303", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 365, - "content": "bbox-304", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 366, - "content": "bbox-305", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 367, - "content": "bbox-306", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 368, - "content": "bbox-307", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 369, - "content": "bbox-308", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 370, - "content": "bbox-309", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 371, - "content": "bbox-310", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 372, - "content": "bbox-311", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 373, - "content": "bbox-312", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 374, - "content": "bbox-313", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 375, - "content": "bbox-314", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 376, - "content": "bbox-315", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 377, - "content": "bbox-316", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 378, - "content": "bbox-317", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 379, - "content": "bbox-318", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 380, - "content": "bbox-319", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 381, - "content": "bbox-320", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 382, - "content": "bbox-321", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 383, - "content": "bbox-322", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 384, - "content": "bbox-323", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 385, - "content": "bbox-324", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 386, - "content": "bbox-325", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 387, - "content": "bbox-326", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 388, - "content": "bbox-327", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 389, - "content": "bbox-328", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 390, - "content": "bbox-329", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 391, - "content": "bbox-330", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 392, - "content": "bbox-331", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 393, - "content": "bbox-332", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 394, - "content": "bbox-333", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 395, - "content": "bbox-334", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 396, - "content": "bbox-335", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 397, - "content": "bbox-336", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 398, - "content": "bbox-337", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 399, - "content": "bbox-338", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 400, - "content": "bbox-339", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 401, - "content": "bbox-340", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 402, - "content": "bbox-341", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 403, - "content": "bbox-342", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 404, - "content": "bbox-343", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 405, - "content": "bbox-344", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 406, - "content": "bbox-345", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 407, - "content": "bbox-346", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 408, - "content": "bbox-347", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 409, - "content": "bbox-348", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 410, - "content": "bbox-349", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 411, - "content": "bbox-350", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 412, - "content": "bbox-351", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 413, - "content": "bbox-352", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 414, - "content": "bbox-353", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 415, - "content": "bbox-354", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 416, - "content": "bbox-355", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 417, - "content": "bbox-356", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 418, - "content": "bbox-357", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 419, - "content": "bbox-358", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 420, - "content": "bbox-359", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 421, - "content": "bbox-360", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 422, - "content": "bbox-361", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 423, - "content": "bbox-362", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 424, - "content": "bbox-363", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 425, - "content": "bbox-364", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 426, - "content": "bbox-365", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 427, - "content": "bbox-366", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 428, - "content": "bbox-367", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 429, - "content": "bbox-368", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 430, - "content": "bbox-369", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 431, - "content": "bbox-370", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 432, - "content": "bbox-371", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 433, - "content": "bbox-372", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 434, - "content": "bbox-373", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 435, - "content": "bbox-374", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 436, - "content": "bbox-375", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 437, - "content": "bbox-376", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 438, - "content": "bbox-377", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 439, - "content": "bbox-378", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 440, - "content": "bbox-379", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 441, - "content": "bbox-380", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 442, - "content": "bbox-381", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 443, - "content": "bbox-382", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 444, - "content": "bbox-383", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 445, - "content": "bbox-384", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 446, - "content": "bbox-385", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 447, - "content": "bbox-386", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 448, - "content": "bbox-387", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 449, - "content": "bbox-388", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 450, - "content": "bbox-389", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 451, - "content": "bbox-390", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 452, - "content": "bbox-391", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 453, - "content": "bbox-392", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 454, - "content": "bbox-393", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 455, - "content": "bbox-394", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 456, - "content": "bbox-395", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 457, - "content": "bbox-396", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 458, - "content": "bbox-397", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 459, - "content": "bbox-398", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 460, - "content": "bbox-399", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 461, - "content": "bbox-400", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 462, - "content": "bbox-401", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 463, - "content": "bbox-402", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 464, - "content": "bbox-403", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 465, - "content": "bbox-404", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 466, - "content": "bbox-405", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 467, - "content": "bbox-406", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 468, - "content": "bbox-407", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 469, - "content": "bbox-408", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 470, - "content": "bbox-409", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 471, - "content": "bbox-410", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 472, - "content": "bbox-411", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 473, - "content": "bbox-412", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 474, - "content": "bbox-413", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 475, - "content": "bbox-414", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 476, - "content": "bbox-415", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 477, - "content": "bbox-416", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 478, - "content": "bbox-417", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 479, - "content": "bbox-418", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 480, - "content": "bbox-419", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 481, - "content": "bbox-420", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 482, - "content": "bbox-421", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 483, - "content": "bbox-422", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 484, - "content": "bbox-423", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 485, - "content": "bbox-424", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 486, - "content": "bbox-425", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 487, - "content": "bbox-426", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 488, - "content": "bbox-427", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 489, - "content": "bbox-428", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 490, - "content": "bbox-429", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 491, - "content": "bbox-430", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 492, - "content": "bbox-431", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 493, - "content": "bbox-432", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 494, - "content": "bbox-433", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 495, - "content": "bbox-434", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 496, - "content": "bbox-435", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 497, - "content": "bbox-436", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 498, - "content": "bbox-437", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 499, - "content": "bbox-438", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 500, - "content": "bbox-439", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 501, - "content": "bbox-440", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 502, - "content": "bbox-441", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 503, - "content": "bbox-442", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 504, - "content": "bbox-443", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 505, - "content": "bbox-444", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 506, - "content": "bbox-445", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 507, - "content": "bbox-446", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 508, - "content": "bbox-447", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 509, - "content": "bbox-448", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 510, - "content": "bbox-449", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 511, - "content": "bbox-450", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 512, - "content": "bbox-451", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 513, - "content": "bbox-452", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 514, - "content": "bbox-453", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 515, - "content": "bbox-454", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 516, - "content": "bbox-455", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 517, - "content": "bbox-456", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 518, - "content": "bbox-457", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 519, - "content": "bbox-458", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 520, - "content": "bbox-459", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 521, - "content": "bbox-460", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 522, - "content": "bbox-461", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 523, - "content": "bbox-462", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 524, - "content": "bbox-463", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 525, - "content": "bbox-464", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 526, - "content": "bbox-465", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 527, - "content": "bbox-466", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 528, - "content": "bbox-467", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 529, - "content": "bbox-468", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 530, - "content": "bbox-469", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 531, - "content": "bbox-470", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 532, - "content": "bbox-471", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 533, - "content": "bbox-472", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 534, - "content": "bbox-473", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 535, - "content": "bbox-474", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 536, - "content": "bbox-475", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 537, - "content": "bbox-476", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 538, - "content": "bbox-477", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 539, - "content": "bbox-478", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 540, - "content": "bbox-479", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 541, - "content": "bbox-480", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 542, - "content": "bbox-481", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 543, - "content": "bbox-482", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 544, - "content": "bbox-483", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 545, - "content": "bbox-484", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 546, - "content": "bbox-485", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 547, - "content": "bbox-486", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 548, - "content": "bbox-487", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 549, - "content": "bbox-488", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 550, - "content": "bbox-489", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 551, - "content": "bbox-490", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 552, - "content": "bbox-491", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 553, - "content": "bbox-492", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 554, - "content": "bbox-493", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 555, - "content": "bbox-494", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 556, - "content": "bbox-495", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 557, - "content": "bbox-496", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 558, - "content": "bbox-497", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 559, - "content": "bbox-498", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 560, - "content": "bbox-499", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 561, - "content": "bbox-500", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 562, - "content": "bbox-501", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 563, - "content": "bbox-502", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 564, - "content": "bbox-503", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 565, - "content": "bbox-504", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 566, - "content": "bbox-505", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 567, - "content": "bbox-506", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 568, - "content": "bbox-507", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 569, - "content": "bbox-508", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 570, - "content": "bbox-509", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 571, - "content": "bbox-510", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 572, - "content": "bbox-511", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 573, - "content": "bbox-512", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 574, - "content": "bbox-513", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 575, - "content": "bbox-514", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 576, - "content": "bbox-515", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 577, - "content": "bbox-516", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 578, - "content": "bbox-517", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 579, - "content": "bbox-518", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 580, - "content": "bbox-519", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 581, - "content": "bbox-520", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 582, - "content": "bbox-521", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 583, - "content": "bbox-522", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 584, - "content": "bbox-523", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 585, - "content": "bbox-524", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 586, - "content": "bbox-525", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 587, - "content": "bbox-526", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 588, - "content": "bbox-527", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 589, - "content": "bbox-528", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 590, - "content": "bbox-529", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 591, - "content": "bbox-530", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 592, - "content": "bbox-531", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 593, - "content": "bbox-532", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 594, - "content": "bbox-533", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 595, - "content": "bbox-534", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 596, - "content": "bbox-535", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 597, - "content": "bbox-536", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 598, - "content": "bbox-537", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 599, - "content": "bbox-538", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 600, - "content": "bbox-539", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 601, - "content": "bbox-540", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 602, - "content": "bbox-541", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 603, - "content": "bbox-542", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 604, - "content": "bbox-543", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 605, - "content": "bbox-544", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 606, - "content": "bbox-545", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 607, - "content": "bbox-546", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 608, - "content": "bbox-547", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 609, - "content": "bbox-548", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 610, - "content": "bbox-549", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 611, - "content": "bbox-550", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 612, - "content": "bbox-551", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 613, - "content": "bbox-552", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 614, - "content": "bbox-553", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 615, - "content": "bbox-554", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 616, - "content": "bbox-555", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 617, - "content": "bbox-556", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 618, - "content": "bbox-557", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 619, - "content": "bbox-558", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 620, - "content": "bbox-559", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 621, - "content": "bbox-560", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 622, - "content": "bbox-561", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 623, - "content": "bbox-562", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 624, - "content": "bbox-563", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 625, - "content": "bbox-564", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 626, - "content": "bbox-565", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 627, - "content": "bbox-566", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 628, - "content": "bbox-567", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 629, - "content": "bbox-568", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 630, - "content": "bbox-569", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 631, - "content": "bbox-570", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 632, - "content": "bbox-571", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 633, - "content": "bbox-572", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 634, - "content": "bbox-573", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 635, - "content": "bbox-574", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 636, - "content": "bbox-575", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 637, - "content": "bbox-576", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 638, - "content": "bbox-577", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 639, - "content": "bbox-578", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 640, - "content": "bbox-579", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 641, - "content": "bbox-580", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 642, - "content": "bbox-581", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 643, - "content": "bbox-582", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 644, - "content": "bbox-583", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 645, - "content": "bbox-584", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 646, - "content": "bbox-585", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 647, - "content": "bbox-586", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 648, - "content": "bbox-587", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 649, - "content": "bbox-588", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 650, - "content": "bbox-589", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 651, - "content": "bbox-590", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 652, - "content": "bbox-591", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 653, - "content": "bbox-592", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 654, - "content": "bbox-593", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 655, - "content": "bbox-594", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 656, - "content": "bbox-595", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 657, - "content": "bbox-596", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 658, - "content": "bbox-597", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 659, - "content": "bbox-598", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 660, - "content": "bbox-599", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 661, - "content": "bbox-600", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 662, - "content": "bbox-601", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 663, - "content": "bbox-602", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 664, - "content": "bbox-603", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 665, - "content": "bbox-604", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 666, - "content": "bbox-605", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 667, - "content": "bbox-606", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 668, - "content": "bbox-607", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 669, - "content": "bbox-608", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 670, - "content": "bbox-609", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 671, - "content": "bbox-610", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 672, - "content": "bbox-611", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 673, - "content": "bbox-612", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 674, - "content": "bbox-613", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 675, - "content": "bbox-614", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 676, - "content": "bbox-615", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 677, - "content": "bbox-616", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 678, - "content": "bbox-617", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 679, - "content": "bbox-618", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 680, - "content": "bbox-619", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 681, - "content": "bbox-620", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 682, - "content": "bbox-621", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 683, - "content": "bbox-622", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 684, - "content": "bbox-623", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 685, - "content": "bbox-624", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 686, - "content": "bbox-625", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 687, - "content": "bbox-626", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 688, - "content": "bbox-627", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 689, - "content": "bbox-628", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 690, - "content": "bbox-629", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 691, - "content": "bbox-630", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 692, - "content": "bbox-631", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 693, - "content": "bbox-632", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 694, - "content": "bbox-633", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 695, - "content": "bbox-634", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 696, - "content": "bbox-635", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 697, - "content": "bbox-636", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 698, - "content": "bbox-637", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 699, - "content": "bbox-638", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 700, - "content": "bbox-639", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 701, - "content": "bbox-640", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 702, - "content": "bbox-641", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 703, - "content": "bbox-642", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 704, - "content": "bbox-643", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 705, - "content": "bbox-644", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 706, - "content": "bbox-645", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 707, - "content": "bbox-646", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 708, - "content": "bbox-647", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 709, - "content": "bbox-648", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 710, - "content": "bbox-649", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 711, - "content": "bbox-650", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 712, - "content": "bbox-651", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 713, - "content": "bbox-652", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 714, - "content": "bbox-653", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 715, - "content": "bbox-654", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 716, - "content": "bbox-655", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 717, - "content": "bbox-656", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 718, - "content": "bbox-657", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 719, - "content": "bbox-658", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 720, - "content": "bbox-659", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 721, - "content": "bbox-660", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 722, - "content": "bbox-661", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 723, - "content": "bbox-662", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 724, - "content": "bbox-663", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 725, - "content": "bbox-664", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 726, - "content": "bbox-665", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 727, - "content": "bbox-666", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 728, - "content": "bbox-667", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 729, - "content": "bbox-668", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 730, - "content": "bbox-669", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 731, - "content": "bbox-670", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 732, - "content": "bbox-671", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 733, - "content": "bbox-672", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 734, - "content": "bbox-673", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 735, - "content": "bbox-674", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 736, - "content": "bbox-675", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 737, - "content": "bbox-676", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 738, - "content": "bbox-677", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 739, - "content": "bbox-678", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 740, - "content": "bbox-679", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 741, - "content": "bbox-680", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 742, - "content": "bbox-681", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 743, - "content": "bbox-682", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 744, - "content": "bbox-683", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 745, - "content": "bbox-684", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 746, - "content": "bbox-685", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 747, - "content": "bbox-686", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 748, - "content": "bbox-687", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 749, - "content": "bbox-688", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 750, - "content": "bbox-689", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 751, - "content": "bbox-690", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 752, - "content": "bbox-691", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 753, - "content": "bbox-692", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 754, - "content": "bbox-693", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 755, - "content": "bbox-694", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 756, - "content": "bbox-695", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 757, - "content": "bbox-696", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 758, - "content": "bbox-697", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 759, - "content": "bbox-698", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 760, - "content": "bbox-699", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 761, - "content": "bbox-700", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 762, - "content": "bbox-701", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 763, - "content": "bbox-702", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 764, - "content": "bbox-703", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 765, - "content": "bbox-704", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 766, - "content": "bbox-705", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 767, - "content": "bbox-706", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 768, - "content": "bbox-707", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 769, - "content": "bbox-708", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 770, - "content": "bbox-709", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 771, - "content": "bbox-710", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 772, - "content": "bbox-711", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 773, - "content": "bbox-712", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 774, - "content": "bbox-713", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 775, - "content": "bbox-714", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 776, - "content": "bbox-715", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 777, - "content": "bbox-716", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 778, - "content": "bbox-717", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 779, - "content": "bbox-718", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 780, - "content": "bbox-719", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 781, - "content": "bbox-720", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 782, - "content": "bbox-721", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 783, - "content": "bbox-722", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 784, - "content": "bbox-723", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 785, - "content": "bbox-724", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 786, - "content": "bbox-725", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 787, - "content": "bbox-726", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 788, - "content": "bbox-727", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 789, - "content": "bbox-728", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 790, - "content": "bbox-729", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 791, - "content": "bbox-730", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 792, - "content": "bbox-731", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 793, - "content": "bbox-732", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 794, - "content": "bbox-733", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 795, - "content": "bbox-734", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 796, - "content": "bbox-735", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 797, - "content": "bbox-736", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 798, - "content": "bbox-737", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 799, - "content": "bbox-738", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 800, - "content": "bbox-739", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 801, - "content": "bbox-740", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 802, - "content": "bbox-741", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 803, - "content": "bbox-742", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 804, - "content": "bbox-743", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 805, - "content": "bbox-744", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 806, - "content": "bbox-745", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 807, - "content": "bbox-746", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 808, - "content": "bbox-747", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 809, - "content": "bbox-748", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 810, - "content": "bbox-749", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 811, - "content": "bbox-750", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 812, - "content": "bbox-751", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 813, - "content": "bbox-752", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 814, - "content": "bbox-753", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 815, - "content": "bbox-754", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 816, - "content": "bbox-755", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 817, - "content": "bbox-756", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 818, - "content": "bbox-757", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 819, - "content": "bbox-758", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 820, - "content": "bbox-759", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 821, - "content": "bbox-760", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 822, - "content": "bbox-761", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 823, - "content": "bbox-762", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 824, - "content": "bbox-763", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 825, - "content": "bbox-764", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 826, - "content": "bbox-765", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 827, - "content": "bbox-766", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 828, - "content": "bbox-767", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 829, - "content": "bbox-768", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 830, - "content": "bbox-769", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 831, - "content": "bbox-770", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 832, - "content": "bbox-771", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 833, - "content": "bbox-772", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 834, - "content": "bbox-773", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 835, - "content": "bbox-774", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 836, - "content": "bbox-775", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 837, - "content": "bbox-776", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 838, - "content": "bbox-777", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 839, - "content": "bbox-778", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 840, - "content": "bbox-779", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 841, - "content": "bbox-780", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 842, - "content": "bbox-781", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 843, - "content": "bbox-782", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 844, - "content": "bbox-783", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 845, - "content": "bbox-784", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 846, - "content": "bbox-785", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 847, - "content": "bbox-786", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 848, - "content": "bbox-787", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 849, - "content": "bbox-788", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 850, - "content": "bbox-789", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 851, - "content": "bbox-790", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 852, - "content": "bbox-791", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 853, - "content": "bbox-792", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 854, - "content": "bbox-793", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 855, - "content": "bbox-794", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 856, - "content": "bbox-795", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 857, - "content": "bbox-796", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 858, - "content": "bbox-797", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 859, - "content": "bbox-798", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 860, - "content": "bbox-799", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 861, - "content": "bbox-800", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 862, - "content": "bbox-801", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 863, - "content": "bbox-802", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 864, - "content": "bbox-803", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 865, - "content": "bbox-804", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 866, - "content": "bbox-805", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 867, - "content": "bbox-806", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 868, - "content": "bbox-807", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 869, - "content": "bbox-808", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 870, - "content": "bbox-809", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 871, - "content": "bbox-810", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 872, - "content": "bbox-811", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 873, - "content": "bbox-812", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 874, - "content": "bbox-813", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 875, - "content": "bbox-814", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 876, - "content": "bbox-815", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 877, - "content": "bbox-816", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 878, - "content": "bbox-817", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 879, - "content": "bbox-818", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 880, - "content": "bbox-819", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 881, - "content": "bbox-820", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 882, - "content": "bbox-821", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 883, - "content": "bbox-822", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 884, - "content": "bbox-823", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 885, - "content": "bbox-824", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 886, - "content": "bbox-825", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 887, - "content": "bbox-826", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 888, - "content": "bbox-827", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 889, - "content": "bbox-828", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 890, - "content": "bbox-829", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 891, - "content": "bbox-830", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 892, - "content": "bbox-831", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 893, - "content": "bbox-832", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 894, - "content": "bbox-833", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 895, - "content": "bbox-834", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 896, - "content": "bbox-835", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 897, - "content": "bbox-836", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 898, - "content": "bbox-837", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 899, - "content": "bbox-838", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 900, - "content": "bbox-839", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 901, - "content": "bbox-840", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 902, - "content": "bbox-841", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 903, - "content": "bbox-842", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 904, - "content": "bbox-843", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 905, - "content": "bbox-844", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 906, - "content": "bbox-845", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 907, - "content": "bbox-846", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 908, - "content": "bbox-847", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 909, - "content": "bbox-848", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 910, - "content": "bbox-849", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 911, - "content": "bbox-850", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 912, - "content": "bbox-851", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 913, - "content": "bbox-852", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 914, - "content": "bbox-853", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 915, - "content": "bbox-854", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 916, - "content": "bbox-855", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 917, - "content": "bbox-856", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 918, - "content": "bbox-857", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 919, - "content": "bbox-858", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 920, - "content": "bbox-859", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 921, - "content": "bbox-860", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 922, - "content": "bbox-861", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 923, - "content": "bbox-862", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 924, - "content": "bbox-863", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 925, - "content": "bbox-864", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 926, - "content": "bbox-865", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 927, - "content": "bbox-866", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 928, - "content": "bbox-867", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 929, - "content": "bbox-868", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 930, - "content": "bbox-869", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 931, - "content": "bbox-870", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 932, - "content": "bbox-871", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 933, - "content": "bbox-872", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 934, - "content": "bbox-873", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 935, - "content": "bbox-874", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 936, - "content": "bbox-875", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 937, - "content": "bbox-876", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 938, - "content": "bbox-877", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 939, - "content": "bbox-878", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 940, - "content": "bbox-879", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 941, - "content": "bbox-880", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 942, - "content": "bbox-881", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 943, - "content": "bbox-882", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 944, - "content": "bbox-883", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 945, - "content": "bbox-884", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 946, - "content": "bbox-885", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 947, - "content": "bbox-886", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 948, - "content": "bbox-887", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 949, - "content": "bbox-888", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 950, - "content": "bbox-889", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 951, - "content": "bbox-890", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 952, - "content": "bbox-891", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 953, - "content": "bbox-892", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 954, - "content": "bbox-893", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 955, - "content": "bbox-894", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 956, - "content": "bbox-895", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 957, - "content": "bbox-896", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 958, - "content": "bbox-897", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 959, - "content": "bbox-898", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - } - ], - "normalizer": { - "type": "Sequence", - "normalizers": [ - { - "type": "NFD" - }, - { - "type": "Lowercase" - }, - { - "type": "StripAccents" - }, - { - "type": "Strip", - "strip_left": true, - "strip_right": true - } - ] - }, - "pre_tokenizer": { - "type": "Whitespace" - }, - "post_processor": null, - "decoder": { - "type": "WordPiece", - "prefix": "##", - "cleanup": true - }, - "model": { - "type": "WordPiece", - "unk_token": "", - "continuing_subword_prefix": "##", - "max_input_chars_per_word": 100, - "vocab": { - "": 0, - "": 1, - "": 2, - "": 3, - "": 4, - "": 5, - "[table]": 6, - "[html]": 7, - "[cell]": 8, - "[bbox]": 9, - "[cell+bbox]": 10, - "[html+bbox]": 11, - "": 12, - "[": 13, - "]": 14, - "[": 16, - ">": 17, - "": 18, - "": 19, - "": 20, - "": 21, - "": 22, - "": 23, - " rowspan=\"2\"": 24, - " rowspan=\"3\"": 25, - " rowspan=\"4\"": 26, - " rowspan=\"5\"": 27, - " rowspan=\"6\"": 28, - " rowspan=\"7\"": 29, - " rowspan=\"8\"": 30, - " rowspan=\"9\"": 31, - " rowspan=\"10\"": 32, - " rowspan=\"11\"": 33, - " rowspan=\"12\"": 34, - " rowspan=\"13\"": 35, - " rowspan=\"14\"": 36, - " rowspan=\"15\"": 37, - " rowspan=\"16\"": 38, - " rowspan=\"17\"": 39, - " rowspan=\"18\"": 40, - " rowspan=\"19\"": 41, - " colspan=\"2\"": 42, - " colspan=\"3\"": 43, - " colspan=\"4\"": 44, - " colspan=\"5\"": 45, - " colspan=\"6\"": 46, - " colspan=\"7\"": 47, - " colspan=\"8\"": 48, - " colspan=\"9\"": 49, - " colspan=\"10\"": 50, - " colspan=\"11\"": 51, - " colspan=\"12\"": 52, - " colspan=\"13\"": 53, - " colspan=\"14\"": 54, - " colspan=\"15\"": 55, - " colspan=\"16\"": 56, - " colspan=\"17\"": 57, - " colspan=\"18\"": 58, - " colspan=\"19\"": 59, - " colspan=\"25\"": 60, - "bbox-0": 61, - "bbox-1": 62, - "bbox-2": 63, - "bbox-3": 64, - "bbox-4": 65, - "bbox-5": 66, - "bbox-6": 67, - "bbox-7": 68, - "bbox-8": 69, - "bbox-9": 70, - "bbox-10": 71, - "bbox-11": 72, - "bbox-12": 73, - "bbox-13": 74, - "bbox-14": 75, - "bbox-15": 76, - "bbox-16": 77, - "bbox-17": 78, - "bbox-18": 79, - "bbox-19": 80, - "bbox-20": 81, - "bbox-21": 82, - "bbox-22": 83, - "bbox-23": 84, - "bbox-24": 85, - "bbox-25": 86, - "bbox-26": 87, - "bbox-27": 88, - "bbox-28": 89, - "bbox-29": 90, - "bbox-30": 91, - "bbox-31": 92, - "bbox-32": 93, - "bbox-33": 94, - "bbox-34": 95, - "bbox-35": 96, - "bbox-36": 97, - "bbox-37": 98, - "bbox-38": 99, - "bbox-39": 100, - "bbox-40": 101, - "bbox-41": 102, - "bbox-42": 103, - "bbox-43": 104, - "bbox-44": 105, - "bbox-45": 106, - "bbox-46": 107, - "bbox-47": 108, - "bbox-48": 109, - "bbox-49": 110, - "bbox-50": 111, - "bbox-51": 112, - "bbox-52": 113, - "bbox-53": 114, - "bbox-54": 115, - "bbox-55": 116, - "bbox-56": 117, - "bbox-57": 118, - "bbox-58": 119, - "bbox-59": 120, - "bbox-60": 121, - "bbox-61": 122, - "bbox-62": 123, - "bbox-63": 124, - "bbox-64": 125, - "bbox-65": 126, - "bbox-66": 127, - "bbox-67": 128, - "bbox-68": 129, - "bbox-69": 130, - "bbox-70": 131, - "bbox-71": 132, - "bbox-72": 133, - "bbox-73": 134, - "bbox-74": 135, - "bbox-75": 136, - "bbox-76": 137, - "bbox-77": 138, - "bbox-78": 139, - "bbox-79": 140, - "bbox-80": 141, - "bbox-81": 142, - "bbox-82": 143, - "bbox-83": 144, - "bbox-84": 145, - "bbox-85": 146, - "bbox-86": 147, - "bbox-87": 148, - "bbox-88": 149, - "bbox-89": 150, - "bbox-90": 151, - "bbox-91": 152, - "bbox-92": 153, - "bbox-93": 154, - "bbox-94": 155, - "bbox-95": 156, - "bbox-96": 157, - "bbox-97": 158, - "bbox-98": 159, - "bbox-99": 160, - "bbox-100": 161, - "bbox-101": 162, - "bbox-102": 163, - "bbox-103": 164, - "bbox-104": 165, - "bbox-105": 166, - "bbox-106": 167, - "bbox-107": 168, - "bbox-108": 169, - "bbox-109": 170, - "bbox-110": 171, - "bbox-111": 172, - "bbox-112": 173, - "bbox-113": 174, - "bbox-114": 175, - "bbox-115": 176, - "bbox-116": 177, - "bbox-117": 178, - "bbox-118": 179, - "bbox-119": 180, - "bbox-120": 181, - "bbox-121": 182, - "bbox-122": 183, - "bbox-123": 184, - "bbox-124": 185, - "bbox-125": 186, - "bbox-126": 187, - "bbox-127": 188, - "bbox-128": 189, - "bbox-129": 190, - "bbox-130": 191, - "bbox-131": 192, - "bbox-132": 193, - "bbox-133": 194, - "bbox-134": 195, - "bbox-135": 196, - "bbox-136": 197, - "bbox-137": 198, - "bbox-138": 199, - "bbox-139": 200, - "bbox-140": 201, - "bbox-141": 202, - "bbox-142": 203, - "bbox-143": 204, - "bbox-144": 205, - "bbox-145": 206, - "bbox-146": 207, - "bbox-147": 208, - "bbox-148": 209, - "bbox-149": 210, - "bbox-150": 211, - "bbox-151": 212, - "bbox-152": 213, - "bbox-153": 214, - "bbox-154": 215, - "bbox-155": 216, - "bbox-156": 217, - "bbox-157": 218, - "bbox-158": 219, - "bbox-159": 220, - "bbox-160": 221, - "bbox-161": 222, - "bbox-162": 223, - "bbox-163": 224, - "bbox-164": 225, - "bbox-165": 226, - "bbox-166": 227, - "bbox-167": 228, - "bbox-168": 229, - "bbox-169": 230, - "bbox-170": 231, - "bbox-171": 232, - "bbox-172": 233, - "bbox-173": 234, - "bbox-174": 235, - "bbox-175": 236, - "bbox-176": 237, - "bbox-177": 238, - "bbox-178": 239, - "bbox-179": 240, - "bbox-180": 241, - "bbox-181": 242, - "bbox-182": 243, - "bbox-183": 244, - "bbox-184": 245, - "bbox-185": 246, - "bbox-186": 247, - "bbox-187": 248, - "bbox-188": 249, - "bbox-189": 250, - "bbox-190": 251, - "bbox-191": 252, - "bbox-192": 253, - "bbox-193": 254, - "bbox-194": 255, - "bbox-195": 256, - "bbox-196": 257, - "bbox-197": 258, - "bbox-198": 259, - "bbox-199": 260, - "bbox-200": 261, - "bbox-201": 262, - "bbox-202": 263, - "bbox-203": 264, - "bbox-204": 265, - "bbox-205": 266, - "bbox-206": 267, - "bbox-207": 268, - "bbox-208": 269, - "bbox-209": 270, - "bbox-210": 271, - "bbox-211": 272, - "bbox-212": 273, - "bbox-213": 274, - "bbox-214": 275, - "bbox-215": 276, - "bbox-216": 277, - "bbox-217": 278, - "bbox-218": 279, - "bbox-219": 280, - "bbox-220": 281, - "bbox-221": 282, - "bbox-222": 283, - "bbox-223": 284, - "bbox-224": 285, - "bbox-225": 286, - "bbox-226": 287, - "bbox-227": 288, - "bbox-228": 289, - "bbox-229": 290, - "bbox-230": 291, - "bbox-231": 292, - "bbox-232": 293, - "bbox-233": 294, - "bbox-234": 295, - "bbox-235": 296, - "bbox-236": 297, - "bbox-237": 298, - "bbox-238": 299, - "bbox-239": 300, - "bbox-240": 301, - "bbox-241": 302, - "bbox-242": 303, - "bbox-243": 304, - "bbox-244": 305, - "bbox-245": 306, - "bbox-246": 307, - "bbox-247": 308, - "bbox-248": 309, - "bbox-249": 310, - "bbox-250": 311, - "bbox-251": 312, - "bbox-252": 313, - "bbox-253": 314, - "bbox-254": 315, - "bbox-255": 316, - "bbox-256": 317, - "bbox-257": 318, - "bbox-258": 319, - "bbox-259": 320, - "bbox-260": 321, - "bbox-261": 322, - "bbox-262": 323, - "bbox-263": 324, - "bbox-264": 325, - "bbox-265": 326, - "bbox-266": 327, - "bbox-267": 328, - "bbox-268": 329, - "bbox-269": 330, - "bbox-270": 331, - "bbox-271": 332, - "bbox-272": 333, - "bbox-273": 334, - "bbox-274": 335, - "bbox-275": 336, - "bbox-276": 337, - "bbox-277": 338, - "bbox-278": 339, - "bbox-279": 340, - "bbox-280": 341, - "bbox-281": 342, - "bbox-282": 343, - "bbox-283": 344, - "bbox-284": 345, - "bbox-285": 346, - "bbox-286": 347, - "bbox-287": 348, - "bbox-288": 349, - "bbox-289": 350, - "bbox-290": 351, - "bbox-291": 352, - "bbox-292": 353, - "bbox-293": 354, - "bbox-294": 355, - "bbox-295": 356, - "bbox-296": 357, - "bbox-297": 358, - "bbox-298": 359, - "bbox-299": 360, - "bbox-300": 361, - "bbox-301": 362, - "bbox-302": 363, - "bbox-303": 364, - "bbox-304": 365, - "bbox-305": 366, - "bbox-306": 367, - "bbox-307": 368, - "bbox-308": 369, - "bbox-309": 370, - "bbox-310": 371, - "bbox-311": 372, - "bbox-312": 373, - "bbox-313": 374, - "bbox-314": 375, - "bbox-315": 376, - "bbox-316": 377, - "bbox-317": 378, - "bbox-318": 379, - "bbox-319": 380, - "bbox-320": 381, - "bbox-321": 382, - "bbox-322": 383, - "bbox-323": 384, - "bbox-324": 385, - "bbox-325": 386, - "bbox-326": 387, - "bbox-327": 388, - "bbox-328": 389, - "bbox-329": 390, - "bbox-330": 391, - "bbox-331": 392, - "bbox-332": 393, - "bbox-333": 394, - "bbox-334": 395, - "bbox-335": 396, - "bbox-336": 397, - "bbox-337": 398, - "bbox-338": 399, - "bbox-339": 400, - "bbox-340": 401, - "bbox-341": 402, - "bbox-342": 403, - "bbox-343": 404, - "bbox-344": 405, - "bbox-345": 406, - "bbox-346": 407, - "bbox-347": 408, - "bbox-348": 409, - "bbox-349": 410, - "bbox-350": 411, - "bbox-351": 412, - "bbox-352": 413, - "bbox-353": 414, - "bbox-354": 415, - "bbox-355": 416, - "bbox-356": 417, - "bbox-357": 418, - "bbox-358": 419, - "bbox-359": 420, - "bbox-360": 421, - "bbox-361": 422, - "bbox-362": 423, - "bbox-363": 424, - "bbox-364": 425, - "bbox-365": 426, - "bbox-366": 427, - "bbox-367": 428, - "bbox-368": 429, - "bbox-369": 430, - "bbox-370": 431, - "bbox-371": 432, - "bbox-372": 433, - "bbox-373": 434, - "bbox-374": 435, - "bbox-375": 436, - "bbox-376": 437, - "bbox-377": 438, - "bbox-378": 439, - "bbox-379": 440, - "bbox-380": 441, - "bbox-381": 442, - "bbox-382": 443, - "bbox-383": 444, - "bbox-384": 445, - "bbox-385": 446, - "bbox-386": 447, - "bbox-387": 448, - "bbox-388": 449, - "bbox-389": 450, - "bbox-390": 451, - "bbox-391": 452, - "bbox-392": 453, - "bbox-393": 454, - "bbox-394": 455, - "bbox-395": 456, - "bbox-396": 457, - "bbox-397": 458, - "bbox-398": 459, - "bbox-399": 460, - "bbox-400": 461, - "bbox-401": 462, - "bbox-402": 463, - "bbox-403": 464, - "bbox-404": 465, - "bbox-405": 466, - "bbox-406": 467, - "bbox-407": 468, - "bbox-408": 469, - "bbox-409": 470, - "bbox-410": 471, - "bbox-411": 472, - "bbox-412": 473, - "bbox-413": 474, - "bbox-414": 475, - "bbox-415": 476, - "bbox-416": 477, - "bbox-417": 478, - "bbox-418": 479, - "bbox-419": 480, - "bbox-420": 481, - "bbox-421": 482, - "bbox-422": 483, - "bbox-423": 484, - "bbox-424": 485, - "bbox-425": 486, - "bbox-426": 487, - "bbox-427": 488, - "bbox-428": 489, - "bbox-429": 490, - "bbox-430": 491, - "bbox-431": 492, - "bbox-432": 493, - "bbox-433": 494, - "bbox-434": 495, - "bbox-435": 496, - "bbox-436": 497, - "bbox-437": 498, - "bbox-438": 499, - "bbox-439": 500, - "bbox-440": 501, - "bbox-441": 502, - "bbox-442": 503, - "bbox-443": 504, - "bbox-444": 505, - "bbox-445": 506, - "bbox-446": 507, - "bbox-447": 508, - "bbox-448": 509, - "bbox-449": 510, - "bbox-450": 511, - "bbox-451": 512, - "bbox-452": 513, - "bbox-453": 514, - "bbox-454": 515, - "bbox-455": 516, - "bbox-456": 517, - "bbox-457": 518, - "bbox-458": 519, - "bbox-459": 520, - "bbox-460": 521, - "bbox-461": 522, - "bbox-462": 523, - "bbox-463": 524, - "bbox-464": 525, - "bbox-465": 526, - "bbox-466": 527, - "bbox-467": 528, - "bbox-468": 529, - "bbox-469": 530, - "bbox-470": 531, - "bbox-471": 532, - "bbox-472": 533, - "bbox-473": 534, - "bbox-474": 535, - "bbox-475": 536, - "bbox-476": 537, - "bbox-477": 538, - "bbox-478": 539, - "bbox-479": 540, - "bbox-480": 541, - "bbox-481": 542, - "bbox-482": 543, - "bbox-483": 544, - "bbox-484": 545, - "bbox-485": 546, - "bbox-486": 547, - "bbox-487": 548, - "bbox-488": 549, - "bbox-489": 550, - "bbox-490": 551, - "bbox-491": 552, - "bbox-492": 553, - "bbox-493": 554, - "bbox-494": 555, - "bbox-495": 556, - "bbox-496": 557, - "bbox-497": 558, - "bbox-498": 559, - "bbox-499": 560, - "bbox-500": 561, - "bbox-501": 562, - "bbox-502": 563, - "bbox-503": 564, - "bbox-504": 565, - "bbox-505": 566, - "bbox-506": 567, - "bbox-507": 568, - "bbox-508": 569, - "bbox-509": 570, - "bbox-510": 571, - "bbox-511": 572, - "bbox-512": 573, - "bbox-513": 574, - "bbox-514": 575, - "bbox-515": 576, - "bbox-516": 577, - "bbox-517": 578, - "bbox-518": 579, - "bbox-519": 580, - "bbox-520": 581, - "bbox-521": 582, - "bbox-522": 583, - "bbox-523": 584, - "bbox-524": 585, - "bbox-525": 586, - "bbox-526": 587, - "bbox-527": 588, - "bbox-528": 589, - "bbox-529": 590, - "bbox-530": 591, - "bbox-531": 592, - "bbox-532": 593, - "bbox-533": 594, - "bbox-534": 595, - "bbox-535": 596, - "bbox-536": 597, - "bbox-537": 598, - "bbox-538": 599, - "bbox-539": 600, - "bbox-540": 601, - "bbox-541": 602, - "bbox-542": 603, - "bbox-543": 604, - "bbox-544": 605, - "bbox-545": 606, - "bbox-546": 607, - "bbox-547": 608, - "bbox-548": 609, - "bbox-549": 610, - "bbox-550": 611, - "bbox-551": 612, - "bbox-552": 613, - "bbox-553": 614, - "bbox-554": 615, - "bbox-555": 616, - "bbox-556": 617, - "bbox-557": 618, - "bbox-558": 619, - "bbox-559": 620, - "bbox-560": 621, - "bbox-561": 622, - "bbox-562": 623, - "bbox-563": 624, - "bbox-564": 625, - "bbox-565": 626, - "bbox-566": 627, - "bbox-567": 628, - "bbox-568": 629, - "bbox-569": 630, - "bbox-570": 631, - "bbox-571": 632, - "bbox-572": 633, - "bbox-573": 634, - "bbox-574": 635, - "bbox-575": 636, - "bbox-576": 637, - "bbox-577": 638, - "bbox-578": 639, - "bbox-579": 640, - "bbox-580": 641, - "bbox-581": 642, - "bbox-582": 643, - "bbox-583": 644, - "bbox-584": 645, - "bbox-585": 646, - "bbox-586": 647, - "bbox-587": 648, - "bbox-588": 649, - "bbox-589": 650, - "bbox-590": 651, - "bbox-591": 652, - "bbox-592": 653, - "bbox-593": 654, - "bbox-594": 655, - "bbox-595": 656, - "bbox-596": 657, - "bbox-597": 658, - "bbox-598": 659, - "bbox-599": 660, - "bbox-600": 661, - "bbox-601": 662, - "bbox-602": 663, - "bbox-603": 664, - "bbox-604": 665, - "bbox-605": 666, - "bbox-606": 667, - "bbox-607": 668, - "bbox-608": 669, - "bbox-609": 670, - "bbox-610": 671, - "bbox-611": 672, - "bbox-612": 673, - "bbox-613": 674, - "bbox-614": 675, - "bbox-615": 676, - "bbox-616": 677, - "bbox-617": 678, - "bbox-618": 679, - "bbox-619": 680, - "bbox-620": 681, - "bbox-621": 682, - "bbox-622": 683, - "bbox-623": 684, - "bbox-624": 685, - "bbox-625": 686, - "bbox-626": 687, - "bbox-627": 688, - "bbox-628": 689, - "bbox-629": 690, - "bbox-630": 691, - "bbox-631": 692, - "bbox-632": 693, - "bbox-633": 694, - "bbox-634": 695, - "bbox-635": 696, - "bbox-636": 697, - "bbox-637": 698, - "bbox-638": 699, - "bbox-639": 700, - "bbox-640": 701, - "bbox-641": 702, - "bbox-642": 703, - "bbox-643": 704, - "bbox-644": 705, - "bbox-645": 706, - "bbox-646": 707, - "bbox-647": 708, - "bbox-648": 709, - "bbox-649": 710, - "bbox-650": 711, - "bbox-651": 712, - "bbox-652": 713, - "bbox-653": 714, - "bbox-654": 715, - "bbox-655": 716, - "bbox-656": 717, - "bbox-657": 718, - "bbox-658": 719, - "bbox-659": 720, - "bbox-660": 721, - "bbox-661": 722, - "bbox-662": 723, - "bbox-663": 724, - "bbox-664": 725, - "bbox-665": 726, - "bbox-666": 727, - "bbox-667": 728, - "bbox-668": 729, - "bbox-669": 730, - "bbox-670": 731, - "bbox-671": 732, - "bbox-672": 733, - "bbox-673": 734, - "bbox-674": 735, - "bbox-675": 736, - "bbox-676": 737, - "bbox-677": 738, - "bbox-678": 739, - "bbox-679": 740, - "bbox-680": 741, - "bbox-681": 742, - "bbox-682": 743, - "bbox-683": 744, - "bbox-684": 745, - "bbox-685": 746, - "bbox-686": 747, - "bbox-687": 748, - "bbox-688": 749, - "bbox-689": 750, - "bbox-690": 751, - "bbox-691": 752, - "bbox-692": 753, - "bbox-693": 754, - "bbox-694": 755, - "bbox-695": 756, - "bbox-696": 757, - "bbox-697": 758, - "bbox-698": 759, - "bbox-699": 760, - "bbox-700": 761, - "bbox-701": 762, - "bbox-702": 763, - "bbox-703": 764, - "bbox-704": 765, - "bbox-705": 766, - "bbox-706": 767, - "bbox-707": 768, - "bbox-708": 769, - "bbox-709": 770, - "bbox-710": 771, - "bbox-711": 772, - "bbox-712": 773, - "bbox-713": 774, - "bbox-714": 775, - "bbox-715": 776, - "bbox-716": 777, - "bbox-717": 778, - "bbox-718": 779, - "bbox-719": 780, - "bbox-720": 781, - "bbox-721": 782, - "bbox-722": 783, - "bbox-723": 784, - "bbox-724": 785, - "bbox-725": 786, - "bbox-726": 787, - "bbox-727": 788, - "bbox-728": 789, - "bbox-729": 790, - "bbox-730": 791, - "bbox-731": 792, - "bbox-732": 793, - "bbox-733": 794, - "bbox-734": 795, - "bbox-735": 796, - "bbox-736": 797, - "bbox-737": 798, - "bbox-738": 799, - "bbox-739": 800, - "bbox-740": 801, - "bbox-741": 802, - "bbox-742": 803, - "bbox-743": 804, - "bbox-744": 805, - "bbox-745": 806, - "bbox-746": 807, - "bbox-747": 808, - "bbox-748": 809, - "bbox-749": 810, - "bbox-750": 811, - "bbox-751": 812, - "bbox-752": 813, - "bbox-753": 814, - "bbox-754": 815, - "bbox-755": 816, - "bbox-756": 817, - "bbox-757": 818, - "bbox-758": 819, - "bbox-759": 820, - "bbox-760": 821, - "bbox-761": 822, - "bbox-762": 823, - "bbox-763": 824, - "bbox-764": 825, - "bbox-765": 826, - "bbox-766": 827, - "bbox-767": 828, - "bbox-768": 829, - "bbox-769": 830, - "bbox-770": 831, - "bbox-771": 832, - "bbox-772": 833, - "bbox-773": 834, - "bbox-774": 835, - "bbox-775": 836, - "bbox-776": 837, - "bbox-777": 838, - "bbox-778": 839, - "bbox-779": 840, - "bbox-780": 841, - "bbox-781": 842, - "bbox-782": 843, - "bbox-783": 844, - "bbox-784": 845, - "bbox-785": 846, - "bbox-786": 847, - "bbox-787": 848, - "bbox-788": 849, - "bbox-789": 850, - "bbox-790": 851, - "bbox-791": 852, - "bbox-792": 853, - "bbox-793": 854, - "bbox-794": 855, - "bbox-795": 856, - "bbox-796": 857, - "bbox-797": 858, - "bbox-798": 859, - "bbox-799": 860, - "bbox-800": 861, - "bbox-801": 862, - "bbox-802": 863, - "bbox-803": 864, - "bbox-804": 865, - "bbox-805": 866, - "bbox-806": 867, - "bbox-807": 868, - "bbox-808": 869, - "bbox-809": 870, - "bbox-810": 871, - "bbox-811": 872, - "bbox-812": 873, - "bbox-813": 874, - "bbox-814": 875, - "bbox-815": 876, - "bbox-816": 877, - "bbox-817": 878, - "bbox-818": 879, - "bbox-819": 880, - "bbox-820": 881, - "bbox-821": 882, - "bbox-822": 883, - "bbox-823": 884, - "bbox-824": 885, - "bbox-825": 886, - "bbox-826": 887, - "bbox-827": 888, - "bbox-828": 889, - "bbox-829": 890, - "bbox-830": 891, - "bbox-831": 892, - "bbox-832": 893, - "bbox-833": 894, - "bbox-834": 895, - "bbox-835": 896, - "bbox-836": 897, - "bbox-837": 898, - "bbox-838": 899, - "bbox-839": 900, - "bbox-840": 901, - "bbox-841": 902, - "bbox-842": 903, - "bbox-843": 904, - "bbox-844": 905, - "bbox-845": 906, - "bbox-846": 907, - "bbox-847": 908, - "bbox-848": 909, - "bbox-849": 910, - "bbox-850": 911, - "bbox-851": 912, - "bbox-852": 913, - "bbox-853": 914, - "bbox-854": 915, - "bbox-855": 916, - "bbox-856": 917, - "bbox-857": 918, - "bbox-858": 919, - "bbox-859": 920, - "bbox-860": 921, - "bbox-861": 922, - "bbox-862": 923, - "bbox-863": 924, - "bbox-864": 925, - "bbox-865": 926, - "bbox-866": 927, - "bbox-867": 928, - "bbox-868": 929, - "bbox-869": 930, - "bbox-870": 931, - "bbox-871": 932, - "bbox-872": 933, - "bbox-873": 934, - "bbox-874": 935, - "bbox-875": 936, - "bbox-876": 937, - "bbox-877": 938, - "bbox-878": 939, - "bbox-879": 940, - "bbox-880": 941, - "bbox-881": 942, - "bbox-882": 943, - "bbox-883": 944, - "bbox-884": 945, - "bbox-885": 946, - "bbox-886": 947, - "bbox-887": 948, - "bbox-888": 949, - "bbox-889": 950, - "bbox-890": 951, - "bbox-891": 952, - "bbox-892": 953, - "bbox-893": 954, - "bbox-894": 955, - "bbox-895": 956, - "bbox-896": 957, - "bbox-897": 958, - "bbox-898": 959 - } - } -} \ No newline at end of file diff --git a/rapid_table/utils/download_model.py b/rapid_table/utils/download_model.py index a228238..adedb5d 100644 --- a/rapid_table/utils/download_model.py +++ b/rapid_table/utils/download_model.py @@ -9,7 +9,7 @@ logger = get_logger("DownloadModel") -PROJECT_DIR = Path(__file__).resolve().parent +PROJECT_DIR = Path(__file__).resolve().parent.parent DEFAULT_MODEL_DIR = PROJECT_DIR / "models" diff --git a/rapid_table/utils/models/unitable_vocab.json b/rapid_table/utils/models/unitable_vocab.json deleted file mode 100644 index c13ccef..0000000 --- a/rapid_table/utils/models/unitable_vocab.json +++ /dev/null @@ -1,9650 +0,0 @@ -{ - "version": "1.0", - "truncation": null, - "padding": { - "strategy": "BatchLongest", - "direction": "Right", - "pad_to_multiple_of": null, - "pad_id": 2, - "pad_type_id": 0, - "pad_token": "" - }, - "added_tokens": [ - { - "id": 0, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 1, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 2, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 3, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 4, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 5, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 6, - "content": "[table]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 7, - "content": "[html]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 8, - "content": "[cell]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 9, - "content": "[bbox]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 10, - "content": "[cell+bbox]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 11, - "content": "[html+bbox]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 12, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 13, - "content": "[", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 14, - "content": "]", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 15, - "content": "[", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 17, - "content": ">", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 18, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 19, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 20, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 21, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 22, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 23, - "content": "", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 24, - "content": " rowspan=\"2\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 25, - "content": " rowspan=\"3\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 26, - "content": " rowspan=\"4\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 27, - "content": " rowspan=\"5\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 28, - "content": " rowspan=\"6\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 29, - "content": " rowspan=\"7\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 30, - "content": " rowspan=\"8\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 31, - "content": " rowspan=\"9\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 32, - "content": " rowspan=\"10\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 33, - "content": " rowspan=\"11\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 34, - "content": " rowspan=\"12\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 35, - "content": " rowspan=\"13\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 36, - "content": " rowspan=\"14\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 37, - "content": " rowspan=\"15\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 38, - "content": " rowspan=\"16\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 39, - "content": " rowspan=\"17\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 40, - "content": " rowspan=\"18\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 41, - "content": " rowspan=\"19\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 42, - "content": " colspan=\"2\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 43, - "content": " colspan=\"3\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 44, - "content": " colspan=\"4\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 45, - "content": " colspan=\"5\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 46, - "content": " colspan=\"6\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 47, - "content": " colspan=\"7\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 48, - "content": " colspan=\"8\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 49, - "content": " colspan=\"9\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 50, - "content": " colspan=\"10\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 51, - "content": " colspan=\"11\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 52, - "content": " colspan=\"12\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 53, - "content": " colspan=\"13\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 54, - "content": " colspan=\"14\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 55, - "content": " colspan=\"15\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 56, - "content": " colspan=\"16\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 57, - "content": " colspan=\"17\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 58, - "content": " colspan=\"18\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 59, - "content": " colspan=\"19\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 60, - "content": " colspan=\"25\"", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 61, - "content": "bbox-0", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 62, - "content": "bbox-1", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 63, - "content": "bbox-2", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 64, - "content": "bbox-3", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 65, - "content": "bbox-4", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 66, - "content": "bbox-5", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 67, - "content": "bbox-6", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 68, - "content": "bbox-7", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 69, - "content": "bbox-8", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 70, - "content": "bbox-9", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 71, - "content": "bbox-10", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 72, - "content": "bbox-11", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 73, - "content": "bbox-12", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 74, - "content": "bbox-13", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 75, - "content": "bbox-14", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 76, - "content": "bbox-15", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 77, - "content": "bbox-16", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 78, - "content": "bbox-17", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 79, - "content": "bbox-18", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 80, - "content": "bbox-19", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 81, - "content": "bbox-20", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 82, - "content": "bbox-21", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 83, - "content": "bbox-22", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 84, - "content": "bbox-23", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 85, - "content": "bbox-24", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 86, - "content": "bbox-25", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 87, - "content": "bbox-26", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 88, - "content": "bbox-27", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 89, - "content": "bbox-28", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 90, - "content": "bbox-29", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 91, - "content": "bbox-30", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 92, - "content": "bbox-31", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 93, - "content": "bbox-32", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 94, - "content": "bbox-33", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 95, - "content": "bbox-34", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 96, - "content": "bbox-35", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 97, - "content": "bbox-36", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 98, - "content": "bbox-37", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 99, - "content": "bbox-38", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 100, - "content": "bbox-39", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 101, - "content": "bbox-40", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 102, - "content": "bbox-41", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 103, - "content": "bbox-42", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 104, - "content": "bbox-43", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 105, - "content": "bbox-44", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 106, - "content": "bbox-45", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 107, - "content": "bbox-46", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 108, - "content": "bbox-47", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 109, - "content": "bbox-48", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 110, - "content": "bbox-49", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 111, - "content": "bbox-50", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 112, - "content": "bbox-51", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 113, - "content": "bbox-52", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 114, - "content": "bbox-53", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 115, - "content": "bbox-54", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 116, - "content": "bbox-55", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 117, - "content": "bbox-56", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 118, - "content": "bbox-57", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 119, - "content": "bbox-58", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 120, - "content": "bbox-59", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 121, - "content": "bbox-60", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 122, - "content": "bbox-61", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 123, - "content": "bbox-62", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 124, - "content": "bbox-63", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 125, - "content": "bbox-64", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 126, - "content": "bbox-65", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 127, - "content": "bbox-66", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 128, - "content": "bbox-67", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 129, - "content": "bbox-68", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 130, - "content": "bbox-69", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 131, - "content": "bbox-70", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 132, - "content": "bbox-71", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 133, - "content": "bbox-72", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 134, - "content": "bbox-73", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 135, - "content": "bbox-74", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 136, - "content": "bbox-75", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 137, - "content": "bbox-76", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 138, - "content": "bbox-77", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 139, - "content": "bbox-78", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 140, - "content": "bbox-79", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 141, - "content": "bbox-80", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 142, - "content": "bbox-81", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 143, - "content": "bbox-82", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 144, - "content": "bbox-83", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 145, - "content": "bbox-84", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 146, - "content": "bbox-85", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 147, - "content": "bbox-86", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 148, - "content": "bbox-87", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 149, - "content": "bbox-88", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 150, - "content": "bbox-89", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 151, - "content": "bbox-90", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 152, - "content": "bbox-91", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 153, - "content": "bbox-92", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 154, - "content": "bbox-93", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 155, - "content": "bbox-94", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 156, - "content": "bbox-95", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 157, - "content": "bbox-96", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 158, - "content": "bbox-97", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 159, - "content": "bbox-98", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 160, - "content": "bbox-99", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 161, - "content": "bbox-100", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 162, - "content": "bbox-101", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 163, - "content": "bbox-102", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 164, - "content": "bbox-103", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 165, - "content": "bbox-104", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 166, - "content": "bbox-105", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 167, - "content": "bbox-106", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 168, - "content": "bbox-107", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 169, - "content": "bbox-108", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 170, - "content": "bbox-109", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 171, - "content": "bbox-110", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 172, - "content": "bbox-111", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 173, - "content": "bbox-112", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 174, - "content": "bbox-113", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 175, - "content": "bbox-114", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 176, - "content": "bbox-115", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 177, - "content": "bbox-116", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 178, - "content": "bbox-117", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 179, - "content": "bbox-118", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 180, - "content": "bbox-119", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 181, - "content": "bbox-120", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 182, - "content": "bbox-121", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 183, - "content": "bbox-122", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 184, - "content": "bbox-123", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 185, - "content": "bbox-124", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 186, - "content": "bbox-125", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 187, - "content": "bbox-126", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 188, - "content": "bbox-127", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 189, - "content": "bbox-128", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 190, - "content": "bbox-129", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 191, - "content": "bbox-130", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 192, - "content": "bbox-131", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 193, - "content": "bbox-132", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 194, - "content": "bbox-133", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 195, - "content": "bbox-134", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 196, - "content": "bbox-135", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 197, - "content": "bbox-136", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 198, - "content": "bbox-137", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 199, - "content": "bbox-138", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 200, - "content": "bbox-139", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 201, - "content": "bbox-140", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 202, - "content": "bbox-141", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 203, - "content": "bbox-142", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 204, - "content": "bbox-143", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 205, - "content": "bbox-144", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 206, - "content": "bbox-145", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 207, - "content": "bbox-146", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 208, - "content": "bbox-147", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 209, - "content": "bbox-148", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 210, - "content": "bbox-149", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 211, - "content": "bbox-150", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 212, - "content": "bbox-151", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 213, - "content": "bbox-152", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 214, - "content": "bbox-153", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 215, - "content": "bbox-154", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 216, - "content": "bbox-155", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 217, - "content": "bbox-156", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 218, - "content": "bbox-157", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 219, - "content": "bbox-158", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 220, - "content": "bbox-159", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 221, - "content": "bbox-160", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 222, - "content": "bbox-161", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 223, - "content": "bbox-162", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 224, - "content": "bbox-163", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 225, - "content": "bbox-164", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 226, - "content": "bbox-165", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 227, - "content": "bbox-166", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 228, - "content": "bbox-167", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 229, - "content": "bbox-168", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 230, - "content": "bbox-169", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 231, - "content": "bbox-170", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 232, - "content": "bbox-171", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 233, - "content": "bbox-172", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 234, - "content": "bbox-173", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 235, - "content": "bbox-174", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 236, - "content": "bbox-175", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 237, - "content": "bbox-176", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 238, - "content": "bbox-177", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 239, - "content": "bbox-178", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 240, - "content": "bbox-179", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 241, - "content": "bbox-180", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 242, - "content": "bbox-181", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 243, - "content": "bbox-182", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 244, - "content": "bbox-183", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 245, - "content": "bbox-184", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 246, - "content": "bbox-185", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 247, - "content": "bbox-186", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 248, - "content": "bbox-187", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 249, - "content": "bbox-188", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 250, - "content": "bbox-189", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 251, - "content": "bbox-190", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 252, - "content": "bbox-191", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 253, - "content": "bbox-192", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 254, - "content": "bbox-193", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 255, - "content": "bbox-194", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 256, - "content": "bbox-195", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 257, - "content": "bbox-196", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 258, - "content": "bbox-197", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 259, - "content": "bbox-198", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 260, - "content": "bbox-199", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 261, - "content": "bbox-200", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 262, - "content": "bbox-201", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 263, - "content": "bbox-202", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 264, - "content": "bbox-203", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 265, - "content": "bbox-204", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 266, - "content": "bbox-205", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 267, - "content": "bbox-206", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 268, - "content": "bbox-207", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 269, - "content": "bbox-208", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 270, - "content": "bbox-209", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 271, - "content": "bbox-210", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 272, - "content": "bbox-211", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 273, - "content": "bbox-212", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 274, - "content": "bbox-213", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 275, - "content": "bbox-214", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 276, - "content": "bbox-215", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 277, - "content": "bbox-216", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 278, - "content": "bbox-217", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 279, - "content": "bbox-218", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 280, - "content": "bbox-219", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 281, - "content": "bbox-220", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 282, - "content": "bbox-221", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 283, - "content": "bbox-222", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 284, - "content": "bbox-223", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 285, - "content": "bbox-224", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 286, - "content": "bbox-225", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 287, - "content": "bbox-226", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 288, - "content": "bbox-227", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 289, - "content": "bbox-228", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 290, - "content": "bbox-229", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 291, - "content": "bbox-230", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 292, - "content": "bbox-231", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 293, - "content": "bbox-232", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 294, - "content": "bbox-233", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 295, - "content": "bbox-234", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 296, - "content": "bbox-235", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 297, - "content": "bbox-236", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 298, - "content": "bbox-237", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 299, - "content": "bbox-238", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 300, - "content": "bbox-239", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 301, - "content": "bbox-240", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 302, - "content": "bbox-241", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 303, - "content": "bbox-242", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 304, - "content": "bbox-243", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 305, - "content": "bbox-244", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 306, - "content": "bbox-245", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 307, - "content": "bbox-246", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 308, - "content": "bbox-247", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 309, - "content": "bbox-248", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 310, - "content": "bbox-249", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 311, - "content": "bbox-250", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 312, - "content": "bbox-251", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 313, - "content": "bbox-252", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 314, - "content": "bbox-253", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 315, - "content": "bbox-254", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 316, - "content": "bbox-255", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 317, - "content": "bbox-256", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 318, - "content": "bbox-257", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 319, - "content": "bbox-258", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 320, - "content": "bbox-259", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 321, - "content": "bbox-260", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 322, - "content": "bbox-261", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 323, - "content": "bbox-262", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 324, - "content": "bbox-263", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 325, - "content": "bbox-264", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 326, - "content": "bbox-265", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 327, - "content": "bbox-266", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 328, - "content": "bbox-267", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 329, - "content": "bbox-268", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 330, - "content": "bbox-269", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 331, - "content": "bbox-270", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 332, - "content": "bbox-271", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 333, - "content": "bbox-272", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 334, - "content": "bbox-273", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 335, - "content": "bbox-274", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 336, - "content": "bbox-275", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 337, - "content": "bbox-276", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 338, - "content": "bbox-277", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 339, - "content": "bbox-278", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 340, - "content": "bbox-279", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 341, - "content": "bbox-280", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 342, - "content": "bbox-281", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 343, - "content": "bbox-282", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 344, - "content": "bbox-283", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 345, - "content": "bbox-284", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 346, - "content": "bbox-285", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 347, - "content": "bbox-286", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 348, - "content": "bbox-287", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 349, - "content": "bbox-288", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 350, - "content": "bbox-289", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 351, - "content": "bbox-290", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 352, - "content": "bbox-291", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 353, - "content": "bbox-292", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 354, - "content": "bbox-293", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 355, - "content": "bbox-294", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 356, - "content": "bbox-295", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 357, - "content": "bbox-296", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 358, - "content": "bbox-297", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 359, - "content": "bbox-298", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 360, - "content": "bbox-299", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 361, - "content": "bbox-300", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 362, - "content": "bbox-301", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 363, - "content": "bbox-302", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 364, - "content": "bbox-303", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 365, - "content": "bbox-304", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 366, - "content": "bbox-305", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 367, - "content": "bbox-306", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 368, - "content": "bbox-307", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 369, - "content": "bbox-308", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 370, - "content": "bbox-309", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 371, - "content": "bbox-310", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 372, - "content": "bbox-311", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 373, - "content": "bbox-312", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 374, - "content": "bbox-313", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 375, - "content": "bbox-314", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 376, - "content": "bbox-315", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 377, - "content": "bbox-316", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 378, - "content": "bbox-317", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 379, - "content": "bbox-318", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 380, - "content": "bbox-319", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 381, - "content": "bbox-320", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 382, - "content": "bbox-321", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 383, - "content": "bbox-322", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 384, - "content": "bbox-323", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 385, - "content": "bbox-324", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 386, - "content": "bbox-325", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 387, - "content": "bbox-326", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 388, - "content": "bbox-327", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 389, - "content": "bbox-328", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 390, - "content": "bbox-329", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 391, - "content": "bbox-330", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 392, - "content": "bbox-331", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 393, - "content": "bbox-332", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 394, - "content": "bbox-333", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 395, - "content": "bbox-334", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 396, - "content": "bbox-335", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 397, - "content": "bbox-336", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 398, - "content": "bbox-337", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 399, - "content": "bbox-338", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 400, - "content": "bbox-339", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 401, - "content": "bbox-340", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 402, - "content": "bbox-341", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 403, - "content": "bbox-342", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 404, - "content": "bbox-343", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 405, - "content": "bbox-344", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 406, - "content": "bbox-345", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 407, - "content": "bbox-346", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 408, - "content": "bbox-347", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 409, - "content": "bbox-348", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 410, - "content": "bbox-349", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 411, - "content": "bbox-350", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 412, - "content": "bbox-351", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 413, - "content": "bbox-352", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 414, - "content": "bbox-353", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 415, - "content": "bbox-354", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 416, - "content": "bbox-355", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 417, - "content": "bbox-356", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 418, - "content": "bbox-357", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 419, - "content": "bbox-358", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 420, - "content": "bbox-359", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 421, - "content": "bbox-360", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 422, - "content": "bbox-361", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 423, - "content": "bbox-362", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 424, - "content": "bbox-363", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 425, - "content": "bbox-364", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 426, - "content": "bbox-365", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 427, - "content": "bbox-366", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 428, - "content": "bbox-367", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 429, - "content": "bbox-368", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 430, - "content": "bbox-369", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 431, - "content": "bbox-370", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 432, - "content": "bbox-371", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 433, - "content": "bbox-372", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 434, - "content": "bbox-373", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 435, - "content": "bbox-374", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 436, - "content": "bbox-375", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 437, - "content": "bbox-376", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 438, - "content": "bbox-377", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 439, - "content": "bbox-378", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 440, - "content": "bbox-379", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 441, - "content": "bbox-380", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 442, - "content": "bbox-381", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 443, - "content": "bbox-382", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 444, - "content": "bbox-383", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 445, - "content": "bbox-384", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 446, - "content": "bbox-385", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 447, - "content": "bbox-386", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 448, - "content": "bbox-387", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 449, - "content": "bbox-388", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 450, - "content": "bbox-389", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 451, - "content": "bbox-390", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 452, - "content": "bbox-391", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 453, - "content": "bbox-392", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 454, - "content": "bbox-393", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 455, - "content": "bbox-394", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 456, - "content": "bbox-395", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 457, - "content": "bbox-396", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 458, - "content": "bbox-397", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 459, - "content": "bbox-398", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 460, - "content": "bbox-399", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 461, - "content": "bbox-400", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 462, - "content": "bbox-401", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 463, - "content": "bbox-402", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 464, - "content": "bbox-403", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 465, - "content": "bbox-404", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 466, - "content": "bbox-405", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 467, - "content": "bbox-406", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 468, - "content": "bbox-407", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 469, - "content": "bbox-408", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 470, - "content": "bbox-409", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 471, - "content": "bbox-410", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 472, - "content": "bbox-411", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 473, - "content": "bbox-412", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 474, - "content": "bbox-413", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 475, - "content": "bbox-414", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 476, - "content": "bbox-415", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 477, - "content": "bbox-416", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 478, - "content": "bbox-417", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 479, - "content": "bbox-418", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 480, - "content": "bbox-419", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 481, - "content": "bbox-420", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 482, - "content": "bbox-421", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 483, - "content": "bbox-422", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 484, - "content": "bbox-423", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 485, - "content": "bbox-424", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 486, - "content": "bbox-425", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 487, - "content": "bbox-426", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 488, - "content": "bbox-427", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 489, - "content": "bbox-428", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 490, - "content": "bbox-429", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 491, - "content": "bbox-430", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 492, - "content": "bbox-431", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 493, - "content": "bbox-432", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 494, - "content": "bbox-433", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 495, - "content": "bbox-434", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 496, - "content": "bbox-435", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 497, - "content": "bbox-436", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 498, - "content": "bbox-437", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 499, - "content": "bbox-438", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 500, - "content": "bbox-439", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 501, - "content": "bbox-440", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 502, - "content": "bbox-441", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 503, - "content": "bbox-442", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 504, - "content": "bbox-443", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 505, - "content": "bbox-444", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 506, - "content": "bbox-445", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 507, - "content": "bbox-446", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 508, - "content": "bbox-447", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 509, - "content": "bbox-448", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 510, - "content": "bbox-449", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 511, - "content": "bbox-450", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 512, - "content": "bbox-451", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 513, - "content": "bbox-452", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 514, - "content": "bbox-453", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 515, - "content": "bbox-454", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 516, - "content": "bbox-455", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 517, - "content": "bbox-456", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 518, - "content": "bbox-457", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 519, - "content": "bbox-458", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 520, - "content": "bbox-459", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 521, - "content": "bbox-460", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 522, - "content": "bbox-461", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 523, - "content": "bbox-462", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 524, - "content": "bbox-463", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 525, - "content": "bbox-464", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 526, - "content": "bbox-465", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 527, - "content": "bbox-466", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 528, - "content": "bbox-467", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 529, - "content": "bbox-468", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 530, - "content": "bbox-469", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 531, - "content": "bbox-470", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 532, - "content": "bbox-471", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 533, - "content": "bbox-472", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 534, - "content": "bbox-473", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 535, - "content": "bbox-474", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 536, - "content": "bbox-475", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 537, - "content": "bbox-476", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 538, - "content": "bbox-477", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 539, - "content": "bbox-478", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 540, - "content": "bbox-479", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 541, - "content": "bbox-480", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 542, - "content": "bbox-481", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 543, - "content": "bbox-482", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 544, - "content": "bbox-483", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 545, - "content": "bbox-484", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 546, - "content": "bbox-485", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 547, - "content": "bbox-486", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 548, - "content": "bbox-487", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 549, - "content": "bbox-488", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 550, - "content": "bbox-489", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 551, - "content": "bbox-490", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 552, - "content": "bbox-491", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 553, - "content": "bbox-492", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 554, - "content": "bbox-493", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 555, - "content": "bbox-494", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 556, - "content": "bbox-495", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 557, - "content": "bbox-496", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 558, - "content": "bbox-497", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 559, - "content": "bbox-498", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 560, - "content": "bbox-499", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 561, - "content": "bbox-500", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 562, - "content": "bbox-501", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 563, - "content": "bbox-502", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 564, - "content": "bbox-503", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 565, - "content": "bbox-504", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 566, - "content": "bbox-505", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 567, - "content": "bbox-506", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 568, - "content": "bbox-507", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 569, - "content": "bbox-508", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 570, - "content": "bbox-509", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 571, - "content": "bbox-510", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 572, - "content": "bbox-511", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 573, - "content": "bbox-512", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 574, - "content": "bbox-513", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 575, - "content": "bbox-514", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 576, - "content": "bbox-515", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 577, - "content": "bbox-516", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 578, - "content": "bbox-517", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 579, - "content": "bbox-518", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 580, - "content": "bbox-519", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 581, - "content": "bbox-520", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 582, - "content": "bbox-521", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 583, - "content": "bbox-522", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 584, - "content": "bbox-523", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 585, - "content": "bbox-524", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 586, - "content": "bbox-525", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 587, - "content": "bbox-526", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 588, - "content": "bbox-527", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 589, - "content": "bbox-528", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 590, - "content": "bbox-529", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 591, - "content": "bbox-530", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 592, - "content": "bbox-531", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 593, - "content": "bbox-532", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 594, - "content": "bbox-533", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 595, - "content": "bbox-534", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 596, - "content": "bbox-535", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 597, - "content": "bbox-536", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 598, - "content": "bbox-537", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 599, - "content": "bbox-538", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 600, - "content": "bbox-539", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 601, - "content": "bbox-540", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 602, - "content": "bbox-541", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 603, - "content": "bbox-542", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 604, - "content": "bbox-543", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 605, - "content": "bbox-544", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 606, - "content": "bbox-545", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 607, - "content": "bbox-546", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 608, - "content": "bbox-547", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 609, - "content": "bbox-548", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 610, - "content": "bbox-549", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 611, - "content": "bbox-550", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 612, - "content": "bbox-551", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 613, - "content": "bbox-552", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 614, - "content": "bbox-553", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 615, - "content": "bbox-554", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 616, - "content": "bbox-555", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 617, - "content": "bbox-556", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 618, - "content": "bbox-557", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 619, - "content": "bbox-558", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 620, - "content": "bbox-559", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 621, - "content": "bbox-560", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 622, - "content": "bbox-561", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 623, - "content": "bbox-562", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 624, - "content": "bbox-563", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 625, - "content": "bbox-564", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 626, - "content": "bbox-565", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 627, - "content": "bbox-566", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 628, - "content": "bbox-567", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 629, - "content": "bbox-568", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 630, - "content": "bbox-569", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 631, - "content": "bbox-570", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 632, - "content": "bbox-571", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 633, - "content": "bbox-572", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 634, - "content": "bbox-573", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 635, - "content": "bbox-574", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 636, - "content": "bbox-575", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 637, - "content": "bbox-576", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 638, - "content": "bbox-577", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 639, - "content": "bbox-578", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 640, - "content": "bbox-579", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 641, - "content": "bbox-580", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 642, - "content": "bbox-581", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 643, - "content": "bbox-582", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 644, - "content": "bbox-583", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 645, - "content": "bbox-584", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 646, - "content": "bbox-585", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 647, - "content": "bbox-586", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 648, - "content": "bbox-587", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 649, - "content": "bbox-588", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 650, - "content": "bbox-589", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 651, - "content": "bbox-590", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 652, - "content": "bbox-591", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 653, - "content": "bbox-592", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 654, - "content": "bbox-593", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 655, - "content": "bbox-594", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 656, - "content": "bbox-595", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 657, - "content": "bbox-596", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 658, - "content": "bbox-597", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 659, - "content": "bbox-598", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 660, - "content": "bbox-599", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 661, - "content": "bbox-600", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 662, - "content": "bbox-601", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 663, - "content": "bbox-602", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 664, - "content": "bbox-603", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 665, - "content": "bbox-604", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 666, - "content": "bbox-605", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 667, - "content": "bbox-606", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 668, - "content": "bbox-607", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 669, - "content": "bbox-608", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 670, - "content": "bbox-609", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 671, - "content": "bbox-610", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 672, - "content": "bbox-611", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 673, - "content": "bbox-612", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 674, - "content": "bbox-613", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 675, - "content": "bbox-614", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 676, - "content": "bbox-615", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 677, - "content": "bbox-616", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 678, - "content": "bbox-617", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 679, - "content": "bbox-618", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 680, - "content": "bbox-619", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 681, - "content": "bbox-620", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 682, - "content": "bbox-621", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 683, - "content": "bbox-622", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 684, - "content": "bbox-623", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 685, - "content": "bbox-624", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 686, - "content": "bbox-625", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 687, - "content": "bbox-626", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 688, - "content": "bbox-627", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 689, - "content": "bbox-628", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 690, - "content": "bbox-629", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 691, - "content": "bbox-630", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 692, - "content": "bbox-631", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 693, - "content": "bbox-632", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 694, - "content": "bbox-633", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 695, - "content": "bbox-634", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 696, - "content": "bbox-635", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 697, - "content": "bbox-636", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 698, - "content": "bbox-637", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 699, - "content": "bbox-638", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 700, - "content": "bbox-639", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 701, - "content": "bbox-640", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 702, - "content": "bbox-641", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 703, - "content": "bbox-642", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 704, - "content": "bbox-643", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 705, - "content": "bbox-644", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 706, - "content": "bbox-645", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 707, - "content": "bbox-646", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 708, - "content": "bbox-647", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 709, - "content": "bbox-648", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 710, - "content": "bbox-649", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 711, - "content": "bbox-650", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 712, - "content": "bbox-651", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 713, - "content": "bbox-652", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 714, - "content": "bbox-653", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 715, - "content": "bbox-654", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 716, - "content": "bbox-655", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 717, - "content": "bbox-656", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 718, - "content": "bbox-657", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 719, - "content": "bbox-658", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 720, - "content": "bbox-659", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 721, - "content": "bbox-660", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 722, - "content": "bbox-661", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 723, - "content": "bbox-662", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 724, - "content": "bbox-663", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 725, - "content": "bbox-664", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 726, - "content": "bbox-665", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 727, - "content": "bbox-666", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 728, - "content": "bbox-667", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 729, - "content": "bbox-668", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 730, - "content": "bbox-669", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 731, - "content": "bbox-670", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 732, - "content": "bbox-671", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 733, - "content": "bbox-672", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 734, - "content": "bbox-673", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 735, - "content": "bbox-674", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 736, - "content": "bbox-675", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 737, - "content": "bbox-676", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 738, - "content": "bbox-677", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 739, - "content": "bbox-678", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 740, - "content": "bbox-679", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 741, - "content": "bbox-680", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 742, - "content": "bbox-681", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 743, - "content": "bbox-682", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 744, - "content": "bbox-683", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 745, - "content": "bbox-684", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 746, - "content": "bbox-685", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 747, - "content": "bbox-686", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 748, - "content": "bbox-687", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 749, - "content": "bbox-688", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 750, - "content": "bbox-689", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 751, - "content": "bbox-690", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 752, - "content": "bbox-691", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 753, - "content": "bbox-692", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 754, - "content": "bbox-693", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 755, - "content": "bbox-694", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 756, - "content": "bbox-695", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 757, - "content": "bbox-696", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 758, - "content": "bbox-697", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 759, - "content": "bbox-698", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 760, - "content": "bbox-699", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 761, - "content": "bbox-700", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 762, - "content": "bbox-701", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 763, - "content": "bbox-702", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 764, - "content": "bbox-703", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 765, - "content": "bbox-704", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 766, - "content": "bbox-705", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 767, - "content": "bbox-706", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 768, - "content": "bbox-707", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 769, - "content": "bbox-708", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 770, - "content": "bbox-709", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 771, - "content": "bbox-710", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 772, - "content": "bbox-711", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 773, - "content": "bbox-712", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 774, - "content": "bbox-713", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 775, - "content": "bbox-714", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 776, - "content": "bbox-715", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 777, - "content": "bbox-716", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 778, - "content": "bbox-717", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 779, - "content": "bbox-718", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 780, - "content": "bbox-719", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 781, - "content": "bbox-720", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 782, - "content": "bbox-721", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 783, - "content": "bbox-722", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 784, - "content": "bbox-723", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 785, - "content": "bbox-724", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 786, - "content": "bbox-725", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 787, - "content": "bbox-726", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 788, - "content": "bbox-727", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 789, - "content": "bbox-728", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 790, - "content": "bbox-729", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 791, - "content": "bbox-730", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 792, - "content": "bbox-731", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 793, - "content": "bbox-732", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 794, - "content": "bbox-733", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 795, - "content": "bbox-734", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 796, - "content": "bbox-735", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 797, - "content": "bbox-736", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 798, - "content": "bbox-737", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 799, - "content": "bbox-738", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 800, - "content": "bbox-739", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 801, - "content": "bbox-740", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 802, - "content": "bbox-741", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 803, - "content": "bbox-742", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 804, - "content": "bbox-743", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 805, - "content": "bbox-744", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 806, - "content": "bbox-745", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 807, - "content": "bbox-746", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 808, - "content": "bbox-747", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 809, - "content": "bbox-748", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 810, - "content": "bbox-749", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 811, - "content": "bbox-750", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 812, - "content": "bbox-751", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 813, - "content": "bbox-752", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 814, - "content": "bbox-753", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 815, - "content": "bbox-754", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 816, - "content": "bbox-755", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 817, - "content": "bbox-756", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 818, - "content": "bbox-757", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 819, - "content": "bbox-758", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 820, - "content": "bbox-759", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 821, - "content": "bbox-760", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 822, - "content": "bbox-761", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 823, - "content": "bbox-762", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 824, - "content": "bbox-763", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 825, - "content": "bbox-764", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 826, - "content": "bbox-765", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 827, - "content": "bbox-766", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 828, - "content": "bbox-767", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 829, - "content": "bbox-768", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 830, - "content": "bbox-769", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 831, - "content": "bbox-770", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 832, - "content": "bbox-771", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 833, - "content": "bbox-772", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 834, - "content": "bbox-773", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 835, - "content": "bbox-774", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 836, - "content": "bbox-775", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 837, - "content": "bbox-776", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 838, - "content": "bbox-777", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 839, - "content": "bbox-778", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 840, - "content": "bbox-779", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 841, - "content": "bbox-780", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 842, - "content": "bbox-781", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 843, - "content": "bbox-782", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 844, - "content": "bbox-783", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 845, - "content": "bbox-784", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 846, - "content": "bbox-785", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 847, - "content": "bbox-786", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 848, - "content": "bbox-787", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 849, - "content": "bbox-788", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 850, - "content": "bbox-789", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 851, - "content": "bbox-790", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 852, - "content": "bbox-791", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 853, - "content": "bbox-792", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 854, - "content": "bbox-793", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 855, - "content": "bbox-794", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 856, - "content": "bbox-795", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 857, - "content": "bbox-796", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 858, - "content": "bbox-797", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 859, - "content": "bbox-798", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 860, - "content": "bbox-799", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 861, - "content": "bbox-800", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 862, - "content": "bbox-801", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 863, - "content": "bbox-802", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 864, - "content": "bbox-803", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 865, - "content": "bbox-804", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 866, - "content": "bbox-805", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 867, - "content": "bbox-806", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 868, - "content": "bbox-807", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 869, - "content": "bbox-808", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 870, - "content": "bbox-809", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 871, - "content": "bbox-810", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 872, - "content": "bbox-811", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 873, - "content": "bbox-812", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 874, - "content": "bbox-813", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 875, - "content": "bbox-814", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 876, - "content": "bbox-815", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 877, - "content": "bbox-816", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 878, - "content": "bbox-817", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 879, - "content": "bbox-818", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 880, - "content": "bbox-819", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 881, - "content": "bbox-820", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 882, - "content": "bbox-821", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 883, - "content": "bbox-822", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 884, - "content": "bbox-823", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 885, - "content": "bbox-824", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 886, - "content": "bbox-825", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 887, - "content": "bbox-826", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 888, - "content": "bbox-827", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 889, - "content": "bbox-828", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 890, - "content": "bbox-829", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 891, - "content": "bbox-830", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 892, - "content": "bbox-831", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 893, - "content": "bbox-832", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 894, - "content": "bbox-833", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 895, - "content": "bbox-834", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 896, - "content": "bbox-835", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 897, - "content": "bbox-836", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 898, - "content": "bbox-837", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 899, - "content": "bbox-838", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 900, - "content": "bbox-839", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 901, - "content": "bbox-840", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 902, - "content": "bbox-841", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 903, - "content": "bbox-842", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 904, - "content": "bbox-843", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 905, - "content": "bbox-844", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 906, - "content": "bbox-845", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 907, - "content": "bbox-846", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 908, - "content": "bbox-847", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 909, - "content": "bbox-848", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 910, - "content": "bbox-849", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 911, - "content": "bbox-850", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 912, - "content": "bbox-851", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 913, - "content": "bbox-852", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 914, - "content": "bbox-853", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 915, - "content": "bbox-854", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 916, - "content": "bbox-855", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 917, - "content": "bbox-856", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 918, - "content": "bbox-857", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 919, - "content": "bbox-858", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 920, - "content": "bbox-859", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 921, - "content": "bbox-860", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 922, - "content": "bbox-861", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 923, - "content": "bbox-862", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 924, - "content": "bbox-863", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 925, - "content": "bbox-864", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 926, - "content": "bbox-865", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 927, - "content": "bbox-866", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 928, - "content": "bbox-867", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 929, - "content": "bbox-868", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 930, - "content": "bbox-869", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 931, - "content": "bbox-870", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 932, - "content": "bbox-871", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 933, - "content": "bbox-872", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 934, - "content": "bbox-873", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 935, - "content": "bbox-874", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 936, - "content": "bbox-875", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 937, - "content": "bbox-876", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 938, - "content": "bbox-877", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 939, - "content": "bbox-878", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 940, - "content": "bbox-879", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 941, - "content": "bbox-880", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 942, - "content": "bbox-881", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 943, - "content": "bbox-882", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 944, - "content": "bbox-883", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 945, - "content": "bbox-884", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 946, - "content": "bbox-885", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 947, - "content": "bbox-886", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 948, - "content": "bbox-887", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 949, - "content": "bbox-888", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 950, - "content": "bbox-889", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 951, - "content": "bbox-890", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 952, - "content": "bbox-891", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 953, - "content": "bbox-892", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 954, - "content": "bbox-893", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 955, - "content": "bbox-894", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 956, - "content": "bbox-895", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 957, - "content": "bbox-896", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 958, - "content": "bbox-897", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - }, - { - "id": 959, - "content": "bbox-898", - "single_word": false, - "lstrip": false, - "rstrip": false, - "normalized": false, - "special": true - } - ], - "normalizer": { - "type": "Sequence", - "normalizers": [ - { - "type": "NFD" - }, - { - "type": "Lowercase" - }, - { - "type": "StripAccents" - }, - { - "type": "Strip", - "strip_left": true, - "strip_right": true - } - ] - }, - "pre_tokenizer": { - "type": "Whitespace" - }, - "post_processor": null, - "decoder": { - "type": "WordPiece", - "prefix": "##", - "cleanup": true - }, - "model": { - "type": "WordPiece", - "unk_token": "", - "continuing_subword_prefix": "##", - "max_input_chars_per_word": 100, - "vocab": { - "": 0, - "": 1, - "": 2, - "": 3, - "": 4, - "": 5, - "[table]": 6, - "[html]": 7, - "[cell]": 8, - "[bbox]": 9, - "[cell+bbox]": 10, - "[html+bbox]": 11, - "": 12, - "[": 13, - "]": 14, - "[": 16, - ">": 17, - "": 18, - "": 19, - "": 20, - "": 21, - "": 22, - "": 23, - " rowspan=\"2\"": 24, - " rowspan=\"3\"": 25, - " rowspan=\"4\"": 26, - " rowspan=\"5\"": 27, - " rowspan=\"6\"": 28, - " rowspan=\"7\"": 29, - " rowspan=\"8\"": 30, - " rowspan=\"9\"": 31, - " rowspan=\"10\"": 32, - " rowspan=\"11\"": 33, - " rowspan=\"12\"": 34, - " rowspan=\"13\"": 35, - " rowspan=\"14\"": 36, - " rowspan=\"15\"": 37, - " rowspan=\"16\"": 38, - " rowspan=\"17\"": 39, - " rowspan=\"18\"": 40, - " rowspan=\"19\"": 41, - " colspan=\"2\"": 42, - " colspan=\"3\"": 43, - " colspan=\"4\"": 44, - " colspan=\"5\"": 45, - " colspan=\"6\"": 46, - " colspan=\"7\"": 47, - " colspan=\"8\"": 48, - " colspan=\"9\"": 49, - " colspan=\"10\"": 50, - " colspan=\"11\"": 51, - " colspan=\"12\"": 52, - " colspan=\"13\"": 53, - " colspan=\"14\"": 54, - " colspan=\"15\"": 55, - " colspan=\"16\"": 56, - " colspan=\"17\"": 57, - " colspan=\"18\"": 58, - " colspan=\"19\"": 59, - " colspan=\"25\"": 60, - "bbox-0": 61, - "bbox-1": 62, - "bbox-2": 63, - "bbox-3": 64, - "bbox-4": 65, - "bbox-5": 66, - "bbox-6": 67, - "bbox-7": 68, - "bbox-8": 69, - "bbox-9": 70, - "bbox-10": 71, - "bbox-11": 72, - "bbox-12": 73, - "bbox-13": 74, - "bbox-14": 75, - "bbox-15": 76, - "bbox-16": 77, - "bbox-17": 78, - "bbox-18": 79, - "bbox-19": 80, - "bbox-20": 81, - "bbox-21": 82, - "bbox-22": 83, - "bbox-23": 84, - "bbox-24": 85, - "bbox-25": 86, - "bbox-26": 87, - "bbox-27": 88, - "bbox-28": 89, - "bbox-29": 90, - "bbox-30": 91, - "bbox-31": 92, - "bbox-32": 93, - "bbox-33": 94, - "bbox-34": 95, - "bbox-35": 96, - "bbox-36": 97, - "bbox-37": 98, - "bbox-38": 99, - "bbox-39": 100, - "bbox-40": 101, - "bbox-41": 102, - "bbox-42": 103, - "bbox-43": 104, - "bbox-44": 105, - "bbox-45": 106, - "bbox-46": 107, - "bbox-47": 108, - "bbox-48": 109, - "bbox-49": 110, - "bbox-50": 111, - "bbox-51": 112, - "bbox-52": 113, - "bbox-53": 114, - "bbox-54": 115, - "bbox-55": 116, - "bbox-56": 117, - "bbox-57": 118, - "bbox-58": 119, - "bbox-59": 120, - "bbox-60": 121, - "bbox-61": 122, - "bbox-62": 123, - "bbox-63": 124, - "bbox-64": 125, - "bbox-65": 126, - "bbox-66": 127, - "bbox-67": 128, - "bbox-68": 129, - "bbox-69": 130, - "bbox-70": 131, - "bbox-71": 132, - "bbox-72": 133, - "bbox-73": 134, - "bbox-74": 135, - "bbox-75": 136, - "bbox-76": 137, - "bbox-77": 138, - "bbox-78": 139, - "bbox-79": 140, - "bbox-80": 141, - "bbox-81": 142, - "bbox-82": 143, - "bbox-83": 144, - "bbox-84": 145, - "bbox-85": 146, - "bbox-86": 147, - "bbox-87": 148, - "bbox-88": 149, - "bbox-89": 150, - "bbox-90": 151, - "bbox-91": 152, - "bbox-92": 153, - "bbox-93": 154, - "bbox-94": 155, - "bbox-95": 156, - "bbox-96": 157, - "bbox-97": 158, - "bbox-98": 159, - "bbox-99": 160, - "bbox-100": 161, - "bbox-101": 162, - "bbox-102": 163, - "bbox-103": 164, - "bbox-104": 165, - "bbox-105": 166, - "bbox-106": 167, - "bbox-107": 168, - "bbox-108": 169, - "bbox-109": 170, - "bbox-110": 171, - "bbox-111": 172, - "bbox-112": 173, - "bbox-113": 174, - "bbox-114": 175, - "bbox-115": 176, - "bbox-116": 177, - "bbox-117": 178, - "bbox-118": 179, - "bbox-119": 180, - "bbox-120": 181, - "bbox-121": 182, - "bbox-122": 183, - "bbox-123": 184, - "bbox-124": 185, - "bbox-125": 186, - "bbox-126": 187, - "bbox-127": 188, - "bbox-128": 189, - "bbox-129": 190, - "bbox-130": 191, - "bbox-131": 192, - "bbox-132": 193, - "bbox-133": 194, - "bbox-134": 195, - "bbox-135": 196, - "bbox-136": 197, - "bbox-137": 198, - "bbox-138": 199, - "bbox-139": 200, - "bbox-140": 201, - "bbox-141": 202, - "bbox-142": 203, - "bbox-143": 204, - "bbox-144": 205, - "bbox-145": 206, - "bbox-146": 207, - "bbox-147": 208, - "bbox-148": 209, - "bbox-149": 210, - "bbox-150": 211, - "bbox-151": 212, - "bbox-152": 213, - "bbox-153": 214, - "bbox-154": 215, - "bbox-155": 216, - "bbox-156": 217, - "bbox-157": 218, - "bbox-158": 219, - "bbox-159": 220, - "bbox-160": 221, - "bbox-161": 222, - "bbox-162": 223, - "bbox-163": 224, - "bbox-164": 225, - "bbox-165": 226, - "bbox-166": 227, - "bbox-167": 228, - "bbox-168": 229, - "bbox-169": 230, - "bbox-170": 231, - "bbox-171": 232, - "bbox-172": 233, - "bbox-173": 234, - "bbox-174": 235, - "bbox-175": 236, - "bbox-176": 237, - "bbox-177": 238, - "bbox-178": 239, - "bbox-179": 240, - "bbox-180": 241, - "bbox-181": 242, - "bbox-182": 243, - "bbox-183": 244, - "bbox-184": 245, - "bbox-185": 246, - "bbox-186": 247, - "bbox-187": 248, - "bbox-188": 249, - "bbox-189": 250, - "bbox-190": 251, - "bbox-191": 252, - "bbox-192": 253, - "bbox-193": 254, - "bbox-194": 255, - "bbox-195": 256, - "bbox-196": 257, - "bbox-197": 258, - "bbox-198": 259, - "bbox-199": 260, - "bbox-200": 261, - "bbox-201": 262, - "bbox-202": 263, - "bbox-203": 264, - "bbox-204": 265, - "bbox-205": 266, - "bbox-206": 267, - "bbox-207": 268, - "bbox-208": 269, - "bbox-209": 270, - "bbox-210": 271, - "bbox-211": 272, - "bbox-212": 273, - "bbox-213": 274, - "bbox-214": 275, - "bbox-215": 276, - "bbox-216": 277, - "bbox-217": 278, - "bbox-218": 279, - "bbox-219": 280, - "bbox-220": 281, - "bbox-221": 282, - "bbox-222": 283, - "bbox-223": 284, - "bbox-224": 285, - "bbox-225": 286, - "bbox-226": 287, - "bbox-227": 288, - "bbox-228": 289, - "bbox-229": 290, - "bbox-230": 291, - "bbox-231": 292, - "bbox-232": 293, - "bbox-233": 294, - "bbox-234": 295, - "bbox-235": 296, - "bbox-236": 297, - "bbox-237": 298, - "bbox-238": 299, - "bbox-239": 300, - "bbox-240": 301, - "bbox-241": 302, - "bbox-242": 303, - "bbox-243": 304, - "bbox-244": 305, - "bbox-245": 306, - "bbox-246": 307, - "bbox-247": 308, - "bbox-248": 309, - "bbox-249": 310, - "bbox-250": 311, - "bbox-251": 312, - "bbox-252": 313, - "bbox-253": 314, - "bbox-254": 315, - "bbox-255": 316, - "bbox-256": 317, - "bbox-257": 318, - "bbox-258": 319, - "bbox-259": 320, - "bbox-260": 321, - "bbox-261": 322, - "bbox-262": 323, - "bbox-263": 324, - "bbox-264": 325, - "bbox-265": 326, - "bbox-266": 327, - "bbox-267": 328, - "bbox-268": 329, - "bbox-269": 330, - "bbox-270": 331, - "bbox-271": 332, - "bbox-272": 333, - "bbox-273": 334, - "bbox-274": 335, - "bbox-275": 336, - "bbox-276": 337, - "bbox-277": 338, - "bbox-278": 339, - "bbox-279": 340, - "bbox-280": 341, - "bbox-281": 342, - "bbox-282": 343, - "bbox-283": 344, - "bbox-284": 345, - "bbox-285": 346, - "bbox-286": 347, - "bbox-287": 348, - "bbox-288": 349, - "bbox-289": 350, - "bbox-290": 351, - "bbox-291": 352, - "bbox-292": 353, - "bbox-293": 354, - "bbox-294": 355, - "bbox-295": 356, - "bbox-296": 357, - "bbox-297": 358, - "bbox-298": 359, - "bbox-299": 360, - "bbox-300": 361, - "bbox-301": 362, - "bbox-302": 363, - "bbox-303": 364, - "bbox-304": 365, - "bbox-305": 366, - "bbox-306": 367, - "bbox-307": 368, - "bbox-308": 369, - "bbox-309": 370, - "bbox-310": 371, - "bbox-311": 372, - "bbox-312": 373, - "bbox-313": 374, - "bbox-314": 375, - "bbox-315": 376, - "bbox-316": 377, - "bbox-317": 378, - "bbox-318": 379, - "bbox-319": 380, - "bbox-320": 381, - "bbox-321": 382, - "bbox-322": 383, - "bbox-323": 384, - "bbox-324": 385, - "bbox-325": 386, - "bbox-326": 387, - "bbox-327": 388, - "bbox-328": 389, - "bbox-329": 390, - "bbox-330": 391, - "bbox-331": 392, - "bbox-332": 393, - "bbox-333": 394, - "bbox-334": 395, - "bbox-335": 396, - "bbox-336": 397, - "bbox-337": 398, - "bbox-338": 399, - "bbox-339": 400, - "bbox-340": 401, - "bbox-341": 402, - "bbox-342": 403, - "bbox-343": 404, - "bbox-344": 405, - "bbox-345": 406, - "bbox-346": 407, - "bbox-347": 408, - "bbox-348": 409, - "bbox-349": 410, - "bbox-350": 411, - "bbox-351": 412, - "bbox-352": 413, - "bbox-353": 414, - "bbox-354": 415, - "bbox-355": 416, - "bbox-356": 417, - "bbox-357": 418, - "bbox-358": 419, - "bbox-359": 420, - "bbox-360": 421, - "bbox-361": 422, - "bbox-362": 423, - "bbox-363": 424, - "bbox-364": 425, - "bbox-365": 426, - "bbox-366": 427, - "bbox-367": 428, - "bbox-368": 429, - "bbox-369": 430, - "bbox-370": 431, - "bbox-371": 432, - "bbox-372": 433, - "bbox-373": 434, - "bbox-374": 435, - "bbox-375": 436, - "bbox-376": 437, - "bbox-377": 438, - "bbox-378": 439, - "bbox-379": 440, - "bbox-380": 441, - "bbox-381": 442, - "bbox-382": 443, - "bbox-383": 444, - "bbox-384": 445, - "bbox-385": 446, - "bbox-386": 447, - "bbox-387": 448, - "bbox-388": 449, - "bbox-389": 450, - "bbox-390": 451, - "bbox-391": 452, - "bbox-392": 453, - "bbox-393": 454, - "bbox-394": 455, - "bbox-395": 456, - "bbox-396": 457, - "bbox-397": 458, - "bbox-398": 459, - "bbox-399": 460, - "bbox-400": 461, - "bbox-401": 462, - "bbox-402": 463, - "bbox-403": 464, - "bbox-404": 465, - "bbox-405": 466, - "bbox-406": 467, - "bbox-407": 468, - "bbox-408": 469, - "bbox-409": 470, - "bbox-410": 471, - "bbox-411": 472, - "bbox-412": 473, - "bbox-413": 474, - "bbox-414": 475, - "bbox-415": 476, - "bbox-416": 477, - "bbox-417": 478, - "bbox-418": 479, - "bbox-419": 480, - "bbox-420": 481, - "bbox-421": 482, - "bbox-422": 483, - "bbox-423": 484, - "bbox-424": 485, - "bbox-425": 486, - "bbox-426": 487, - "bbox-427": 488, - "bbox-428": 489, - "bbox-429": 490, - "bbox-430": 491, - "bbox-431": 492, - "bbox-432": 493, - "bbox-433": 494, - "bbox-434": 495, - "bbox-435": 496, - "bbox-436": 497, - "bbox-437": 498, - "bbox-438": 499, - "bbox-439": 500, - "bbox-440": 501, - "bbox-441": 502, - "bbox-442": 503, - "bbox-443": 504, - "bbox-444": 505, - "bbox-445": 506, - "bbox-446": 507, - "bbox-447": 508, - "bbox-448": 509, - "bbox-449": 510, - "bbox-450": 511, - "bbox-451": 512, - "bbox-452": 513, - "bbox-453": 514, - "bbox-454": 515, - "bbox-455": 516, - "bbox-456": 517, - "bbox-457": 518, - "bbox-458": 519, - "bbox-459": 520, - "bbox-460": 521, - "bbox-461": 522, - "bbox-462": 523, - "bbox-463": 524, - "bbox-464": 525, - "bbox-465": 526, - "bbox-466": 527, - "bbox-467": 528, - "bbox-468": 529, - "bbox-469": 530, - "bbox-470": 531, - "bbox-471": 532, - "bbox-472": 533, - "bbox-473": 534, - "bbox-474": 535, - "bbox-475": 536, - "bbox-476": 537, - "bbox-477": 538, - "bbox-478": 539, - "bbox-479": 540, - "bbox-480": 541, - "bbox-481": 542, - "bbox-482": 543, - "bbox-483": 544, - "bbox-484": 545, - "bbox-485": 546, - "bbox-486": 547, - "bbox-487": 548, - "bbox-488": 549, - "bbox-489": 550, - "bbox-490": 551, - "bbox-491": 552, - "bbox-492": 553, - "bbox-493": 554, - "bbox-494": 555, - "bbox-495": 556, - "bbox-496": 557, - "bbox-497": 558, - "bbox-498": 559, - "bbox-499": 560, - "bbox-500": 561, - "bbox-501": 562, - "bbox-502": 563, - "bbox-503": 564, - "bbox-504": 565, - "bbox-505": 566, - "bbox-506": 567, - "bbox-507": 568, - "bbox-508": 569, - "bbox-509": 570, - "bbox-510": 571, - "bbox-511": 572, - "bbox-512": 573, - "bbox-513": 574, - "bbox-514": 575, - "bbox-515": 576, - "bbox-516": 577, - "bbox-517": 578, - "bbox-518": 579, - "bbox-519": 580, - "bbox-520": 581, - "bbox-521": 582, - "bbox-522": 583, - "bbox-523": 584, - "bbox-524": 585, - "bbox-525": 586, - "bbox-526": 587, - "bbox-527": 588, - "bbox-528": 589, - "bbox-529": 590, - "bbox-530": 591, - "bbox-531": 592, - "bbox-532": 593, - "bbox-533": 594, - "bbox-534": 595, - "bbox-535": 596, - "bbox-536": 597, - "bbox-537": 598, - "bbox-538": 599, - "bbox-539": 600, - "bbox-540": 601, - "bbox-541": 602, - "bbox-542": 603, - "bbox-543": 604, - "bbox-544": 605, - "bbox-545": 606, - "bbox-546": 607, - "bbox-547": 608, - "bbox-548": 609, - "bbox-549": 610, - "bbox-550": 611, - "bbox-551": 612, - "bbox-552": 613, - "bbox-553": 614, - "bbox-554": 615, - "bbox-555": 616, - "bbox-556": 617, - "bbox-557": 618, - "bbox-558": 619, - "bbox-559": 620, - "bbox-560": 621, - "bbox-561": 622, - "bbox-562": 623, - "bbox-563": 624, - "bbox-564": 625, - "bbox-565": 626, - "bbox-566": 627, - "bbox-567": 628, - "bbox-568": 629, - "bbox-569": 630, - "bbox-570": 631, - "bbox-571": 632, - "bbox-572": 633, - "bbox-573": 634, - "bbox-574": 635, - "bbox-575": 636, - "bbox-576": 637, - "bbox-577": 638, - "bbox-578": 639, - "bbox-579": 640, - "bbox-580": 641, - "bbox-581": 642, - "bbox-582": 643, - "bbox-583": 644, - "bbox-584": 645, - "bbox-585": 646, - "bbox-586": 647, - "bbox-587": 648, - "bbox-588": 649, - "bbox-589": 650, - "bbox-590": 651, - "bbox-591": 652, - "bbox-592": 653, - "bbox-593": 654, - "bbox-594": 655, - "bbox-595": 656, - "bbox-596": 657, - "bbox-597": 658, - "bbox-598": 659, - "bbox-599": 660, - "bbox-600": 661, - "bbox-601": 662, - "bbox-602": 663, - "bbox-603": 664, - "bbox-604": 665, - "bbox-605": 666, - "bbox-606": 667, - "bbox-607": 668, - "bbox-608": 669, - "bbox-609": 670, - "bbox-610": 671, - "bbox-611": 672, - "bbox-612": 673, - "bbox-613": 674, - "bbox-614": 675, - "bbox-615": 676, - "bbox-616": 677, - "bbox-617": 678, - "bbox-618": 679, - "bbox-619": 680, - "bbox-620": 681, - "bbox-621": 682, - "bbox-622": 683, - "bbox-623": 684, - "bbox-624": 685, - "bbox-625": 686, - "bbox-626": 687, - "bbox-627": 688, - "bbox-628": 689, - "bbox-629": 690, - "bbox-630": 691, - "bbox-631": 692, - "bbox-632": 693, - "bbox-633": 694, - "bbox-634": 695, - "bbox-635": 696, - "bbox-636": 697, - "bbox-637": 698, - "bbox-638": 699, - "bbox-639": 700, - "bbox-640": 701, - "bbox-641": 702, - "bbox-642": 703, - "bbox-643": 704, - "bbox-644": 705, - "bbox-645": 706, - "bbox-646": 707, - "bbox-647": 708, - "bbox-648": 709, - "bbox-649": 710, - "bbox-650": 711, - "bbox-651": 712, - "bbox-652": 713, - "bbox-653": 714, - "bbox-654": 715, - "bbox-655": 716, - "bbox-656": 717, - "bbox-657": 718, - "bbox-658": 719, - "bbox-659": 720, - "bbox-660": 721, - "bbox-661": 722, - "bbox-662": 723, - "bbox-663": 724, - "bbox-664": 725, - "bbox-665": 726, - "bbox-666": 727, - "bbox-667": 728, - "bbox-668": 729, - "bbox-669": 730, - "bbox-670": 731, - "bbox-671": 732, - "bbox-672": 733, - "bbox-673": 734, - "bbox-674": 735, - "bbox-675": 736, - "bbox-676": 737, - "bbox-677": 738, - "bbox-678": 739, - "bbox-679": 740, - "bbox-680": 741, - "bbox-681": 742, - "bbox-682": 743, - "bbox-683": 744, - "bbox-684": 745, - "bbox-685": 746, - "bbox-686": 747, - "bbox-687": 748, - "bbox-688": 749, - "bbox-689": 750, - "bbox-690": 751, - "bbox-691": 752, - "bbox-692": 753, - "bbox-693": 754, - "bbox-694": 755, - "bbox-695": 756, - "bbox-696": 757, - "bbox-697": 758, - "bbox-698": 759, - "bbox-699": 760, - "bbox-700": 761, - "bbox-701": 762, - "bbox-702": 763, - "bbox-703": 764, - "bbox-704": 765, - "bbox-705": 766, - "bbox-706": 767, - "bbox-707": 768, - "bbox-708": 769, - "bbox-709": 770, - "bbox-710": 771, - "bbox-711": 772, - "bbox-712": 773, - "bbox-713": 774, - "bbox-714": 775, - "bbox-715": 776, - "bbox-716": 777, - "bbox-717": 778, - "bbox-718": 779, - "bbox-719": 780, - "bbox-720": 781, - "bbox-721": 782, - "bbox-722": 783, - "bbox-723": 784, - "bbox-724": 785, - "bbox-725": 786, - "bbox-726": 787, - "bbox-727": 788, - "bbox-728": 789, - "bbox-729": 790, - "bbox-730": 791, - "bbox-731": 792, - "bbox-732": 793, - "bbox-733": 794, - "bbox-734": 795, - "bbox-735": 796, - "bbox-736": 797, - "bbox-737": 798, - "bbox-738": 799, - "bbox-739": 800, - "bbox-740": 801, - "bbox-741": 802, - "bbox-742": 803, - "bbox-743": 804, - "bbox-744": 805, - "bbox-745": 806, - "bbox-746": 807, - "bbox-747": 808, - "bbox-748": 809, - "bbox-749": 810, - "bbox-750": 811, - "bbox-751": 812, - "bbox-752": 813, - "bbox-753": 814, - "bbox-754": 815, - "bbox-755": 816, - "bbox-756": 817, - "bbox-757": 818, - "bbox-758": 819, - "bbox-759": 820, - "bbox-760": 821, - "bbox-761": 822, - "bbox-762": 823, - "bbox-763": 824, - "bbox-764": 825, - "bbox-765": 826, - "bbox-766": 827, - "bbox-767": 828, - "bbox-768": 829, - "bbox-769": 830, - "bbox-770": 831, - "bbox-771": 832, - "bbox-772": 833, - "bbox-773": 834, - "bbox-774": 835, - "bbox-775": 836, - "bbox-776": 837, - "bbox-777": 838, - "bbox-778": 839, - "bbox-779": 840, - "bbox-780": 841, - "bbox-781": 842, - "bbox-782": 843, - "bbox-783": 844, - "bbox-784": 845, - "bbox-785": 846, - "bbox-786": 847, - "bbox-787": 848, - "bbox-788": 849, - "bbox-789": 850, - "bbox-790": 851, - "bbox-791": 852, - "bbox-792": 853, - "bbox-793": 854, - "bbox-794": 855, - "bbox-795": 856, - "bbox-796": 857, - "bbox-797": 858, - "bbox-798": 859, - "bbox-799": 860, - "bbox-800": 861, - "bbox-801": 862, - "bbox-802": 863, - "bbox-803": 864, - "bbox-804": 865, - "bbox-805": 866, - "bbox-806": 867, - "bbox-807": 868, - "bbox-808": 869, - "bbox-809": 870, - "bbox-810": 871, - "bbox-811": 872, - "bbox-812": 873, - "bbox-813": 874, - "bbox-814": 875, - "bbox-815": 876, - "bbox-816": 877, - "bbox-817": 878, - "bbox-818": 879, - "bbox-819": 880, - "bbox-820": 881, - "bbox-821": 882, - "bbox-822": 883, - "bbox-823": 884, - "bbox-824": 885, - "bbox-825": 886, - "bbox-826": 887, - "bbox-827": 888, - "bbox-828": 889, - "bbox-829": 890, - "bbox-830": 891, - "bbox-831": 892, - "bbox-832": 893, - "bbox-833": 894, - "bbox-834": 895, - "bbox-835": 896, - "bbox-836": 897, - "bbox-837": 898, - "bbox-838": 899, - "bbox-839": 900, - "bbox-840": 901, - "bbox-841": 902, - "bbox-842": 903, - "bbox-843": 904, - "bbox-844": 905, - "bbox-845": 906, - "bbox-846": 907, - "bbox-847": 908, - "bbox-848": 909, - "bbox-849": 910, - "bbox-850": 911, - "bbox-851": 912, - "bbox-852": 913, - "bbox-853": 914, - "bbox-854": 915, - "bbox-855": 916, - "bbox-856": 917, - "bbox-857": 918, - "bbox-858": 919, - "bbox-859": 920, - "bbox-860": 921, - "bbox-861": 922, - "bbox-862": 923, - "bbox-863": 924, - "bbox-864": 925, - "bbox-865": 926, - "bbox-866": 927, - "bbox-867": 928, - "bbox-868": 929, - "bbox-869": 930, - "bbox-870": 931, - "bbox-871": 932, - "bbox-872": 933, - "bbox-873": 934, - "bbox-874": 935, - "bbox-875": 936, - "bbox-876": 937, - "bbox-877": 938, - "bbox-878": 939, - "bbox-879": 940, - "bbox-880": 941, - "bbox-881": 942, - "bbox-882": 943, - "bbox-883": 944, - "bbox-884": 945, - "bbox-885": 946, - "bbox-886": 947, - "bbox-887": 948, - "bbox-888": 949, - "bbox-889": 950, - "bbox-890": 951, - "bbox-891": 952, - "bbox-892": 953, - "bbox-893": 954, - "bbox-894": 955, - "bbox-895": 956, - "bbox-896": 957, - "bbox-897": 958, - "bbox-898": 959 - } - } -} \ No newline at end of file From 4560d6da274644dee0ced282102c5dc4877bedb9 Mon Sep 17 00:00:00 2001 From: SWHL Date: Wed, 8 Jan 2025 22:36:50 +0800 Subject: [PATCH 17/23] chore: optimize code --- README.md | 36 +++++++++++++--------------- demo.py | 2 +- rapid_table/main.py | 34 ++++++++++---------------- rapid_table/table_matcher/matcher.py | 14 +++++------ rapid_table/utils/utils.py | 13 +++++----- tests/test_main.py | 9 +------ 6 files changed, 45 insertions(+), 63 deletions(-) diff --git a/README.md b/README.md index f482210..9d4a65e 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ class RapidTableInput: @dataclass class RapidTableOutput: pred_html: Optional[str] = None - pred_bboxes: Optional[np.ndarray] = None + cell_bboxes: Optional[np.ndarray] = None logic_points: Optional[np.ndarray] = None elapse: Optional[float] = None @@ -106,22 +106,25 @@ from rapid_table.table_structure.utils import trans_char_ocr_res table_engine = RapidTable() # 开启onnx-gpu推理 -# table_engine = RapidTable(use_cuda=True) +# input_args = RapidTableInput(use_cuda=True) +# table_engine = RapidTable(input_args) # 使用torch推理版本的unitable模型 -# table_engine = RapidTable(use_cuda=True, device="cuda:0", model_type="unitable") +# input_args = RapidTableInput(model_type="unitable", use_cuda=True, device="cuda:0") +# table_engine = RapidTable(input_args) ocr_engine = RapidOCR() viser = VisTable() img_path = 'test_images/table.jpg' ocr_result, _ = ocr_engine(img_path) + # 单字匹配 # ocr_result, _ = ocr_engine(img_path, return_word_box=True) # ocr_result = trans_char_ocr_res(ocr_result) table_results = table_engine(img_path, ocr_result) -table_html_str, table_cell_bboxes = table_results.pred_html, table_results.pred_bboxes +table_html_str, table_cell_bboxes = table_results.pred_html, table_results.cell_bboxes save_dir = Path("./inference_results/") save_dir.mkdir(parents=True, exist_ok=True) @@ -129,22 +132,15 @@ save_dir.mkdir(parents=True, exist_ok=True) save_html_path = save_dir / f"{Path(img_path).stem}.html" save_drawed_path = save_dir / f"vis_{Path(img_path).name}" -viser(img_path, table_html_str, save_html_path, table_cell_bboxes, save_drawed_path) - -# 返回逻辑坐标 -# table_results = table_engine(img_path, ocr_result, return_logic_points=True) -# table_html_str, table_cell_bboxes = table_results.pred_html, table_results.pred_bboxes -# save_logic_path = save_dir / f"vis_logic_{Path(img_path).name}" -# viser( -# img_path, -# table_results.pred_html, -# save_html_path, -# table_results.pred_bboxes, -# save_drawed_path, -# table_results.logic_points, -# save_logic_path, -# ) - +viser( + img_path, + table_results.pred_html, + save_html_path, + table_results.cell_bboxes, + save_drawed_path, + table_results.logic_points, + save_logic_path, +) print(table_html_str) ``` diff --git a/demo.py b/demo.py index 22022a7..c8a4be8 100644 --- a/demo.py +++ b/demo.py @@ -24,7 +24,7 @@ # Table Rec table_results = table_engine(img_path, ocr_result) -table_html_str, table_cell_bboxes = table_results.pred_html, table_results.pred_bboxes +table_html_str, table_cell_bboxes = table_results.pred_html, table_results.cell_bboxes # Save save_dir = Path("outputs") diff --git a/rapid_table/main.py b/rapid_table/main.py index a5a226f..426a7ce 100644 --- a/rapid_table/main.py +++ b/rapid_table/main.py @@ -55,7 +55,7 @@ class RapidTableInput: @dataclass class RapidTableOutput: pred_html: Optional[str] = None - pred_bboxes: Optional[np.ndarray] = None + cell_bboxes: Optional[np.ndarray] = None logic_points: Optional[np.ndarray] = None elapse: Optional[float] = None @@ -88,7 +88,6 @@ def __call__( self, img_content: Union[str, np.ndarray, bytes, Path], ocr_result: List[Union[List[List[float]], str, str]] = None, - return_logic_points: bool = False, ) -> RapidTableOutput: if self.ocr_engine is None and ocr_result is None: raise ValueError( @@ -104,28 +103,21 @@ def __call__( ocr_result, _ = self.ocr_engine(img) dt_boxes, rec_res = self.get_boxes_recs(ocr_result, h, w) - pred_structures, pred_bboxes, _ = self.table_structure(copy.deepcopy(img)) + pred_structures, cell_bboxes, _ = self.table_structure(copy.deepcopy(img)) # 适配slanet-plus模型输出的box缩放还原 if self.model_type == ModelType.SLANETPLUS.value: - pred_bboxes = self.adapt_slanet_plus(img, pred_bboxes) + cell_bboxes = self.adapt_slanet_plus(img, cell_bboxes) - pred_html = self.table_matcher(pred_structures, pred_bboxes, dt_boxes, rec_res) + pred_html = self.table_matcher(pred_structures, cell_bboxes, dt_boxes, rec_res) # 过滤掉占位的bbox - mask = ~np.all(pred_bboxes == 0, axis=1) - pred_bboxes = pred_bboxes[mask] - - # 避免低版本升级后出现问题,默认不打开 - if return_logic_points: - logic_points = self.table_matcher.decode_logic_points(pred_structures) - elapse = time.perf_counter() - s - return RapidTableOutput(pred_html, pred_bboxes, logic_points, elapse) + mask = ~np.all(cell_bboxes == 0, axis=1) + cell_bboxes = cell_bboxes[mask] + logic_points = self.table_matcher.decode_logic_points(pred_structures) elapse = time.perf_counter() - s - return RapidTableOutput( - pred_html=pred_html, pred_bboxes=pred_bboxes, elapse=elapse - ) + return RapidTableOutput(pred_html, cell_bboxes, logic_points, elapse) def get_boxes_recs( self, ocr_result: List[Union[List[List[float]], str, str]], h: int, w: int @@ -145,15 +137,15 @@ def get_boxes_recs( dt_boxes = np.array(r_boxes) return dt_boxes, rec_res - def adapt_slanet_plus(self, img: np.ndarray, pred_bboxes: np.ndarray) -> np.ndarray: + def adapt_slanet_plus(self, img: np.ndarray, cell_bboxes: np.ndarray) -> np.ndarray: h, w = img.shape[:2] resized = 488 ratio = min(resized / h, resized / w) w_ratio = resized / (w * ratio) h_ratio = resized / (h * ratio) - pred_bboxes[:, 0::2] *= w_ratio - pred_bboxes[:, 1::2] *= h_ratio - return pred_bboxes + cell_bboxes[:, 0::2] *= w_ratio + cell_bboxes[:, 1::2] *= h_ratio + return cell_bboxes @staticmethod def get_model_path( @@ -214,7 +206,7 @@ def main(): table_results = table_engine(img, ocr_result) table_html_str, table_cell_bboxes = ( table_results.pred_html, - table_results.pred_bboxes, + table_results.cell_bboxes, ) print(table_html_str) diff --git a/rapid_table/table_matcher/matcher.py b/rapid_table/table_matcher/matcher.py index 00bea6a..f579a12 100644 --- a/rapid_table/table_matcher/matcher.py +++ b/rapid_table/table_matcher/matcher.py @@ -22,18 +22,18 @@ def __init__(self, filter_ocr_result=True, use_master=False): self.filter_ocr_result = filter_ocr_result self.use_master = use_master - def __call__(self, pred_structures, pred_bboxes, dt_boxes, rec_res): + def __call__(self, pred_structures, cell_bboxes, dt_boxes, rec_res): if self.filter_ocr_result: - dt_boxes, rec_res = self._filter_ocr_result(pred_bboxes, dt_boxes, rec_res) - matched_index = self.match_result(dt_boxes, pred_bboxes) + dt_boxes, rec_res = self._filter_ocr_result(cell_bboxes, dt_boxes, rec_res) + matched_index = self.match_result(dt_boxes, cell_bboxes) pred_html, pred = self.get_pred_html(pred_structures, matched_index, rec_res) return pred_html - def match_result(self, dt_boxes, pred_bboxes, min_iou=0.1**8): + def match_result(self, dt_boxes, cell_bboxes, min_iou=0.1**8): matched = {} for i, gt_box in enumerate(dt_boxes): distances = [] - for j, pred_box in enumerate(pred_bboxes): + for j, pred_box in enumerate(cell_bboxes): if len(pred_box) == 8: pred_box = [ np.min(pred_box[0::2]), @@ -186,8 +186,8 @@ def mark_occupied(row, col, rowspan, colspan): return logic_points - def _filter_ocr_result(self, pred_bboxes, dt_boxes, rec_res): - y1 = pred_bboxes[:, 1::2].min() + def _filter_ocr_result(self, cell_bboxes, dt_boxes, rec_res): + y1 = cell_bboxes[:, 1::2].min() new_dt_boxes = [] new_rec_res = [] diff --git a/rapid_table/utils/utils.py b/rapid_table/utils/utils.py index 7370016..5052d3f 100644 --- a/rapid_table/utils/utils.py +++ b/rapid_table/utils/utils.py @@ -83,18 +83,18 @@ def __init__(self): def __call__( self, img_path: Union[str, Path], - table_html_str: str, - save_html_path: Optional[str] = None, + table_results, table_cell_bboxes: Optional[np.ndarray] = None, - save_drawed_path: Optional[str] = None, logic_points: List[List[float]] = None, + save_html_path: Optional[str] = None, + save_drawed_path: Optional[str] = None, save_logic_path: Optional[str] = None, - ) -> None: + ): if save_html_path: - html_with_border = self.insert_border_style(table_html_str) + html_with_border = self.insert_border_style(table_results.pred_html) self.save_html(save_html_path, html_with_border) - if table_cell_bboxes is None: + if table_results.cell_bboxes is None: return None img = self.load_img(img_path) @@ -109,6 +109,7 @@ def __call__( if save_drawed_path: self.save_img(save_drawed_path, drawed_img) + if save_logic_path and logic_points: polygons = [[box[0], box[1], box[4], box[5]] for box in table_cell_bboxes] self.plot_rec_box_with_logic_info( diff --git a/tests/test_main.py b/tests/test_main.py index 11db74c..1138ef1 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -40,11 +40,4 @@ def test_input_ocr_none(model_type): table_engine = RapidTable(input_args) table_results = table_engine(img_path) assert table_results.pred_html.count("") == 16 - - -@pytest.mark.parametrize("model_type", ["slanet_plus", "unitable"]) -def test_logic_points_out(model_type): - input_args = RapidTableInput(model_type=model_type) - table_engine = RapidTable(input_args) - table_results = table_engine(img_path, return_logic_points=True) - assert len(table_results.pred_bboxes) == len(table_results.logic_points) + assert len(table_results.cell_bboxes) == len(table_results.logic_points) From f0a3dfefb9e77e91279c6b4182a0fbbe5303587e Mon Sep 17 00:00:00 2001 From: SWHL Date: Wed, 8 Jan 2025 22:40:36 +0800 Subject: [PATCH 18/23] chore: optimize code --- README.md | 1 - demo.py | 4 +--- rapid_table/utils/utils.py | 7 +++---- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 9d4a65e..a84fb26 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,6 @@ ocr_result, _ = ocr_engine(img_path) # ocr_result = trans_char_ocr_res(ocr_result) table_results = table_engine(img_path, ocr_result) -table_html_str, table_cell_bboxes = table_results.pred_html, table_results.cell_bboxes save_dir = Path("./inference_results/") save_dir.mkdir(parents=True, exist_ok=True) diff --git a/demo.py b/demo.py index c8a4be8..d9e8ba3 100644 --- a/demo.py +++ b/demo.py @@ -34,9 +34,7 @@ save_drawed_path = save_dir / f"{Path(img_path).stem}_table_vis{Path(img_path).suffix}" # Visualize table rec result -vis_imged = viser( - img_path, table_html_str, save_html_path, table_cell_bboxes, save_drawed_path -) +vis_imged = viser(img_path, table_results, save_html_path, save_drawed_path) # Visualize OCR result save_ocr_path = save_dir / f"{Path(img_path).stem}_ocr_vis{Path(img_path).suffix}" diff --git a/rapid_table/utils/utils.py b/rapid_table/utils/utils.py index 5052d3f..ad35a19 100644 --- a/rapid_table/utils/utils.py +++ b/rapid_table/utils/utils.py @@ -4,7 +4,7 @@ import os from io import BytesIO from pathlib import Path -from typing import List, Optional, Union +from typing import Optional, Union import cv2 import numpy as np @@ -84,8 +84,6 @@ def __call__( self, img_path: Union[str, Path], table_results, - table_cell_bboxes: Optional[np.ndarray] = None, - logic_points: List[List[float]] = None, save_html_path: Optional[str] = None, save_drawed_path: Optional[str] = None, save_logic_path: Optional[str] = None, @@ -94,7 +92,8 @@ def __call__( html_with_border = self.insert_border_style(table_results.pred_html) self.save_html(save_html_path, html_with_border) - if table_results.cell_bboxes is None: + table_cell_bboxes = table_results.cell_bboxes + if table_cell_bboxes is None: return None img = self.load_img(img_path) From 00375438c06c3c4d9248a970df812af1546cdcc4 Mon Sep 17 00:00:00 2001 From: Jokcer <519548295@qq.com> Date: Wed, 8 Jan 2025 23:13:31 +0800 Subject: [PATCH 19/23] fix: adapt row&col span decode for unitable --- rapid_table/table_structure/table_structure_unitable.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rapid_table/table_structure/table_structure_unitable.py b/rapid_table/table_structure/table_structure_unitable.py index c04e8f8..2b98006 100644 --- a/rapid_table/table_structure/table_structure_unitable.py +++ b/rapid_table/table_structure/table_structure_unitable.py @@ -186,7 +186,10 @@ def decode_tokens(self, context): td_content = td_match.group(2).strip() if td_attrs: decoded_list.append("") decoded_list.append("") else: From 333f0628c5e2fab2d8319e17a7f661d7fbf0ce9a Mon Sep 17 00:00:00 2001 From: SWHL Date: Thu, 9 Jan 2025 08:10:33 +0800 Subject: [PATCH 20/23] docs: update online demo --- .gitignore | 1 + README.md | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e7007dc..eee50b9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +outputs/ *.json # Created by .ignore support plugin (hsz.mobi) diff --git a/README.md b/README.md index a84fb26..a4c25df 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,8 @@

📊 Rapid Table

-
+ + PyPI From 860e148ebba6f7114cd4d6a1ab252d01c1bf5584 Mon Sep 17 00:00:00 2001 From: SWHL Date: Thu, 9 Jan 2025 08:16:40 +0800 Subject: [PATCH 21/23] docs: add update recently --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a4c25df..6560b60 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,12 @@ slanet_plus是paddlex内置的SLANet升级版模型,准确率有大幅提升 unitable是来源unitable的transformer模型,精度最高,暂仅支持pytorch推理,支持gpu推理加速,训练权重来源于 [OhMyTable项目](https://github.com/Sanster/OhMyTable) +### 最近动态 + +2024.12.30 update:支持Unitable模型的表格识别,使用pytorch框架 \ +2024.11.24 update:支持gpu推理,适配 rapidOCR 单字识别匹配,支持逻辑坐标返回及可视化 \ +2024.10.13 update:补充最新paddlex-SLANet-plus 模型(paddle2onnx原因暂不能支持onnx) + ### 效果展示
@@ -46,7 +52,7 @@ unitable是来源unitable的transformer模型,精度最高,暂仅支持pytor ### 安装 -由于模型较小,预先将slanet-plus表格识别模型(`slanet-plus.onnx`)打包进了whl包内。 +由于模型较小,预先将slanet-plus表格识别模型(`slanet-plus.onnx`)打包进了whl包内。其余模型在初始化`RapidTable`类时,会根据`model_type`来自动下载模型到安装包所在`models`目录下。 > ⚠️注意:`rapid_table>=v0.1.0`之后,不再将`rapidocr_onnxruntime`依赖强制打包到`rapid_table`中。使用前,需要自行安装`rapidocr_onnxruntime`包。 @@ -104,6 +110,7 @@ from rapid_table import RapidTable, VisTable from rapidocr_onnxruntime import RapidOCR from rapid_table.table_structure.utils import trans_char_ocr_res +# 默认是slanet_plus模型 table_engine = RapidTable() # 开启onnx-gpu推理 From 953692a963a647a5fd2e4be07fdac685d6e9518d Mon Sep 17 00:00:00 2001 From: SWHL Date: Thu, 9 Jan 2025 08:19:39 +0800 Subject: [PATCH 22/23] docs: update README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6560b60..f3c6f3f 100644 --- a/README.md +++ b/README.md @@ -48,11 +48,11 @@ unitable是来源unitable的transformer模型,精度最高,暂仅支持pytor [PaddleX-SlaNetPlus 表格识别](https://github.com/PaddlePaddle/PaddleX/blob/release/3.0-beta1/docs/module_usage/tutorials/ocr_modules/table_structure_recognition.md)\ [Unitable](https://github.com/poloclub/unitable?tab=readme-ov-file) -模型托管在modelscope上,具体下载地址为:[link](https://www.modelscope.cn/models/RapidAI/RapidTable/files) +模型下载地址:[link](https://www.modelscope.cn/models/RapidAI/RapidTable/files) ### 安装 -由于模型较小,预先将slanet-plus表格识别模型(`slanet-plus.onnx`)打包进了whl包内。其余模型在初始化`RapidTable`类时,会根据`model_type`来自动下载模型到安装包所在`models`目录下。 +由于模型较小,预先将slanet-plus表格识别模型(`slanet-plus.onnx`)打包进了whl包内。其余模型在初始化`RapidTable`类时,会根据`model_type`来自动下载模型到安装包所在`models`目录下。当然也可以通过`RapidTableInput(model_path='')`来指定自己模型路径。注意仅限于我们现支持的`model_type`。 > ⚠️注意:`rapid_table>=v0.1.0`之后,不再将`rapidocr_onnxruntime`依赖强制打包到`rapid_table`中。使用前,需要自行安装`rapidocr_onnxruntime`包。 From e9af31c90b4d8803b7ebaf8e3ce99b668a9fae95 Mon Sep 17 00:00:00 2001 From: SWHL Date: Thu, 9 Jan 2025 08:25:17 +0800 Subject: [PATCH 23/23] docs: update README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f3c6f3f..cafcd4a 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ unitable是来源unitable的transformer模型,精度最高,暂仅支持pytor ### 最近动态 +2025-01-09 update: 发布v1.0.2,全新接口升级。 \ 2024.12.30 update:支持Unitable模型的表格识别,使用pytorch框架 \ 2024.11.24 update:支持gpu推理,适配 rapidOCR 单字识别匹配,支持逻辑坐标返回及可视化 \ 2024.10.13 update:补充最新paddlex-SLANet-plus 模型(paddle2onnx原因暂不能支持onnx)