diff --git a/FinixDocBench_Eval_for_Markdown/README.md b/FinixDocBench_Eval_for_Markdown/README.md new file mode 100644 index 0000000000000000000000000000000000000000..c6511586a9b993a7175e18bea69ceb1c4d45c5d1 --- /dev/null +++ b/FinixDocBench_Eval_for_Markdown/README.md @@ -0,0 +1,142 @@ +# FinixDocBench Markdown Evaluation + +This folder contains a lightweight evaluator for FinixDocBench Markdown parsing outputs. It compares a directory of ground-truth `.md` files with a directory of predicted `.md` files whose file names match exactly. + +The evaluator is intended for the public Markdown task. It does not evaluate structured JSON layout annotations. + +## Metrics + +The evaluator reports: + +| Metric | Direction | Meaning | +|---|---|---| +| `text_block_Edit_dist` | Lower is better | Normalized edit distance over matched text blocks. | +| `reading_order_Edit_dist` | Lower is better | Normalized edit distance over serialized reading-order sequences. | +| `table_TEDS` | Higher is better | TEDS table-structure similarity, scaled to 0-100. | +| `overall` | Higher is better | Composite score on a 0-100 scale. | + +The overall score is: + +```python +overall = ( + (1 - text_block_Edit_dist) * 100 + + (1 - reading_order_Edit_dist) * 100 + + table_TEDS +) / 3 +``` + +Formula parsing is not evaluated separately. + +## Installation + +Python 3.9+ is recommended. + +```bash +cd FinixDocBench_Eval_for_Markdown +python3 -m venv .venv +source .venv/bin/activate +pip install -r requirements.txt +``` + +## Quick Check + +Run the bundled minimal example first: + +```bash +python run_eval.py \ + --gt_dir examples/gt \ + --pred_dir examples/pred \ + --output_json outputs/example_result.json +``` + +## Evaluate a FinixDocBench Track + +Prepare a prediction directory with one `.md` file per evaluated page. Prediction file names must match the ground-truth Markdown file names. + +Example for FinixPhoto: + +```bash +python run_eval.py \ + --gt_dir ../track2_finixphoto_300/mds \ + --pred_dir /path/to/predicted_mds \ + --output_json outputs/finixphoto_result.json +``` + +Example for FinixHuge-Table: + +```bash +python run_eval.py \ + --gt_dir ../track3_finixhuge_100_table/mds \ + --pred_dir /path/to/predicted_mds \ + --output_json outputs/finixhuge_table_result.json +``` + +## Output Format + +The output JSON has the following structure: + +```json +{ + "success": true, + "metrics": { + "text_block_Edit_dist": 0.0123, + "reading_order_Edit_dist": 0.0, + "table_TEDS": 98.7, + "overall": 99.15, + "num_samples": 2, + "score": 99.15 + }, + "inputs": { + "gt_files": 2, + "pred_files": 2, + "missing_predictions": 0, + "unexpected_predictions": 0 + } +} +``` + +`score` is identical to `overall` and is included for leaderboard or automation systems that expect a generic score field. + +## File Name Validation + +By default, the evaluator fails if the `.md` file names in `gt_dir` and `pred_dir` do not match exactly. This avoids accidentally skipping pages. + +If you want to allow missing predictions and score missing files as empty outputs, pass: + +```bash +python run_eval.py \ + --gt_dir /path/to/gt_mds \ + --pred_dir /path/to/pred_mds \ + --allow_name_mismatch +``` + +## FinixHuge Reporting + +For FinixHuge-Long and FinixHuge-Table, also report a success rate outside this script: + +```text +success_rate = valid_non_empty_predictions / total_pages +``` + +A prediction should be counted as successful only if it is a syntactically valid, non-empty page-level Markdown result without runtime failure, severe truncation, or format errors that prevent downstream evaluation. + +## Large Table Safeguards + +TEDS can be slow on extremely large tables. To keep evaluation practical, this implementation assigns a table TEDS score of `0` when a ground-truth or predicted table exceeds `50000` `` cells. + +The matching stage also keeps broad safety thresholds: + +```text +MAX_PRED_ITEMS = 50000 +RATIO_THRESHOLD = 100 +MAX_TOTAL_LENGTH = 10000000 +MAX_SINGLE_ITEM_LENGTH = 10000000 +``` + +## Notes + +- Only `.md` files are evaluated. +- Images, JSON annotations, and other files are ignored by this evaluator. +- Markdown tables are converted to HTML before table evaluation. +- One page image should correspond to one Markdown file. +- File names are the matching keys; the evaluator does not read images. diff --git a/FinixDocBench_Eval_for_Markdown/requirements.txt b/FinixDocBench_Eval_for_Markdown/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..9edf01132c6f802a9413475e9db6b427f849ac7a --- /dev/null +++ b/FinixDocBench_Eval_for_Markdown/requirements.txt @@ -0,0 +1,8 @@ +python-Levenshtein==0.25.1 +apted==1.0.3 +lxml==4.9.4 +beautifulsoup4==4.12.3 +tqdm==4.66.4 +pylatexenc==2.10 +numpy==1.26.4 +scipy==1.13.1 diff --git a/FinixDocBench_Eval_for_Markdown/run_eval.py b/FinixDocBench_Eval_for_Markdown/run_eval.py new file mode 100644 index 0000000000000000000000000000000000000000..4d17f9324fb579b390c380d24b866790b1fbe223 --- /dev/null +++ b/FinixDocBench_Eval_for_Markdown/run_eval.py @@ -0,0 +1,116 @@ +#!/usr/bin/env python3 +import argparse +import json +import math +import sys +from pathlib import Path + +from finixdoc_md_eval.omnidocbench_adapter import evaluate_md_dirs + + +def parse_args(): + parser = argparse.ArgumentParser( + description="Evaluate Markdown OCR/parsing results with text, reading-order, and table metrics." + ) + parser.add_argument("--gt_dir", required=True, help="Directory containing ground-truth .md files.") + parser.add_argument("--pred_dir", required=True, help="Directory containing prediction .md files.") + parser.add_argument( + "--output_json", + default="eval_result.json", + help="Path to write metric results. Default: eval_result.json", + ) + parser.add_argument( + "--allow_name_mismatch", + action="store_true", + help="Do not fail when gt/pred .md file names differ. Missing predictions are scored as empty.", + ) + return parser.parse_args() + + +def md_names(path): + return {p.name for p in Path(path).iterdir() if p.is_file() and p.suffix == ".md"} + + +def validate_inputs(gt_dir, pred_dir, allow_name_mismatch=False): + gt_path = Path(gt_dir) + pred_path = Path(pred_dir) + if not gt_path.is_dir(): + raise ValueError(f"GT directory does not exist: {gt_path}") + if not pred_path.is_dir(): + raise ValueError(f"Prediction directory does not exist: {pred_path}") + + gt_files = md_names(gt_path) + pred_files = md_names(pred_path) + if not gt_files: + raise ValueError(f"No .md files found in GT directory: {gt_path}") + if not pred_files: + raise ValueError(f"No .md files found in prediction directory: {pred_path}") + + missing = sorted(gt_files - pred_files) + extra = sorted(pred_files - gt_files) + if not allow_name_mismatch and (missing or extra): + message = [ + "GT and prediction .md file names must match.", + f"GT files: {len(gt_files)}", + f"Prediction files: {len(pred_files)}", + ] + if missing: + message.append(f"Missing predictions: {len(missing)}; first: {missing[0]}") + if extra: + message.append(f"Unexpected predictions: {len(extra)}; first: {extra[0]}") + raise ValueError(" ".join(message)) + + return { + "gt_files": len(gt_files), + "pred_files": len(pred_files), + "missing_predictions": len(missing), + "unexpected_predictions": len(extra), + } + + +def rounded_metrics(metrics): + clean = {} + for key, value in metrics.items(): + if isinstance(value, float): + clean[key] = None if math.isnan(value) else round(value, 6) + else: + clean[key] = value + clean["score"] = clean["overall"] + return clean + + +def main(): + args = parse_args() + try: + input_summary = validate_inputs(args.gt_dir, args.pred_dir, args.allow_name_mismatch) + metrics = evaluate_md_dirs(args.gt_dir, args.pred_dir) + result = { + "success": True, + "metrics": rounded_metrics(metrics), + "inputs": input_summary, + } + output_path = Path(args.output_json) + output_path.parent.mkdir(parents=True, exist_ok=True) + output_path.write_text(json.dumps(result, ensure_ascii=False, indent=2), encoding="utf-8") + + print("FinixDoc Markdown Evaluation") + print(f" samples: {metrics['num_samples']}") + print(f" text_block_Edit_dist: {metrics['text_block_Edit_dist']:.6f}") + print(f" reading_order_Edit_dist: {metrics['reading_order_Edit_dist']:.6f}") + print(f" table_TEDS: {metrics['table_TEDS']:.6f}") + print(f" overall: {metrics['overall']:.6f}") + print(f" result_json: {output_path}") + except Exception as exc: + result = { + "success": False, + "error": str(exc), + } + output_path = Path(args.output_json) + output_path.parent.mkdir(parents=True, exist_ok=True) + output_path.write_text(json.dumps(result, ensure_ascii=False, indent=2), encoding="utf-8") + print(f"Evaluation failed: {exc}", file=sys.stderr) + sys.exit(1) + + +if __name__ == "__main__": + main() diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000000000000000000000000000000000000..12863e261053215d138491d82ccae9b2e0a116aa --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,47 @@ +# Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International + +SPDX-License-Identifier: CC-BY-NC-SA-4.0 + +Copyright (c) 2026 Ant Group and the FinixDocBench authors. + +This FinixDocBench release, including page images, Markdown ground truth, structured JSON annotations, benchmark metadata, and accompanying evaluation materials unless otherwise stated, is released under the **Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0)**. + +Official license deed: + +https://creativecommons.org/licenses/by-nc-sa/4.0/ + +Official legal code: + +https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode + +## Human-Readable Summary + +Under CC BY-NC-SA 4.0, you may share and adapt the licensed material for non-commercial purposes, provided that you give appropriate credit, indicate if changes were made, and distribute adaptations under the same license. + +This summary is provided for convenience only. If there is any inconsistency, the official Creative Commons legal code governs. + +## Attribution + +If you use this FinixDocBench release, please cite the FinixDoc technical report: + +```bibtex +@misc{wang2026finixdoc, + title = {FinixDoc: Rethinking Financial Document Parsing Beyond Saturated Benchmarks}, + author = {Hang Wang and Jin Zhang and Guoliang Xu and Pengyue Lu and Yao Li and Zijiao Zhang and Tianyu Huang and Weiqi Xiong and Yulong Wang and Chuqiao Lu and Wenkang Huang and Kai Yang and Yadong Li and Hui Li and Xingzhong Xu and Xiao Xu}, + year = {2026}, + institution = {Ant Group}, + url = {https://finix.alipay.com} +} +``` + +## Benchmark Integrity Notice + +This FinixDocBench release is intended for research, benchmark evaluation, academic comparison, and reproducibility studies of OCR and document parsing systems. + +If you use the benchmark labels, annotations, or ground truth for model training, fine-tuning, data augmentation, prompt optimization, or any other model-improvement process, please do not report the resulting model performance as an official FinixDocBench benchmark result. + +The dataset is not intended for individual profiling, personal information extraction, identity inference, or automated financial, medical, insurance, legal, employment, credit, or similarly consequential decision-making. + +## No Warranty + +This FinixDocBench release is provided as-is, without warranty of any kind, express or implied, including but not limited to warranties of accuracy, completeness, merchantability, fitness for a particular purpose, and non-infringement. diff --git a/README.md b/README.md index 06a892f74d857a1cc06e9081b13d970c10bc3e92..d99aee7ea27ccb58c374304d85a5d0faed2dc070 100644 --- a/README.md +++ b/README.md @@ -1,23 +1,367 @@ --- license: cc-by-nc-sa-4.0 -task_categories: -- image-to-text -- object-detection language: -- en -- zh -tags: -- document-parsing -- ocr -- financial-documents -- layout-analysis -- table-recognition -- reading-order -- camera-captured-documents -- ultra-large-documents -- markdown -- chinese -pretty_name: FinixDocBench Public + - zh + - en +task_categories: + - image-to-text + - object-detection +pretty_name: FinixDocBench size_categories: -- n<1K ---- \ No newline at end of file + - "100` blocks are used where table structure, merged cells, or dense financial layouts need to be represented more faithfully than plain Markdown tables. + +### 2. Structured Layout Parsing + +Given a page image, a model should produce structured page elements with category labels, bounding boxes, transcribed content, and reading order. This task is available for FinixDigital and FinixPhoto, which include `jsons/` annotations. + +The public JSON files use pixel-space bounding boxes in the original image coordinate system. Each JSON file includes page metadata plus a `layout` list. + +### 3. Ultra-Large Page Processability + +FinixHuge-Long and FinixHuge-Table evaluate whether a system can return a syntactically valid, non-empty, page-level Markdown result for oversized documents. These pages stress page resolution, output length, table complexity, and reading-order preservation. + +Because FinixHuge is Markdown-only in this release, it is best evaluated with Markdown metrics plus a success-rate style processability check. + +## Annotation Schema + +FinixDigital and FinixPhoto use a unified 10-class page-element schema: + +```text +page-header +page-footer +title +section-header +text +table +figure +caption +footnote +other +``` + +Top-level JSON fields: + +| Field | Description | +|---|---| +| `width` | Original page image width in pixels. | +| `height` | Original page image height in pixels. | +| `resized_width` | Width used by the annotation or preprocessing pipeline. | +| `resized_height` | Height used by the annotation or preprocessing pipeline. | +| `max_pixels` | Maximum pixel budget recorded by the preprocessing pipeline. | +| `min_pixels` | Minimum pixel budget recorded by the preprocessing pipeline. | +| `layout` | Ordered list of page elements. | + +Each `layout` item contains: + +| Field | Description | +|---|---| +| `category` | One of the 10 page-element labels. | +| `bbox` | Pixel-space bounding box `[x1, y1, x2, y2]` in the page image coordinate system. | +| `content` | Transcribed text, Markdown structural marker, or serialized table content. This field may be absent for some `figure` elements. | +| `order` | Reading-order index of the layout element. | + +Example: + +```json +{ + "width": 993, + "height": 1404, + "resized_width": 992, + "resized_height": 1408, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [82, 364, 223, 394], + "content": "## 2.3 责任免除", + "order": 5 + }, + { + "category": "table", + "bbox": [337, 156, 916, 295], + "content": "...
", + "order": 3 + } + ] +} +``` + +## Dataset Statistics + +| Track | Images | Markdown files | JSON files | Notes | +|---|---:|---:|---:|---| +| FinixDigital | 242 | 242 | 242 | 6,223 structured layout elements; 214 tables | +| FinixPhoto | 300 | 300 | 300 | 8,517 structured layout elements; 224 tables | +| FinixHuge-Long | 100 | 100 | 0 | Ultra-long page images, up to 287M pixels | +| FinixHuge-Table | 100 | 100 | 0 | Large dense table images, up to 386M pixels | +| **Total** | **742** | **742** | **542** | All samples have paired images and Markdown | + +Category counts for the structured JSON tracks: + +| Category | Count | +|---|---:| +| `text` | 10,158 | +| `section-header` | 1,522 | +| `figure` | 1,307 | +| `title` | 504 | +| `table` | 438 | +| `caption` | 265 | +| `page-footer` | 223 | +| `footnote` | 204 | +| `page-header` | 64 | +| `other` | 55 | + +## Loading Examples + +Load the manifest with the Hugging Face `datasets` library: + +```python +from datasets import load_dataset + +manifest = load_dataset( + "json", + data_files="dataset_manifest.jsonl", + split="train", +) + +print(manifest[0]) +``` + +Read a sample locally after cloning the repository: + +```python +from pathlib import Path +from PIL import Image +import json + +repo = Path("FinixDocBench") +row = manifest[0] + +image = Image.open(repo / row["image_path"]) +markdown = (repo / row["markdown_path"]).read_text(encoding="utf-8") + +annotation = None +if row["json_path"] is not None: + annotation = json.loads((repo / row["json_path"]).read_text(encoding="utf-8")) +``` + +## Evaluation + +The repository includes a lightweight Markdown evaluator: + +```bash +cd FinixDocBench_Eval_for_Markdown +python3 -m venv .venv +source .venv/bin/activate +pip install -r requirements.txt +``` + +Run evaluation on a track by providing a ground-truth Markdown directory and a prediction Markdown directory with matching file names: + +```bash +python run_eval.py \ + --gt_dir ../track2_finixphoto_300/mds \ + --pred_dir /path/to/predicted_mds \ + --output_json outputs/finixphoto_result.json +``` + +The Markdown evaluator reports: + +| Metric | Direction | Description | +|---|---|---| +| `text_block_Edit_dist` | Lower is better | Normalized edit distance over matched text blocks. | +| `reading_order_Edit_dist` | Lower is better | Normalized edit distance over serialized reading-order sequences. | +| `table_TEDS` | Higher is better | Tree-edit-distance-based table similarity, scaled to 0-100. | +| `overall` | Higher is better | Composite score on a 0-100 scale. | + +The overall score is: + +```text +overall = ((1 - text_block_Edit_dist) * 100 + + (1 - reading_order_Edit_dist) * 100 + + table_TEDS) / 3 +``` + +For FinixHuge, users should additionally report a success rate: the fraction of pages for which the system returns a syntactically valid, non-empty page-level Markdown result without runtime failure, severe truncation, or format errors that prevent downstream evaluation. + +Structured JSON annotations are provided for FinixDigital and FinixPhoto. This repository currently ships the Markdown evaluator; if you report structured layout metrics, please describe the evaluator, matching rules, and coordinate convention used. + +## Reference Results from the Technical Report + +The following values are copied from the FinixDoc technical report for context. They correspond to the benchmark protocol reported in the paper and should not be treated as precomputed scores for every subset in this release unless the same split and evaluation protocol are reproduced. + +### FinixDigital + +| Model | Overall | TextEdit | TableTEDS | TableTEDS-S | ReadOrderEdit | +|---|---:|---:|---:|---:|---:| +| Qwen3-VL-4B | 80.18 | 0.145 | 76.04 | 81.23 | 0.210 | +| FinixDoc-VL | 93.19 | 0.039 | 92.07 | 93.67 | 0.086 | +| DeepSeek-OCR-2 | 82.80 | 0.139 | 90.00 | 92.32 | 0.277 | +| FireRed-OCR | 83.10 | 0.119 | 87.10 | 89.14 | 0.259 | +| PaddleOCR-VL-1.5 | 85.41 | 0.116 | 86.12 | 88.26 | 0.183 | +| GLM-OCR | 86.28 | 0.121 | 89.44 | 90.99 | 0.185 | +| Youtu-Parsing | 89.26 | 0.091 | 87.79 | 90.85 | 0.109 | +| Dots.OCR | 90.36 | 0.058 | 89.78 | 92.26 | 0.129 | +| MinerU 2.5 | 92.96 | 0.045 | 91.18 | 92.70 | 0.078 | +| Qwen3.5-397B-A17B | 84.90 | 0.119 | 87.30 | 89.51 | 0.207 | +| Kimi-K2.5 | 85.05 | 0.119 | 85.95 | 88.24 | 0.189 | +| Qwen3-VL-235B-A22B-Instruct | 87.26 | 0.076 | 82.77 | 85.44 | 0.134 | + +### FinixPhoto + +| Model | Overall | TextEdit | TableTEDS | TableTEDS-S | ReadOrderEdit | +|---|---:|---:|---:|---:|---:| +| Qwen3-VL-4B | 54.28 | 0.408 | 50.13 | 63.04 | 0.465 | +| FinixDoc-VL | 67.03 | 0.276 | 69.08 | 77.69 | 0.404 | +| PaddleOCR-VL-1.5 | 41.28 | 0.512 | 34.54 | 46.72 | 0.595 | +| MinerU 2.5 | 43.08 | 0.513 | 35.54 | 48.58 | 0.550 | +| DeepSeek-OCR-2 | 43.20 | 0.459 | 30.69 | 43.52 | 0.552 | +| GLM-OCR | 45.82 | 0.521 | 50.47 | 60.22 | 0.609 | +| FireRed-OCR | 47.20 | 0.487 | 38.50 | 53.72 | 0.482 | +| Dots.OCR | 52.57 | 0.399 | 44.90 | 56.92 | 0.473 | +| Youtu-Parsing | 60.90 | 0.345 | 59.01 | 66.23 | 0.418 | +| Qwen3.5-397B-A17B | 62.58 | 0.384 | 62.04 | 71.82 | 0.359 | +| Qwen3-VL-235B-A22B-Instruct | 62.65 | 0.359 | 63.55 | 72.13 | 0.397 | +| Kimi-K2.5 | 65.55 | 0.325 | 70.16 | 77.34 | 0.410 | + +### FinixHuge + +| Model | Success Rate | Overall | TextEdit | TableTEDS | TableTEDS-S | ReadOrderEdit | +|---|---:|---:|---:|---:|---:|---:| +| FinixDoc | 0.92 | 68.23 | 0.357 | 57.09 | 60.10 | 0.167 | +| Qwen3-VL-235B-A22B-Instruct | 0.68 | 34.85 | 0.847 | 47.05 | 63.20 | 0.578 | +| GLM-OCR | 0.34 | 38.06 | 0.816 | 59.39 | 62.43 | 0.636 | + +## Intended Uses + +This dataset is intended for: + +- Evaluating OCR and document parsing systems on financial-domain documents. +- Testing full-page Markdown reconstruction. +- Testing layout parsing, table parsing, bounding boxes, and reading-order recovery on FinixDigital and FinixPhoto. +- Measuring robustness on noisy camera-captured receipt images. +- Evaluating end-to-end processability on ultra-large document pages. + +## Out-of-Scope Uses + +This dataset is not intended for: + +- Individual profiling or personal information extraction. +- Automated financial, medical, insurance, legal, employment, credit, or similarly consequential decision-making. +- Reporting benchmark numbers after using benchmark labels or ground truth for training, fine-tuning, data augmentation, or prompt optimization. +- Claiming complete coverage of all financial document scenarios. + +## Limitations + +FinixDocBench is an evaluation benchmark, not a comprehensive training corpus. This release covers selected high-value financial document parsing scenarios and does not include the private FinixInner track. + +FinixPhoto is derived from public-scenario medical receipt sources and re-annotated under the FinixDocBench schema. Prior exposure of some external models to the original public sources cannot be fully ruled out. + +FinixHuge emphasizes system-level processability with Markdown-only public annotations. Direct single-pass model comparisons may understate or overstate practical usability if failed pages, truncation, or invalid outputs are not reported consistently. + +Some page images may be very large. Users should use image loading libraries carefully and configure decompression or pixel limits intentionally when evaluating FinixHuge. + +## License + +This FinixDocBench release is distributed under the **Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0)**. + +See [LICENSE.md](LICENSE.md) for the human-readable license notice and the official Creative Commons license link. + +## Citation + +If you use this FinixDocBench release, please cite: + +```bibtex +@misc{wang2026finixdoc, + title = {FinixDoc: Rethinking Financial Document Parsing Beyond Saturated Benchmarks}, + author = {Hang Wang and Jin Zhang and Guoliang Xu and Pengyue Lu and Yao Li and Zijiao Zhang and Tianyu Huang and Weiqi Xiong and Yulong Wang and Chuqiao Lu and Wenkang Huang and Kai Yang and Yadong Li and Hui Li and Xingzhong Xu and Xiao Xu}, + year = {2026}, + institution = {Ant Group}, + url = {https://finix.alipay.com} +} +``` + +## Contact + +For questions about the benchmark, please contact the FinixDoc authors through the project page or the Ant Group Hugging Face organization. diff --git a/dataset_manifest.jsonl b/dataset_manifest.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a67500333316deeba7788887160523946fe93eca --- /dev/null +++ b/dataset_manifest.jsonl @@ -0,0 +1,742 @@ +{"id": "008053f7-47b1-4810-bfad-6f51c0ddc390", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/008053f7-47b1-4810-bfad-6f51c0ddc390.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/008053f7-47b1-4810-bfad-6f51c0ddc390.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/008053f7-47b1-4810-bfad-6f51c0ddc390.json", "has_structured_json": true, "image_width": 1190, "image_height": 1685, "image_pixels": 2005150, "num_layout_elements": 23, "num_tables": 1} +{"id": "01c9577f-0cca-440e-a037-93c754764553", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/01c9577f-0cca-440e-a037-93c754764553.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/01c9577f-0cca-440e-a037-93c754764553.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/01c9577f-0cca-440e-a037-93c754764553.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 16, "num_tables": 0} +{"id": "03b07d4a-2895-48d7-b3f4-841f3875d387", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/03b07d4a-2895-48d7-b3f4-841f3875d387.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/03b07d4a-2895-48d7-b3f4-841f3875d387.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/03b07d4a-2895-48d7-b3f4-841f3875d387.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 13, "num_tables": 1} +{"id": "03e0c0a4-6b6f-432a-8e1d-08425b02fe55", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/03e0c0a4-6b6f-432a-8e1d-08425b02fe55.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/03e0c0a4-6b6f-432a-8e1d-08425b02fe55.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/03e0c0a4-6b6f-432a-8e1d-08425b02fe55.json", "has_structured_json": true, "image_width": 1191, "image_height": 1616, "image_pixels": 1924656, "num_layout_elements": 23, "num_tables": 0} +{"id": "0603ab53-ea60-4698-983f-c4d9a3d391fd", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/0603ab53-ea60-4698-983f-c4d9a3d391fd.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/0603ab53-ea60-4698-983f-c4d9a3d391fd.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/0603ab53-ea60-4698-983f-c4d9a3d391fd.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 11, "num_tables": 1} +{"id": "08c42598-d27d-43b6-9797-991b86d1aa2b", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/08c42598-d27d-43b6-9797-991b86d1aa2b.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/08c42598-d27d-43b6-9797-991b86d1aa2b.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/08c42598-d27d-43b6-9797-991b86d1aa2b.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 18, "num_tables": 0} +{"id": "090e980a-47b3-4ba9-898d-87047e69cb7f", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/090e980a-47b3-4ba9-898d-87047e69cb7f.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/090e980a-47b3-4ba9-898d-87047e69cb7f.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/090e980a-47b3-4ba9-898d-87047e69cb7f.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 2, "num_tables": 0} +{"id": "0915fdd1-dc13-42e4-bc3f-1deb95fc242e", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/0915fdd1-dc13-42e4-bc3f-1deb95fc242e.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/0915fdd1-dc13-42e4-bc3f-1deb95fc242e.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/0915fdd1-dc13-42e4-bc3f-1deb95fc242e.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 16, "num_tables": 0} +{"id": "091f1637-c551-4669-9ba3-bb55d9bd8754", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/091f1637-c551-4669-9ba3-bb55d9bd8754.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/091f1637-c551-4669-9ba3-bb55d9bd8754.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/091f1637-c551-4669-9ba3-bb55d9bd8754.json", "has_structured_json": true, "image_width": 576, "image_height": 864, "image_pixels": 497664, "num_layout_elements": 11, "num_tables": 0} +{"id": "09cc7e9d-308f-446f-85cb-686673746367", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/09cc7e9d-308f-446f-85cb-686673746367.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/09cc7e9d-308f-446f-85cb-686673746367.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/09cc7e9d-308f-446f-85cb-686673746367.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 13, "num_tables": 0} +{"id": "0b2dfaff-0b84-40d1-b8ed-32419263ec42", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/0b2dfaff-0b84-40d1-b8ed-32419263ec42.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/0b2dfaff-0b84-40d1-b8ed-32419263ec42.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/0b2dfaff-0b84-40d1-b8ed-32419263ec42.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 15, "num_tables": 0} +{"id": "0bc4bb5f-8b93-4ab2-b197-40d187b83e00", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/0bc4bb5f-8b93-4ab2-b197-40d187b83e00.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/0bc4bb5f-8b93-4ab2-b197-40d187b83e00.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/0bc4bb5f-8b93-4ab2-b197-40d187b83e00.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 13, "num_tables": 1} +{"id": "0d657279-1e0b-4e3e-8ff6-2abd6767119c", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/0d657279-1e0b-4e3e-8ff6-2abd6767119c.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/0d657279-1e0b-4e3e-8ff6-2abd6767119c.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/0d657279-1e0b-4e3e-8ff6-2abd6767119c.json", "has_structured_json": true, "image_width": 1190, "image_height": 1684, "image_pixels": 2003960, "num_layout_elements": 8, "num_tables": 0} +{"id": "0eb11f58-5a95-4a53-a4fa-b5a5d28273ed", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/0eb11f58-5a95-4a53-a4fa-b5a5d28273ed.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/0eb11f58-5a95-4a53-a4fa-b5a5d28273ed.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/0eb11f58-5a95-4a53-a4fa-b5a5d28273ed.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 15, "num_tables": 0} +{"id": "0f05d9b0-8b83-40cd-9a07-24c0c9179729", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/0f05d9b0-8b83-40cd-9a07-24c0c9179729.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/0f05d9b0-8b83-40cd-9a07-24c0c9179729.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/0f05d9b0-8b83-40cd-9a07-24c0c9179729.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 30, "num_tables": 0} +{"id": "1017cac1-9cb9-4c70-b9ed-a22d8ab865a8", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/1017cac1-9cb9-4c70-b9ed-a22d8ab865a8.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/1017cac1-9cb9-4c70-b9ed-a22d8ab865a8.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/1017cac1-9cb9-4c70-b9ed-a22d8ab865a8.json", "has_structured_json": true, "image_width": 1192, "image_height": 1685, "image_pixels": 2008520, "num_layout_elements": 21, "num_tables": 1} +{"id": "10d17bd5-5291-4474-8a5d-45d0b6e45c20", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/10d17bd5-5291-4474-8a5d-45d0b6e45c20.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/10d17bd5-5291-4474-8a5d-45d0b6e45c20.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/10d17bd5-5291-4474-8a5d-45d0b6e45c20.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 14, "num_tables": 0} +{"id": "11bceca9-0986-4d27-a5a5-73665c032f6e", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/11bceca9-0986-4d27-a5a5-73665c032f6e.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/11bceca9-0986-4d27-a5a5-73665c032f6e.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/11bceca9-0986-4d27-a5a5-73665c032f6e.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 21, "num_tables": 0} +{"id": "11f5554a-2a43-4f96-b76b-d9f2e90bd863", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/11f5554a-2a43-4f96-b76b-d9f2e90bd863.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/11f5554a-2a43-4f96-b76b-d9f2e90bd863.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/11f5554a-2a43-4f96-b76b-d9f2e90bd863.json", "has_structured_json": true, "image_width": 702, "image_height": 2893, "image_pixels": 2030886, "num_layout_elements": 57, "num_tables": 1} +{"id": "12b01854-1d57-46e3-a743-d90588dccef3", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/12b01854-1d57-46e3-a743-d90588dccef3.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/12b01854-1d57-46e3-a743-d90588dccef3.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/12b01854-1d57-46e3-a743-d90588dccef3.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 68, "num_tables": 0} +{"id": "12cae7f9-8d69-4093-b328-a23d71683dfa", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/12cae7f9-8d69-4093-b328-a23d71683dfa.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/12cae7f9-8d69-4093-b328-a23d71683dfa.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/12cae7f9-8d69-4093-b328-a23d71683dfa.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 25, "num_tables": 0} +{"id": "13977ebf-0bb0-4e16-a1ae-3cef62246628", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/13977ebf-0bb0-4e16-a1ae-3cef62246628.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/13977ebf-0bb0-4e16-a1ae-3cef62246628.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/13977ebf-0bb0-4e16-a1ae-3cef62246628.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 15, "num_tables": 0} +{"id": "164da4c7-6bb4-42a0-95e1-c9c5fdb8e5d9", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/164da4c7-6bb4-42a0-95e1-c9c5fdb8e5d9.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/164da4c7-6bb4-42a0-95e1-c9c5fdb8e5d9.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/164da4c7-6bb4-42a0-95e1-c9c5fdb8e5d9.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 14, "num_tables": 0} +{"id": "16b1433c-4238-449c-9c16-6a85b622767a", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/16b1433c-4238-449c-9c16-6a85b622767a.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/16b1433c-4238-449c-9c16-6a85b622767a.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/16b1433c-4238-449c-9c16-6a85b622767a.json", "has_structured_json": true, "image_width": 576, "image_height": 864, "image_pixels": 497664, "num_layout_elements": 10, "num_tables": 0} +{"id": "190d2be8-7426-51a4-bc90-8c3dce04fd42", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/190d2be8-7426-51a4-bc90-8c3dce04fd42.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/190d2be8-7426-51a4-bc90-8c3dce04fd42.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/190d2be8-7426-51a4-bc90-8c3dce04fd42.json", "has_structured_json": true, "image_width": 1446, "image_height": 2048, "image_pixels": 2961408, "num_layout_elements": 15, "num_tables": 4} +{"id": "1abb05d2-55aa-43de-8a87-f53157e27338", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/1abb05d2-55aa-43de-8a87-f53157e27338.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/1abb05d2-55aa-43de-8a87-f53157e27338.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/1abb05d2-55aa-43de-8a87-f53157e27338.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 20, "num_tables": 1} +{"id": "1aed3e59-ad28-44f1-b53b-ca0ff336373e", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/1aed3e59-ad28-44f1-b53b-ca0ff336373e.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/1aed3e59-ad28-44f1-b53b-ca0ff336373e.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/1aed3e59-ad28-44f1-b53b-ca0ff336373e.json", "has_structured_json": true, "image_width": 1020, "image_height": 1320, "image_pixels": 1346400, "num_layout_elements": 15, "num_tables": 0} +{"id": "1cd8ead1-35d7-43c6-b8e2-e9edc3cfdd09", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/1cd8ead1-35d7-43c6-b8e2-e9edc3cfdd09.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/1cd8ead1-35d7-43c6-b8e2-e9edc3cfdd09.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/1cd8ead1-35d7-43c6-b8e2-e9edc3cfdd09.json", "has_structured_json": true, "image_width": 1190, "image_height": 1685, "image_pixels": 2005150, "num_layout_elements": 34, "num_tables": 0} +{"id": "1dafdf2d-a448-483a-83a1-5d223b473300", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/1dafdf2d-a448-483a-83a1-5d223b473300.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/1dafdf2d-a448-483a-83a1-5d223b473300.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/1dafdf2d-a448-483a-83a1-5d223b473300.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 20, "num_tables": 0} +{"id": "1f4270a9-9175-4248-86a9-79789782573d", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/1f4270a9-9175-4248-86a9-79789782573d.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/1f4270a9-9175-4248-86a9-79789782573d.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/1f4270a9-9175-4248-86a9-79789782573d.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 7, "num_tables": 0} +{"id": "1f5107f6-5e93-4ffc-ba90-b8b850b71966", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/1f5107f6-5e93-4ffc-ba90-b8b850b71966.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/1f5107f6-5e93-4ffc-ba90-b8b850b71966.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/1f5107f6-5e93-4ffc-ba90-b8b850b71966.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 18, "num_tables": 1} +{"id": "224127b9-f450-44fb-a5c3-e1fc86344e8b", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/224127b9-f450-44fb-a5c3-e1fc86344e8b.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/224127b9-f450-44fb-a5c3-e1fc86344e8b.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/224127b9-f450-44fb-a5c3-e1fc86344e8b.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 9, "num_tables": 0} +{"id": "22f089c7-54af-4a91-bc40-6b9845155497", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/22f089c7-54af-4a91-bc40-6b9845155497.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/22f089c7-54af-4a91-bc40-6b9845155497.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/22f089c7-54af-4a91-bc40-6b9845155497.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 23, "num_tables": 0} +{"id": "237017a8-47df-4a9d-a8ab-b8c0f37d9603", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/237017a8-47df-4a9d-a8ab-b8c0f37d9603.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/237017a8-47df-4a9d-a8ab-b8c0f37d9603.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/237017a8-47df-4a9d-a8ab-b8c0f37d9603.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 51, "num_tables": 0} +{"id": "23760128-7ce3-50d4-a3d9-a75e9d2199b5", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/23760128-7ce3-50d4-a3d9-a75e9d2199b5.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/23760128-7ce3-50d4-a3d9-a75e9d2199b5.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/23760128-7ce3-50d4-a3d9-a75e9d2199b5.json", "has_structured_json": true, "image_width": 1446, "image_height": 2048, "image_pixels": 2961408, "num_layout_elements": 18, "num_tables": 5} +{"id": "23d193f7-d151-4fc2-a62d-79d78eefd8d0", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/23d193f7-d151-4fc2-a62d-79d78eefd8d0.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/23d193f7-d151-4fc2-a62d-79d78eefd8d0.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/23d193f7-d151-4fc2-a62d-79d78eefd8d0.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 29, "num_tables": 0} +{"id": "26587f1c-8b94-452e-a3a4-5bdc1676383f", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/26587f1c-8b94-452e-a3a4-5bdc1676383f.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/26587f1c-8b94-452e-a3a4-5bdc1676383f.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/26587f1c-8b94-452e-a3a4-5bdc1676383f.json", "has_structured_json": true, "image_width": 1190, "image_height": 1684, "image_pixels": 2003960, "num_layout_elements": 22, "num_tables": 1} +{"id": "271dd3d0-f661-4776-bd59-0d461dc7907d", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/271dd3d0-f661-4776-bd59-0d461dc7907d.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/271dd3d0-f661-4776-bd59-0d461dc7907d.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/271dd3d0-f661-4776-bd59-0d461dc7907d.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 10, "num_tables": 1} +{"id": "27d60be5-3d32-4428-87cd-00f425914b29", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/27d60be5-3d32-4428-87cd-00f425914b29.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/27d60be5-3d32-4428-87cd-00f425914b29.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/27d60be5-3d32-4428-87cd-00f425914b29.json", "has_structured_json": true, "image_width": 1500, "image_height": 2668, "image_pixels": 4002000, "num_layout_elements": 10, "num_tables": 0} +{"id": "280efc82-8eb3-4eed-871d-72bbf5bf903b", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/280efc82-8eb3-4eed-871d-72bbf5bf903b.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/280efc82-8eb3-4eed-871d-72bbf5bf903b.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/280efc82-8eb3-4eed-871d-72bbf5bf903b.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 19, "num_tables": 1} +{"id": "2903916c-99ca-436c-9b26-376a9210ccd3", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/2903916c-99ca-436c-9b26-376a9210ccd3.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/2903916c-99ca-436c-9b26-376a9210ccd3.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/2903916c-99ca-436c-9b26-376a9210ccd3.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 8, "num_tables": 2} +{"id": "2b6f3b8b-2442-4771-a02f-7a280c5ebcc0", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/2b6f3b8b-2442-4771-a02f-7a280c5ebcc0.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/2b6f3b8b-2442-4771-a02f-7a280c5ebcc0.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/2b6f3b8b-2442-4771-a02f-7a280c5ebcc0.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 3, "num_tables": 1} +{"id": "2cd1d1c3-984f-48be-b3a6-310f20ba3579", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/2cd1d1c3-984f-48be-b3a6-310f20ba3579.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/2cd1d1c3-984f-48be-b3a6-310f20ba3579.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/2cd1d1c3-984f-48be-b3a6-310f20ba3579.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 17, "num_tables": 0} +{"id": "2d733c65-811b-4e2a-b73e-2a7d81d98337", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/2d733c65-811b-4e2a-b73e-2a7d81d98337.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/2d733c65-811b-4e2a-b73e-2a7d81d98337.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/2d733c65-811b-4e2a-b73e-2a7d81d98337.json", "has_structured_json": true, "image_width": 1684, "image_height": 1191, "image_pixels": 2005644, "num_layout_elements": 21, "num_tables": 1} +{"id": "2f8ed865-a9e9-4d8e-946c-f0eb1fe1cc28", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/2f8ed865-a9e9-4d8e-946c-f0eb1fe1cc28.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/2f8ed865-a9e9-4d8e-946c-f0eb1fe1cc28.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/2f8ed865-a9e9-4d8e-946c-f0eb1fe1cc28.json", "has_structured_json": true, "image_width": 750, "image_height": 4522, "image_pixels": 3391500, "num_layout_elements": 72, "num_tables": 1} +{"id": "304a5968-d00d-4cd0-8eff-9da8a4c13e3a", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/304a5968-d00d-4cd0-8eff-9da8a4c13e3a.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/304a5968-d00d-4cd0-8eff-9da8a4c13e3a.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/304a5968-d00d-4cd0-8eff-9da8a4c13e3a.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 8, "num_tables": 0} +{"id": "338ba004-746e-4c5d-a127-38e3f3f53abd", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/338ba004-746e-4c5d-a127-38e3f3f53abd.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/338ba004-746e-4c5d-a127-38e3f3f53abd.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/338ba004-746e-4c5d-a127-38e3f3f53abd.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 2, "num_tables": 1} +{"id": "34140d7f-1759-4abb-85a9-7798ac3b2d49", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/34140d7f-1759-4abb-85a9-7798ac3b2d49.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/34140d7f-1759-4abb-85a9-7798ac3b2d49.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/34140d7f-1759-4abb-85a9-7798ac3b2d49.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 33, "num_tables": 0} +{"id": "3513b1e7-06f3-499a-a929-a643f168de90", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/3513b1e7-06f3-499a-a929-a643f168de90.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/3513b1e7-06f3-499a-a929-a643f168de90.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/3513b1e7-06f3-499a-a929-a643f168de90.json", "has_structured_json": true, "image_width": 1192, "image_height": 1685, "image_pixels": 2008520, "num_layout_elements": 23, "num_tables": 2} +{"id": "38dfb392-6147-4313-848d-60aa5ba0eaca", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/38dfb392-6147-4313-848d-60aa5ba0eaca.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/38dfb392-6147-4313-848d-60aa5ba0eaca.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/38dfb392-6147-4313-848d-60aa5ba0eaca.json", "has_structured_json": true, "image_width": 576, "image_height": 864, "image_pixels": 497664, "num_layout_elements": 8, "num_tables": 0} +{"id": "3a3733e4-8f24-4771-83d1-452aab218a1d", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/3a3733e4-8f24-4771-83d1-452aab218a1d.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/3a3733e4-8f24-4771-83d1-452aab218a1d.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/3a3733e4-8f24-4771-83d1-452aab218a1d.json", "has_structured_json": true, "image_width": 750, "image_height": 4210, "image_pixels": 3157500, "num_layout_elements": 55, "num_tables": 1} +{"id": "3a87298a-9b27-419a-9578-ce8d206bd0be", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/3a87298a-9b27-419a-9578-ce8d206bd0be.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/3a87298a-9b27-419a-9578-ce8d206bd0be.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/3a87298a-9b27-419a-9578-ce8d206bd0be.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 23, "num_tables": 2} +{"id": "3afefe92-fa3d-53ca-84fd-8694e7cf4e82", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/3afefe92-fa3d-53ca-84fd-8694e7cf4e82.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/3afefe92-fa3d-53ca-84fd-8694e7cf4e82.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/3afefe92-fa3d-53ca-84fd-8694e7cf4e82.json", "has_structured_json": true, "image_width": 1448, "image_height": 2048, "image_pixels": 2965504, "num_layout_elements": 15, "num_tables": 5} +{"id": "3c73e917-fc28-4541-9cd7-5c32339df073", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/3c73e917-fc28-4541-9cd7-5c32339df073.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/3c73e917-fc28-4541-9cd7-5c32339df073.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/3c73e917-fc28-4541-9cd7-5c32339df073.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 9, "num_tables": 0} +{"id": "3c84f16b-e1bc-4cf1-8e5b-afbc06634287", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/3c84f16b-e1bc-4cf1-8e5b-afbc06634287.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/3c84f16b-e1bc-4cf1-8e5b-afbc06634287.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/3c84f16b-e1bc-4cf1-8e5b-afbc06634287.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 9, "num_tables": 0} +{"id": "3dcb8b04-44d9-4831-b277-0ce693a10792", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/3dcb8b04-44d9-4831-b277-0ce693a10792.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/3dcb8b04-44d9-4831-b277-0ce693a10792.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/3dcb8b04-44d9-4831-b277-0ce693a10792.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 27, "num_tables": 0} +{"id": "40ddc882-27f6-4e3f-8338-05d24483e070", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/40ddc882-27f6-4e3f-8338-05d24483e070.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/40ddc882-27f6-4e3f-8338-05d24483e070.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/40ddc882-27f6-4e3f-8338-05d24483e070.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 20, "num_tables": 0} +{"id": "439a30a7-1c4a-41b6-8629-c001b0e18b50", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/439a30a7-1c4a-41b6-8629-c001b0e18b50.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/439a30a7-1c4a-41b6-8629-c001b0e18b50.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/439a30a7-1c4a-41b6-8629-c001b0e18b50.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 36, "num_tables": 0} +{"id": "447e8c77-b1e7-5c84-a5bf-ca1358df38f4", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/447e8c77-b1e7-5c84-a5bf-ca1358df38f4.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/447e8c77-b1e7-5c84-a5bf-ca1358df38f4.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/447e8c77-b1e7-5c84-a5bf-ca1358df38f4.json", "has_structured_json": true, "image_width": 1446, "image_height": 2048, "image_pixels": 2961408, "num_layout_elements": 21, "num_tables": 5} +{"id": "44c756db-56a7-4388-afa6-3519c93fb601", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/44c756db-56a7-4388-afa6-3519c93fb601.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/44c756db-56a7-4388-afa6-3519c93fb601.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/44c756db-56a7-4388-afa6-3519c93fb601.json", "has_structured_json": true, "image_width": 1408, "image_height": 10000, "image_pixels": 14080000, "num_layout_elements": 68, "num_tables": 1} +{"id": "44ef4475-224c-40e6-8b82-68c22984dd7e", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/44ef4475-224c-40e6-8b82-68c22984dd7e.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/44ef4475-224c-40e6-8b82-68c22984dd7e.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/44ef4475-224c-40e6-8b82-68c22984dd7e.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 75, "num_tables": 0} +{"id": "455d4b58-7549-4f52-a230-e541c75c3625", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/455d4b58-7549-4f52-a230-e541c75c3625.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/455d4b58-7549-4f52-a230-e541c75c3625.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/455d4b58-7549-4f52-a230-e541c75c3625.json", "has_structured_json": true, "image_width": 1190, "image_height": 1684, "image_pixels": 2003960, "num_layout_elements": 29, "num_tables": 1} +{"id": "458ad7e2-e071-4dff-9b28-467dce374665", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/458ad7e2-e071-4dff-9b28-467dce374665.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/458ad7e2-e071-4dff-9b28-467dce374665.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/458ad7e2-e071-4dff-9b28-467dce374665.json", "has_structured_json": true, "image_width": 750, "image_height": 4875, "image_pixels": 3656250, "num_layout_elements": 67, "num_tables": 2} +{"id": "45c184f7-6c70-5722-89cc-c0cc4a0a220e", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/45c184f7-6c70-5722-89cc-c0cc4a0a220e.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/45c184f7-6c70-5722-89cc-c0cc4a0a220e.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/45c184f7-6c70-5722-89cc-c0cc4a0a220e.json", "has_structured_json": true, "image_width": 784, "image_height": 4898, "image_pixels": 3840032, "num_layout_elements": 49, "num_tables": 4} +{"id": "45e86cd5-4490-4c5e-8878-4a38ee17e201", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/45e86cd5-4490-4c5e-8878-4a38ee17e201.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/45e86cd5-4490-4c5e-8878-4a38ee17e201.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/45e86cd5-4490-4c5e-8878-4a38ee17e201.json", "has_structured_json": true, "image_width": 576, "image_height": 864, "image_pixels": 497664, "num_layout_elements": 10, "num_tables": 0} +{"id": "46ab2463-b220-4afb-9c99-8b5ef3705e77", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/46ab2463-b220-4afb-9c99-8b5ef3705e77.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/46ab2463-b220-4afb-9c99-8b5ef3705e77.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/46ab2463-b220-4afb-9c99-8b5ef3705e77.json", "has_structured_json": true, "image_width": 1684, "image_height": 1191, "image_pixels": 2005644, "num_layout_elements": 6, "num_tables": 1} +{"id": "478eeb1f-1372-4abe-8bf9-58e28584f813", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/478eeb1f-1372-4abe-8bf9-58e28584f813.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/478eeb1f-1372-4abe-8bf9-58e28584f813.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/478eeb1f-1372-4abe-8bf9-58e28584f813.json", "has_structured_json": true, "image_width": 1190, "image_height": 1684, "image_pixels": 2003960, "num_layout_elements": 14, "num_tables": 2} +{"id": "479637d3-be69-4ead-a438-24832cbbc74a", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/479637d3-be69-4ead-a438-24832cbbc74a.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/479637d3-be69-4ead-a438-24832cbbc74a.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/479637d3-be69-4ead-a438-24832cbbc74a.json", "has_structured_json": true, "image_width": 1192, "image_height": 1685, "image_pixels": 2008520, "num_layout_elements": 23, "num_tables": 2} +{"id": "482e3a27-4be3-47a9-84e9-46ea52791413", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/482e3a27-4be3-47a9-84e9-46ea52791413.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/482e3a27-4be3-47a9-84e9-46ea52791413.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/482e3a27-4be3-47a9-84e9-46ea52791413.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 14, "num_tables": 0} +{"id": "489dd3af-9312-47f9-8c0f-316fbc6565c6", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/489dd3af-9312-47f9-8c0f-316fbc6565c6.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/489dd3af-9312-47f9-8c0f-316fbc6565c6.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/489dd3af-9312-47f9-8c0f-316fbc6565c6.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 17, "num_tables": 0} +{"id": "49144717-1fc5-4203-947e-2d948d765513", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/49144717-1fc5-4203-947e-2d948d765513.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/49144717-1fc5-4203-947e-2d948d765513.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/49144717-1fc5-4203-947e-2d948d765513.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 16, "num_tables": 0} +{"id": "4a713ad5-d34f-483c-889b-b9b11bc72544", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/4a713ad5-d34f-483c-889b-b9b11bc72544.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/4a713ad5-d34f-483c-889b-b9b11bc72544.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/4a713ad5-d34f-483c-889b-b9b11bc72544.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 3, "num_tables": 0} +{"id": "4e55cd44-1f04-4060-ae32-e4ca6356f579", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/4e55cd44-1f04-4060-ae32-e4ca6356f579.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/4e55cd44-1f04-4060-ae32-e4ca6356f579.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/4e55cd44-1f04-4060-ae32-e4ca6356f579.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 32, "num_tables": 0} +{"id": "4fcf86c8-f7d0-49b0-b59a-454b49a35e52", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/4fcf86c8-f7d0-49b0-b59a-454b49a35e52.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/4fcf86c8-f7d0-49b0-b59a-454b49a35e52.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/4fcf86c8-f7d0-49b0-b59a-454b49a35e52.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 9, "num_tables": 0} +{"id": "5167ecf7-bef1-485c-a406-739e98eae374", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/5167ecf7-bef1-485c-a406-739e98eae374.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/5167ecf7-bef1-485c-a406-739e98eae374.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/5167ecf7-bef1-485c-a406-739e98eae374.json", "has_structured_json": true, "image_width": 750, "image_height": 3880, "image_pixels": 2910000, "num_layout_elements": 49, "num_tables": 1} +{"id": "526fb9db-d8b3-4a28-829c-a6f71746da00", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/526fb9db-d8b3-4a28-829c-a6f71746da00.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/526fb9db-d8b3-4a28-829c-a6f71746da00.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/526fb9db-d8b3-4a28-829c-a6f71746da00.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 29, "num_tables": 0} +{"id": "532d4d41-e985-414c-bb03-30950a5aec9a", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/532d4d41-e985-414c-bb03-30950a5aec9a.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/532d4d41-e985-414c-bb03-30950a5aec9a.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/532d4d41-e985-414c-bb03-30950a5aec9a.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 22, "num_tables": 1} +{"id": "563e4f09-0397-4018-8a4d-74456d6dd1c2", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/563e4f09-0397-4018-8a4d-74456d6dd1c2.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/563e4f09-0397-4018-8a4d-74456d6dd1c2.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/563e4f09-0397-4018-8a4d-74456d6dd1c2.json", "has_structured_json": true, "image_width": 551, "image_height": 2259, "image_pixels": 1244709, "num_layout_elements": 35, "num_tables": 1} +{"id": "56e76156-284c-48d5-8b7f-49e753473998", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/56e76156-284c-48d5-8b7f-49e753473998.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/56e76156-284c-48d5-8b7f-49e753473998.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/56e76156-284c-48d5-8b7f-49e753473998.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 35, "num_tables": 1} +{"id": "57f78c66-c863-4750-b50d-649888367d03", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/57f78c66-c863-4750-b50d-649888367d03.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/57f78c66-c863-4750-b50d-649888367d03.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/57f78c66-c863-4750-b50d-649888367d03.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 9, "num_tables": 1} +{"id": "58dcf1f4-ab5f-4a08-aa89-1cc1a89057db", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/58dcf1f4-ab5f-4a08-aa89-1cc1a89057db.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/58dcf1f4-ab5f-4a08-aa89-1cc1a89057db.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/58dcf1f4-ab5f-4a08-aa89-1cc1a89057db.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 11, "num_tables": 1} +{"id": "5a2726c0-4ec5-4e0c-80ca-00256ba771e7", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/5a2726c0-4ec5-4e0c-80ca-00256ba771e7.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/5a2726c0-4ec5-4e0c-80ca-00256ba771e7.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/5a2726c0-4ec5-4e0c-80ca-00256ba771e7.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 17, "num_tables": 1} +{"id": "5adec303-810a-5415-b1e2-21618d9242e9", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/5adec303-810a-5415-b1e2-21618d9242e9.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/5adec303-810a-5415-b1e2-21618d9242e9.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/5adec303-810a-5415-b1e2-21618d9242e9.json", "has_structured_json": true, "image_width": 1448, "image_height": 2048, "image_pixels": 2965504, "num_layout_elements": 23, "num_tables": 7} +{"id": "5bde3c3d-2a0d-45d3-b976-f650a0f8fd92", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/5bde3c3d-2a0d-45d3-b976-f650a0f8fd92.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/5bde3c3d-2a0d-45d3-b976-f650a0f8fd92.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/5bde3c3d-2a0d-45d3-b976-f650a0f8fd92.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 16, "num_tables": 0} +{"id": "5e927543-a586-42e2-97db-d226c0afed90", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/5e927543-a586-42e2-97db-d226c0afed90.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/5e927543-a586-42e2-97db-d226c0afed90.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/5e927543-a586-42e2-97db-d226c0afed90.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 12, "num_tables": 3} +{"id": "619ac8f8-b43f-4bd3-9cd8-abb765dab5ee", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/619ac8f8-b43f-4bd3-9cd8-abb765dab5ee.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/619ac8f8-b43f-4bd3-9cd8-abb765dab5ee.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/619ac8f8-b43f-4bd3-9cd8-abb765dab5ee.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 17, "num_tables": 0} +{"id": "6243ee35-1c75-4698-8ab8-941f38561ac4", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/6243ee35-1c75-4698-8ab8-941f38561ac4.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/6243ee35-1c75-4698-8ab8-941f38561ac4.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/6243ee35-1c75-4698-8ab8-941f38561ac4.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 14, "num_tables": 1} +{"id": "6597faf2-550c-4f04-b887-8d0e95c207c8", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/6597faf2-550c-4f04-b887-8d0e95c207c8.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/6597faf2-550c-4f04-b887-8d0e95c207c8.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/6597faf2-550c-4f04-b887-8d0e95c207c8.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 12, "num_tables": 1} +{"id": "66446807-f0ea-4577-b5bb-59599e210f49", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/66446807-f0ea-4577-b5bb-59599e210f49.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/66446807-f0ea-4577-b5bb-59599e210f49.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/66446807-f0ea-4577-b5bb-59599e210f49.json", "has_structured_json": true, "image_width": 750, "image_height": 6581, "image_pixels": 4935750, "num_layout_elements": 50, "num_tables": 2} +{"id": "66464c20-2f7c-446c-bbd4-3d7fb722f249", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/66464c20-2f7c-446c-bbd4-3d7fb722f249.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/66464c20-2f7c-446c-bbd4-3d7fb722f249.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/66464c20-2f7c-446c-bbd4-3d7fb722f249.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 20, "num_tables": 0} +{"id": "665b8176-4bdc-4fa7-8428-f7f5ae83ae1b", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/665b8176-4bdc-4fa7-8428-f7f5ae83ae1b.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/665b8176-4bdc-4fa7-8428-f7f5ae83ae1b.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/665b8176-4bdc-4fa7-8428-f7f5ae83ae1b.json", "has_structured_json": true, "image_width": 1212, "image_height": 3119, "image_pixels": 3780228, "num_layout_elements": 6, "num_tables": 1} +{"id": "66e3ad2c-0c6f-414d-a4fa-eca800eb6bdb", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/66e3ad2c-0c6f-414d-a4fa-eca800eb6bdb.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/66e3ad2c-0c6f-414d-a4fa-eca800eb6bdb.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/66e3ad2c-0c6f-414d-a4fa-eca800eb6bdb.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 19, "num_tables": 1} +{"id": "67453c45-04c6-4481-a923-1f731a6a6b91", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/67453c45-04c6-4481-a923-1f731a6a6b91.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/67453c45-04c6-4481-a923-1f731a6a6b91.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/67453c45-04c6-4481-a923-1f731a6a6b91.json", "has_structured_json": true, "image_width": 750, "image_height": 6348, "image_pixels": 4761000, "num_layout_elements": 59, "num_tables": 1} +{"id": "694b60d2-1e4e-4967-ab90-2114c8033319", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/694b60d2-1e4e-4967-ab90-2114c8033319.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/694b60d2-1e4e-4967-ab90-2114c8033319.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/694b60d2-1e4e-4967-ab90-2114c8033319.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 10, "num_tables": 2} +{"id": "697565ee-a4f7-4668-8790-079e839bac18", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/697565ee-a4f7-4668-8790-079e839bac18.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/697565ee-a4f7-4668-8790-079e839bac18.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/697565ee-a4f7-4668-8790-079e839bac18.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 6, "num_tables": 1} +{"id": "69c07219-5e9f-4dcd-8b56-974bf9627309", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/69c07219-5e9f-4dcd-8b56-974bf9627309.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/69c07219-5e9f-4dcd-8b56-974bf9627309.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/69c07219-5e9f-4dcd-8b56-974bf9627309.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 3, "num_tables": 0} +{"id": "6a2a0d10-c039-474a-8bfc-2391a1a35f58", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/6a2a0d10-c039-474a-8bfc-2391a1a35f58.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/6a2a0d10-c039-474a-8bfc-2391a1a35f58.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/6a2a0d10-c039-474a-8bfc-2391a1a35f58.json", "has_structured_json": true, "image_width": 1190, "image_height": 1684, "image_pixels": 2003960, "num_layout_elements": 18, "num_tables": 1} +{"id": "6b102832-ad04-4589-85fa-4c3b11107cb4", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/6b102832-ad04-4589-85fa-4c3b11107cb4.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/6b102832-ad04-4589-85fa-4c3b11107cb4.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/6b102832-ad04-4589-85fa-4c3b11107cb4.json", "has_structured_json": true, "image_width": 750, "image_height": 4290, "image_pixels": 3217500, "num_layout_elements": 43, "num_tables": 1} +{"id": "6d154ea1-ddcb-423f-adb3-fb678a877771", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/6d154ea1-ddcb-423f-adb3-fb678a877771.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/6d154ea1-ddcb-423f-adb3-fb678a877771.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/6d154ea1-ddcb-423f-adb3-fb678a877771.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 19, "num_tables": 0} +{"id": "6d96ea2b-129e-48e2-9536-90fbc7292f3e", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/6d96ea2b-129e-48e2-9536-90fbc7292f3e.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/6d96ea2b-129e-48e2-9536-90fbc7292f3e.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/6d96ea2b-129e-48e2-9536-90fbc7292f3e.json", "has_structured_json": true, "image_width": 1191, "image_height": 1616, "image_pixels": 1924656, "num_layout_elements": 23, "num_tables": 0} +{"id": "6de3bc4e-b6fd-4ac1-a832-5149145b6247", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/6de3bc4e-b6fd-4ac1-a832-5149145b6247.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/6de3bc4e-b6fd-4ac1-a832-5149145b6247.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/6de3bc4e-b6fd-4ac1-a832-5149145b6247.json", "has_structured_json": true, "image_width": 1684, "image_height": 1191, "image_pixels": 2005644, "num_layout_elements": 19, "num_tables": 1} +{"id": "6df6b34b-785b-4cc0-ba26-3dca06c440a4", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/6df6b34b-785b-4cc0-ba26-3dca06c440a4.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/6df6b34b-785b-4cc0-ba26-3dca06c440a4.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/6df6b34b-785b-4cc0-ba26-3dca06c440a4.json", "has_structured_json": true, "image_width": 1684, "image_height": 1191, "image_pixels": 2005644, "num_layout_elements": 13, "num_tables": 1} +{"id": "6e1688f9-ad74-4fe8-97e5-50043c6a26a9", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/6e1688f9-ad74-4fe8-97e5-50043c6a26a9.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/6e1688f9-ad74-4fe8-97e5-50043c6a26a9.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/6e1688f9-ad74-4fe8-97e5-50043c6a26a9.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 15, "num_tables": 0} +{"id": "6f21aa82-9124-4697-910f-ae72ce896de2", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/6f21aa82-9124-4697-910f-ae72ce896de2.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/6f21aa82-9124-4697-910f-ae72ce896de2.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/6f21aa82-9124-4697-910f-ae72ce896de2.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 15, "num_tables": 1} +{"id": "71de86a3-942a-4019-950b-27c20c2dd2b6", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/71de86a3-942a-4019-950b-27c20c2dd2b6.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/71de86a3-942a-4019-950b-27c20c2dd2b6.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/71de86a3-942a-4019-950b-27c20c2dd2b6.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 23, "num_tables": 1} +{"id": "7207f285-a4a7-46b7-9735-b01c9ef952e9", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/7207f285-a4a7-46b7-9735-b01c9ef952e9.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/7207f285-a4a7-46b7-9735-b01c9ef952e9.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/7207f285-a4a7-46b7-9735-b01c9ef952e9.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 22, "num_tables": 0} +{"id": "734ffeba-856f-4d2f-902d-54a7537f7a8a", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/734ffeba-856f-4d2f-902d-54a7537f7a8a.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/734ffeba-856f-4d2f-902d-54a7537f7a8a.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/734ffeba-856f-4d2f-902d-54a7537f7a8a.json", "has_structured_json": true, "image_width": 1190, "image_height": 1683, "image_pixels": 2002770, "num_layout_elements": 12, "num_tables": 0} +{"id": "755a1ad2-c00e-4e49-8350-f103ed27a69e", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/755a1ad2-c00e-4e49-8350-f103ed27a69e.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/755a1ad2-c00e-4e49-8350-f103ed27a69e.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/755a1ad2-c00e-4e49-8350-f103ed27a69e.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 18, "num_tables": 1} +{"id": "778c443a-f0cd-4b3c-a3b1-5c6e45e865a7", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/778c443a-f0cd-4b3c-a3b1-5c6e45e865a7.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/778c443a-f0cd-4b3c-a3b1-5c6e45e865a7.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/778c443a-f0cd-4b3c-a3b1-5c6e45e865a7.json", "has_structured_json": true, "image_width": 1020, "image_height": 1320, "image_pixels": 1346400, "num_layout_elements": 18, "num_tables": 0} +{"id": "779bb0bc-39c6-4e24-b7cd-db3c45c7fd90", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/779bb0bc-39c6-4e24-b7cd-db3c45c7fd90.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/779bb0bc-39c6-4e24-b7cd-db3c45c7fd90.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/779bb0bc-39c6-4e24-b7cd-db3c45c7fd90.json", "has_structured_json": true, "image_width": 1192, "image_height": 1685, "image_pixels": 2008520, "num_layout_elements": 19, "num_tables": 1} +{"id": "79a721a5-1800-474b-9ee2-4775006a30ec", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/79a721a5-1800-474b-9ee2-4775006a30ec.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/79a721a5-1800-474b-9ee2-4775006a30ec.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/79a721a5-1800-474b-9ee2-4775006a30ec.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 31, "num_tables": 1} +{"id": "7a057090-96a5-40ff-be1a-226e56cc714f", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/7a057090-96a5-40ff-be1a-226e56cc714f.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/7a057090-96a5-40ff-be1a-226e56cc714f.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/7a057090-96a5-40ff-be1a-226e56cc714f.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 20, "num_tables": 2} +{"id": "7a29fbf6-68ad-49f5-adc6-1618bbeec001", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/7a29fbf6-68ad-49f5-adc6-1618bbeec001.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/7a29fbf6-68ad-49f5-adc6-1618bbeec001.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/7a29fbf6-68ad-49f5-adc6-1618bbeec001.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 16, "num_tables": 0} +{"id": "7c4ba4ef-ff5f-4aee-8b11-e4686d9ecb21", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/7c4ba4ef-ff5f-4aee-8b11-e4686d9ecb21.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/7c4ba4ef-ff5f-4aee-8b11-e4686d9ecb21.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/7c4ba4ef-ff5f-4aee-8b11-e4686d9ecb21.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 17, "num_tables": 1} +{"id": "7cec6483-4bbf-4220-a5ba-6ec7ee466bb5", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/7cec6483-4bbf-4220-a5ba-6ec7ee466bb5.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/7cec6483-4bbf-4220-a5ba-6ec7ee466bb5.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/7cec6483-4bbf-4220-a5ba-6ec7ee466bb5.json", "has_structured_json": true, "image_width": 1020, "image_height": 1320, "image_pixels": 1346400, "num_layout_elements": 21, "num_tables": 0} +{"id": "7d2dcf76-6f72-571c-a1fc-e5f1c6e4a678", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/7d2dcf76-6f72-571c-a1fc-e5f1c6e4a678.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/7d2dcf76-6f72-571c-a1fc-e5f1c6e4a678.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/7d2dcf76-6f72-571c-a1fc-e5f1c6e4a678.json", "has_structured_json": true, "image_width": 784, "image_height": 4313, "image_pixels": 3381392, "num_layout_elements": 21, "num_tables": 5} +{"id": "7e89259b-b083-4cb2-bf46-a67b2da2fee3", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/7e89259b-b083-4cb2-bf46-a67b2da2fee3.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/7e89259b-b083-4cb2-bf46-a67b2da2fee3.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/7e89259b-b083-4cb2-bf46-a67b2da2fee3.json", "has_structured_json": true, "image_width": 1192, "image_height": 1685, "image_pixels": 2008520, "num_layout_elements": 21, "num_tables": 1} +{"id": "7f203cd1-5eb0-4e08-bcc4-86fbf855a3d0", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/7f203cd1-5eb0-4e08-bcc4-86fbf855a3d0.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/7f203cd1-5eb0-4e08-bcc4-86fbf855a3d0.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/7f203cd1-5eb0-4e08-bcc4-86fbf855a3d0.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 24, "num_tables": 0} +{"id": "7f74a090-ea36-46d7-b0e2-eb182f6fc975", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/7f74a090-ea36-46d7-b0e2-eb182f6fc975.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/7f74a090-ea36-46d7-b0e2-eb182f6fc975.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/7f74a090-ea36-46d7-b0e2-eb182f6fc975.json", "has_structured_json": true, "image_width": 750, "image_height": 9178, "image_pixels": 6883500, "num_layout_elements": 102, "num_tables": 1} +{"id": "800cace4-88c8-4f3a-b79c-9821b0321972", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/800cace4-88c8-4f3a-b79c-9821b0321972.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/800cace4-88c8-4f3a-b79c-9821b0321972.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/800cace4-88c8-4f3a-b79c-9821b0321972.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 25, "num_tables": 1} +{"id": "811d1d1a-c1e7-466e-9ba8-a5e85c5a0d6b", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/811d1d1a-c1e7-466e-9ba8-a5e85c5a0d6b.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/811d1d1a-c1e7-466e-9ba8-a5e85c5a0d6b.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/811d1d1a-c1e7-466e-9ba8-a5e85c5a0d6b.json", "has_structured_json": true, "image_width": 1684, "image_height": 1191, "image_pixels": 2005644, "num_layout_elements": 12, "num_tables": 1} +{"id": "81724269-7c3a-40b9-acf8-d27c5184c274", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/81724269-7c3a-40b9-acf8-d27c5184c274.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/81724269-7c3a-40b9-acf8-d27c5184c274.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/81724269-7c3a-40b9-acf8-d27c5184c274.json", "has_structured_json": true, "image_width": 750, "image_height": 4826, "image_pixels": 3619500, "num_layout_elements": 48, "num_tables": 1} +{"id": "828f948b-dbce-4a2e-87b8-f9c8c3dc8a96", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/828f948b-dbce-4a2e-87b8-f9c8c3dc8a96.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/828f948b-dbce-4a2e-87b8-f9c8c3dc8a96.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/828f948b-dbce-4a2e-87b8-f9c8c3dc8a96.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 16, "num_tables": 1} +{"id": "82c71d2a-db85-4d3e-a943-797bc66aac02", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/82c71d2a-db85-4d3e-a943-797bc66aac02.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/82c71d2a-db85-4d3e-a943-797bc66aac02.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/82c71d2a-db85-4d3e-a943-797bc66aac02.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 11, "num_tables": 1} +{"id": "833f10db-08e3-4f15-aa4d-dec9a6ef77f8", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/833f10db-08e3-4f15-aa4d-dec9a6ef77f8.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/833f10db-08e3-4f15-aa4d-dec9a6ef77f8.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/833f10db-08e3-4f15-aa4d-dec9a6ef77f8.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 29, "num_tables": 1} +{"id": "83b33ce7-aec1-479b-88d4-87d3d80897bb", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/83b33ce7-aec1-479b-88d4-87d3d80897bb.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/83b33ce7-aec1-479b-88d4-87d3d80897bb.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/83b33ce7-aec1-479b-88d4-87d3d80897bb.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 30, "num_tables": 1} +{"id": "8454827b-4fc9-4ff6-86ac-ddad537e8d93", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/8454827b-4fc9-4ff6-86ac-ddad537e8d93.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/8454827b-4fc9-4ff6-86ac-ddad537e8d93.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/8454827b-4fc9-4ff6-86ac-ddad537e8d93.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 20, "num_tables": 0} +{"id": "86b3fcf7-76a9-4224-8cc4-9f9ab4576c89", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/86b3fcf7-76a9-4224-8cc4-9f9ab4576c89.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/86b3fcf7-76a9-4224-8cc4-9f9ab4576c89.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/86b3fcf7-76a9-4224-8cc4-9f9ab4576c89.json", "has_structured_json": true, "image_width": 1500, "image_height": 8204, "image_pixels": 12306000, "num_layout_elements": 31, "num_tables": 1} +{"id": "88d05d6b-4667-51de-87a6-5c33a349dfa4", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/88d05d6b-4667-51de-87a6-5c33a349dfa4.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/88d05d6b-4667-51de-87a6-5c33a349dfa4.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/88d05d6b-4667-51de-87a6-5c33a349dfa4.json", "has_structured_json": true, "image_width": 1446, "image_height": 2048, "image_pixels": 2961408, "num_layout_elements": 16, "num_tables": 4} +{"id": "893520b0-1399-4929-8f78-e6b8bb1174c2", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/893520b0-1399-4929-8f78-e6b8bb1174c2.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/893520b0-1399-4929-8f78-e6b8bb1174c2.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/893520b0-1399-4929-8f78-e6b8bb1174c2.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 10, "num_tables": 0} +{"id": "89526d4d-bac1-4a43-9fec-bef63f28e5b6", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/89526d4d-bac1-4a43-9fec-bef63f28e5b6.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/89526d4d-bac1-4a43-9fec-bef63f28e5b6.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/89526d4d-bac1-4a43-9fec-bef63f28e5b6.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 26, "num_tables": 0} +{"id": "89807b9c-13fa-4fb9-94dc-febf89b9c016", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/89807b9c-13fa-4fb9-94dc-febf89b9c016.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/89807b9c-13fa-4fb9-94dc-febf89b9c016.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/89807b9c-13fa-4fb9-94dc-febf89b9c016.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 48, "num_tables": 0} +{"id": "8a17c105-7586-42f0-a014-83db1a78f060", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/8a17c105-7586-42f0-a014-83db1a78f060.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/8a17c105-7586-42f0-a014-83db1a78f060.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/8a17c105-7586-42f0-a014-83db1a78f060.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 24, "num_tables": 0} +{"id": "8bdb36e2-cb9f-42a1-bd3c-bb4cbb92c355", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/8bdb36e2-cb9f-42a1-bd3c-bb4cbb92c355.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/8bdb36e2-cb9f-42a1-bd3c-bb4cbb92c355.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/8bdb36e2-cb9f-42a1-bd3c-bb4cbb92c355.json", "has_structured_json": true, "image_width": 1190, "image_height": 1684, "image_pixels": 2003960, "num_layout_elements": 30, "num_tables": 1} +{"id": "8c7e8a2b-61db-4ec5-a0bf-8b58acb1ee62", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/8c7e8a2b-61db-4ec5-a0bf-8b58acb1ee62.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/8c7e8a2b-61db-4ec5-a0bf-8b58acb1ee62.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/8c7e8a2b-61db-4ec5-a0bf-8b58acb1ee62.json", "has_structured_json": true, "image_width": 3000, "image_height": 24236, "image_pixels": 72708000, "num_layout_elements": 53, "num_tables": 1} +{"id": "8cfd2857-2d80-4bf9-840b-0eb346996c15", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/8cfd2857-2d80-4bf9-840b-0eb346996c15.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/8cfd2857-2d80-4bf9-840b-0eb346996c15.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/8cfd2857-2d80-4bf9-840b-0eb346996c15.json", "has_structured_json": true, "image_width": 1190, "image_height": 1684, "image_pixels": 2003960, "num_layout_elements": 30, "num_tables": 1} +{"id": "8dc1e8c5-9422-4ad5-93e9-0beedb05b325", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/8dc1e8c5-9422-4ad5-93e9-0beedb05b325.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/8dc1e8c5-9422-4ad5-93e9-0beedb05b325.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/8dc1e8c5-9422-4ad5-93e9-0beedb05b325.json", "has_structured_json": true, "image_width": 1684, "image_height": 1191, "image_pixels": 2005644, "num_layout_elements": 6, "num_tables": 1} +{"id": "8dd6e657-d6bc-448f-ba16-7402b6b1c886", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/8dd6e657-d6bc-448f-ba16-7402b6b1c886.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/8dd6e657-d6bc-448f-ba16-7402b6b1c886.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/8dd6e657-d6bc-448f-ba16-7402b6b1c886.json", "has_structured_json": true, "image_width": 1684, "image_height": 1191, "image_pixels": 2005644, "num_layout_elements": 21, "num_tables": 1} +{"id": "8dfdbb3e-cbd9-40ce-82d7-d8febfe27f75", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/8dfdbb3e-cbd9-40ce-82d7-d8febfe27f75.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/8dfdbb3e-cbd9-40ce-82d7-d8febfe27f75.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/8dfdbb3e-cbd9-40ce-82d7-d8febfe27f75.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 17, "num_tables": 0} +{"id": "8ec50d91-3f98-414a-a56a-667f7b766415", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/8ec50d91-3f98-414a-a56a-667f7b766415.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/8ec50d91-3f98-414a-a56a-667f7b766415.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/8ec50d91-3f98-414a-a56a-667f7b766415.json", "has_structured_json": true, "image_width": 750, "image_height": 2967, "image_pixels": 2225250, "num_layout_elements": 33, "num_tables": 1} +{"id": "8ee8d6ac-14f6-4f22-a865-49f89d9683bb", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/8ee8d6ac-14f6-4f22-a865-49f89d9683bb.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/8ee8d6ac-14f6-4f22-a865-49f89d9683bb.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/8ee8d6ac-14f6-4f22-a865-49f89d9683bb.json", "has_structured_json": true, "image_width": 1214, "image_height": 3119, "image_pixels": 3786466, "num_layout_elements": 12, "num_tables": 1} +{"id": "90e01cca-f6e4-466b-b402-3ea707ad902b", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/90e01cca-f6e4-466b-b402-3ea707ad902b.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/90e01cca-f6e4-466b-b402-3ea707ad902b.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/90e01cca-f6e4-466b-b402-3ea707ad902b.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 13, "num_tables": 2} +{"id": "9181a4dd-0e98-46c3-b2c2-505ebd9c0ade", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/9181a4dd-0e98-46c3-b2c2-505ebd9c0ade.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/9181a4dd-0e98-46c3-b2c2-505ebd9c0ade.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/9181a4dd-0e98-46c3-b2c2-505ebd9c0ade.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 25, "num_tables": 0} +{"id": "927bb8ea-0146-40dd-a848-9f0f73cea41d", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/927bb8ea-0146-40dd-a848-9f0f73cea41d.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/927bb8ea-0146-40dd-a848-9f0f73cea41d.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/927bb8ea-0146-40dd-a848-9f0f73cea41d.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 15, "num_tables": 0} +{"id": "93300cba-67fa-492b-b1dd-ed1bcbbba093", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/93300cba-67fa-492b-b1dd-ed1bcbbba093.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/93300cba-67fa-492b-b1dd-ed1bcbbba093.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/93300cba-67fa-492b-b1dd-ed1bcbbba093.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 30, "num_tables": 0} +{"id": "93d4b81b-3e00-5e8e-96c3-fe5296c24687", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/93d4b81b-3e00-5e8e-96c3-fe5296c24687.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/93d4b81b-3e00-5e8e-96c3-fe5296c24687.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/93d4b81b-3e00-5e8e-96c3-fe5296c24687.json", "has_structured_json": true, "image_width": 784, "image_height": 6128, "image_pixels": 4804352, "num_layout_elements": 12, "num_tables": 6} +{"id": "95b876bb-fcb2-409e-8a9a-e2a1df72184e", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/95b876bb-fcb2-409e-8a9a-e2a1df72184e.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/95b876bb-fcb2-409e-8a9a-e2a1df72184e.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/95b876bb-fcb2-409e-8a9a-e2a1df72184e.json", "has_structured_json": true, "image_width": 1191, "image_height": 1734, "image_pixels": 2065194, "num_layout_elements": 4, "num_tables": 0} +{"id": "9619c6bb-1e64-4e72-b840-e7a44abd3da5", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/9619c6bb-1e64-4e72-b840-e7a44abd3da5.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/9619c6bb-1e64-4e72-b840-e7a44abd3da5.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/9619c6bb-1e64-4e72-b840-e7a44abd3da5.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 21, "num_tables": 1} +{"id": "985b022d-3a5c-428b-9986-75e2c3ef033e", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/985b022d-3a5c-428b-9986-75e2c3ef033e.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/985b022d-3a5c-428b-9986-75e2c3ef033e.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/985b022d-3a5c-428b-9986-75e2c3ef033e.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 10, "num_tables": 0} +{"id": "997a4077-01e2-42b4-8a38-925860c7b5d4", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/997a4077-01e2-42b4-8a38-925860c7b5d4.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/997a4077-01e2-42b4-8a38-925860c7b5d4.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/997a4077-01e2-42b4-8a38-925860c7b5d4.json", "has_structured_json": true, "image_width": 750, "image_height": 8379, "image_pixels": 6284250, "num_layout_elements": 132, "num_tables": 2} +{"id": "99d125df-2ddf-4313-8462-d64bd072c833", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/99d125df-2ddf-4313-8462-d64bd072c833.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/99d125df-2ddf-4313-8462-d64bd072c833.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/99d125df-2ddf-4313-8462-d64bd072c833.json", "has_structured_json": true, "image_width": 1190, "image_height": 1684, "image_pixels": 2003960, "num_layout_elements": 16, "num_tables": 1} +{"id": "9a50cb4c-4bd6-41e2-aae1-6d08273a5aad", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/9a50cb4c-4bd6-41e2-aae1-6d08273a5aad.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/9a50cb4c-4bd6-41e2-aae1-6d08273a5aad.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/9a50cb4c-4bd6-41e2-aae1-6d08273a5aad.json", "has_structured_json": true, "image_width": 702, "image_height": 3007, "image_pixels": 2110914, "num_layout_elements": 31, "num_tables": 1} +{"id": "9c281a1e-da8c-4405-9c04-ec8271d34747", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/9c281a1e-da8c-4405-9c04-ec8271d34747.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/9c281a1e-da8c-4405-9c04-ec8271d34747.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/9c281a1e-da8c-4405-9c04-ec8271d34747.json", "has_structured_json": true, "image_width": 1500, "image_height": 6630, "image_pixels": 9945000, "num_layout_elements": 28, "num_tables": 0} +{"id": "9c3c72c1-58ac-45dc-a512-89278f823fa9", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/9c3c72c1-58ac-45dc-a512-89278f823fa9.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/9c3c72c1-58ac-45dc-a512-89278f823fa9.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/9c3c72c1-58ac-45dc-a512-89278f823fa9.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 17, "num_tables": 1} +{"id": "9d3ac1fa-aa20-41d1-8e74-836c11e0cb3f", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/9d3ac1fa-aa20-41d1-8e74-836c11e0cb3f.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/9d3ac1fa-aa20-41d1-8e74-836c11e0cb3f.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/9d3ac1fa-aa20-41d1-8e74-836c11e0cb3f.json", "has_structured_json": true, "image_width": 702, "image_height": 3299, "image_pixels": 2315898, "num_layout_elements": 18, "num_tables": 1} +{"id": "9ddb47c8-1540-43b2-bab4-8ff586529401", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/9ddb47c8-1540-43b2-bab4-8ff586529401.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/9ddb47c8-1540-43b2-bab4-8ff586529401.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/9ddb47c8-1540-43b2-bab4-8ff586529401.json", "has_structured_json": true, "image_width": 750, "image_height": 7382, "image_pixels": 5536500, "num_layout_elements": 119, "num_tables": 2} +{"id": "9facb8b5-99d2-47e2-8748-65c44f459641", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/9facb8b5-99d2-47e2-8748-65c44f459641.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/9facb8b5-99d2-47e2-8748-65c44f459641.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/9facb8b5-99d2-47e2-8748-65c44f459641.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 9, "num_tables": 0} +{"id": "a1d820e1-8f67-41f3-a558-b4fd640f0748", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/a1d820e1-8f67-41f3-a558-b4fd640f0748.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/a1d820e1-8f67-41f3-a558-b4fd640f0748.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/a1d820e1-8f67-41f3-a558-b4fd640f0748.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 13, "num_tables": 0} +{"id": "a2c1e4a0-55f1-4216-8dc9-372163f6405e", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/a2c1e4a0-55f1-4216-8dc9-372163f6405e.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/a2c1e4a0-55f1-4216-8dc9-372163f6405e.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/a2c1e4a0-55f1-4216-8dc9-372163f6405e.json", "has_structured_json": true, "image_width": 750, "image_height": 3133, "image_pixels": 2349750, "num_layout_elements": 33, "num_tables": 2} +{"id": "a3437897-d10b-44df-bba0-a694246a9877", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/a3437897-d10b-44df-bba0-a694246a9877.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/a3437897-d10b-44df-bba0-a694246a9877.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/a3437897-d10b-44df-bba0-a694246a9877.json", "has_structured_json": true, "image_width": 1500, "image_height": 6992, "image_pixels": 10488000, "num_layout_elements": 41, "num_tables": 1} +{"id": "a47d6400-879a-4480-9234-7b2bf75e4a4c", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/a47d6400-879a-4480-9234-7b2bf75e4a4c.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/a47d6400-879a-4480-9234-7b2bf75e4a4c.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/a47d6400-879a-4480-9234-7b2bf75e4a4c.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 14, "num_tables": 0} +{"id": "a4f96a6c-6a5c-47b3-8dbc-ed3305e9b0bf", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/a4f96a6c-6a5c-47b3-8dbc-ed3305e9b0bf.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/a4f96a6c-6a5c-47b3-8dbc-ed3305e9b0bf.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/a4f96a6c-6a5c-47b3-8dbc-ed3305e9b0bf.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 17, "num_tables": 0} +{"id": "a54138d2-e8e2-4add-9657-3f37a8d77171", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/a54138d2-e8e2-4add-9657-3f37a8d77171.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/a54138d2-e8e2-4add-9657-3f37a8d77171.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/a54138d2-e8e2-4add-9657-3f37a8d77171.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 8, "num_tables": 2} +{"id": "a55c7c9b-b15c-46af-ab84-42c1ae9fe869", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/a55c7c9b-b15c-46af-ab84-42c1ae9fe869.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/a55c7c9b-b15c-46af-ab84-42c1ae9fe869.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/a55c7c9b-b15c-46af-ab84-42c1ae9fe869.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 31, "num_tables": 1} +{"id": "a6104749-2ca6-4fa8-9fe1-7fb4edb8b5ee", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/a6104749-2ca6-4fa8-9fe1-7fb4edb8b5ee.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/a6104749-2ca6-4fa8-9fe1-7fb4edb8b5ee.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/a6104749-2ca6-4fa8-9fe1-7fb4edb8b5ee.json", "has_structured_json": true, "image_width": 1192, "image_height": 1685, "image_pixels": 2008520, "num_layout_elements": 19, "num_tables": 1} +{"id": "a6b633b0-996d-4ce9-9016-bf7881b25444", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/a6b633b0-996d-4ce9-9016-bf7881b25444.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/a6b633b0-996d-4ce9-9016-bf7881b25444.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/a6b633b0-996d-4ce9-9016-bf7881b25444.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 12, "num_tables": 1} +{"id": "a72c354b-8485-491c-8e3c-25fc081871cf", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/a72c354b-8485-491c-8e3c-25fc081871cf.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/a72c354b-8485-491c-8e3c-25fc081871cf.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/a72c354b-8485-491c-8e3c-25fc081871cf.json", "has_structured_json": true, "image_width": 750, "image_height": 3267, "image_pixels": 2450250, "num_layout_elements": 45, "num_tables": 1} +{"id": "a7fb3842-2f6e-4c37-ab07-d88040f96a0f", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/a7fb3842-2f6e-4c37-ab07-d88040f96a0f.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/a7fb3842-2f6e-4c37-ab07-d88040f96a0f.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/a7fb3842-2f6e-4c37-ab07-d88040f96a0f.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 18, "num_tables": 1} +{"id": "a814d1bd-617c-4943-b363-447a57e3b696", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/a814d1bd-617c-4943-b363-447a57e3b696.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/a814d1bd-617c-4943-b363-447a57e3b696.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/a814d1bd-617c-4943-b363-447a57e3b696.json", "has_structured_json": true, "image_width": 750, "image_height": 6800, "image_pixels": 5100000, "num_layout_elements": 62, "num_tables": 1} +{"id": "ab5473d4-3e23-4dad-bb7c-ed04de9b7faf", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/ab5473d4-3e23-4dad-bb7c-ed04de9b7faf.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/ab5473d4-3e23-4dad-bb7c-ed04de9b7faf.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/ab5473d4-3e23-4dad-bb7c-ed04de9b7faf.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 22, "num_tables": 3} +{"id": "ab744a3e-4df2-4a3d-bbd2-8c2f054d48b9", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/ab744a3e-4df2-4a3d-bbd2-8c2f054d48b9.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/ab744a3e-4df2-4a3d-bbd2-8c2f054d48b9.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/ab744a3e-4df2-4a3d-bbd2-8c2f054d48b9.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 38, "num_tables": 0} +{"id": "abfd854e-cba1-4c41-9a30-1483efe11942", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/abfd854e-cba1-4c41-9a30-1483efe11942.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/abfd854e-cba1-4c41-9a30-1483efe11942.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/abfd854e-cba1-4c41-9a30-1483efe11942.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 11, "num_tables": 1} +{"id": "ad350fee-87a9-4e7e-a72d-c02ebff58ff5", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/ad350fee-87a9-4e7e-a72d-c02ebff58ff5.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/ad350fee-87a9-4e7e-a72d-c02ebff58ff5.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/ad350fee-87a9-4e7e-a72d-c02ebff58ff5.json", "has_structured_json": true, "image_width": 1684, "image_height": 1191, "image_pixels": 2005644, "num_layout_elements": 8, "num_tables": 1} +{"id": "ad84a289-a239-4685-a980-ae939918a945", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/ad84a289-a239-4685-a980-ae939918a945.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/ad84a289-a239-4685-a980-ae939918a945.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/ad84a289-a239-4685-a980-ae939918a945.json", "has_structured_json": true, "image_width": 1191, "image_height": 1616, "image_pixels": 1924656, "num_layout_elements": 28, "num_tables": 1} +{"id": "afd32785-d8e0-4d88-94a7-c179aba162d5", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/afd32785-d8e0-4d88-94a7-c179aba162d5.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/afd32785-d8e0-4d88-94a7-c179aba162d5.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/afd32785-d8e0-4d88-94a7-c179aba162d5.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 9, "num_tables": 0} +{"id": "b000cbe5-2816-4c5b-9794-7d6d7cb0bbe0", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/b000cbe5-2816-4c5b-9794-7d6d7cb0bbe0.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/b000cbe5-2816-4c5b-9794-7d6d7cb0bbe0.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/b000cbe5-2816-4c5b-9794-7d6d7cb0bbe0.json", "has_structured_json": true, "image_width": 1116, "image_height": 1584, "image_pixels": 1767744, "num_layout_elements": 32, "num_tables": 0} +{"id": "b224006d-da9d-4a13-abbc-4d5898e6563d", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/b224006d-da9d-4a13-abbc-4d5898e6563d.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/b224006d-da9d-4a13-abbc-4d5898e6563d.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/b224006d-da9d-4a13-abbc-4d5898e6563d.json", "has_structured_json": true, "image_width": 1190, "image_height": 1684, "image_pixels": 2003960, "num_layout_elements": 27, "num_tables": 2} +{"id": "b357ce84-19c7-448b-873f-9ff74949f22b", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/b357ce84-19c7-448b-873f-9ff74949f22b.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/b357ce84-19c7-448b-873f-9ff74949f22b.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/b357ce84-19c7-448b-873f-9ff74949f22b.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 74, "num_tables": 0} +{"id": "b6250030-402b-455c-91b3-2ae7a7a06740", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/b6250030-402b-455c-91b3-2ae7a7a06740.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/b6250030-402b-455c-91b3-2ae7a7a06740.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/b6250030-402b-455c-91b3-2ae7a7a06740.json", "has_structured_json": true, "image_width": 1500, "image_height": 2668, "image_pixels": 4002000, "num_layout_elements": 11, "num_tables": 0} +{"id": "b7dcadd1-2111-4ab4-9355-2778b336100c", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/b7dcadd1-2111-4ab4-9355-2778b336100c.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/b7dcadd1-2111-4ab4-9355-2778b336100c.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/b7dcadd1-2111-4ab4-9355-2778b336100c.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 24, "num_tables": 2} +{"id": "b9dd1531-280b-4af3-9926-eb086841067f", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/b9dd1531-280b-4af3-9926-eb086841067f.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/b9dd1531-280b-4af3-9926-eb086841067f.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/b9dd1531-280b-4af3-9926-eb086841067f.json", "has_structured_json": true, "image_width": 750, "image_height": 3880, "image_pixels": 2910000, "num_layout_elements": 51, "num_tables": 1} +{"id": "bc18feb0-4bc3-41d8-9705-126230cd5f43", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/bc18feb0-4bc3-41d8-9705-126230cd5f43.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/bc18feb0-4bc3-41d8-9705-126230cd5f43.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/bc18feb0-4bc3-41d8-9705-126230cd5f43.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 52, "num_tables": 0} +{"id": "bd3a12f7-45e0-4a83-9bde-cb2a51327d82", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/bd3a12f7-45e0-4a83-9bde-cb2a51327d82.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/bd3a12f7-45e0-4a83-9bde-cb2a51327d82.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/bd3a12f7-45e0-4a83-9bde-cb2a51327d82.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 15, "num_tables": 1} +{"id": "be8f3b69-31e0-4736-a2e3-32c62ef9e754", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/be8f3b69-31e0-4736-a2e3-32c62ef9e754.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/be8f3b69-31e0-4736-a2e3-32c62ef9e754.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/be8f3b69-31e0-4736-a2e3-32c62ef9e754.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 15, "num_tables": 0} +{"id": "c1cdca57-e820-428e-bd49-415ec826b594", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/c1cdca57-e820-428e-bd49-415ec826b594.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/c1cdca57-e820-428e-bd49-415ec826b594.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/c1cdca57-e820-428e-bd49-415ec826b594.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 15, "num_tables": 1} +{"id": "c25683ac-166a-4686-9404-8610235e7061", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/c25683ac-166a-4686-9404-8610235e7061.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/c25683ac-166a-4686-9404-8610235e7061.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/c25683ac-166a-4686-9404-8610235e7061.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 15, "num_tables": 0} +{"id": "c29d9724-8a9f-481d-8e47-b71dea480135", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/c29d9724-8a9f-481d-8e47-b71dea480135.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/c29d9724-8a9f-481d-8e47-b71dea480135.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/c29d9724-8a9f-481d-8e47-b71dea480135.json", "has_structured_json": true, "image_width": 1190, "image_height": 1684, "image_pixels": 2003960, "num_layout_elements": 23, "num_tables": 1} +{"id": "c2f4b692-8c95-4ac9-9185-651f068e9004", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/c2f4b692-8c95-4ac9-9185-651f068e9004.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/c2f4b692-8c95-4ac9-9185-651f068e9004.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/c2f4b692-8c95-4ac9-9185-651f068e9004.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 4, "num_tables": 2} +{"id": "c3e97144-d5b3-4e88-87bd-1c64d123965d", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/c3e97144-d5b3-4e88-87bd-1c64d123965d.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/c3e97144-d5b3-4e88-87bd-1c64d123965d.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/c3e97144-d5b3-4e88-87bd-1c64d123965d.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 25, "num_tables": 1} +{"id": "c6e6486a-58cb-4a9f-a07d-cd099a7bae73", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/c6e6486a-58cb-4a9f-a07d-cd099a7bae73.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/c6e6486a-58cb-4a9f-a07d-cd099a7bae73.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/c6e6486a-58cb-4a9f-a07d-cd099a7bae73.json", "has_structured_json": true, "image_width": 3000, "image_height": 26092, "image_pixels": 78276000, "num_layout_elements": 78, "num_tables": 1} +{"id": "c8ad7ffd-54f5-41b6-954a-ce8d23f30d03", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/c8ad7ffd-54f5-41b6-954a-ce8d23f30d03.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/c8ad7ffd-54f5-41b6-954a-ce8d23f30d03.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/c8ad7ffd-54f5-41b6-954a-ce8d23f30d03.json", "has_structured_json": true, "image_width": 1250, "image_height": 2224, "image_pixels": 2780000, "num_layout_elements": 10, "num_tables": 0} +{"id": "c8e2a8e3-7b4f-481a-af40-50c1ca60f75e", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/c8e2a8e3-7b4f-481a-af40-50c1ca60f75e.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/c8e2a8e3-7b4f-481a-af40-50c1ca60f75e.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/c8e2a8e3-7b4f-481a-af40-50c1ca60f75e.json", "has_structured_json": true, "image_width": 750, "image_height": 4920, "image_pixels": 3690000, "num_layout_elements": 79, "num_tables": 1} +{"id": "c9ae41db-2148-48f7-9c87-08368c06d57f", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/c9ae41db-2148-48f7-9c87-08368c06d57f.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/c9ae41db-2148-48f7-9c87-08368c06d57f.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/c9ae41db-2148-48f7-9c87-08368c06d57f.json", "has_structured_json": true, "image_width": 750, "image_height": 4290, "image_pixels": 3217500, "num_layout_elements": 60, "num_tables": 2} +{"id": "ca387b04-b881-4389-bca4-01f7471d5381", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/ca387b04-b881-4389-bca4-01f7471d5381.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/ca387b04-b881-4389-bca4-01f7471d5381.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/ca387b04-b881-4389-bca4-01f7471d5381.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 1, "num_tables": 1} +{"id": "cb813c23-933e-4fe5-b938-00c02274c4d0", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/cb813c23-933e-4fe5-b938-00c02274c4d0.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/cb813c23-933e-4fe5-b938-00c02274c4d0.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/cb813c23-933e-4fe5-b938-00c02274c4d0.json", "has_structured_json": true, "image_width": 576, "image_height": 864, "image_pixels": 497664, "num_layout_elements": 8, "num_tables": 0} +{"id": "cb9dfe9b-2713-42ef-9e60-55c632b52e68", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/cb9dfe9b-2713-42ef-9e60-55c632b52e68.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/cb9dfe9b-2713-42ef-9e60-55c632b52e68.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/cb9dfe9b-2713-42ef-9e60-55c632b52e68.json", "has_structured_json": true, "image_width": 1500, "image_height": 2668, "image_pixels": 4002000, "num_layout_elements": 11, "num_tables": 0} +{"id": "cc6a6791-1892-44bb-976b-b6e49f4c3af5", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/cc6a6791-1892-44bb-976b-b6e49f4c3af5.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/cc6a6791-1892-44bb-976b-b6e49f4c3af5.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/cc6a6791-1892-44bb-976b-b6e49f4c3af5.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 12, "num_tables": 1} +{"id": "cd280be7-40ef-5704-a85a-0f7362baff11", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/cd280be7-40ef-5704-a85a-0f7362baff11.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/cd280be7-40ef-5704-a85a-0f7362baff11.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/cd280be7-40ef-5704-a85a-0f7362baff11.json", "has_structured_json": true, "image_width": 1448, "image_height": 2048, "image_pixels": 2965504, "num_layout_elements": 15, "num_tables": 5} +{"id": "d05e29f3-29f7-40bb-bd5f-662115e647f1", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/d05e29f3-29f7-40bb-bd5f-662115e647f1.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/d05e29f3-29f7-40bb-bd5f-662115e647f1.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/d05e29f3-29f7-40bb-bd5f-662115e647f1.json", "has_structured_json": true, "image_width": 702, "image_height": 2778, "image_pixels": 1950156, "num_layout_elements": 43, "num_tables": 0} +{"id": "d08bddc4-ad93-4da2-988e-b9da222c75e5", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/d08bddc4-ad93-4da2-988e-b9da222c75e5.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/d08bddc4-ad93-4da2-988e-b9da222c75e5.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/d08bddc4-ad93-4da2-988e-b9da222c75e5.json", "has_structured_json": true, "image_width": 1250, "image_height": 2224, "image_pixels": 2780000, "num_layout_elements": 3, "num_tables": 0} +{"id": "d0f566c1-cd38-4cec-bd05-0775440629e9", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/d0f566c1-cd38-4cec-bd05-0775440629e9.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/d0f566c1-cd38-4cec-bd05-0775440629e9.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/d0f566c1-cd38-4cec-bd05-0775440629e9.json", "has_structured_json": true, "image_width": 750, "image_height": 7240, "image_pixels": 5430000, "num_layout_elements": 84, "num_tables": 1} +{"id": "d1edcfa6-877a-471a-a77e-6f3b1b9de8c8", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/d1edcfa6-877a-471a-a77e-6f3b1b9de8c8.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/d1edcfa6-877a-471a-a77e-6f3b1b9de8c8.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/d1edcfa6-877a-471a-a77e-6f3b1b9de8c8.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 18, "num_tables": 0} +{"id": "d66346ba-7db4-4659-b102-d503596fe778", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/d66346ba-7db4-4659-b102-d503596fe778.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/d66346ba-7db4-4659-b102-d503596fe778.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/d66346ba-7db4-4659-b102-d503596fe778.json", "has_structured_json": true, "image_width": 1190, "image_height": 1684, "image_pixels": 2003960, "num_layout_elements": 31, "num_tables": 1} +{"id": "d74c79bb-8692-4505-a361-9615e7091566", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/d74c79bb-8692-4505-a361-9615e7091566.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/d74c79bb-8692-4505-a361-9615e7091566.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/d74c79bb-8692-4505-a361-9615e7091566.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 12, "num_tables": 1} +{"id": "da77ee12-d6be-4841-8ca8-8d1e79ffc4d2", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/da77ee12-d6be-4841-8ca8-8d1e79ffc4d2.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/da77ee12-d6be-4841-8ca8-8d1e79ffc4d2.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/da77ee12-d6be-4841-8ca8-8d1e79ffc4d2.json", "has_structured_json": true, "image_width": 750, "image_height": 8493, "image_pixels": 6369750, "num_layout_elements": 47, "num_tables": 3} +{"id": "dd9a84ec-370a-4f2a-81dc-b9a6e33b3b47", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/dd9a84ec-370a-4f2a-81dc-b9a6e33b3b47.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/dd9a84ec-370a-4f2a-81dc-b9a6e33b3b47.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/dd9a84ec-370a-4f2a-81dc-b9a6e33b3b47.json", "has_structured_json": true, "image_width": 750, "image_height": 5540, "image_pixels": 4155000, "num_layout_elements": 67, "num_tables": 1} +{"id": "ddd71e72-28bc-49d8-bff2-b0b00b7b204d", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/ddd71e72-28bc-49d8-bff2-b0b00b7b204d.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/ddd71e72-28bc-49d8-bff2-b0b00b7b204d.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/ddd71e72-28bc-49d8-bff2-b0b00b7b204d.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 50, "num_tables": 0} +{"id": "e0f8d85a-f7ca-428c-8f54-50ff22a6f698", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/e0f8d85a-f7ca-428c-8f54-50ff22a6f698.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/e0f8d85a-f7ca-428c-8f54-50ff22a6f698.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/e0f8d85a-f7ca-428c-8f54-50ff22a6f698.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 4, "num_tables": 1} +{"id": "e1c9d429-6525-4bfe-9b7a-0840a9b46629", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/e1c9d429-6525-4bfe-9b7a-0840a9b46629.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/e1c9d429-6525-4bfe-9b7a-0840a9b46629.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/e1c9d429-6525-4bfe-9b7a-0840a9b46629.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 8, "num_tables": 0} +{"id": "e1cadfdd-46df-412b-bff0-510486e7842b", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/e1cadfdd-46df-412b-bff0-510486e7842b.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/e1cadfdd-46df-412b-bff0-510486e7842b.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/e1cadfdd-46df-412b-bff0-510486e7842b.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 55, "num_tables": 0} +{"id": "e2cd85f0-c306-46c1-b3bc-252e0b4891fc", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/e2cd85f0-c306-46c1-b3bc-252e0b4891fc.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/e2cd85f0-c306-46c1-b3bc-252e0b4891fc.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/e2cd85f0-c306-46c1-b3bc-252e0b4891fc.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 16, "num_tables": 0} +{"id": "e3e50b03-e3e8-41e9-bc8c-992ff52bfb44", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/e3e50b03-e3e8-41e9-bc8c-992ff52bfb44.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/e3e50b03-e3e8-41e9-bc8c-992ff52bfb44.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/e3e50b03-e3e8-41e9-bc8c-992ff52bfb44.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 29, "num_tables": 1} +{"id": "e480f21e-1a03-47ee-abc5-b08e8ead28a6", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/e480f21e-1a03-47ee-abc5-b08e8ead28a6.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/e480f21e-1a03-47ee-abc5-b08e8ead28a6.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/e480f21e-1a03-47ee-abc5-b08e8ead28a6.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 12, "num_tables": 1} +{"id": "e4c389a4-f1ad-4c8c-85de-f88ec6f7522c", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/e4c389a4-f1ad-4c8c-85de-f88ec6f7522c.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/e4c389a4-f1ad-4c8c-85de-f88ec6f7522c.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/e4c389a4-f1ad-4c8c-85de-f88ec6f7522c.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 68, "num_tables": 0} +{"id": "e54e0197-c8fc-4886-ad43-98acd06ade3b", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/e54e0197-c8fc-4886-ad43-98acd06ade3b.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/e54e0197-c8fc-4886-ad43-98acd06ade3b.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/e54e0197-c8fc-4886-ad43-98acd06ade3b.json", "has_structured_json": true, "image_width": 702, "image_height": 2351, "image_pixels": 1650402, "num_layout_elements": 39, "num_tables": 1} +{"id": "e5cc5a27-7e11-4953-bef8-31eaec82ee9b", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/e5cc5a27-7e11-4953-bef8-31eaec82ee9b.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/e5cc5a27-7e11-4953-bef8-31eaec82ee9b.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/e5cc5a27-7e11-4953-bef8-31eaec82ee9b.json", "has_structured_json": true, "image_width": 750, "image_height": 6271, "image_pixels": 4703250, "num_layout_elements": 80, "num_tables": 1} +{"id": "e82c9047-d8f0-4c6e-83df-f07591978134", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/e82c9047-d8f0-4c6e-83df-f07591978134.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/e82c9047-d8f0-4c6e-83df-f07591978134.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/e82c9047-d8f0-4c6e-83df-f07591978134.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 23, "num_tables": 2} +{"id": "e8c616bf-600d-48e9-94b9-7ff8a11a6640", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/e8c616bf-600d-48e9-94b9-7ff8a11a6640.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/e8c616bf-600d-48e9-94b9-7ff8a11a6640.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/e8c616bf-600d-48e9-94b9-7ff8a11a6640.json", "has_structured_json": true, "image_width": 750, "image_height": 4385, "image_pixels": 3288750, "num_layout_elements": 68, "num_tables": 1} +{"id": "ea26cc0a-3f85-4497-9b60-ada940775412", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/ea26cc0a-3f85-4497-9b60-ada940775412.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/ea26cc0a-3f85-4497-9b60-ada940775412.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/ea26cc0a-3f85-4497-9b60-ada940775412.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 31, "num_tables": 0} +{"id": "ecfed2b1-dcf3-45c8-9e6c-90b953b22353", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/ecfed2b1-dcf3-45c8-9e6c-90b953b22353.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/ecfed2b1-dcf3-45c8-9e6c-90b953b22353.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/ecfed2b1-dcf3-45c8-9e6c-90b953b22353.json", "has_structured_json": true, "image_width": 1500, "image_height": 17216, "image_pixels": 25824000, "num_layout_elements": 47, "num_tables": 3} +{"id": "ee2aa443-f207-4dea-8068-af4222b8e2f7", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/ee2aa443-f207-4dea-8068-af4222b8e2f7.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/ee2aa443-f207-4dea-8068-af4222b8e2f7.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/ee2aa443-f207-4dea-8068-af4222b8e2f7.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 13, "num_tables": 1} +{"id": "ee7eb866-f1c6-4894-aa75-ecaacc83ed74", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/ee7eb866-f1c6-4894-aa75-ecaacc83ed74.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/ee7eb866-f1c6-4894-aa75-ecaacc83ed74.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/ee7eb866-f1c6-4894-aa75-ecaacc83ed74.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 75, "num_tables": 0} +{"id": "eed51f90-635f-4a67-869c-add70cd1422e", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/eed51f90-635f-4a67-869c-add70cd1422e.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/eed51f90-635f-4a67-869c-add70cd1422e.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/eed51f90-635f-4a67-869c-add70cd1422e.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 19, "num_tables": 0} +{"id": "ef2bc181-8b10-460f-98d1-49798269f54a", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/ef2bc181-8b10-460f-98d1-49798269f54a.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/ef2bc181-8b10-460f-98d1-49798269f54a.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/ef2bc181-8b10-460f-98d1-49798269f54a.json", "has_structured_json": true, "image_width": 1191, "image_height": 1685, "image_pixels": 2006835, "num_layout_elements": 24, "num_tables": 2} +{"id": "f041a262-3fa3-53ec-b1d2-57ee73d96882", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/f041a262-3fa3-53ec-b1d2-57ee73d96882.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/f041a262-3fa3-53ec-b1d2-57ee73d96882.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/f041a262-3fa3-53ec-b1d2-57ee73d96882.json", "has_structured_json": true, "image_width": 1448, "image_height": 2048, "image_pixels": 2965504, "num_layout_elements": 17, "num_tables": 5} +{"id": "f0bc1a58-b623-41cb-b2fc-49554f6cc5b8", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/f0bc1a58-b623-41cb-b2fc-49554f6cc5b8.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/f0bc1a58-b623-41cb-b2fc-49554f6cc5b8.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/f0bc1a58-b623-41cb-b2fc-49554f6cc5b8.json", "has_structured_json": true, "image_width": 702, "image_height": 5893, "image_pixels": 4136886, "num_layout_elements": 72, "num_tables": 1} +{"id": "f0fffdfa-6dbe-4687-99d2-4f9fb8cfd5e8", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/f0fffdfa-6dbe-4687-99d2-4f9fb8cfd5e8.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/f0fffdfa-6dbe-4687-99d2-4f9fb8cfd5e8.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/f0fffdfa-6dbe-4687-99d2-4f9fb8cfd5e8.json", "has_structured_json": true, "image_width": 1190, "image_height": 1684, "image_pixels": 2003960, "num_layout_elements": 22, "num_tables": 1} +{"id": "f132c43a-32fe-4050-9ec6-2a7a1ed6b6bc", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/f132c43a-32fe-4050-9ec6-2a7a1ed6b6bc.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/f132c43a-32fe-4050-9ec6-2a7a1ed6b6bc.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/f132c43a-32fe-4050-9ec6-2a7a1ed6b6bc.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 21, "num_tables": 1} +{"id": "f5af45ad-04ef-43f0-a048-0fca8cdc4ed2", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/f5af45ad-04ef-43f0-a048-0fca8cdc4ed2.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/f5af45ad-04ef-43f0-a048-0fca8cdc4ed2.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/f5af45ad-04ef-43f0-a048-0fca8cdc4ed2.json", "has_structured_json": true, "image_width": 1191, "image_height": 1734, "image_pixels": 2065194, "num_layout_elements": 25, "num_tables": 0} +{"id": "f7b499e8-874d-4bdc-8e2b-ad2d145051d4", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/f7b499e8-874d-4bdc-8e2b-ad2d145051d4.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/f7b499e8-874d-4bdc-8e2b-ad2d145051d4.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/f7b499e8-874d-4bdc-8e2b-ad2d145051d4.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 22, "num_tables": 0} +{"id": "f7d953c3-73a1-42b4-b163-b2d77a218722", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/f7d953c3-73a1-42b4-b163-b2d77a218722.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/f7d953c3-73a1-42b4-b163-b2d77a218722.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/f7d953c3-73a1-42b4-b163-b2d77a218722.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 18, "num_tables": 0} +{"id": "f7ff9036-22ff-4b82-9ca3-9089fc96dab7", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/f7ff9036-22ff-4b82-9ca3-9089fc96dab7.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/f7ff9036-22ff-4b82-9ca3-9089fc96dab7.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/f7ff9036-22ff-4b82-9ca3-9089fc96dab7.json", "has_structured_json": true, "image_width": 750, "image_height": 3826, "image_pixels": 2869500, "num_layout_elements": 56, "num_tables": 1} +{"id": "fb551b27-b8d7-4654-85ba-1f89e830c61a", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/fb551b27-b8d7-4654-85ba-1f89e830c61a.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/fb551b27-b8d7-4654-85ba-1f89e830c61a.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/fb551b27-b8d7-4654-85ba-1f89e830c61a.json", "has_structured_json": true, "image_width": 1500, "image_height": 4684, "image_pixels": 7026000, "num_layout_elements": 10, "num_tables": 1} +{"id": "fb5b53b0-f466-47d1-8f03-9d40dbd6223d", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/fb5b53b0-f466-47d1-8f03-9d40dbd6223d.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/fb5b53b0-f466-47d1-8f03-9d40dbd6223d.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/fb5b53b0-f466-47d1-8f03-9d40dbd6223d.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 13, "num_tables": 0} +{"id": "fbeefe69-4553-461f-97ca-26b928d01da7", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/fbeefe69-4553-461f-97ca-26b928d01da7.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/fbeefe69-4553-461f-97ca-26b928d01da7.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/fbeefe69-4553-461f-97ca-26b928d01da7.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 25, "num_tables": 1} +{"id": "fbf2f5d2-f89b-4ccd-bec6-3beb145f7510", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/fbf2f5d2-f89b-4ccd-bec6-3beb145f7510.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/fbf2f5d2-f89b-4ccd-bec6-3beb145f7510.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/fbf2f5d2-f89b-4ccd-bec6-3beb145f7510.json", "has_structured_json": true, "image_width": 1684, "image_height": 1191, "image_pixels": 2005644, "num_layout_elements": 15, "num_tables": 1} +{"id": "fd0521de-438a-4c04-848d-760c227b48ed", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/fd0521de-438a-4c04-848d-760c227b48ed.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/fd0521de-438a-4c04-848d-760c227b48ed.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/fd0521de-438a-4c04-848d-760c227b48ed.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 23, "num_tables": 2} +{"id": "fe067cf2-733c-4d23-84b7-3e022936ff3b", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/fe067cf2-733c-4d23-84b7-3e022936ff3b.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/fe067cf2-733c-4d23-84b7-3e022936ff3b.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/fe067cf2-733c-4d23-84b7-3e022936ff3b.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 14, "num_tables": 0} +{"id": "fe58a07b-b43e-405b-93ec-fdf67129f1e3", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/fe58a07b-b43e-405b-93ec-fdf67129f1e3.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/fe58a07b-b43e-405b-93ec-fdf67129f1e3.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/fe58a07b-b43e-405b-93ec-fdf67129f1e3.json", "has_structured_json": true, "image_width": 750, "image_height": 4911, "image_pixels": 3683250, "num_layout_elements": 49, "num_tables": 2} +{"id": "ff181c5f-0e73-41d8-a0b2-b22c065f660f", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/ff181c5f-0e73-41d8-a0b2-b22c065f660f.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/ff181c5f-0e73-41d8-a0b2-b22c065f660f.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/ff181c5f-0e73-41d8-a0b2-b22c065f660f.json", "has_structured_json": true, "image_width": 1191, "image_height": 1684, "image_pixels": 2005644, "num_layout_elements": 19, "num_tables": 1} +{"id": "ff36a0ef-78c2-46a4-b106-147d03a25cb3", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/ff36a0ef-78c2-46a4-b106-147d03a25cb3.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/ff36a0ef-78c2-46a4-b106-147d03a25cb3.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/ff36a0ef-78c2-46a4-b106-147d03a25cb3.json", "has_structured_json": true, "image_width": 993, "image_height": 1404, "image_pixels": 1394172, "num_layout_elements": 13, "num_tables": 0} +{"id": "ffc43d4c-ada7-421d-88c3-6b56439a9f1a", "track_id": "track1", "track": "FinixDigital", "subset": "insurance_terms", "subset_dir": "track1_finixdigital_242_insurance_terms", "source_type": "digitally_native", "document_type": "insurance_terms", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track1_finixdigital_242_insurance_terms/images/ffc43d4c-ada7-421d-88c3-6b56439a9f1a.png", "markdown_path": "track1_finixdigital_242_insurance_terms/mds/ffc43d4c-ada7-421d-88c3-6b56439a9f1a.md", "json_path": "track1_finixdigital_242_insurance_terms/jsons/ffc43d4c-ada7-421d-88c3-6b56439a9f1a.json", "has_structured_json": true, "image_width": 1190, "image_height": 1684, "image_pixels": 2003960, "num_layout_elements": 31, "num_tables": 1} +{"id": "00c07dff-e570-5c66-9caa-37b6254d859c", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/00c07dff-e570-5c66-9caa-37b6254d859c.png", "markdown_path": "track2_finixphoto_300/mds/00c07dff-e570-5c66-9caa-37b6254d859c.md", "json_path": "track2_finixphoto_300/jsons/00c07dff-e570-5c66-9caa-37b6254d859c.json", "has_structured_json": true, "image_width": 673, "image_height": 469, "image_pixels": 315637, "num_layout_elements": 25, "num_tables": 2} +{"id": "00cedd70-e693-42ac-855f-d8f9b0ccf8f3", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/00cedd70-e693-42ac-855f-d8f9b0ccf8f3.png", "markdown_path": "track2_finixphoto_300/mds/00cedd70-e693-42ac-855f-d8f9b0ccf8f3.md", "json_path": "track2_finixphoto_300/jsons/00cedd70-e693-42ac-855f-d8f9b0ccf8f3.json", "has_structured_json": true, "image_width": 720, "image_height": 445, "image_pixels": 320400, "num_layout_elements": 26, "num_tables": 0} +{"id": "00e93638-9af3-4bca-b249-c414440b54dd", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/00e93638-9af3-4bca-b249-c414440b54dd.png", "markdown_path": "track2_finixphoto_300/mds/00e93638-9af3-4bca-b249-c414440b54dd.md", "json_path": "track2_finixphoto_300/jsons/00e93638-9af3-4bca-b249-c414440b54dd.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 30, "num_tables": 1} +{"id": "0170086d-957e-4ec2-b505-92cece37d302", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/0170086d-957e-4ec2-b505-92cece37d302.png", "markdown_path": "track2_finixphoto_300/mds/0170086d-957e-4ec2-b505-92cece37d302.md", "json_path": "track2_finixphoto_300/jsons/0170086d-957e-4ec2-b505-92cece37d302.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 29, "num_tables": 1} +{"id": "03663692-3bea-515f-8077-3d3928db1f02", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/03663692-3bea-515f-8077-3d3928db1f02.png", "markdown_path": "track2_finixphoto_300/mds/03663692-3bea-515f-8077-3d3928db1f02.md", "json_path": "track2_finixphoto_300/jsons/03663692-3bea-515f-8077-3d3928db1f02.json", "has_structured_json": true, "image_width": 2800, "image_height": 1294, "image_pixels": 3623200, "num_layout_elements": 32, "num_tables": 1} +{"id": "0428c7d7-8d44-403a-8f16-c244fd488f86", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/0428c7d7-8d44-403a-8f16-c244fd488f86.png", "markdown_path": "track2_finixphoto_300/mds/0428c7d7-8d44-403a-8f16-c244fd488f86.md", "json_path": "track2_finixphoto_300/jsons/0428c7d7-8d44-403a-8f16-c244fd488f86.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 16, "num_tables": 1} +{"id": "0704a982-8416-4d2f-a2b1-f10506301d50", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/0704a982-8416-4d2f-a2b1-f10506301d50.png", "markdown_path": "track2_finixphoto_300/mds/0704a982-8416-4d2f-a2b1-f10506301d50.md", "json_path": "track2_finixphoto_300/jsons/0704a982-8416-4d2f-a2b1-f10506301d50.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 13, "num_tables": 0} +{"id": "07c5681f-76df-445e-b03a-b98465ab2d21", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/07c5681f-76df-445e-b03a-b98465ab2d21.png", "markdown_path": "track2_finixphoto_300/mds/07c5681f-76df-445e-b03a-b98465ab2d21.md", "json_path": "track2_finixphoto_300/jsons/07c5681f-76df-445e-b03a-b98465ab2d21.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 31, "num_tables": 1} +{"id": "0809dc84-f135-411e-9459-8d69bda2c15e", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/0809dc84-f135-411e-9459-8d69bda2c15e.png", "markdown_path": "track2_finixphoto_300/mds/0809dc84-f135-411e-9459-8d69bda2c15e.md", "json_path": "track2_finixphoto_300/jsons/0809dc84-f135-411e-9459-8d69bda2c15e.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 22, "num_tables": 0} +{"id": "08605a96-3a7d-4fad-9f0a-bfb3e5105d39", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/08605a96-3a7d-4fad-9f0a-bfb3e5105d39.png", "markdown_path": "track2_finixphoto_300/mds/08605a96-3a7d-4fad-9f0a-bfb3e5105d39.md", "json_path": "track2_finixphoto_300/jsons/08605a96-3a7d-4fad-9f0a-bfb3e5105d39.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 18, "num_tables": 0} +{"id": "09c2592b-a278-4bf9-99ba-4c7fbc91bb5d", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/09c2592b-a278-4bf9-99ba-4c7fbc91bb5d.png", "markdown_path": "track2_finixphoto_300/mds/09c2592b-a278-4bf9-99ba-4c7fbc91bb5d.md", "json_path": "track2_finixphoto_300/jsons/09c2592b-a278-4bf9-99ba-4c7fbc91bb5d.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 40, "num_tables": 1} +{"id": "0b270427-6cba-48f7-93cc-aab09ab25784", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/0b270427-6cba-48f7-93cc-aab09ab25784.png", "markdown_path": "track2_finixphoto_300/mds/0b270427-6cba-48f7-93cc-aab09ab25784.md", "json_path": "track2_finixphoto_300/jsons/0b270427-6cba-48f7-93cc-aab09ab25784.json", "has_structured_json": true, "image_width": 641, "image_height": 377, "image_pixels": 241657, "num_layout_elements": 30, "num_tables": 1} +{"id": "0b6a9275-725c-4f4b-873c-a20af0ed0ec8", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/0b6a9275-725c-4f4b-873c-a20af0ed0ec8.png", "markdown_path": "track2_finixphoto_300/mds/0b6a9275-725c-4f4b-873c-a20af0ed0ec8.md", "json_path": "track2_finixphoto_300/jsons/0b6a9275-725c-4f4b-873c-a20af0ed0ec8.json", "has_structured_json": true, "image_width": 1202, "image_height": 646, "image_pixels": 776492, "num_layout_elements": 25, "num_tables": 1} +{"id": "0c84a961-ddfe-4c95-84c6-2cee1f9d7bff", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/0c84a961-ddfe-4c95-84c6-2cee1f9d7bff.png", "markdown_path": "track2_finixphoto_300/mds/0c84a961-ddfe-4c95-84c6-2cee1f9d7bff.md", "json_path": "track2_finixphoto_300/jsons/0c84a961-ddfe-4c95-84c6-2cee1f9d7bff.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 22, "num_tables": 0} +{"id": "0d3c3350-3db0-5dc3-8c69-03a8c4a10185", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/0d3c3350-3db0-5dc3-8c69-03a8c4a10185.png", "markdown_path": "track2_finixphoto_300/mds/0d3c3350-3db0-5dc3-8c69-03a8c4a10185.md", "json_path": "track2_finixphoto_300/jsons/0d3c3350-3db0-5dc3-8c69-03a8c4a10185.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 17, "num_tables": 2} +{"id": "0f1638f7-bfc1-4d10-847a-c335659af13a", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/0f1638f7-bfc1-4d10-847a-c335659af13a.png", "markdown_path": "track2_finixphoto_300/mds/0f1638f7-bfc1-4d10-847a-c335659af13a.md", "json_path": "track2_finixphoto_300/jsons/0f1638f7-bfc1-4d10-847a-c335659af13a.json", "has_structured_json": true, "image_width": 4816, "image_height": 2504, "image_pixels": 12059264, "num_layout_elements": 30, "num_tables": 1} +{"id": "0ff98c5a-5d36-4bb7-bfa8-aa408d548f21", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/0ff98c5a-5d36-4bb7-bfa8-aa408d548f21.png", "markdown_path": "track2_finixphoto_300/mds/0ff98c5a-5d36-4bb7-bfa8-aa408d548f21.md", "json_path": "track2_finixphoto_300/jsons/0ff98c5a-5d36-4bb7-bfa8-aa408d548f21.json", "has_structured_json": true, "image_width": 3264, "image_height": 2448, "image_pixels": 7990272, "num_layout_elements": 17, "num_tables": 1} +{"id": "1290989e-ba23-46e9-adab-802a00fb3472", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/1290989e-ba23-46e9-adab-802a00fb3472.png", "markdown_path": "track2_finixphoto_300/mds/1290989e-ba23-46e9-adab-802a00fb3472.md", "json_path": "track2_finixphoto_300/jsons/1290989e-ba23-46e9-adab-802a00fb3472.json", "has_structured_json": true, "image_width": 800, "image_height": 600, "image_pixels": 480000, "num_layout_elements": 40, "num_tables": 1} +{"id": "12adc3bc-a164-4791-94ce-7ecc9845d407", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/12adc3bc-a164-4791-94ce-7ecc9845d407.png", "markdown_path": "track2_finixphoto_300/mds/12adc3bc-a164-4791-94ce-7ecc9845d407.md", "json_path": "track2_finixphoto_300/jsons/12adc3bc-a164-4791-94ce-7ecc9845d407.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 21, "num_tables": 0} +{"id": "12e1b36e-6f63-52e0-9d2c-fb5660dca9a4", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/12e1b36e-6f63-52e0-9d2c-fb5660dca9a4.png", "markdown_path": "track2_finixphoto_300/mds/12e1b36e-6f63-52e0-9d2c-fb5660dca9a4.md", "json_path": "track2_finixphoto_300/jsons/12e1b36e-6f63-52e0-9d2c-fb5660dca9a4.json", "has_structured_json": true, "image_width": 853, "image_height": 489, "image_pixels": 417117, "num_layout_elements": 23, "num_tables": 1} +{"id": "130a7f45-b7f6-4304-b276-5ebe82f3a1de", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/130a7f45-b7f6-4304-b276-5ebe82f3a1de.png", "markdown_path": "track2_finixphoto_300/mds/130a7f45-b7f6-4304-b276-5ebe82f3a1de.md", "json_path": "track2_finixphoto_300/jsons/130a7f45-b7f6-4304-b276-5ebe82f3a1de.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 46, "num_tables": 1} +{"id": "13eedc25-e64d-4110-9bd5-e39a8a7508c7", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/13eedc25-e64d-4110-9bd5-e39a8a7508c7.png", "markdown_path": "track2_finixphoto_300/mds/13eedc25-e64d-4110-9bd5-e39a8a7508c7.md", "json_path": "track2_finixphoto_300/jsons/13eedc25-e64d-4110-9bd5-e39a8a7508c7.json", "has_structured_json": true, "image_width": 2100, "image_height": 1575, "image_pixels": 3307500, "num_layout_elements": 36, "num_tables": 1} +{"id": "15fbe32f-5851-45ee-9247-9932d9cda3e2", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/15fbe32f-5851-45ee-9247-9932d9cda3e2.png", "markdown_path": "track2_finixphoto_300/mds/15fbe32f-5851-45ee-9247-9932d9cda3e2.md", "json_path": "track2_finixphoto_300/jsons/15fbe32f-5851-45ee-9247-9932d9cda3e2.json", "has_structured_json": true, "image_width": 2100, "image_height": 971, "image_pixels": 2039100, "num_layout_elements": 31, "num_tables": 1} +{"id": "16cd5c50-5086-5fbe-a1a6-7e7be304140a", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/16cd5c50-5086-5fbe-a1a6-7e7be304140a.png", "markdown_path": "track2_finixphoto_300/mds/16cd5c50-5086-5fbe-a1a6-7e7be304140a.md", "json_path": "track2_finixphoto_300/jsons/16cd5c50-5086-5fbe-a1a6-7e7be304140a.json", "has_structured_json": true, "image_width": 671, "image_height": 422, "image_pixels": 283162, "num_layout_elements": 10, "num_tables": 2} +{"id": "1721a339-a34a-4f54-bc61-3c4ec1dcf09d", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/1721a339-a34a-4f54-bc61-3c4ec1dcf09d.png", "markdown_path": "track2_finixphoto_300/mds/1721a339-a34a-4f54-bc61-3c4ec1dcf09d.md", "json_path": "track2_finixphoto_300/jsons/1721a339-a34a-4f54-bc61-3c4ec1dcf09d.json", "has_structured_json": true, "image_width": 550, "image_height": 733, "image_pixels": 403150, "num_layout_elements": 18, "num_tables": 0} +{"id": "17431f4c-4db9-4ced-bee1-e8c24d8df3e1", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/17431f4c-4db9-4ced-bee1-e8c24d8df3e1.png", "markdown_path": "track2_finixphoto_300/mds/17431f4c-4db9-4ced-bee1-e8c24d8df3e1.md", "json_path": "track2_finixphoto_300/jsons/17431f4c-4db9-4ced-bee1-e8c24d8df3e1.json", "has_structured_json": true, "image_width": 2002, "image_height": 1368, "image_pixels": 2738736, "num_layout_elements": 30, "num_tables": 1} +{"id": "1833ad18-dc1d-486b-8c59-7e9b89eb56f1", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/1833ad18-dc1d-486b-8c59-7e9b89eb56f1.png", "markdown_path": "track2_finixphoto_300/mds/1833ad18-dc1d-486b-8c59-7e9b89eb56f1.md", "json_path": "track2_finixphoto_300/jsons/1833ad18-dc1d-486b-8c59-7e9b89eb56f1.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 18, "num_tables": 0} +{"id": "1867a67a-1a69-4733-9bea-ef44658073e4", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/1867a67a-1a69-4733-9bea-ef44658073e4.png", "markdown_path": "track2_finixphoto_300/mds/1867a67a-1a69-4733-9bea-ef44658073e4.md", "json_path": "track2_finixphoto_300/jsons/1867a67a-1a69-4733-9bea-ef44658073e4.json", "has_structured_json": true, "image_width": 1192, "image_height": 880, "image_pixels": 1048960, "num_layout_elements": 25, "num_tables": 0} +{"id": "19b3a90a-8cb6-40c6-b30e-40860f27c8b8", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/19b3a90a-8cb6-40c6-b30e-40860f27c8b8.png", "markdown_path": "track2_finixphoto_300/mds/19b3a90a-8cb6-40c6-b30e-40860f27c8b8.md", "json_path": "track2_finixphoto_300/jsons/19b3a90a-8cb6-40c6-b30e-40860f27c8b8.json", "has_structured_json": true, "image_width": 1807, "image_height": 1199, "image_pixels": 2166593, "num_layout_elements": 33, "num_tables": 1} +{"id": "19bccfb7-9af9-48f7-b0c6-a559afcf80d8", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/19bccfb7-9af9-48f7-b0c6-a559afcf80d8.png", "markdown_path": "track2_finixphoto_300/mds/19bccfb7-9af9-48f7-b0c6-a559afcf80d8.md", "json_path": "track2_finixphoto_300/jsons/19bccfb7-9af9-48f7-b0c6-a559afcf80d8.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 39, "num_tables": 1} +{"id": "1a8ba629-13ba-4b18-bcc7-4eeb2b0866f3", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/1a8ba629-13ba-4b18-bcc7-4eeb2b0866f3.png", "markdown_path": "track2_finixphoto_300/mds/1a8ba629-13ba-4b18-bcc7-4eeb2b0866f3.md", "json_path": "track2_finixphoto_300/jsons/1a8ba629-13ba-4b18-bcc7-4eeb2b0866f3.json", "has_structured_json": true, "image_width": 658, "image_height": 617, "image_pixels": 405986, "num_layout_elements": 26, "num_tables": 1} +{"id": "1a9f3b5a-8234-430a-a723-ea082ecb77ee", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/1a9f3b5a-8234-430a-a723-ea082ecb77ee.png", "markdown_path": "track2_finixphoto_300/mds/1a9f3b5a-8234-430a-a723-ea082ecb77ee.md", "json_path": "track2_finixphoto_300/jsons/1a9f3b5a-8234-430a-a723-ea082ecb77ee.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 28, "num_tables": 0} +{"id": "1b6fdf72-97d5-4435-a9f3-1152d426aad0", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/1b6fdf72-97d5-4435-a9f3-1152d426aad0.png", "markdown_path": "track2_finixphoto_300/mds/1b6fdf72-97d5-4435-a9f3-1152d426aad0.md", "json_path": "track2_finixphoto_300/jsons/1b6fdf72-97d5-4435-a9f3-1152d426aad0.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 28, "num_tables": 0} +{"id": "1f61fb07-32c0-4a57-a725-458ef0d0d3f9", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/1f61fb07-32c0-4a57-a725-458ef0d0d3f9.png", "markdown_path": "track2_finixphoto_300/mds/1f61fb07-32c0-4a57-a725-458ef0d0d3f9.md", "json_path": "track2_finixphoto_300/jsons/1f61fb07-32c0-4a57-a725-458ef0d0d3f9.json", "has_structured_json": true, "image_width": 944, "image_height": 508, "image_pixels": 479552, "num_layout_elements": 35, "num_tables": 1} +{"id": "208198de-2044-50ca-8f1b-d3a7b588b352", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/208198de-2044-50ca-8f1b-d3a7b588b352.png", "markdown_path": "track2_finixphoto_300/mds/208198de-2044-50ca-8f1b-d3a7b588b352.md", "json_path": "track2_finixphoto_300/jsons/208198de-2044-50ca-8f1b-d3a7b588b352.json", "has_structured_json": true, "image_width": 2048, "image_height": 1536, "image_pixels": 3145728, "num_layout_elements": 28, "num_tables": 1} +{"id": "2090cf59-a30e-47b0-81a9-489e8e6a6063", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/2090cf59-a30e-47b0-81a9-489e8e6a6063.png", "markdown_path": "track2_finixphoto_300/mds/2090cf59-a30e-47b0-81a9-489e8e6a6063.md", "json_path": "track2_finixphoto_300/jsons/2090cf59-a30e-47b0-81a9-489e8e6a6063.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 24, "num_tables": 0} +{"id": "20a85e8b-2f46-595f-b3e7-01d34f606fac", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/20a85e8b-2f46-595f-b3e7-01d34f606fac.png", "markdown_path": "track2_finixphoto_300/mds/20a85e8b-2f46-595f-b3e7-01d34f606fac.md", "json_path": "track2_finixphoto_300/jsons/20a85e8b-2f46-595f-b3e7-01d34f606fac.json", "has_structured_json": true, "image_width": 3112, "image_height": 1732, "image_pixels": 5389984, "num_layout_elements": 34, "num_tables": 1} +{"id": "213b444f-95ca-41a3-92df-2bd8a0374f83", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/213b444f-95ca-41a3-92df-2bd8a0374f83.png", "markdown_path": "track2_finixphoto_300/mds/213b444f-95ca-41a3-92df-2bd8a0374f83.md", "json_path": "track2_finixphoto_300/jsons/213b444f-95ca-41a3-92df-2bd8a0374f83.json", "has_structured_json": true, "image_width": 1440, "image_height": 1080, "image_pixels": 1555200, "num_layout_elements": 42, "num_tables": 1} +{"id": "23c733e1-ca08-41a9-a080-cb680f396da9", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/23c733e1-ca08-41a9-a080-cb680f396da9.png", "markdown_path": "track2_finixphoto_300/mds/23c733e1-ca08-41a9-a080-cb680f396da9.md", "json_path": "track2_finixphoto_300/jsons/23c733e1-ca08-41a9-a080-cb680f396da9.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 22, "num_tables": 0} +{"id": "24605939-36d9-49ba-89f5-111934063fb1", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/24605939-36d9-49ba-89f5-111934063fb1.png", "markdown_path": "track2_finixphoto_300/mds/24605939-36d9-49ba-89f5-111934063fb1.md", "json_path": "track2_finixphoto_300/jsons/24605939-36d9-49ba-89f5-111934063fb1.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 14, "num_tables": 1} +{"id": "27c01a18-e2eb-4735-852d-c367d44fdc82", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/27c01a18-e2eb-4735-852d-c367d44fdc82.png", "markdown_path": "track2_finixphoto_300/mds/27c01a18-e2eb-4735-852d-c367d44fdc82.md", "json_path": "track2_finixphoto_300/jsons/27c01a18-e2eb-4735-852d-c367d44fdc82.json", "has_structured_json": true, "image_width": 1600, "image_height": 1200, "image_pixels": 1920000, "num_layout_elements": 35, "num_tables": 1} +{"id": "27c5bef2-37c6-40e0-b6d6-36322e7b6996", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/27c5bef2-37c6-40e0-b6d6-36322e7b6996.png", "markdown_path": "track2_finixphoto_300/mds/27c5bef2-37c6-40e0-b6d6-36322e7b6996.md", "json_path": "track2_finixphoto_300/jsons/27c5bef2-37c6-40e0-b6d6-36322e7b6996.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 22, "num_tables": 0} +{"id": "2811b1d4-714c-4425-a0a1-743d2af21a9d", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/2811b1d4-714c-4425-a0a1-743d2af21a9d.png", "markdown_path": "track2_finixphoto_300/mds/2811b1d4-714c-4425-a0a1-743d2af21a9d.md", "json_path": "track2_finixphoto_300/jsons/2811b1d4-714c-4425-a0a1-743d2af21a9d.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 26, "num_tables": 0} +{"id": "286ff91a-8924-484e-ab0d-1e256416eba1", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/286ff91a-8924-484e-ab0d-1e256416eba1.png", "markdown_path": "track2_finixphoto_300/mds/286ff91a-8924-484e-ab0d-1e256416eba1.md", "json_path": "track2_finixphoto_300/jsons/286ff91a-8924-484e-ab0d-1e256416eba1.json", "has_structured_json": true, "image_width": 2100, "image_height": 971, "image_pixels": 2039100, "num_layout_elements": 26, "num_tables": 1} +{"id": "28ce22c2-a8fa-417c-922f-9e9a73e7cb60", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/28ce22c2-a8fa-417c-922f-9e9a73e7cb60.png", "markdown_path": "track2_finixphoto_300/mds/28ce22c2-a8fa-417c-922f-9e9a73e7cb60.md", "json_path": "track2_finixphoto_300/jsons/28ce22c2-a8fa-417c-922f-9e9a73e7cb60.json", "has_structured_json": true, "image_width": 720, "image_height": 377, "image_pixels": 271440, "num_layout_elements": 55, "num_tables": 1} +{"id": "28e3bb37-8e45-49a7-be3b-0cef23bee406", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/28e3bb37-8e45-49a7-be3b-0cef23bee406.png", "markdown_path": "track2_finixphoto_300/mds/28e3bb37-8e45-49a7-be3b-0cef23bee406.md", "json_path": "track2_finixphoto_300/jsons/28e3bb37-8e45-49a7-be3b-0cef23bee406.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 17, "num_tables": 0} +{"id": "28f500a7-d519-4568-bdfc-3e574b6582b7", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/28f500a7-d519-4568-bdfc-3e574b6582b7.png", "markdown_path": "track2_finixphoto_300/mds/28f500a7-d519-4568-bdfc-3e574b6582b7.md", "json_path": "track2_finixphoto_300/jsons/28f500a7-d519-4568-bdfc-3e574b6582b7.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 27, "num_tables": 0} +{"id": "2ad7c933-31c1-4551-8fba-339e6efeb32b", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/2ad7c933-31c1-4551-8fba-339e6efeb32b.png", "markdown_path": "track2_finixphoto_300/mds/2ad7c933-31c1-4551-8fba-339e6efeb32b.md", "json_path": "track2_finixphoto_300/jsons/2ad7c933-31c1-4551-8fba-339e6efeb32b.json", "has_structured_json": true, "image_width": 1280, "image_height": 1164, "image_pixels": 1489920, "num_layout_elements": 35, "num_tables": 1} +{"id": "2ae60483-cbf3-4a71-8f7a-a73fa82e7658", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/2ae60483-cbf3-4a71-8f7a-a73fa82e7658.png", "markdown_path": "track2_finixphoto_300/mds/2ae60483-cbf3-4a71-8f7a-a73fa82e7658.md", "json_path": "track2_finixphoto_300/jsons/2ae60483-cbf3-4a71-8f7a-a73fa82e7658.json", "has_structured_json": true, "image_width": 2160, "image_height": 2880, "image_pixels": 6220800, "num_layout_elements": 36, "num_tables": 1} +{"id": "2b037d0d-0b42-4071-94ab-57db39140791", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/2b037d0d-0b42-4071-94ab-57db39140791.png", "markdown_path": "track2_finixphoto_300/mds/2b037d0d-0b42-4071-94ab-57db39140791.md", "json_path": "track2_finixphoto_300/jsons/2b037d0d-0b42-4071-94ab-57db39140791.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 17, "num_tables": 0} +{"id": "2ccbcc3d-752c-4dc6-8341-14e647ca93ad", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/2ccbcc3d-752c-4dc6-8341-14e647ca93ad.png", "markdown_path": "track2_finixphoto_300/mds/2ccbcc3d-752c-4dc6-8341-14e647ca93ad.md", "json_path": "track2_finixphoto_300/jsons/2ccbcc3d-752c-4dc6-8341-14e647ca93ad.json", "has_structured_json": true, "image_width": 1376, "image_height": 774, "image_pixels": 1065024, "num_layout_elements": 35, "num_tables": 1} +{"id": "2d352497-84e4-433c-aa05-6ddb8b36cad7", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/2d352497-84e4-433c-aa05-6ddb8b36cad7.png", "markdown_path": "track2_finixphoto_300/mds/2d352497-84e4-433c-aa05-6ddb8b36cad7.md", "json_path": "track2_finixphoto_300/jsons/2d352497-84e4-433c-aa05-6ddb8b36cad7.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 43, "num_tables": 1} +{"id": "2dc70130-5059-4fd2-ab24-d1ff6ba3024b", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/2dc70130-5059-4fd2-ab24-d1ff6ba3024b.png", "markdown_path": "track2_finixphoto_300/mds/2dc70130-5059-4fd2-ab24-d1ff6ba3024b.md", "json_path": "track2_finixphoto_300/jsons/2dc70130-5059-4fd2-ab24-d1ff6ba3024b.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 29, "num_tables": 1} +{"id": "2e1c88a2-c472-4ab7-96a0-98b9c0c2b2b0", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/2e1c88a2-c472-4ab7-96a0-98b9c0c2b2b0.png", "markdown_path": "track2_finixphoto_300/mds/2e1c88a2-c472-4ab7-96a0-98b9c0c2b2b0.md", "json_path": "track2_finixphoto_300/jsons/2e1c88a2-c472-4ab7-96a0-98b9c0c2b2b0.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 26, "num_tables": 0} +{"id": "2e8b6417-fa15-4d87-9d0d-1564001a944c", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/2e8b6417-fa15-4d87-9d0d-1564001a944c.png", "markdown_path": "track2_finixphoto_300/mds/2e8b6417-fa15-4d87-9d0d-1564001a944c.md", "json_path": "track2_finixphoto_300/jsons/2e8b6417-fa15-4d87-9d0d-1564001a944c.json", "has_structured_json": true, "image_width": 557, "image_height": 662, "image_pixels": 368734, "num_layout_elements": 23, "num_tables": 0} +{"id": "2ed57187-e956-414b-ab6b-07f63e5dcb87", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/2ed57187-e956-414b-ab6b-07f63e5dcb87.png", "markdown_path": "track2_finixphoto_300/mds/2ed57187-e956-414b-ab6b-07f63e5dcb87.md", "json_path": "track2_finixphoto_300/jsons/2ed57187-e956-414b-ab6b-07f63e5dcb87.json", "has_structured_json": true, "image_width": 450, "image_height": 600, "image_pixels": 270000, "num_layout_elements": 21, "num_tables": 0} +{"id": "2f1b4ffc-b952-4fad-8b7d-667f912ada08", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/2f1b4ffc-b952-4fad-8b7d-667f912ada08.png", "markdown_path": "track2_finixphoto_300/mds/2f1b4ffc-b952-4fad-8b7d-667f912ada08.md", "json_path": "track2_finixphoto_300/jsons/2f1b4ffc-b952-4fad-8b7d-667f912ada08.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 15, "num_tables": 1} +{"id": "3295f5df-f1d8-4e08-9ca2-134045f33108", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/3295f5df-f1d8-4e08-9ca2-134045f33108.png", "markdown_path": "track2_finixphoto_300/mds/3295f5df-f1d8-4e08-9ca2-134045f33108.md", "json_path": "track2_finixphoto_300/jsons/3295f5df-f1d8-4e08-9ca2-134045f33108.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 37, "num_tables": 1} +{"id": "338f52fe-9487-46c5-a32f-2d43d1c9b652", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/338f52fe-9487-46c5-a32f-2d43d1c9b652.png", "markdown_path": "track2_finixphoto_300/mds/338f52fe-9487-46c5-a32f-2d43d1c9b652.md", "json_path": "track2_finixphoto_300/jsons/338f52fe-9487-46c5-a32f-2d43d1c9b652.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 29, "num_tables": 1} +{"id": "349f0f04-1999-482a-96fc-bb907065da93", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/349f0f04-1999-482a-96fc-bb907065da93.png", "markdown_path": "track2_finixphoto_300/mds/349f0f04-1999-482a-96fc-bb907065da93.md", "json_path": "track2_finixphoto_300/jsons/349f0f04-1999-482a-96fc-bb907065da93.json", "has_structured_json": true, "image_width": 2048, "image_height": 1379, "image_pixels": 2824192, "num_layout_elements": 35, "num_tables": 1} +{"id": "35db7bd8-0678-4c22-a3c6-77f919112d53", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/35db7bd8-0678-4c22-a3c6-77f919112d53.png", "markdown_path": "track2_finixphoto_300/mds/35db7bd8-0678-4c22-a3c6-77f919112d53.md", "json_path": "track2_finixphoto_300/jsons/35db7bd8-0678-4c22-a3c6-77f919112d53.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 29, "num_tables": 1} +{"id": "37865ac1-72ad-4605-b09c-b547b880e68e", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/37865ac1-72ad-4605-b09c-b547b880e68e.png", "markdown_path": "track2_finixphoto_300/mds/37865ac1-72ad-4605-b09c-b547b880e68e.md", "json_path": "track2_finixphoto_300/jsons/37865ac1-72ad-4605-b09c-b547b880e68e.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 20, "num_tables": 0} +{"id": "38d94fe7-f944-59de-88a5-fb608fa1a8f5", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/38d94fe7-f944-59de-88a5-fb608fa1a8f5.png", "markdown_path": "track2_finixphoto_300/mds/38d94fe7-f944-59de-88a5-fb608fa1a8f5.md", "json_path": "track2_finixphoto_300/jsons/38d94fe7-f944-59de-88a5-fb608fa1a8f5.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 36, "num_tables": 1} +{"id": "39558b02-a69c-43b1-895b-a6aa8d3c5bc6", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/39558b02-a69c-43b1-895b-a6aa8d3c5bc6.png", "markdown_path": "track2_finixphoto_300/mds/39558b02-a69c-43b1-895b-a6aa8d3c5bc6.md", "json_path": "track2_finixphoto_300/jsons/39558b02-a69c-43b1-895b-a6aa8d3c5bc6.json", "has_structured_json": true, "image_width": 960, "image_height": 541, "image_pixels": 519360, "num_layout_elements": 37, "num_tables": 1} +{"id": "3c1ab3c4-150d-4633-a5af-e26c683d7236", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/3c1ab3c4-150d-4633-a5af-e26c683d7236.png", "markdown_path": "track2_finixphoto_300/mds/3c1ab3c4-150d-4633-a5af-e26c683d7236.md", "json_path": "track2_finixphoto_300/jsons/3c1ab3c4-150d-4633-a5af-e26c683d7236.json", "has_structured_json": true, "image_width": 720, "image_height": 540, "image_pixels": 388800, "num_layout_elements": 33, "num_tables": 1} +{"id": "3ceb9390-b7fb-49a0-8f91-78709d67e360", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/3ceb9390-b7fb-49a0-8f91-78709d67e360.png", "markdown_path": "track2_finixphoto_300/mds/3ceb9390-b7fb-49a0-8f91-78709d67e360.md", "json_path": "track2_finixphoto_300/jsons/3ceb9390-b7fb-49a0-8f91-78709d67e360.json", "has_structured_json": true, "image_width": 550, "image_height": 607, "image_pixels": 333850, "num_layout_elements": 25, "num_tables": 0} +{"id": "3d6a2efe-b4cd-4fcf-8052-044f6aafab43", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/3d6a2efe-b4cd-4fcf-8052-044f6aafab43.png", "markdown_path": "track2_finixphoto_300/mds/3d6a2efe-b4cd-4fcf-8052-044f6aafab43.md", "json_path": "track2_finixphoto_300/jsons/3d6a2efe-b4cd-4fcf-8052-044f6aafab43.json", "has_structured_json": true, "image_width": 1260, "image_height": 606, "image_pixels": 763560, "num_layout_elements": 34, "num_tables": 1} +{"id": "3ebfaf36-2c73-4441-bcfe-55200dbbbd3f", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/3ebfaf36-2c73-4441-bcfe-55200dbbbd3f.png", "markdown_path": "track2_finixphoto_300/mds/3ebfaf36-2c73-4441-bcfe-55200dbbbd3f.md", "json_path": "track2_finixphoto_300/jsons/3ebfaf36-2c73-4441-bcfe-55200dbbbd3f.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 20, "num_tables": 0} +{"id": "3f5a4124-216c-4fd6-8f0d-571671e06d00", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/3f5a4124-216c-4fd6-8f0d-571671e06d00.png", "markdown_path": "track2_finixphoto_300/mds/3f5a4124-216c-4fd6-8f0d-571671e06d00.md", "json_path": "track2_finixphoto_300/jsons/3f5a4124-216c-4fd6-8f0d-571671e06d00.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 25, "num_tables": 0} +{"id": "41abae82-5de5-4618-939f-81f7f46f95da", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/41abae82-5de5-4618-939f-81f7f46f95da.png", "markdown_path": "track2_finixphoto_300/mds/41abae82-5de5-4618-939f-81f7f46f95da.md", "json_path": "track2_finixphoto_300/jsons/41abae82-5de5-4618-939f-81f7f46f95da.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 18, "num_tables": 0} +{"id": "41ea301b-0e90-5a0c-896e-b39296dd6a09", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/41ea301b-0e90-5a0c-896e-b39296dd6a09.png", "markdown_path": "track2_finixphoto_300/mds/41ea301b-0e90-5a0c-896e-b39296dd6a09.md", "json_path": "track2_finixphoto_300/jsons/41ea301b-0e90-5a0c-896e-b39296dd6a09.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 37, "num_tables": 1} +{"id": "43d72bb7-0423-4ac9-9efc-a29610cd65d4", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/43d72bb7-0423-4ac9-9efc-a29610cd65d4.png", "markdown_path": "track2_finixphoto_300/mds/43d72bb7-0423-4ac9-9efc-a29610cd65d4.md", "json_path": "track2_finixphoto_300/jsons/43d72bb7-0423-4ac9-9efc-a29610cd65d4.json", "has_structured_json": true, "image_width": 3000, "image_height": 1623, "image_pixels": 4869000, "num_layout_elements": 36, "num_tables": 1} +{"id": "45389bde-f728-46f3-b3ef-3df13925d8c2", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/45389bde-f728-46f3-b3ef-3df13925d8c2.png", "markdown_path": "track2_finixphoto_300/mds/45389bde-f728-46f3-b3ef-3df13925d8c2.md", "json_path": "track2_finixphoto_300/jsons/45389bde-f728-46f3-b3ef-3df13925d8c2.json", "has_structured_json": true, "image_width": 720, "image_height": 413, "image_pixels": 297360, "num_layout_elements": 30, "num_tables": 1} +{"id": "4585bf81-27e5-4d5a-8ac8-1b2aec0f8be5", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/4585bf81-27e5-4d5a-8ac8-1b2aec0f8be5.png", "markdown_path": "track2_finixphoto_300/mds/4585bf81-27e5-4d5a-8ac8-1b2aec0f8be5.md", "json_path": "track2_finixphoto_300/jsons/4585bf81-27e5-4d5a-8ac8-1b2aec0f8be5.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 28, "num_tables": 1} +{"id": "4743f828-8a63-4275-a2eb-851394e91ae2", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/4743f828-8a63-4275-a2eb-851394e91ae2.png", "markdown_path": "track2_finixphoto_300/mds/4743f828-8a63-4275-a2eb-851394e91ae2.md", "json_path": "track2_finixphoto_300/jsons/4743f828-8a63-4275-a2eb-851394e91ae2.json", "has_structured_json": true, "image_width": 959, "image_height": 533, "image_pixels": 511147, "num_layout_elements": 33, "num_tables": 1} +{"id": "4948cae9-9abf-49bb-be04-4f3bf2dc7e91", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/4948cae9-9abf-49bb-be04-4f3bf2dc7e91.png", "markdown_path": "track2_finixphoto_300/mds/4948cae9-9abf-49bb-be04-4f3bf2dc7e91.md", "json_path": "track2_finixphoto_300/jsons/4948cae9-9abf-49bb-be04-4f3bf2dc7e91.json", "has_structured_json": true, "image_width": 2032, "image_height": 1315, "image_pixels": 2672080, "num_layout_elements": 29, "num_tables": 1} +{"id": "4ab4c07e-9d4b-4138-9cd9-2a3406e2e42d", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/4ab4c07e-9d4b-4138-9cd9-2a3406e2e42d.png", "markdown_path": "track2_finixphoto_300/mds/4ab4c07e-9d4b-4138-9cd9-2a3406e2e42d.md", "json_path": "track2_finixphoto_300/jsons/4ab4c07e-9d4b-4138-9cd9-2a3406e2e42d.json", "has_structured_json": true, "image_width": 1964, "image_height": 2788, "image_pixels": 5475632, "num_layout_elements": 27, "num_tables": 0} +{"id": "4b85a475-aa47-4b00-a0ad-c209214ba3e0", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/4b85a475-aa47-4b00-a0ad-c209214ba3e0.png", "markdown_path": "track2_finixphoto_300/mds/4b85a475-aa47-4b00-a0ad-c209214ba3e0.md", "json_path": "track2_finixphoto_300/jsons/4b85a475-aa47-4b00-a0ad-c209214ba3e0.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 27, "num_tables": 0} +{"id": "4bed9bb8-25cb-4d4f-872f-54ff2d4c70ba", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/4bed9bb8-25cb-4d4f-872f-54ff2d4c70ba.png", "markdown_path": "track2_finixphoto_300/mds/4bed9bb8-25cb-4d4f-872f-54ff2d4c70ba.md", "json_path": "track2_finixphoto_300/jsons/4bed9bb8-25cb-4d4f-872f-54ff2d4c70ba.json", "has_structured_json": true, "image_width": 750, "image_height": 939, "image_pixels": 704250, "num_layout_elements": 28, "num_tables": 0} +{"id": "4d984fec-2494-547d-9f80-2aca90d3265d", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/4d984fec-2494-547d-9f80-2aca90d3265d.png", "markdown_path": "track2_finixphoto_300/mds/4d984fec-2494-547d-9f80-2aca90d3265d.md", "json_path": "track2_finixphoto_300/jsons/4d984fec-2494-547d-9f80-2aca90d3265d.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 34, "num_tables": 1} +{"id": "4e3189d2-9455-4e80-8357-d0c500ce35c5", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/4e3189d2-9455-4e80-8357-d0c500ce35c5.png", "markdown_path": "track2_finixphoto_300/mds/4e3189d2-9455-4e80-8357-d0c500ce35c5.md", "json_path": "track2_finixphoto_300/jsons/4e3189d2-9455-4e80-8357-d0c500ce35c5.json", "has_structured_json": true, "image_width": 1963, "image_height": 1321, "image_pixels": 2593123, "num_layout_elements": 30, "num_tables": 1} +{"id": "4f0882ec-1863-4431-88ff-f2aa9fb83951", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/4f0882ec-1863-4431-88ff-f2aa9fb83951.png", "markdown_path": "track2_finixphoto_300/mds/4f0882ec-1863-4431-88ff-f2aa9fb83951.md", "json_path": "track2_finixphoto_300/jsons/4f0882ec-1863-4431-88ff-f2aa9fb83951.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 20, "num_tables": 0} +{"id": "4f8b9303-7f99-41bd-b611-090616b7dcc4", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/4f8b9303-7f99-41bd-b611-090616b7dcc4.png", "markdown_path": "track2_finixphoto_300/mds/4f8b9303-7f99-41bd-b611-090616b7dcc4.md", "json_path": "track2_finixphoto_300/jsons/4f8b9303-7f99-41bd-b611-090616b7dcc4.json", "has_structured_json": true, "image_width": 1400, "image_height": 740, "image_pixels": 1036000, "num_layout_elements": 27, "num_tables": 1} +{"id": "4fe1a4c7-df07-46e4-8b2c-994c7ca89f30", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/4fe1a4c7-df07-46e4-8b2c-994c7ca89f30.png", "markdown_path": "track2_finixphoto_300/mds/4fe1a4c7-df07-46e4-8b2c-994c7ca89f30.md", "json_path": "track2_finixphoto_300/jsons/4fe1a4c7-df07-46e4-8b2c-994c7ca89f30.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 20, "num_tables": 0} +{"id": "50548054-f21b-4933-93ae-0e77c730ce8e", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/50548054-f21b-4933-93ae-0e77c730ce8e.png", "markdown_path": "track2_finixphoto_300/mds/50548054-f21b-4933-93ae-0e77c730ce8e.md", "json_path": "track2_finixphoto_300/jsons/50548054-f21b-4933-93ae-0e77c730ce8e.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 35, "num_tables": 1} +{"id": "519499a4-165d-47ed-b92d-801ac42a9e9f", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/519499a4-165d-47ed-b92d-801ac42a9e9f.png", "markdown_path": "track2_finixphoto_300/mds/519499a4-165d-47ed-b92d-801ac42a9e9f.md", "json_path": "track2_finixphoto_300/jsons/519499a4-165d-47ed-b92d-801ac42a9e9f.json", "has_structured_json": true, "image_width": 375, "image_height": 500, "image_pixels": 187500, "num_layout_elements": 35, "num_tables": 0} +{"id": "523f1308-547c-5129-a81b-748389fa351b", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/523f1308-547c-5129-a81b-748389fa351b.png", "markdown_path": "track2_finixphoto_300/mds/523f1308-547c-5129-a81b-748389fa351b.md", "json_path": "track2_finixphoto_300/jsons/523f1308-547c-5129-a81b-748389fa351b.json", "has_structured_json": true, "image_width": 1265, "image_height": 677, "image_pixels": 856405, "num_layout_elements": 30, "num_tables": 1} +{"id": "528f700f-ccd2-4ea6-abb6-565380c283b3", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/528f700f-ccd2-4ea6-abb6-565380c283b3.png", "markdown_path": "track2_finixphoto_300/mds/528f700f-ccd2-4ea6-abb6-565380c283b3.md", "json_path": "track2_finixphoto_300/jsons/528f700f-ccd2-4ea6-abb6-565380c283b3.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 41, "num_tables": 1} +{"id": "531128b6-7e66-5bb6-a66c-c63b48be15f9", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/531128b6-7e66-5bb6-a66c-c63b48be15f9.png", "markdown_path": "track2_finixphoto_300/mds/531128b6-7e66-5bb6-a66c-c63b48be15f9.md", "json_path": "track2_finixphoto_300/jsons/531128b6-7e66-5bb6-a66c-c63b48be15f9.json", "has_structured_json": true, "image_width": 558, "image_height": 330, "image_pixels": 184140, "num_layout_elements": 10, "num_tables": 2} +{"id": "542187cd-4d07-4555-bfc3-535dfbcfad29", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/542187cd-4d07-4555-bfc3-535dfbcfad29.png", "markdown_path": "track2_finixphoto_300/mds/542187cd-4d07-4555-bfc3-535dfbcfad29.md", "json_path": "track2_finixphoto_300/jsons/542187cd-4d07-4555-bfc3-535dfbcfad29.json", "has_structured_json": true, "image_width": 600, "image_height": 450, "image_pixels": 270000, "num_layout_elements": 36, "num_tables": 1} +{"id": "5468d9e8-5602-4724-8157-b3150e2a572d", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/5468d9e8-5602-4724-8157-b3150e2a572d.png", "markdown_path": "track2_finixphoto_300/mds/5468d9e8-5602-4724-8157-b3150e2a572d.md", "json_path": "track2_finixphoto_300/jsons/5468d9e8-5602-4724-8157-b3150e2a572d.json", "has_structured_json": true, "image_width": 1576, "image_height": 980, "image_pixels": 1544480, "num_layout_elements": 31, "num_tables": 1} +{"id": "54803d8f-936e-407f-a082-178aaea3c7fc", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/54803d8f-936e-407f-a082-178aaea3c7fc.png", "markdown_path": "track2_finixphoto_300/mds/54803d8f-936e-407f-a082-178aaea3c7fc.md", "json_path": "track2_finixphoto_300/jsons/54803d8f-936e-407f-a082-178aaea3c7fc.json", "has_structured_json": true, "image_width": 475, "image_height": 633, "image_pixels": 300675, "num_layout_elements": 31, "num_tables": 0} +{"id": "57dd4597-2036-4026-82e2-af5c55936e97", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/57dd4597-2036-4026-82e2-af5c55936e97.png", "markdown_path": "track2_finixphoto_300/mds/57dd4597-2036-4026-82e2-af5c55936e97.md", "json_path": "track2_finixphoto_300/jsons/57dd4597-2036-4026-82e2-af5c55936e97.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 37, "num_tables": 1} +{"id": "589a3f8e-f316-5627-a82d-1dabdb5a2fd1", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/589a3f8e-f316-5627-a82d-1dabdb5a2fd1.png", "markdown_path": "track2_finixphoto_300/mds/589a3f8e-f316-5627-a82d-1dabdb5a2fd1.md", "json_path": "track2_finixphoto_300/jsons/589a3f8e-f316-5627-a82d-1dabdb5a2fd1.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 29, "num_tables": 1} +{"id": "593f9cac-a42b-4e3c-a4d1-429a25b54249", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/593f9cac-a42b-4e3c-a4d1-429a25b54249.png", "markdown_path": "track2_finixphoto_300/mds/593f9cac-a42b-4e3c-a4d1-429a25b54249.md", "json_path": "track2_finixphoto_300/jsons/593f9cac-a42b-4e3c-a4d1-429a25b54249.json", "has_structured_json": true, "image_width": 600, "image_height": 800, "image_pixels": 480000, "num_layout_elements": 31, "num_tables": 0} +{"id": "5a33b070-988d-4674-8225-bd00d5e43cba", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/5a33b070-988d-4674-8225-bd00d5e43cba.png", "markdown_path": "track2_finixphoto_300/mds/5a33b070-988d-4674-8225-bd00d5e43cba.md", "json_path": "track2_finixphoto_300/jsons/5a33b070-988d-4674-8225-bd00d5e43cba.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 25, "num_tables": 0} +{"id": "5b6cac5c-e74b-4619-8000-da8c4c19380b", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/5b6cac5c-e74b-4619-8000-da8c4c19380b.png", "markdown_path": "track2_finixphoto_300/mds/5b6cac5c-e74b-4619-8000-da8c4c19380b.md", "json_path": "track2_finixphoto_300/jsons/5b6cac5c-e74b-4619-8000-da8c4c19380b.json", "has_structured_json": true, "image_width": 2000, "image_height": 2274, "image_pixels": 4548000, "num_layout_elements": 35, "num_tables": 2} +{"id": "5b928aa5-eaff-51d6-95cb-1c01d596554e", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/5b928aa5-eaff-51d6-95cb-1c01d596554e.png", "markdown_path": "track2_finixphoto_300/mds/5b928aa5-eaff-51d6-95cb-1c01d596554e.md", "json_path": "track2_finixphoto_300/jsons/5b928aa5-eaff-51d6-95cb-1c01d596554e.json", "has_structured_json": true, "image_width": 2100, "image_height": 1190, "image_pixels": 2499000, "num_layout_elements": 39, "num_tables": 1} +{"id": "5bce5866-6ec7-4bdf-90d6-2c72629ae0d0", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/5bce5866-6ec7-4bdf-90d6-2c72629ae0d0.png", "markdown_path": "track2_finixphoto_300/mds/5bce5866-6ec7-4bdf-90d6-2c72629ae0d0.md", "json_path": "track2_finixphoto_300/jsons/5bce5866-6ec7-4bdf-90d6-2c72629ae0d0.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 28, "num_tables": 0} +{"id": "5c0426e5-e5d5-528f-a6f2-0d72b00ecac8", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/5c0426e5-e5d5-528f-a6f2-0d72b00ecac8.png", "markdown_path": "track2_finixphoto_300/mds/5c0426e5-e5d5-528f-a6f2-0d72b00ecac8.md", "json_path": "track2_finixphoto_300/jsons/5c0426e5-e5d5-528f-a6f2-0d72b00ecac8.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 16, "num_tables": 1} +{"id": "5cfab739-3ab5-49bf-b5f1-ca5f773c5a23", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/5cfab739-3ab5-49bf-b5f1-ca5f773c5a23.png", "markdown_path": "track2_finixphoto_300/mds/5cfab739-3ab5-49bf-b5f1-ca5f773c5a23.md", "json_path": "track2_finixphoto_300/jsons/5cfab739-3ab5-49bf-b5f1-ca5f773c5a23.json", "has_structured_json": true, "image_width": 1017, "image_height": 1233, "image_pixels": 1253961, "num_layout_elements": 26, "num_tables": 1} +{"id": "5d0a8180-fdff-4e7f-a077-b422c0b55259", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/5d0a8180-fdff-4e7f-a077-b422c0b55259.png", "markdown_path": "track2_finixphoto_300/mds/5d0a8180-fdff-4e7f-a077-b422c0b55259.md", "json_path": "track2_finixphoto_300/jsons/5d0a8180-fdff-4e7f-a077-b422c0b55259.json", "has_structured_json": true, "image_width": 2100, "image_height": 1575, "image_pixels": 3307500, "num_layout_elements": 32, "num_tables": 1} +{"id": "5d7f06bc-729a-4e4a-adfe-baaf4ef316de", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/5d7f06bc-729a-4e4a-adfe-baaf4ef316de.png", "markdown_path": "track2_finixphoto_300/mds/5d7f06bc-729a-4e4a-adfe-baaf4ef316de.md", "json_path": "track2_finixphoto_300/jsons/5d7f06bc-729a-4e4a-adfe-baaf4ef316de.json", "has_structured_json": true, "image_width": 1063, "image_height": 668, "image_pixels": 710084, "num_layout_elements": 34, "num_tables": 1} +{"id": "5dff1e0c-c6e0-48c4-85b1-1a287cdfb46a", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/5dff1e0c-c6e0-48c4-85b1-1a287cdfb46a.png", "markdown_path": "track2_finixphoto_300/mds/5dff1e0c-c6e0-48c4-85b1-1a287cdfb46a.md", "json_path": "track2_finixphoto_300/jsons/5dff1e0c-c6e0-48c4-85b1-1a287cdfb46a.json", "has_structured_json": true, "image_width": 1080, "image_height": 810, "image_pixels": 874800, "num_layout_elements": 39, "num_tables": 1} +{"id": "5e178f10-6717-4803-8d9a-8beb468e6697", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/5e178f10-6717-4803-8d9a-8beb468e6697.png", "markdown_path": "track2_finixphoto_300/mds/5e178f10-6717-4803-8d9a-8beb468e6697.md", "json_path": "track2_finixphoto_300/jsons/5e178f10-6717-4803-8d9a-8beb468e6697.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 15, "num_tables": 0} +{"id": "5e80e14e-d93f-5acc-94bf-63e0d841c1a3", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/5e80e14e-d93f-5acc-94bf-63e0d841c1a3.png", "markdown_path": "track2_finixphoto_300/mds/5e80e14e-d93f-5acc-94bf-63e0d841c1a3.md", "json_path": "track2_finixphoto_300/jsons/5e80e14e-d93f-5acc-94bf-63e0d841c1a3.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 29, "num_tables": 1} +{"id": "5f5239a1-96b8-4830-bdb1-771fe8f6b45f", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/5f5239a1-96b8-4830-bdb1-771fe8f6b45f.png", "markdown_path": "track2_finixphoto_300/mds/5f5239a1-96b8-4830-bdb1-771fe8f6b45f.md", "json_path": "track2_finixphoto_300/jsons/5f5239a1-96b8-4830-bdb1-771fe8f6b45f.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 19, "num_tables": 0} +{"id": "5f5bfdf3-d936-4805-ab9a-3e4802287bbf", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/5f5bfdf3-d936-4805-ab9a-3e4802287bbf.png", "markdown_path": "track2_finixphoto_300/mds/5f5bfdf3-d936-4805-ab9a-3e4802287bbf.md", "json_path": "track2_finixphoto_300/jsons/5f5bfdf3-d936-4805-ab9a-3e4802287bbf.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 25, "num_tables": 0} +{"id": "613842aa-4daa-47bc-872a-1bbbb2f25e95", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/613842aa-4daa-47bc-872a-1bbbb2f25e95.png", "markdown_path": "track2_finixphoto_300/mds/613842aa-4daa-47bc-872a-1bbbb2f25e95.md", "json_path": "track2_finixphoto_300/jsons/613842aa-4daa-47bc-872a-1bbbb2f25e95.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 30, "num_tables": 0} +{"id": "62ee1182-54e9-4858-9aea-37535e1a4f41", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/62ee1182-54e9-4858-9aea-37535e1a4f41.png", "markdown_path": "track2_finixphoto_300/mds/62ee1182-54e9-4858-9aea-37535e1a4f41.md", "json_path": "track2_finixphoto_300/jsons/62ee1182-54e9-4858-9aea-37535e1a4f41.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 13, "num_tables": 1} +{"id": "63789697-6f75-42f1-96c5-496caa08520b", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/63789697-6f75-42f1-96c5-496caa08520b.png", "markdown_path": "track2_finixphoto_300/mds/63789697-6f75-42f1-96c5-496caa08520b.md", "json_path": "track2_finixphoto_300/jsons/63789697-6f75-42f1-96c5-496caa08520b.json", "has_structured_json": true, "image_width": 1662, "image_height": 1247, "image_pixels": 2072514, "num_layout_elements": 22, "num_tables": 1} +{"id": "638bc52f-eb18-5560-8a81-214d54c5ddc7", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/638bc52f-eb18-5560-8a81-214d54c5ddc7.png", "markdown_path": "track2_finixphoto_300/mds/638bc52f-eb18-5560-8a81-214d54c5ddc7.md", "json_path": "track2_finixphoto_300/jsons/638bc52f-eb18-5560-8a81-214d54c5ddc7.json", "has_structured_json": true, "image_width": 1066, "image_height": 720, "image_pixels": 767520, "num_layout_elements": 18, "num_tables": 2} +{"id": "64cc729c-c69d-4afe-970c-9e659d4d1a82", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/64cc729c-c69d-4afe-970c-9e659d4d1a82.png", "markdown_path": "track2_finixphoto_300/mds/64cc729c-c69d-4afe-970c-9e659d4d1a82.md", "json_path": "track2_finixphoto_300/jsons/64cc729c-c69d-4afe-970c-9e659d4d1a82.json", "has_structured_json": true, "image_width": 600, "image_height": 349, "image_pixels": 209400, "num_layout_elements": 37, "num_tables": 1} +{"id": "65f9229b-187d-55aa-bbdb-8fc003cda7c4", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/65f9229b-187d-55aa-bbdb-8fc003cda7c4.png", "markdown_path": "track2_finixphoto_300/mds/65f9229b-187d-55aa-bbdb-8fc003cda7c4.md", "json_path": "track2_finixphoto_300/jsons/65f9229b-187d-55aa-bbdb-8fc003cda7c4.json", "has_structured_json": true, "image_width": 2667, "image_height": 2000, "image_pixels": 5334000, "num_layout_elements": 26, "num_tables": 1} +{"id": "67e17f6e-9656-44cf-8e51-136d812838db", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/67e17f6e-9656-44cf-8e51-136d812838db.png", "markdown_path": "track2_finixphoto_300/mds/67e17f6e-9656-44cf-8e51-136d812838db.md", "json_path": "track2_finixphoto_300/jsons/67e17f6e-9656-44cf-8e51-136d812838db.json", "has_structured_json": true, "image_width": 1472, "image_height": 828, "image_pixels": 1218816, "num_layout_elements": 36, "num_tables": 1} +{"id": "680bed92-d8eb-4b1d-a504-dc4cc4ea5742", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/680bed92-d8eb-4b1d-a504-dc4cc4ea5742.png", "markdown_path": "track2_finixphoto_300/mds/680bed92-d8eb-4b1d-a504-dc4cc4ea5742.md", "json_path": "track2_finixphoto_300/jsons/680bed92-d8eb-4b1d-a504-dc4cc4ea5742.json", "has_structured_json": true, "image_width": 5472, "image_height": 7296, "image_pixels": 39923712, "num_layout_elements": 33, "num_tables": 1} +{"id": "6825e655-ffea-4d73-94dc-46af5785bdd1", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/6825e655-ffea-4d73-94dc-46af5785bdd1.png", "markdown_path": "track2_finixphoto_300/mds/6825e655-ffea-4d73-94dc-46af5785bdd1.md", "json_path": "track2_finixphoto_300/jsons/6825e655-ffea-4d73-94dc-46af5785bdd1.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 36, "num_tables": 1} +{"id": "6875d829-5b10-481d-bc89-f47c70b7d370", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/6875d829-5b10-481d-bc89-f47c70b7d370.png", "markdown_path": "track2_finixphoto_300/mds/6875d829-5b10-481d-bc89-f47c70b7d370.md", "json_path": "track2_finixphoto_300/jsons/6875d829-5b10-481d-bc89-f47c70b7d370.json", "has_structured_json": true, "image_width": 600, "image_height": 450, "image_pixels": 270000, "num_layout_elements": 35, "num_tables": 1} +{"id": "688b05fa-7341-5c1f-8d9f-47aa7ba643eb", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/688b05fa-7341-5c1f-8d9f-47aa7ba643eb.png", "markdown_path": "track2_finixphoto_300/mds/688b05fa-7341-5c1f-8d9f-47aa7ba643eb.md", "json_path": "track2_finixphoto_300/jsons/688b05fa-7341-5c1f-8d9f-47aa7ba643eb.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 55, "num_tables": 1} +{"id": "6a399ef1-3c0b-4661-be92-22f20c991c39", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/6a399ef1-3c0b-4661-be92-22f20c991c39.png", "markdown_path": "track2_finixphoto_300/mds/6a399ef1-3c0b-4661-be92-22f20c991c39.md", "json_path": "track2_finixphoto_300/jsons/6a399ef1-3c0b-4661-be92-22f20c991c39.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 37, "num_tables": 1} +{"id": "6a65bc7b-f453-4d0f-80b8-705c88415794", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/6a65bc7b-f453-4d0f-80b8-705c88415794.png", "markdown_path": "track2_finixphoto_300/mds/6a65bc7b-f453-4d0f-80b8-705c88415794.md", "json_path": "track2_finixphoto_300/jsons/6a65bc7b-f453-4d0f-80b8-705c88415794.json", "has_structured_json": true, "image_width": 3899, "image_height": 2514, "image_pixels": 9802086, "num_layout_elements": 31, "num_tables": 1} +{"id": "6aa5f935-1edb-48a5-bfda-1063e4597852", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/6aa5f935-1edb-48a5-bfda-1063e4597852.png", "markdown_path": "track2_finixphoto_300/mds/6aa5f935-1edb-48a5-bfda-1063e4597852.md", "json_path": "track2_finixphoto_300/jsons/6aa5f935-1edb-48a5-bfda-1063e4597852.json", "has_structured_json": true, "image_width": 500, "image_height": 714, "image_pixels": 357000, "num_layout_elements": 8, "num_tables": 1} +{"id": "6afde147-92a9-465c-bacb-d5735df6e2cb", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/6afde147-92a9-465c-bacb-d5735df6e2cb.png", "markdown_path": "track2_finixphoto_300/mds/6afde147-92a9-465c-bacb-d5735df6e2cb.md", "json_path": "track2_finixphoto_300/jsons/6afde147-92a9-465c-bacb-d5735df6e2cb.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 41, "num_tables": 1} +{"id": "6b366267-1024-45f5-adb4-79221cc813e1", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/6b366267-1024-45f5-adb4-79221cc813e1.png", "markdown_path": "track2_finixphoto_300/mds/6b366267-1024-45f5-adb4-79221cc813e1.md", "json_path": "track2_finixphoto_300/jsons/6b366267-1024-45f5-adb4-79221cc813e1.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 20, "num_tables": 0} +{"id": "6d556f6d-3c74-487f-91c6-15a0bd4616c0", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/6d556f6d-3c74-487f-91c6-15a0bd4616c0.png", "markdown_path": "track2_finixphoto_300/mds/6d556f6d-3c74-487f-91c6-15a0bd4616c0.md", "json_path": "track2_finixphoto_300/jsons/6d556f6d-3c74-487f-91c6-15a0bd4616c0.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 26, "num_tables": 1} +{"id": "6d5fe685-648b-458b-ac85-d066b37a9194", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/6d5fe685-648b-458b-ac85-d066b37a9194.png", "markdown_path": "track2_finixphoto_300/mds/6d5fe685-648b-458b-ac85-d066b37a9194.md", "json_path": "track2_finixphoto_300/jsons/6d5fe685-648b-458b-ac85-d066b37a9194.json", "has_structured_json": true, "image_width": 888, "image_height": 485, "image_pixels": 430680, "num_layout_elements": 39, "num_tables": 1} +{"id": "6dfe9f6e-4be0-5e84-bfe4-f074ae875c2b", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/6dfe9f6e-4be0-5e84-bfe4-f074ae875c2b.png", "markdown_path": "track2_finixphoto_300/mds/6dfe9f6e-4be0-5e84-bfe4-f074ae875c2b.md", "json_path": "track2_finixphoto_300/jsons/6dfe9f6e-4be0-5e84-bfe4-f074ae875c2b.json", "has_structured_json": true, "image_width": 976, "image_height": 554, "image_pixels": 540704, "num_layout_elements": 31, "num_tables": 1} +{"id": "6ebfdb61-e36f-4818-9fc9-757267d297ce", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/6ebfdb61-e36f-4818-9fc9-757267d297ce.png", "markdown_path": "track2_finixphoto_300/mds/6ebfdb61-e36f-4818-9fc9-757267d297ce.md", "json_path": "track2_finixphoto_300/jsons/6ebfdb61-e36f-4818-9fc9-757267d297ce.json", "has_structured_json": true, "image_width": 720, "image_height": 397, "image_pixels": 285840, "num_layout_elements": 39, "num_tables": 1} +{"id": "70bb3844-0bb6-4946-921e-d497606659d5", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/70bb3844-0bb6-4946-921e-d497606659d5.png", "markdown_path": "track2_finixphoto_300/mds/70bb3844-0bb6-4946-921e-d497606659d5.md", "json_path": "track2_finixphoto_300/jsons/70bb3844-0bb6-4946-921e-d497606659d5.json", "has_structured_json": true, "image_width": 2100, "image_height": 1575, "image_pixels": 3307500, "num_layout_elements": 37, "num_tables": 1} +{"id": "70df2dac-30fb-4452-abec-930187399115", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/70df2dac-30fb-4452-abec-930187399115.png", "markdown_path": "track2_finixphoto_300/mds/70df2dac-30fb-4452-abec-930187399115.md", "json_path": "track2_finixphoto_300/jsons/70df2dac-30fb-4452-abec-930187399115.json", "has_structured_json": true, "image_width": 1080, "image_height": 747, "image_pixels": 806760, "num_layout_elements": 36, "num_tables": 1} +{"id": "7182bf15-7a2f-4822-b9b2-f6f31ea093bd", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/7182bf15-7a2f-4822-b9b2-f6f31ea093bd.png", "markdown_path": "track2_finixphoto_300/mds/7182bf15-7a2f-4822-b9b2-f6f31ea093bd.md", "json_path": "track2_finixphoto_300/jsons/7182bf15-7a2f-4822-b9b2-f6f31ea093bd.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 32, "num_tables": 0} +{"id": "745e5a38-9ff2-421d-833a-bb18920dac85", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/745e5a38-9ff2-421d-833a-bb18920dac85.png", "markdown_path": "track2_finixphoto_300/mds/745e5a38-9ff2-421d-833a-bb18920dac85.md", "json_path": "track2_finixphoto_300/jsons/745e5a38-9ff2-421d-833a-bb18920dac85.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 18, "num_tables": 1} +{"id": "74facff6-f2dd-52a0-8f43-692b41623757", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/74facff6-f2dd-52a0-8f43-692b41623757.png", "markdown_path": "track2_finixphoto_300/mds/74facff6-f2dd-52a0-8f43-692b41623757.md", "json_path": "track2_finixphoto_300/jsons/74facff6-f2dd-52a0-8f43-692b41623757.json", "has_structured_json": true, "image_width": 1008, "image_height": 1658, "image_pixels": 1671264, "num_layout_elements": 28, "num_tables": 1} +{"id": "7712330b-34f0-447d-9c0f-0641b14a9d02", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/7712330b-34f0-447d-9c0f-0641b14a9d02.png", "markdown_path": "track2_finixphoto_300/mds/7712330b-34f0-447d-9c0f-0641b14a9d02.md", "json_path": "track2_finixphoto_300/jsons/7712330b-34f0-447d-9c0f-0641b14a9d02.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 36, "num_tables": 1} +{"id": "77ccd7a0-ca9f-49eb-ac26-e648eeb69252", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/77ccd7a0-ca9f-49eb-ac26-e648eeb69252.png", "markdown_path": "track2_finixphoto_300/mds/77ccd7a0-ca9f-49eb-ac26-e648eeb69252.md", "json_path": "track2_finixphoto_300/jsons/77ccd7a0-ca9f-49eb-ac26-e648eeb69252.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 11, "num_tables": 1} +{"id": "7807663d-851b-4182-91cd-8814d6473af8", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/7807663d-851b-4182-91cd-8814d6473af8.png", "markdown_path": "track2_finixphoto_300/mds/7807663d-851b-4182-91cd-8814d6473af8.md", "json_path": "track2_finixphoto_300/jsons/7807663d-851b-4182-91cd-8814d6473af8.json", "has_structured_json": true, "image_width": 1296, "image_height": 648, "image_pixels": 839808, "num_layout_elements": 35, "num_tables": 1} +{"id": "7825978f-4940-41b5-9ccf-6a2ae7354030", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/7825978f-4940-41b5-9ccf-6a2ae7354030.png", "markdown_path": "track2_finixphoto_300/mds/7825978f-4940-41b5-9ccf-6a2ae7354030.md", "json_path": "track2_finixphoto_300/jsons/7825978f-4940-41b5-9ccf-6a2ae7354030.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 19, "num_tables": 0} +{"id": "7b7ee45a-3ab2-4f63-ab94-2e82fcd5c8f7", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/7b7ee45a-3ab2-4f63-ab94-2e82fcd5c8f7.png", "markdown_path": "track2_finixphoto_300/mds/7b7ee45a-3ab2-4f63-ab94-2e82fcd5c8f7.md", "json_path": "track2_finixphoto_300/jsons/7b7ee45a-3ab2-4f63-ab94-2e82fcd5c8f7.json", "has_structured_json": true, "image_width": 2800, "image_height": 1294, "image_pixels": 3623200, "num_layout_elements": 35, "num_tables": 1} +{"id": "7ce60779-7427-4845-992b-659f69c0f983", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/7ce60779-7427-4845-992b-659f69c0f983.png", "markdown_path": "track2_finixphoto_300/mds/7ce60779-7427-4845-992b-659f69c0f983.md", "json_path": "track2_finixphoto_300/jsons/7ce60779-7427-4845-992b-659f69c0f983.json", "has_structured_json": true, "image_width": 930, "image_height": 698, "image_pixels": 649140, "num_layout_elements": 33, "num_tables": 1} +{"id": "7d851e44-0642-4f52-b195-fc69f20eb0ac", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/7d851e44-0642-4f52-b195-fc69f20eb0ac.png", "markdown_path": "track2_finixphoto_300/mds/7d851e44-0642-4f52-b195-fc69f20eb0ac.md", "json_path": "track2_finixphoto_300/jsons/7d851e44-0642-4f52-b195-fc69f20eb0ac.json", "has_structured_json": true, "image_width": 2800, "image_height": 1900, "image_pixels": 5320000, "num_layout_elements": 49, "num_tables": 1} +{"id": "7daa1d66-bce7-48b5-8311-d69013b6b733", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/7daa1d66-bce7-48b5-8311-d69013b6b733.png", "markdown_path": "track2_finixphoto_300/mds/7daa1d66-bce7-48b5-8311-d69013b6b733.md", "json_path": "track2_finixphoto_300/jsons/7daa1d66-bce7-48b5-8311-d69013b6b733.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 19, "num_tables": 0} +{"id": "7fd66418-68cd-4dd5-99d4-2b4dd8eabd63", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/7fd66418-68cd-4dd5-99d4-2b4dd8eabd63.png", "markdown_path": "track2_finixphoto_300/mds/7fd66418-68cd-4dd5-99d4-2b4dd8eabd63.md", "json_path": "track2_finixphoto_300/jsons/7fd66418-68cd-4dd5-99d4-2b4dd8eabd63.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 20, "num_tables": 1} +{"id": "80120373-65f7-495c-a3c2-737ef1453db5", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/80120373-65f7-495c-a3c2-737ef1453db5.png", "markdown_path": "track2_finixphoto_300/mds/80120373-65f7-495c-a3c2-737ef1453db5.md", "json_path": "track2_finixphoto_300/jsons/80120373-65f7-495c-a3c2-737ef1453db5.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 42, "num_tables": 1} +{"id": "80634ca1-2f28-46cf-a6ea-99455d634892", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/80634ca1-2f28-46cf-a6ea-99455d634892.png", "markdown_path": "track2_finixphoto_300/mds/80634ca1-2f28-46cf-a6ea-99455d634892.md", "json_path": "track2_finixphoto_300/jsons/80634ca1-2f28-46cf-a6ea-99455d634892.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 27, "num_tables": 0} +{"id": "80a02dd3-9d68-54e5-9c74-50afcb20c067", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/80a02dd3-9d68-54e5-9c74-50afcb20c067.png", "markdown_path": "track2_finixphoto_300/mds/80a02dd3-9d68-54e5-9c74-50afcb20c067.md", "json_path": "track2_finixphoto_300/jsons/80a02dd3-9d68-54e5-9c74-50afcb20c067.json", "has_structured_json": true, "image_width": 835, "image_height": 500, "image_pixels": 417500, "num_layout_elements": 20, "num_tables": 1} +{"id": "80da4567-d872-4801-9965-ff529925d917", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/80da4567-d872-4801-9965-ff529925d917.png", "markdown_path": "track2_finixphoto_300/mds/80da4567-d872-4801-9965-ff529925d917.md", "json_path": "track2_finixphoto_300/jsons/80da4567-d872-4801-9965-ff529925d917.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 23, "num_tables": 0} +{"id": "8134710d-bdb9-47d9-87ed-f8950b4f1e0c", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/8134710d-bdb9-47d9-87ed-f8950b4f1e0c.png", "markdown_path": "track2_finixphoto_300/mds/8134710d-bdb9-47d9-87ed-f8950b4f1e0c.md", "json_path": "track2_finixphoto_300/jsons/8134710d-bdb9-47d9-87ed-f8950b4f1e0c.json", "has_structured_json": true, "image_width": 2432, "image_height": 1488, "image_pixels": 3618816, "num_layout_elements": 30, "num_tables": 1} +{"id": "816e61b6-4537-4b31-9b46-ed55c30cd1e0", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/816e61b6-4537-4b31-9b46-ed55c30cd1e0.png", "markdown_path": "track2_finixphoto_300/mds/816e61b6-4537-4b31-9b46-ed55c30cd1e0.md", "json_path": "track2_finixphoto_300/jsons/816e61b6-4537-4b31-9b46-ed55c30cd1e0.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 37, "num_tables": 1} +{"id": "83535644-c3d7-4d0a-bdbc-330323313ea2", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/83535644-c3d7-4d0a-bdbc-330323313ea2.png", "markdown_path": "track2_finixphoto_300/mds/83535644-c3d7-4d0a-bdbc-330323313ea2.md", "json_path": "track2_finixphoto_300/jsons/83535644-c3d7-4d0a-bdbc-330323313ea2.json", "has_structured_json": true, "image_width": 690, "image_height": 862, "image_pixels": 594780, "num_layout_elements": 22, "num_tables": 0} +{"id": "83550b7a-3370-579f-9721-0dc0fcc3e681", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/83550b7a-3370-579f-9721-0dc0fcc3e681.png", "markdown_path": "track2_finixphoto_300/mds/83550b7a-3370-579f-9721-0dc0fcc3e681.md", "json_path": "track2_finixphoto_300/jsons/83550b7a-3370-579f-9721-0dc0fcc3e681.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 37, "num_tables": 1} +{"id": "84ad9891-8993-47cb-9dc7-1fe529638d69", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/84ad9891-8993-47cb-9dc7-1fe529638d69.png", "markdown_path": "track2_finixphoto_300/mds/84ad9891-8993-47cb-9dc7-1fe529638d69.md", "json_path": "track2_finixphoto_300/jsons/84ad9891-8993-47cb-9dc7-1fe529638d69.json", "has_structured_json": true, "image_width": 1938, "image_height": 1287, "image_pixels": 2494206, "num_layout_elements": 25, "num_tables": 1} +{"id": "84e68b49-182d-4620-b467-0018d9c24224", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/84e68b49-182d-4620-b467-0018d9c24224.png", "markdown_path": "track2_finixphoto_300/mds/84e68b49-182d-4620-b467-0018d9c24224.md", "json_path": "track2_finixphoto_300/jsons/84e68b49-182d-4620-b467-0018d9c24224.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 18, "num_tables": 0} +{"id": "86563ab2-977b-4785-a279-188672cc499a", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/86563ab2-977b-4785-a279-188672cc499a.png", "markdown_path": "track2_finixphoto_300/mds/86563ab2-977b-4785-a279-188672cc499a.md", "json_path": "track2_finixphoto_300/jsons/86563ab2-977b-4785-a279-188672cc499a.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 21, "num_tables": 0} +{"id": "874f58e9-b752-553f-9dec-7a7e7d637204", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/874f58e9-b752-553f-9dec-7a7e7d637204.png", "markdown_path": "track2_finixphoto_300/mds/874f58e9-b752-553f-9dec-7a7e7d637204.md", "json_path": "track2_finixphoto_300/jsons/874f58e9-b752-553f-9dec-7a7e7d637204.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 42, "num_tables": 1} +{"id": "8a08f6f3-e658-4e7e-83af-84c71b4843fb", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/8a08f6f3-e658-4e7e-83af-84c71b4843fb.png", "markdown_path": "track2_finixphoto_300/mds/8a08f6f3-e658-4e7e-83af-84c71b4843fb.md", "json_path": "track2_finixphoto_300/jsons/8a08f6f3-e658-4e7e-83af-84c71b4843fb.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 14, "num_tables": 0} +{"id": "8ac227c1-804b-4760-9f52-c9ced3bbf5d2", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/8ac227c1-804b-4760-9f52-c9ced3bbf5d2.png", "markdown_path": "track2_finixphoto_300/mds/8ac227c1-804b-4760-9f52-c9ced3bbf5d2.md", "json_path": "track2_finixphoto_300/jsons/8ac227c1-804b-4760-9f52-c9ced3bbf5d2.json", "has_structured_json": true, "image_width": 960, "image_height": 540, "image_pixels": 518400, "num_layout_elements": 30, "num_tables": 1} +{"id": "8acfa9e1-82b6-59b3-983f-2fe4a967ae3a", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/8acfa9e1-82b6-59b3-983f-2fe4a967ae3a.png", "markdown_path": "track2_finixphoto_300/mds/8acfa9e1-82b6-59b3-983f-2fe4a967ae3a.md", "json_path": "track2_finixphoto_300/jsons/8acfa9e1-82b6-59b3-983f-2fe4a967ae3a.json", "has_structured_json": true, "image_width": 800, "image_height": 600, "image_pixels": 480000, "num_layout_elements": 36, "num_tables": 1} +{"id": "8b3904b9-ce57-453c-89b4-763bd0927318", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/8b3904b9-ce57-453c-89b4-763bd0927318.png", "markdown_path": "track2_finixphoto_300/mds/8b3904b9-ce57-453c-89b4-763bd0927318.md", "json_path": "track2_finixphoto_300/jsons/8b3904b9-ce57-453c-89b4-763bd0927318.json", "has_structured_json": true, "image_width": 1276, "image_height": 793, "image_pixels": 1011868, "num_layout_elements": 32, "num_tables": 1} +{"id": "8e61d5e7-3a2d-43f0-a78a-edee562a34fb", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/8e61d5e7-3a2d-43f0-a78a-edee562a34fb.png", "markdown_path": "track2_finixphoto_300/mds/8e61d5e7-3a2d-43f0-a78a-edee562a34fb.md", "json_path": "track2_finixphoto_300/jsons/8e61d5e7-3a2d-43f0-a78a-edee562a34fb.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 31, "num_tables": 1} +{"id": "8e9ae3e9-3197-594b-b06b-f48ca52b9c17", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/8e9ae3e9-3197-594b-b06b-f48ca52b9c17.png", "markdown_path": "track2_finixphoto_300/mds/8e9ae3e9-3197-594b-b06b-f48ca52b9c17.md", "json_path": "track2_finixphoto_300/jsons/8e9ae3e9-3197-594b-b06b-f48ca52b9c17.json", "has_structured_json": true, "image_width": 1191, "image_height": 1683, "image_pixels": 2004453, "num_layout_elements": 18, "num_tables": 2} +{"id": "8fad1bf9-5946-4bad-b7ab-625b9e4c5623", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/8fad1bf9-5946-4bad-b7ab-625b9e4c5623.png", "markdown_path": "track2_finixphoto_300/mds/8fad1bf9-5946-4bad-b7ab-625b9e4c5623.md", "json_path": "track2_finixphoto_300/jsons/8fad1bf9-5946-4bad-b7ab-625b9e4c5623.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 23, "num_tables": 1} +{"id": "905c7af5-ab04-4b16-956f-fcaa7432126f", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/905c7af5-ab04-4b16-956f-fcaa7432126f.png", "markdown_path": "track2_finixphoto_300/mds/905c7af5-ab04-4b16-956f-fcaa7432126f.md", "json_path": "track2_finixphoto_300/jsons/905c7af5-ab04-4b16-956f-fcaa7432126f.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 8, "num_tables": 1} +{"id": "9181a5b6-4012-5dd1-bad3-ce7041b297a4", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/9181a5b6-4012-5dd1-bad3-ce7041b297a4.png", "markdown_path": "track2_finixphoto_300/mds/9181a5b6-4012-5dd1-bad3-ce7041b297a4.md", "json_path": "track2_finixphoto_300/jsons/9181a5b6-4012-5dd1-bad3-ce7041b297a4.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 24, "num_tables": 2} +{"id": "91a7eb45-3963-46b9-85fc-7ca4c0355845", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/91a7eb45-3963-46b9-85fc-7ca4c0355845.png", "markdown_path": "track2_finixphoto_300/mds/91a7eb45-3963-46b9-85fc-7ca4c0355845.md", "json_path": "track2_finixphoto_300/jsons/91a7eb45-3963-46b9-85fc-7ca4c0355845.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 15, "num_tables": 0} +{"id": "91c09c92-e5f5-4dc7-b2ff-1710a95c8b9d", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/91c09c92-e5f5-4dc7-b2ff-1710a95c8b9d.png", "markdown_path": "track2_finixphoto_300/mds/91c09c92-e5f5-4dc7-b2ff-1710a95c8b9d.md", "json_path": "track2_finixphoto_300/jsons/91c09c92-e5f5-4dc7-b2ff-1710a95c8b9d.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 27, "num_tables": 0} +{"id": "929a2c95-2150-411b-8b8f-ef205617a7a3", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/929a2c95-2150-411b-8b8f-ef205617a7a3.png", "markdown_path": "track2_finixphoto_300/mds/929a2c95-2150-411b-8b8f-ef205617a7a3.md", "json_path": "track2_finixphoto_300/jsons/929a2c95-2150-411b-8b8f-ef205617a7a3.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 32, "num_tables": 1} +{"id": "93159c82-a22f-4b7e-bde8-ba1b9cd8fdff", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/93159c82-a22f-4b7e-bde8-ba1b9cd8fdff.png", "markdown_path": "track2_finixphoto_300/mds/93159c82-a22f-4b7e-bde8-ba1b9cd8fdff.md", "json_path": "track2_finixphoto_300/jsons/93159c82-a22f-4b7e-bde8-ba1b9cd8fdff.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 29, "num_tables": 1} +{"id": "93486e0e-bb3c-458a-8b3e-79670c3e42d4", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/93486e0e-bb3c-458a-8b3e-79670c3e42d4.png", "markdown_path": "track2_finixphoto_300/mds/93486e0e-bb3c-458a-8b3e-79670c3e42d4.md", "json_path": "track2_finixphoto_300/jsons/93486e0e-bb3c-458a-8b3e-79670c3e42d4.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 21, "num_tables": 0} +{"id": "936ab80c-4230-4f67-95a5-fcc87568cf3c", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/936ab80c-4230-4f67-95a5-fcc87568cf3c.png", "markdown_path": "track2_finixphoto_300/mds/936ab80c-4230-4f67-95a5-fcc87568cf3c.md", "json_path": "track2_finixphoto_300/jsons/936ab80c-4230-4f67-95a5-fcc87568cf3c.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 41, "num_tables": 1} +{"id": "93971684-cff7-4368-9a54-dee343dd8781", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/93971684-cff7-4368-9a54-dee343dd8781.png", "markdown_path": "track2_finixphoto_300/mds/93971684-cff7-4368-9a54-dee343dd8781.md", "json_path": "track2_finixphoto_300/jsons/93971684-cff7-4368-9a54-dee343dd8781.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 33, "num_tables": 1} +{"id": "9402e082-5bf5-4d1d-9954-74fcd9b7b9c8", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/9402e082-5bf5-4d1d-9954-74fcd9b7b9c8.png", "markdown_path": "track2_finixphoto_300/mds/9402e082-5bf5-4d1d-9954-74fcd9b7b9c8.md", "json_path": "track2_finixphoto_300/jsons/9402e082-5bf5-4d1d-9954-74fcd9b7b9c8.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 17, "num_tables": 0} +{"id": "942a1b22-2cb4-413b-ab5e-f211b979f8b3", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/942a1b22-2cb4-413b-ab5e-f211b979f8b3.png", "markdown_path": "track2_finixphoto_300/mds/942a1b22-2cb4-413b-ab5e-f211b979f8b3.md", "json_path": "track2_finixphoto_300/jsons/942a1b22-2cb4-413b-ab5e-f211b979f8b3.json", "has_structured_json": true, "image_width": 2100, "image_height": 2100, "image_pixels": 4410000, "num_layout_elements": 75, "num_tables": 1} +{"id": "9485d52c-7563-55a4-8cc5-138b7465204f", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/9485d52c-7563-55a4-8cc5-138b7465204f.png", "markdown_path": "track2_finixphoto_300/mds/9485d52c-7563-55a4-8cc5-138b7465204f.md", "json_path": "track2_finixphoto_300/jsons/9485d52c-7563-55a4-8cc5-138b7465204f.json", "has_structured_json": true, "image_width": 888, "image_height": 500, "image_pixels": 444000, "num_layout_elements": 23, "num_tables": 1} +{"id": "97b5f873-3d9f-4d9e-b34f-331e96157336", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/97b5f873-3d9f-4d9e-b34f-331e96157336.png", "markdown_path": "track2_finixphoto_300/mds/97b5f873-3d9f-4d9e-b34f-331e96157336.md", "json_path": "track2_finixphoto_300/jsons/97b5f873-3d9f-4d9e-b34f-331e96157336.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 16, "num_tables": 1} +{"id": "984e6277-f431-49b5-af05-ec6ba54daa37", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/984e6277-f431-49b5-af05-ec6ba54daa37.png", "markdown_path": "track2_finixphoto_300/mds/984e6277-f431-49b5-af05-ec6ba54daa37.md", "json_path": "track2_finixphoto_300/jsons/984e6277-f431-49b5-af05-ec6ba54daa37.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 32, "num_tables": 1} +{"id": "98cdeca6-e005-4795-91cd-0d845f623677", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/98cdeca6-e005-4795-91cd-0d845f623677.png", "markdown_path": "track2_finixphoto_300/mds/98cdeca6-e005-4795-91cd-0d845f623677.md", "json_path": "track2_finixphoto_300/jsons/98cdeca6-e005-4795-91cd-0d845f623677.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 12, "num_tables": 1} +{"id": "9921130f-b6bf-4ff4-b6bc-ce0480e5e5ee", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/9921130f-b6bf-4ff4-b6bc-ce0480e5e5ee.png", "markdown_path": "track2_finixphoto_300/mds/9921130f-b6bf-4ff4-b6bc-ce0480e5e5ee.md", "json_path": "track2_finixphoto_300/jsons/9921130f-b6bf-4ff4-b6bc-ce0480e5e5ee.json", "has_structured_json": true, "image_width": 720, "image_height": 497, "image_pixels": 357840, "num_layout_elements": 37, "num_tables": 1} +{"id": "9b5c3e56-6ca4-4af9-b18b-d57f2b3f8dc9", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/9b5c3e56-6ca4-4af9-b18b-d57f2b3f8dc9.png", "markdown_path": "track2_finixphoto_300/mds/9b5c3e56-6ca4-4af9-b18b-d57f2b3f8dc9.md", "json_path": "track2_finixphoto_300/jsons/9b5c3e56-6ca4-4af9-b18b-d57f2b3f8dc9.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 29, "num_tables": 1} +{"id": "9d8a1bf6-0346-4039-94f2-061ee4935e02", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/9d8a1bf6-0346-4039-94f2-061ee4935e02.png", "markdown_path": "track2_finixphoto_300/mds/9d8a1bf6-0346-4039-94f2-061ee4935e02.md", "json_path": "track2_finixphoto_300/jsons/9d8a1bf6-0346-4039-94f2-061ee4935e02.json", "has_structured_json": true, "image_width": 2402, "image_height": 1456, "image_pixels": 3497312, "num_layout_elements": 28, "num_tables": 1} +{"id": "9de0ed69-80f3-4a4e-a19a-4d67232480b8", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/9de0ed69-80f3-4a4e-a19a-4d67232480b8.png", "markdown_path": "track2_finixphoto_300/mds/9de0ed69-80f3-4a4e-a19a-4d67232480b8.md", "json_path": "track2_finixphoto_300/jsons/9de0ed69-80f3-4a4e-a19a-4d67232480b8.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 31, "num_tables": 1} +{"id": "9e096ea3-0779-5414-a056-feca264b9415", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/9e096ea3-0779-5414-a056-feca264b9415.png", "markdown_path": "track2_finixphoto_300/mds/9e096ea3-0779-5414-a056-feca264b9415.md", "json_path": "track2_finixphoto_300/jsons/9e096ea3-0779-5414-a056-feca264b9415.json", "has_structured_json": true, "image_width": 2800, "image_height": 2800, "image_pixels": 7840000, "num_layout_elements": 38, "num_tables": 1} +{"id": "9e3c171e-3cb3-460e-b37a-0734a80e7020", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/9e3c171e-3cb3-460e-b37a-0734a80e7020.png", "markdown_path": "track2_finixphoto_300/mds/9e3c171e-3cb3-460e-b37a-0734a80e7020.md", "json_path": "track2_finixphoto_300/jsons/9e3c171e-3cb3-460e-b37a-0734a80e7020.json", "has_structured_json": true, "image_width": 750, "image_height": 1000, "image_pixels": 750000, "num_layout_elements": 31, "num_tables": 0} +{"id": "9eaaae38-6838-46c8-92b6-22b26dc697a0", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/9eaaae38-6838-46c8-92b6-22b26dc697a0.png", "markdown_path": "track2_finixphoto_300/mds/9eaaae38-6838-46c8-92b6-22b26dc697a0.md", "json_path": "track2_finixphoto_300/jsons/9eaaae38-6838-46c8-92b6-22b26dc697a0.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 27, "num_tables": 1} +{"id": "a049ddf3-0b97-45c5-9f61-c259ac4a79a3", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a049ddf3-0b97-45c5-9f61-c259ac4a79a3.png", "markdown_path": "track2_finixphoto_300/mds/a049ddf3-0b97-45c5-9f61-c259ac4a79a3.md", "json_path": "track2_finixphoto_300/jsons/a049ddf3-0b97-45c5-9f61-c259ac4a79a3.json", "has_structured_json": true, "image_width": 800, "image_height": 1067, "image_pixels": 853600, "num_layout_elements": 33, "num_tables": 0} +{"id": "a0e52a54-a227-4eff-9260-2eebe87d4efd", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a0e52a54-a227-4eff-9260-2eebe87d4efd.png", "markdown_path": "track2_finixphoto_300/mds/a0e52a54-a227-4eff-9260-2eebe87d4efd.md", "json_path": "track2_finixphoto_300/jsons/a0e52a54-a227-4eff-9260-2eebe87d4efd.json", "has_structured_json": true, "image_width": 2800, "image_height": 2800, "image_pixels": 7840000, "num_layout_elements": 33, "num_tables": 1} +{"id": "a199d735-19e8-4fd4-9670-3ef81465a9ef", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a199d735-19e8-4fd4-9670-3ef81465a9ef.png", "markdown_path": "track2_finixphoto_300/mds/a199d735-19e8-4fd4-9670-3ef81465a9ef.md", "json_path": "track2_finixphoto_300/jsons/a199d735-19e8-4fd4-9670-3ef81465a9ef.json", "has_structured_json": true, "image_width": 720, "image_height": 540, "image_pixels": 388800, "num_layout_elements": 39, "num_tables": 1} +{"id": "a289438e-d9c3-45a7-8f28-59bc700a389b", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a289438e-d9c3-45a7-8f28-59bc700a389b.png", "markdown_path": "track2_finixphoto_300/mds/a289438e-d9c3-45a7-8f28-59bc700a389b.md", "json_path": "track2_finixphoto_300/jsons/a289438e-d9c3-45a7-8f28-59bc700a389b.json", "has_structured_json": true, "image_width": 1728, "image_height": 876, "image_pixels": 1513728, "num_layout_elements": 38, "num_tables": 1} +{"id": "a327f1bd-f5e7-499b-ad70-afb54d5bee4a", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a327f1bd-f5e7-499b-ad70-afb54d5bee4a.png", "markdown_path": "track2_finixphoto_300/mds/a327f1bd-f5e7-499b-ad70-afb54d5bee4a.md", "json_path": "track2_finixphoto_300/jsons/a327f1bd-f5e7-499b-ad70-afb54d5bee4a.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 36, "num_tables": 1} +{"id": "a343fe4b-d20a-4e2b-9379-5f04bfeeeb32", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a343fe4b-d20a-4e2b-9379-5f04bfeeeb32.png", "markdown_path": "track2_finixphoto_300/mds/a343fe4b-d20a-4e2b-9379-5f04bfeeeb32.md", "json_path": "track2_finixphoto_300/jsons/a343fe4b-d20a-4e2b-9379-5f04bfeeeb32.json", "has_structured_json": true, "image_width": 1440, "image_height": 1080, "image_pixels": 1555200, "num_layout_elements": 25, "num_tables": 1} +{"id": "a3a2cfd7-4bcc-4aaa-86cc-20eddf9b975e", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a3a2cfd7-4bcc-4aaa-86cc-20eddf9b975e.png", "markdown_path": "track2_finixphoto_300/mds/a3a2cfd7-4bcc-4aaa-86cc-20eddf9b975e.md", "json_path": "track2_finixphoto_300/jsons/a3a2cfd7-4bcc-4aaa-86cc-20eddf9b975e.json", "has_structured_json": true, "image_width": 2160, "image_height": 2880, "image_pixels": 6220800, "num_layout_elements": 34, "num_tables": 1} +{"id": "a502b738-b8a6-4444-aa0c-728c882b9484", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a502b738-b8a6-4444-aa0c-728c882b9484.png", "markdown_path": "track2_finixphoto_300/mds/a502b738-b8a6-4444-aa0c-728c882b9484.md", "json_path": "track2_finixphoto_300/jsons/a502b738-b8a6-4444-aa0c-728c882b9484.json", "has_structured_json": true, "image_width": 2010, "image_height": 1306, "image_pixels": 2625060, "num_layout_elements": 38, "num_tables": 1} +{"id": "a52b58b6-9a63-41f5-849a-2a34b280f140", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a52b58b6-9a63-41f5-849a-2a34b280f140.png", "markdown_path": "track2_finixphoto_300/mds/a52b58b6-9a63-41f5-849a-2a34b280f140.md", "json_path": "track2_finixphoto_300/jsons/a52b58b6-9a63-41f5-849a-2a34b280f140.json", "has_structured_json": true, "image_width": 800, "image_height": 600, "image_pixels": 480000, "num_layout_elements": 29, "num_tables": 1} +{"id": "a54f9e42-e69c-4f18-b2b2-8a2de57ba391", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a54f9e42-e69c-4f18-b2b2-8a2de57ba391.png", "markdown_path": "track2_finixphoto_300/mds/a54f9e42-e69c-4f18-b2b2-8a2de57ba391.md", "json_path": "track2_finixphoto_300/jsons/a54f9e42-e69c-4f18-b2b2-8a2de57ba391.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 23, "num_tables": 0} +{"id": "a56f4322-0a6a-4045-af34-d01cbebee8fe", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a56f4322-0a6a-4045-af34-d01cbebee8fe.png", "markdown_path": "track2_finixphoto_300/mds/a56f4322-0a6a-4045-af34-d01cbebee8fe.md", "json_path": "track2_finixphoto_300/jsons/a56f4322-0a6a-4045-af34-d01cbebee8fe.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 20, "num_tables": 0} +{"id": "a64375fe-733d-4ae9-938d-87c60c8f6d13", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a64375fe-733d-4ae9-938d-87c60c8f6d13.png", "markdown_path": "track2_finixphoto_300/mds/a64375fe-733d-4ae9-938d-87c60c8f6d13.md", "json_path": "track2_finixphoto_300/jsons/a64375fe-733d-4ae9-938d-87c60c8f6d13.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 15, "num_tables": 0} +{"id": "a6a8c30a-d6d4-50b1-8e21-932ee1e2db90", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a6a8c30a-d6d4-50b1-8e21-932ee1e2db90.png", "markdown_path": "track2_finixphoto_300/mds/a6a8c30a-d6d4-50b1-8e21-932ee1e2db90.md", "json_path": "track2_finixphoto_300/jsons/a6a8c30a-d6d4-50b1-8e21-932ee1e2db90.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 34, "num_tables": 1} +{"id": "a6d5f941-2f07-43f6-befe-087748cf676c", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a6d5f941-2f07-43f6-befe-087748cf676c.png", "markdown_path": "track2_finixphoto_300/mds/a6d5f941-2f07-43f6-befe-087748cf676c.md", "json_path": "track2_finixphoto_300/jsons/a6d5f941-2f07-43f6-befe-087748cf676c.json", "has_structured_json": true, "image_width": 1920, "image_height": 1080, "image_pixels": 2073600, "num_layout_elements": 35, "num_tables": 1} +{"id": "a789b2e7-38a7-4b2b-a941-c8098564c993", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a789b2e7-38a7-4b2b-a941-c8098564c993.png", "markdown_path": "track2_finixphoto_300/mds/a789b2e7-38a7-4b2b-a941-c8098564c993.md", "json_path": "track2_finixphoto_300/jsons/a789b2e7-38a7-4b2b-a941-c8098564c993.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 29, "num_tables": 0} +{"id": "a7c203a4-ffb3-4fae-b82c-7b310bdebc17", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a7c203a4-ffb3-4fae-b82c-7b310bdebc17.png", "markdown_path": "track2_finixphoto_300/mds/a7c203a4-ffb3-4fae-b82c-7b310bdebc17.md", "json_path": "track2_finixphoto_300/jsons/a7c203a4-ffb3-4fae-b82c-7b310bdebc17.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 24, "num_tables": 1} +{"id": "a83ce46a-9057-4335-b2f6-4bc7f5472d08", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a83ce46a-9057-4335-b2f6-4bc7f5472d08.png", "markdown_path": "track2_finixphoto_300/mds/a83ce46a-9057-4335-b2f6-4bc7f5472d08.md", "json_path": "track2_finixphoto_300/jsons/a83ce46a-9057-4335-b2f6-4bc7f5472d08.json", "has_structured_json": true, "image_width": 1656, "image_height": 1080, "image_pixels": 1788480, "num_layout_elements": 34, "num_tables": 1} +{"id": "a890dc40-3503-4a5a-88c6-ff696b75804a", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a890dc40-3503-4a5a-88c6-ff696b75804a.png", "markdown_path": "track2_finixphoto_300/mds/a890dc40-3503-4a5a-88c6-ff696b75804a.md", "json_path": "track2_finixphoto_300/jsons/a890dc40-3503-4a5a-88c6-ff696b75804a.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 11, "num_tables": 0} +{"id": "a89b40e1-5aa9-4614-8fac-e23f5f2564a1", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a89b40e1-5aa9-4614-8fac-e23f5f2564a1.png", "markdown_path": "track2_finixphoto_300/mds/a89b40e1-5aa9-4614-8fac-e23f5f2564a1.md", "json_path": "track2_finixphoto_300/jsons/a89b40e1-5aa9-4614-8fac-e23f5f2564a1.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 34, "num_tables": 1} +{"id": "a958003a-9f5d-45a4-8444-33296182b7bf", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a958003a-9f5d-45a4-8444-33296182b7bf.png", "markdown_path": "track2_finixphoto_300/mds/a958003a-9f5d-45a4-8444-33296182b7bf.md", "json_path": "track2_finixphoto_300/jsons/a958003a-9f5d-45a4-8444-33296182b7bf.json", "has_structured_json": true, "image_width": 580, "image_height": 435, "image_pixels": 252300, "num_layout_elements": 27, "num_tables": 1} +{"id": "a97d17f3-5e14-5ca9-99a1-f5b5c23833c8", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/a97d17f3-5e14-5ca9-99a1-f5b5c23833c8.png", "markdown_path": "track2_finixphoto_300/mds/a97d17f3-5e14-5ca9-99a1-f5b5c23833c8.md", "json_path": "track2_finixphoto_300/jsons/a97d17f3-5e14-5ca9-99a1-f5b5c23833c8.json", "has_structured_json": true, "image_width": 550, "image_height": 412, "image_pixels": 226600, "num_layout_elements": 15, "num_tables": 4} +{"id": "aa5d4197-65c0-5dc8-b8c1-e9033ee3f200", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/aa5d4197-65c0-5dc8-b8c1-e9033ee3f200.png", "markdown_path": "track2_finixphoto_300/mds/aa5d4197-65c0-5dc8-b8c1-e9033ee3f200.md", "json_path": "track2_finixphoto_300/jsons/aa5d4197-65c0-5dc8-b8c1-e9033ee3f200.json", "has_structured_json": true, "image_width": 640, "image_height": 480, "image_pixels": 307200, "num_layout_elements": 27, "num_tables": 1} +{"id": "ab3e76bc-04d9-4fdd-a28c-0f6ad4c68327", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/ab3e76bc-04d9-4fdd-a28c-0f6ad4c68327.png", "markdown_path": "track2_finixphoto_300/mds/ab3e76bc-04d9-4fdd-a28c-0f6ad4c68327.md", "json_path": "track2_finixphoto_300/jsons/ab3e76bc-04d9-4fdd-a28c-0f6ad4c68327.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 24, "num_tables": 0} +{"id": "ac8058cb-962b-4a15-8b76-a8e30252a26b", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/ac8058cb-962b-4a15-8b76-a8e30252a26b.png", "markdown_path": "track2_finixphoto_300/mds/ac8058cb-962b-4a15-8b76-a8e30252a26b.md", "json_path": "track2_finixphoto_300/jsons/ac8058cb-962b-4a15-8b76-a8e30252a26b.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 20, "num_tables": 0} +{"id": "ae2fcff7-08ea-4314-b1e6-590331f7a16d", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/ae2fcff7-08ea-4314-b1e6-590331f7a16d.png", "markdown_path": "track2_finixphoto_300/mds/ae2fcff7-08ea-4314-b1e6-590331f7a16d.md", "json_path": "track2_finixphoto_300/jsons/ae2fcff7-08ea-4314-b1e6-590331f7a16d.json", "has_structured_json": true, "image_width": 1440, "image_height": 1080, "image_pixels": 1555200, "num_layout_elements": 33, "num_tables": 1} +{"id": "ae6f1c69-f89f-5ba3-b79f-c73ff934bd3c", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/ae6f1c69-f89f-5ba3-b79f-c73ff934bd3c.png", "markdown_path": "track2_finixphoto_300/mds/ae6f1c69-f89f-5ba3-b79f-c73ff934bd3c.md", "json_path": "track2_finixphoto_300/jsons/ae6f1c69-f89f-5ba3-b79f-c73ff934bd3c.json", "has_structured_json": true, "image_width": 700, "image_height": 525, "image_pixels": 367500, "num_layout_elements": 38, "num_tables": 1} +{"id": "af52d822-cb78-41b1-9b4d-b0cf35027eff", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/af52d822-cb78-41b1-9b4d-b0cf35027eff.png", "markdown_path": "track2_finixphoto_300/mds/af52d822-cb78-41b1-9b4d-b0cf35027eff.md", "json_path": "track2_finixphoto_300/jsons/af52d822-cb78-41b1-9b4d-b0cf35027eff.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 21, "num_tables": 0} +{"id": "afc51a50-53c9-567c-9b4c-423c3f9e3f19", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/afc51a50-53c9-567c-9b4c-423c3f9e3f19.png", "markdown_path": "track2_finixphoto_300/mds/afc51a50-53c9-567c-9b4c-423c3f9e3f19.md", "json_path": "track2_finixphoto_300/jsons/afc51a50-53c9-567c-9b4c-423c3f9e3f19.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 15, "num_tables": 2} +{"id": "b0905ae9-15be-48d5-9058-7df01bf0d4d9", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b0905ae9-15be-48d5-9058-7df01bf0d4d9.png", "markdown_path": "track2_finixphoto_300/mds/b0905ae9-15be-48d5-9058-7df01bf0d4d9.md", "json_path": "track2_finixphoto_300/jsons/b0905ae9-15be-48d5-9058-7df01bf0d4d9.json", "has_structured_json": true, "image_width": 1080, "image_height": 810, "image_pixels": 874800, "num_layout_elements": 36, "num_tables": 1} +{"id": "b0c1bca4-5abf-4ea6-a25d-aa42e0683d66", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b0c1bca4-5abf-4ea6-a25d-aa42e0683d66.png", "markdown_path": "track2_finixphoto_300/mds/b0c1bca4-5abf-4ea6-a25d-aa42e0683d66.md", "json_path": "track2_finixphoto_300/jsons/b0c1bca4-5abf-4ea6-a25d-aa42e0683d66.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 31, "num_tables": 1} +{"id": "b2937add-b6c7-42f3-af4a-023418c53b8c", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b2937add-b6c7-42f3-af4a-023418c53b8c.png", "markdown_path": "track2_finixphoto_300/mds/b2937add-b6c7-42f3-af4a-023418c53b8c.md", "json_path": "track2_finixphoto_300/jsons/b2937add-b6c7-42f3-af4a-023418c53b8c.json", "has_structured_json": true, "image_width": 1296, "image_height": 786, "image_pixels": 1018656, "num_layout_elements": 29, "num_tables": 1} +{"id": "b2b2a904-6d60-40b6-8992-0e8e737b5637", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b2b2a904-6d60-40b6-8992-0e8e737b5637.png", "markdown_path": "track2_finixphoto_300/mds/b2b2a904-6d60-40b6-8992-0e8e737b5637.md", "json_path": "track2_finixphoto_300/jsons/b2b2a904-6d60-40b6-8992-0e8e737b5637.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 27, "num_tables": 0} +{"id": "b2b36b25-0b11-49f1-96ea-e48864f2fb9d", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b2b36b25-0b11-49f1-96ea-e48864f2fb9d.png", "markdown_path": "track2_finixphoto_300/mds/b2b36b25-0b11-49f1-96ea-e48864f2fb9d.md", "json_path": "track2_finixphoto_300/jsons/b2b36b25-0b11-49f1-96ea-e48864f2fb9d.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 41, "num_tables": 1} +{"id": "b2f6b259-de1c-4316-9bf4-22f90021bb56", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b2f6b259-de1c-4316-9bf4-22f90021bb56.png", "markdown_path": "track2_finixphoto_300/mds/b2f6b259-de1c-4316-9bf4-22f90021bb56.md", "json_path": "track2_finixphoto_300/jsons/b2f6b259-de1c-4316-9bf4-22f90021bb56.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 24, "num_tables": 1} +{"id": "b36b5946-8824-48d6-b928-26d97a04abd5", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b36b5946-8824-48d6-b928-26d97a04abd5.png", "markdown_path": "track2_finixphoto_300/mds/b36b5946-8824-48d6-b928-26d97a04abd5.md", "json_path": "track2_finixphoto_300/jsons/b36b5946-8824-48d6-b928-26d97a04abd5.json", "has_structured_json": true, "image_width": 3888, "image_height": 5184, "image_pixels": 20155392, "num_layout_elements": 23, "num_tables": 1} +{"id": "b405ef71-235c-4c92-a27f-49668ff724c9", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b405ef71-235c-4c92-a27f-49668ff724c9.png", "markdown_path": "track2_finixphoto_300/mds/b405ef71-235c-4c92-a27f-49668ff724c9.md", "json_path": "track2_finixphoto_300/jsons/b405ef71-235c-4c92-a27f-49668ff724c9.json", "has_structured_json": true, "image_width": 2041, "image_height": 1372, "image_pixels": 2800252, "num_layout_elements": 36, "num_tables": 1} +{"id": "b594612f-f132-4907-81e9-3cfad6a9dce2", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b594612f-f132-4907-81e9-3cfad6a9dce2.png", "markdown_path": "track2_finixphoto_300/mds/b594612f-f132-4907-81e9-3cfad6a9dce2.md", "json_path": "track2_finixphoto_300/jsons/b594612f-f132-4907-81e9-3cfad6a9dce2.json", "has_structured_json": true, "image_width": 677, "image_height": 558, "image_pixels": 377766, "num_layout_elements": 24, "num_tables": 0} +{"id": "b5c2e54f-1d9c-43a3-a9d2-b3fccbb276ba", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b5c2e54f-1d9c-43a3-a9d2-b3fccbb276ba.png", "markdown_path": "track2_finixphoto_300/mds/b5c2e54f-1d9c-43a3-a9d2-b3fccbb276ba.md", "json_path": "track2_finixphoto_300/jsons/b5c2e54f-1d9c-43a3-a9d2-b3fccbb276ba.json", "has_structured_json": true, "image_width": 1080, "image_height": 810, "image_pixels": 874800, "num_layout_elements": 36, "num_tables": 1} +{"id": "b66102cd-0ebd-416c-8f1c-90e52537fe07", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b66102cd-0ebd-416c-8f1c-90e52537fe07.png", "markdown_path": "track2_finixphoto_300/mds/b66102cd-0ebd-416c-8f1c-90e52537fe07.md", "json_path": "track2_finixphoto_300/jsons/b66102cd-0ebd-416c-8f1c-90e52537fe07.json", "has_structured_json": true, "image_width": 1191, "image_height": 1683, "image_pixels": 2004453, "num_layout_elements": 20, "num_tables": 0} +{"id": "b6d7f842-2505-445d-816c-f3b08e5a2a89", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b6d7f842-2505-445d-816c-f3b08e5a2a89.png", "markdown_path": "track2_finixphoto_300/mds/b6d7f842-2505-445d-816c-f3b08e5a2a89.md", "json_path": "track2_finixphoto_300/jsons/b6d7f842-2505-445d-816c-f3b08e5a2a89.json", "has_structured_json": true, "image_width": 1267, "image_height": 772, "image_pixels": 978124, "num_layout_elements": 38, "num_tables": 1} +{"id": "b6fb7d57-2948-43a9-b7e0-eac8f4a95fa4", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b6fb7d57-2948-43a9-b7e0-eac8f4a95fa4.png", "markdown_path": "track2_finixphoto_300/mds/b6fb7d57-2948-43a9-b7e0-eac8f4a95fa4.md", "json_path": "track2_finixphoto_300/jsons/b6fb7d57-2948-43a9-b7e0-eac8f4a95fa4.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 22, "num_tables": 0} +{"id": "b702361a-19a4-47d7-b3f1-841b74698959", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b702361a-19a4-47d7-b3f1-841b74698959.png", "markdown_path": "track2_finixphoto_300/mds/b702361a-19a4-47d7-b3f1-841b74698959.md", "json_path": "track2_finixphoto_300/jsons/b702361a-19a4-47d7-b3f1-841b74698959.json", "has_structured_json": true, "image_width": 2048, "image_height": 1536, "image_pixels": 3145728, "num_layout_elements": 33, "num_tables": 1} +{"id": "b724fb4c-1afe-4d3b-9b1f-fc507d703cf9", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b724fb4c-1afe-4d3b-9b1f-fc507d703cf9.png", "markdown_path": "track2_finixphoto_300/mds/b724fb4c-1afe-4d3b-9b1f-fc507d703cf9.md", "json_path": "track2_finixphoto_300/jsons/b724fb4c-1afe-4d3b-9b1f-fc507d703cf9.json", "has_structured_json": true, "image_width": 1440, "image_height": 1080, "image_pixels": 1555200, "num_layout_elements": 34, "num_tables": 1} +{"id": "b840f75b-c4e0-4fe3-9376-ed768d3cc560", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b840f75b-c4e0-4fe3-9376-ed768d3cc560.png", "markdown_path": "track2_finixphoto_300/mds/b840f75b-c4e0-4fe3-9376-ed768d3cc560.md", "json_path": "track2_finixphoto_300/jsons/b840f75b-c4e0-4fe3-9376-ed768d3cc560.json", "has_structured_json": true, "image_width": 1600, "image_height": 1200, "image_pixels": 1920000, "num_layout_elements": 35, "num_tables": 1} +{"id": "b841a459-897c-4c86-a6eb-07a44f8afa82", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b841a459-897c-4c86-a6eb-07a44f8afa82.png", "markdown_path": "track2_finixphoto_300/mds/b841a459-897c-4c86-a6eb-07a44f8afa82.md", "json_path": "track2_finixphoto_300/jsons/b841a459-897c-4c86-a6eb-07a44f8afa82.json", "has_structured_json": true, "image_width": 800, "image_height": 516, "image_pixels": 412800, "num_layout_elements": 37, "num_tables": 1} +{"id": "b8b60f34-6a14-54bf-9bdd-1b4b4de54041", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b8b60f34-6a14-54bf-9bdd-1b4b4de54041.png", "markdown_path": "track2_finixphoto_300/mds/b8b60f34-6a14-54bf-9bdd-1b4b4de54041.md", "json_path": "track2_finixphoto_300/jsons/b8b60f34-6a14-54bf-9bdd-1b4b4de54041.json", "has_structured_json": true, "image_width": 640, "image_height": 480, "image_pixels": 307200, "num_layout_elements": 33, "num_tables": 1} +{"id": "b8b74511-6221-4554-b981-48eec7fbe2ef", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b8b74511-6221-4554-b981-48eec7fbe2ef.png", "markdown_path": "track2_finixphoto_300/mds/b8b74511-6221-4554-b981-48eec7fbe2ef.md", "json_path": "track2_finixphoto_300/jsons/b8b74511-6221-4554-b981-48eec7fbe2ef.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 18, "num_tables": 0} +{"id": "b99d4621-1285-4ec1-8b94-ea967fa237a5", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/b99d4621-1285-4ec1-8b94-ea967fa237a5.png", "markdown_path": "track2_finixphoto_300/mds/b99d4621-1285-4ec1-8b94-ea967fa237a5.md", "json_path": "track2_finixphoto_300/jsons/b99d4621-1285-4ec1-8b94-ea967fa237a5.json", "has_structured_json": true, "image_width": 500, "image_height": 375, "image_pixels": 187500, "num_layout_elements": 20, "num_tables": 1} +{"id": "bb4c46ec-ddf5-4d94-a745-08820d1a7804", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/bb4c46ec-ddf5-4d94-a745-08820d1a7804.png", "markdown_path": "track2_finixphoto_300/mds/bb4c46ec-ddf5-4d94-a745-08820d1a7804.md", "json_path": "track2_finixphoto_300/jsons/bb4c46ec-ddf5-4d94-a745-08820d1a7804.json", "has_structured_json": true, "image_width": 720, "image_height": 540, "image_pixels": 388800, "num_layout_elements": 25, "num_tables": 1} +{"id": "bbab31f2-2b3d-4cc1-b888-b4223cbb9665", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/bbab31f2-2b3d-4cc1-b888-b4223cbb9665.png", "markdown_path": "track2_finixphoto_300/mds/bbab31f2-2b3d-4cc1-b888-b4223cbb9665.md", "json_path": "track2_finixphoto_300/jsons/bbab31f2-2b3d-4cc1-b888-b4223cbb9665.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 37, "num_tables": 1} +{"id": "bbeb708a-cba5-59e5-84cd-c6c01c6f9307", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/bbeb708a-cba5-59e5-84cd-c6c01c6f9307.png", "markdown_path": "track2_finixphoto_300/mds/bbeb708a-cba5-59e5-84cd-c6c01c6f9307.md", "json_path": "track2_finixphoto_300/jsons/bbeb708a-cba5-59e5-84cd-c6c01c6f9307.json", "has_structured_json": true, "image_width": 700, "image_height": 382, "image_pixels": 267400, "num_layout_elements": 16, "num_tables": 1} +{"id": "bc03ea0d-7f8a-4a53-8219-5c55731df85e", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/bc03ea0d-7f8a-4a53-8219-5c55731df85e.png", "markdown_path": "track2_finixphoto_300/mds/bc03ea0d-7f8a-4a53-8219-5c55731df85e.md", "json_path": "track2_finixphoto_300/jsons/bc03ea0d-7f8a-4a53-8219-5c55731df85e.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 27, "num_tables": 0} +{"id": "bc343d0b-a076-43df-834b-c371afa4550d", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/bc343d0b-a076-43df-834b-c371afa4550d.png", "markdown_path": "track2_finixphoto_300/mds/bc343d0b-a076-43df-834b-c371afa4550d.md", "json_path": "track2_finixphoto_300/jsons/bc343d0b-a076-43df-834b-c371afa4550d.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 17, "num_tables": 0} +{"id": "bd2d580d-b427-47dc-9e1d-b9a05d2d82ad", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/bd2d580d-b427-47dc-9e1d-b9a05d2d82ad.png", "markdown_path": "track2_finixphoto_300/mds/bd2d580d-b427-47dc-9e1d-b9a05d2d82ad.md", "json_path": "track2_finixphoto_300/jsons/bd2d580d-b427-47dc-9e1d-b9a05d2d82ad.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 12, "num_tables": 1} +{"id": "bd4aaf94-60ed-5471-96e3-3d12ffd76f77", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/bd4aaf94-60ed-5471-96e3-3d12ffd76f77.png", "markdown_path": "track2_finixphoto_300/mds/bd4aaf94-60ed-5471-96e3-3d12ffd76f77.md", "json_path": "track2_finixphoto_300/jsons/bd4aaf94-60ed-5471-96e3-3d12ffd76f77.json", "has_structured_json": true, "image_width": 800, "image_height": 450, "image_pixels": 360000, "num_layout_elements": 36, "num_tables": 1} +{"id": "be3c1433-f7c6-4822-acfd-43cc074f7154", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/be3c1433-f7c6-4822-acfd-43cc074f7154.png", "markdown_path": "track2_finixphoto_300/mds/be3c1433-f7c6-4822-acfd-43cc074f7154.md", "json_path": "track2_finixphoto_300/jsons/be3c1433-f7c6-4822-acfd-43cc074f7154.json", "has_structured_json": true, "image_width": 750, "image_height": 1000, "image_pixels": 750000, "num_layout_elements": 13, "num_tables": 1} +{"id": "c009102f-5811-4177-ab52-46658fe36eaf", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/c009102f-5811-4177-ab52-46658fe36eaf.png", "markdown_path": "track2_finixphoto_300/mds/c009102f-5811-4177-ab52-46658fe36eaf.md", "json_path": "track2_finixphoto_300/jsons/c009102f-5811-4177-ab52-46658fe36eaf.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 23, "num_tables": 0} +{"id": "c0345773-e1c5-4565-b60f-af7774947240", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/c0345773-e1c5-4565-b60f-af7774947240.png", "markdown_path": "track2_finixphoto_300/mds/c0345773-e1c5-4565-b60f-af7774947240.md", "json_path": "track2_finixphoto_300/jsons/c0345773-e1c5-4565-b60f-af7774947240.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 30, "num_tables": 1} +{"id": "c0584d7c-ebb3-4e16-86f7-e5811e73a7b2", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/c0584d7c-ebb3-4e16-86f7-e5811e73a7b2.png", "markdown_path": "track2_finixphoto_300/mds/c0584d7c-ebb3-4e16-86f7-e5811e73a7b2.md", "json_path": "track2_finixphoto_300/jsons/c0584d7c-ebb3-4e16-86f7-e5811e73a7b2.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 22, "num_tables": 0} +{"id": "c389d8e5-68be-4648-8ece-3c5931488369", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/c389d8e5-68be-4648-8ece-3c5931488369.png", "markdown_path": "track2_finixphoto_300/mds/c389d8e5-68be-4648-8ece-3c5931488369.md", "json_path": "track2_finixphoto_300/jsons/c389d8e5-68be-4648-8ece-3c5931488369.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 25, "num_tables": 1} +{"id": "c46fdbee-17e1-4a96-8696-94160ffddede", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/c46fdbee-17e1-4a96-8696-94160ffddede.png", "markdown_path": "track2_finixphoto_300/mds/c46fdbee-17e1-4a96-8696-94160ffddede.md", "json_path": "track2_finixphoto_300/jsons/c46fdbee-17e1-4a96-8696-94160ffddede.json", "has_structured_json": true, "image_width": 2100, "image_height": 1505, "image_pixels": 3160500, "num_layout_elements": 45, "num_tables": 1} +{"id": "c4d0f17e-fb73-4d14-bbd2-69737eb2c717", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/c4d0f17e-fb73-4d14-bbd2-69737eb2c717.png", "markdown_path": "track2_finixphoto_300/mds/c4d0f17e-fb73-4d14-bbd2-69737eb2c717.md", "json_path": "track2_finixphoto_300/jsons/c4d0f17e-fb73-4d14-bbd2-69737eb2c717.json", "has_structured_json": true, "image_width": 4032, "image_height": 3024, "image_pixels": 12192768, "num_layout_elements": 22, "num_tables": 1} +{"id": "c75061ea-646b-4579-aeff-17634bb65fe7", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/c75061ea-646b-4579-aeff-17634bb65fe7.png", "markdown_path": "track2_finixphoto_300/mds/c75061ea-646b-4579-aeff-17634bb65fe7.md", "json_path": "track2_finixphoto_300/jsons/c75061ea-646b-4579-aeff-17634bb65fe7.json", "has_structured_json": true, "image_width": 1280, "image_height": 720, "image_pixels": 921600, "num_layout_elements": 35, "num_tables": 1} +{"id": "c8f19572-82ff-530a-9c5f-2265672464e2", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/c8f19572-82ff-530a-9c5f-2265672464e2.png", "markdown_path": "track2_finixphoto_300/mds/c8f19572-82ff-530a-9c5f-2265672464e2.md", "json_path": "track2_finixphoto_300/jsons/c8f19572-82ff-530a-9c5f-2265672464e2.json", "has_structured_json": true, "image_width": 1333, "image_height": 1000, "image_pixels": 1333000, "num_layout_elements": 33, "num_tables": 1} +{"id": "c9021203-8faf-4177-a9fd-13be5d4d3a87", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/c9021203-8faf-4177-a9fd-13be5d4d3a87.png", "markdown_path": "track2_finixphoto_300/mds/c9021203-8faf-4177-a9fd-13be5d4d3a87.md", "json_path": "track2_finixphoto_300/jsons/c9021203-8faf-4177-a9fd-13be5d4d3a87.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 16, "num_tables": 0} +{"id": "ca2113b7-8e4f-4526-84cb-aada2c8c8c04", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/ca2113b7-8e4f-4526-84cb-aada2c8c8c04.png", "markdown_path": "track2_finixphoto_300/mds/ca2113b7-8e4f-4526-84cb-aada2c8c8c04.md", "json_path": "track2_finixphoto_300/jsons/ca2113b7-8e4f-4526-84cb-aada2c8c8c04.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 18, "num_tables": 0} +{"id": "ca5fefe1-3562-491e-ba1d-c18b0e22e0c6", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/ca5fefe1-3562-491e-ba1d-c18b0e22e0c6.png", "markdown_path": "track2_finixphoto_300/mds/ca5fefe1-3562-491e-ba1d-c18b0e22e0c6.md", "json_path": "track2_finixphoto_300/jsons/ca5fefe1-3562-491e-ba1d-c18b0e22e0c6.json", "has_structured_json": true, "image_width": 720, "image_height": 540, "image_pixels": 388800, "num_layout_elements": 26, "num_tables": 1} +{"id": "cc603729-7c2c-5929-acd7-e22cceb0f0b3", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/cc603729-7c2c-5929-acd7-e22cceb0f0b3.png", "markdown_path": "track2_finixphoto_300/mds/cc603729-7c2c-5929-acd7-e22cceb0f0b3.md", "json_path": "track2_finixphoto_300/jsons/cc603729-7c2c-5929-acd7-e22cceb0f0b3.json", "has_structured_json": true, "image_width": 2093, "image_height": 1069, "image_pixels": 2237417, "num_layout_elements": 45, "num_tables": 1} +{"id": "cc8be030-6b64-459a-b3bd-25e6e3cd462e", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/cc8be030-6b64-459a-b3bd-25e6e3cd462e.png", "markdown_path": "track2_finixphoto_300/mds/cc8be030-6b64-459a-b3bd-25e6e3cd462e.md", "json_path": "track2_finixphoto_300/jsons/cc8be030-6b64-459a-b3bd-25e6e3cd462e.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 29, "num_tables": 0} +{"id": "ccafd0c8-006c-4179-9c3c-41bcb8e0f2a8", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/ccafd0c8-006c-4179-9c3c-41bcb8e0f2a8.png", "markdown_path": "track2_finixphoto_300/mds/ccafd0c8-006c-4179-9c3c-41bcb8e0f2a8.md", "json_path": "track2_finixphoto_300/jsons/ccafd0c8-006c-4179-9c3c-41bcb8e0f2a8.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 24, "num_tables": 0} +{"id": "cd0bb6ff-76db-4262-acb9-cc0995fc5357", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/cd0bb6ff-76db-4262-acb9-cc0995fc5357.png", "markdown_path": "track2_finixphoto_300/mds/cd0bb6ff-76db-4262-acb9-cc0995fc5357.md", "json_path": "track2_finixphoto_300/jsons/cd0bb6ff-76db-4262-acb9-cc0995fc5357.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 22, "num_tables": 0} +{"id": "cd776d6d-7895-4600-89b8-50c4e70a3235", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/cd776d6d-7895-4600-89b8-50c4e70a3235.png", "markdown_path": "track2_finixphoto_300/mds/cd776d6d-7895-4600-89b8-50c4e70a3235.md", "json_path": "track2_finixphoto_300/jsons/cd776d6d-7895-4600-89b8-50c4e70a3235.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 30, "num_tables": 1} +{"id": "cdcbf194-dad2-42b1-b191-2d6d60c787f1", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/cdcbf194-dad2-42b1-b191-2d6d60c787f1.png", "markdown_path": "track2_finixphoto_300/mds/cdcbf194-dad2-42b1-b191-2d6d60c787f1.md", "json_path": "track2_finixphoto_300/jsons/cdcbf194-dad2-42b1-b191-2d6d60c787f1.json", "has_structured_json": true, "image_width": 2100, "image_height": 1575, "image_pixels": 3307500, "num_layout_elements": 40, "num_tables": 1} +{"id": "cfd8a89d-fabf-407c-8741-4df7d784ab42", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/cfd8a89d-fabf-407c-8741-4df7d784ab42.png", "markdown_path": "track2_finixphoto_300/mds/cfd8a89d-fabf-407c-8741-4df7d784ab42.md", "json_path": "track2_finixphoto_300/jsons/cfd8a89d-fabf-407c-8741-4df7d784ab42.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 23, "num_tables": 0} +{"id": "d0a8632d-7786-4870-b531-5fb42f2a3752", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/d0a8632d-7786-4870-b531-5fb42f2a3752.png", "markdown_path": "track2_finixphoto_300/mds/d0a8632d-7786-4870-b531-5fb42f2a3752.md", "json_path": "track2_finixphoto_300/jsons/d0a8632d-7786-4870-b531-5fb42f2a3752.json", "has_structured_json": true, "image_width": 2076, "image_height": 2996, "image_pixels": 6219696, "num_layout_elements": 18, "num_tables": 0} +{"id": "d218213e-0700-4272-8b89-eb7c934d51fa", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/d218213e-0700-4272-8b89-eb7c934d51fa.png", "markdown_path": "track2_finixphoto_300/mds/d218213e-0700-4272-8b89-eb7c934d51fa.md", "json_path": "track2_finixphoto_300/jsons/d218213e-0700-4272-8b89-eb7c934d51fa.json", "has_structured_json": true, "image_width": 1030, "image_height": 588, "image_pixels": 605640, "num_layout_elements": 35, "num_tables": 1} +{"id": "d29d28e9-498a-517b-af3c-73b4910e0338", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/d29d28e9-498a-517b-af3c-73b4910e0338.png", "markdown_path": "track2_finixphoto_300/mds/d29d28e9-498a-517b-af3c-73b4910e0338.md", "json_path": "track2_finixphoto_300/jsons/d29d28e9-498a-517b-af3c-73b4910e0338.json", "has_structured_json": true, "image_width": 640, "image_height": 423, "image_pixels": 270720, "num_layout_elements": 19, "num_tables": 2} +{"id": "d2e93ed0-3e26-5d9f-9f12-04877e2f0cb3", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/d2e93ed0-3e26-5d9f-9f12-04877e2f0cb3.png", "markdown_path": "track2_finixphoto_300/mds/d2e93ed0-3e26-5d9f-9f12-04877e2f0cb3.md", "json_path": "track2_finixphoto_300/jsons/d2e93ed0-3e26-5d9f-9f12-04877e2f0cb3.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 39, "num_tables": 1} +{"id": "d3606363-3f50-4348-aa6d-bd48ce85ba4c", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/d3606363-3f50-4348-aa6d-bd48ce85ba4c.png", "markdown_path": "track2_finixphoto_300/mds/d3606363-3f50-4348-aa6d-bd48ce85ba4c.md", "json_path": "track2_finixphoto_300/jsons/d3606363-3f50-4348-aa6d-bd48ce85ba4c.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 31, "num_tables": 0} +{"id": "d657a6cb-5b76-4b1a-99f6-e74fd3e2bb26", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/d657a6cb-5b76-4b1a-99f6-e74fd3e2bb26.png", "markdown_path": "track2_finixphoto_300/mds/d657a6cb-5b76-4b1a-99f6-e74fd3e2bb26.md", "json_path": "track2_finixphoto_300/jsons/d657a6cb-5b76-4b1a-99f6-e74fd3e2bb26.json", "has_structured_json": true, "image_width": 1181, "image_height": 720, "image_pixels": 850320, "num_layout_elements": 49, "num_tables": 1} +{"id": "d7c8f8db-6386-512e-a696-02e94d855933", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/d7c8f8db-6386-512e-a696-02e94d855933.png", "markdown_path": "track2_finixphoto_300/mds/d7c8f8db-6386-512e-a696-02e94d855933.md", "json_path": "track2_finixphoto_300/jsons/d7c8f8db-6386-512e-a696-02e94d855933.json", "has_structured_json": true, "image_width": 667, "image_height": 500, "image_pixels": 333500, "num_layout_elements": 21, "num_tables": 1} +{"id": "d8236a91-32dd-5023-82b8-15a6cb5ea747", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/d8236a91-32dd-5023-82b8-15a6cb5ea747.png", "markdown_path": "track2_finixphoto_300/mds/d8236a91-32dd-5023-82b8-15a6cb5ea747.md", "json_path": "track2_finixphoto_300/jsons/d8236a91-32dd-5023-82b8-15a6cb5ea747.json", "has_structured_json": true, "image_width": 1706, "image_height": 1204, "image_pixels": 2054024, "num_layout_elements": 34, "num_tables": 1} +{"id": "dbb948cb-c0c5-4a30-9a77-87f503c885dd", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/dbb948cb-c0c5-4a30-9a77-87f503c885dd.png", "markdown_path": "track2_finixphoto_300/mds/dbb948cb-c0c5-4a30-9a77-87f503c885dd.md", "json_path": "track2_finixphoto_300/jsons/dbb948cb-c0c5-4a30-9a77-87f503c885dd.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 27, "num_tables": 0} +{"id": "dbd4b6e3-94f6-558a-906a-a068a3fdccab", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/dbd4b6e3-94f6-558a-906a-a068a3fdccab.png", "markdown_path": "track2_finixphoto_300/mds/dbd4b6e3-94f6-558a-906a-a068a3fdccab.md", "json_path": "track2_finixphoto_300/jsons/dbd4b6e3-94f6-558a-906a-a068a3fdccab.json", "has_structured_json": true, "image_width": 650, "image_height": 353, "image_pixels": 229450, "num_layout_elements": 20, "num_tables": 1} +{"id": "df239031-15e3-4fc3-9fdd-76b56159cf94", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/df239031-15e3-4fc3-9fdd-76b56159cf94.png", "markdown_path": "track2_finixphoto_300/mds/df239031-15e3-4fc3-9fdd-76b56159cf94.md", "json_path": "track2_finixphoto_300/jsons/df239031-15e3-4fc3-9fdd-76b56159cf94.json", "has_structured_json": true, "image_width": 710, "image_height": 957, "image_pixels": 679470, "num_layout_elements": 27, "num_tables": 0} +{"id": "e249fec7-a916-4d65-b085-c6b6119dbb37", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/e249fec7-a916-4d65-b085-c6b6119dbb37.png", "markdown_path": "track2_finixphoto_300/mds/e249fec7-a916-4d65-b085-c6b6119dbb37.md", "json_path": "track2_finixphoto_300/jsons/e249fec7-a916-4d65-b085-c6b6119dbb37.json", "has_structured_json": true, "image_width": 2100, "image_height": 1413, "image_pixels": 2967300, "num_layout_elements": 28, "num_tables": 1} +{"id": "e27c7cb5-dff3-4daa-8f66-e673b6153125", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/e27c7cb5-dff3-4daa-8f66-e673b6153125.png", "markdown_path": "track2_finixphoto_300/mds/e27c7cb5-dff3-4daa-8f66-e673b6153125.md", "json_path": "track2_finixphoto_300/jsons/e27c7cb5-dff3-4daa-8f66-e673b6153125.json", "has_structured_json": true, "image_width": 352, "image_height": 463, "image_pixels": 162976, "num_layout_elements": 30, "num_tables": 1} +{"id": "e2b1c1f5-fbde-4221-a98f-c974e7b1b959", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/e2b1c1f5-fbde-4221-a98f-c974e7b1b959.png", "markdown_path": "track2_finixphoto_300/mds/e2b1c1f5-fbde-4221-a98f-c974e7b1b959.md", "json_path": "track2_finixphoto_300/jsons/e2b1c1f5-fbde-4221-a98f-c974e7b1b959.json", "has_structured_json": true, "image_width": 640, "image_height": 444, "image_pixels": 284160, "num_layout_elements": 31, "num_tables": 1} +{"id": "e3dad76b-c5d7-422c-87bb-217106cbc42d", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/e3dad76b-c5d7-422c-87bb-217106cbc42d.png", "markdown_path": "track2_finixphoto_300/mds/e3dad76b-c5d7-422c-87bb-217106cbc42d.md", "json_path": "track2_finixphoto_300/jsons/e3dad76b-c5d7-422c-87bb-217106cbc42d.json", "has_structured_json": true, "image_width": 2100, "image_height": 1575, "image_pixels": 3307500, "num_layout_elements": 57, "num_tables": 1} +{"id": "e3db188d-bc46-4429-b585-001000fccd46", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/e3db188d-bc46-4429-b585-001000fccd46.png", "markdown_path": "track2_finixphoto_300/mds/e3db188d-bc46-4429-b585-001000fccd46.md", "json_path": "track2_finixphoto_300/jsons/e3db188d-bc46-4429-b585-001000fccd46.json", "has_structured_json": true, "image_width": 3296, "image_height": 2472, "image_pixels": 8147712, "num_layout_elements": 32, "num_tables": 1} +{"id": "e44f6dbe-cc6b-41ae-b0ce-c1b19e287ecd", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/e44f6dbe-cc6b-41ae-b0ce-c1b19e287ecd.png", "markdown_path": "track2_finixphoto_300/mds/e44f6dbe-cc6b-41ae-b0ce-c1b19e287ecd.md", "json_path": "track2_finixphoto_300/jsons/e44f6dbe-cc6b-41ae-b0ce-c1b19e287ecd.json", "has_structured_json": true, "image_width": 828, "image_height": 1104, "image_pixels": 914112, "num_layout_elements": 28, "num_tables": 0} +{"id": "e4f4dcaa-5ec5-4088-aca1-eae77c9fac04", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/e4f4dcaa-5ec5-4088-aca1-eae77c9fac04.png", "markdown_path": "track2_finixphoto_300/mds/e4f4dcaa-5ec5-4088-aca1-eae77c9fac04.md", "json_path": "track2_finixphoto_300/jsons/e4f4dcaa-5ec5-4088-aca1-eae77c9fac04.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 28, "num_tables": 1} +{"id": "e603f8e2-9fc6-46d2-879f-800b3d728175", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/e603f8e2-9fc6-46d2-879f-800b3d728175.png", "markdown_path": "track2_finixphoto_300/mds/e603f8e2-9fc6-46d2-879f-800b3d728175.md", "json_path": "track2_finixphoto_300/jsons/e603f8e2-9fc6-46d2-879f-800b3d728175.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 30, "num_tables": 0} +{"id": "e72315d8-700b-4f4e-b9b1-8632ac872562", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/e72315d8-700b-4f4e-b9b1-8632ac872562.png", "markdown_path": "track2_finixphoto_300/mds/e72315d8-700b-4f4e-b9b1-8632ac872562.md", "json_path": "track2_finixphoto_300/jsons/e72315d8-700b-4f4e-b9b1-8632ac872562.json", "has_structured_json": true, "image_width": 2016, "image_height": 937, "image_pixels": 1888992, "num_layout_elements": 32, "num_tables": 1} +{"id": "e7630e0a-33d2-4fb8-a227-69a6eeaafbbd", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/e7630e0a-33d2-4fb8-a227-69a6eeaafbbd.png", "markdown_path": "track2_finixphoto_300/mds/e7630e0a-33d2-4fb8-a227-69a6eeaafbbd.md", "json_path": "track2_finixphoto_300/jsons/e7630e0a-33d2-4fb8-a227-69a6eeaafbbd.json", "has_structured_json": true, "image_width": 1080, "image_height": 633, "image_pixels": 683640, "num_layout_elements": 35, "num_tables": 1} +{"id": "e9b1b592-be35-4baf-8d6b-c07fc2e8f468", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/e9b1b592-be35-4baf-8d6b-c07fc2e8f468.png", "markdown_path": "track2_finixphoto_300/mds/e9b1b592-be35-4baf-8d6b-c07fc2e8f468.md", "json_path": "track2_finixphoto_300/jsons/e9b1b592-be35-4baf-8d6b-c07fc2e8f468.json", "has_structured_json": true, "image_width": 550, "image_height": 734, "image_pixels": 403700, "num_layout_elements": 23, "num_tables": 0} +{"id": "eb76a228-9072-4419-8265-5c59880cc54c", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/eb76a228-9072-4419-8265-5c59880cc54c.png", "markdown_path": "track2_finixphoto_300/mds/eb76a228-9072-4419-8265-5c59880cc54c.md", "json_path": "track2_finixphoto_300/jsons/eb76a228-9072-4419-8265-5c59880cc54c.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 37, "num_tables": 1} +{"id": "eb79328f-032d-4d7b-b099-0caabf832e3e", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/eb79328f-032d-4d7b-b099-0caabf832e3e.png", "markdown_path": "track2_finixphoto_300/mds/eb79328f-032d-4d7b-b099-0caabf832e3e.md", "json_path": "track2_finixphoto_300/jsons/eb79328f-032d-4d7b-b099-0caabf832e3e.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 22, "num_tables": 0} +{"id": "ec0ed4ec-0a90-4430-af65-3dc5bb5f80da", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/ec0ed4ec-0a90-4430-af65-3dc5bb5f80da.png", "markdown_path": "track2_finixphoto_300/mds/ec0ed4ec-0a90-4430-af65-3dc5bb5f80da.md", "json_path": "track2_finixphoto_300/jsons/ec0ed4ec-0a90-4430-af65-3dc5bb5f80da.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 38, "num_tables": 1} +{"id": "ec532dd2-4ed7-432c-80e5-66ad94da319c", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/ec532dd2-4ed7-432c-80e5-66ad94da319c.png", "markdown_path": "track2_finixphoto_300/mds/ec532dd2-4ed7-432c-80e5-66ad94da319c.md", "json_path": "track2_finixphoto_300/jsons/ec532dd2-4ed7-432c-80e5-66ad94da319c.json", "has_structured_json": true, "image_width": 2800, "image_height": 2800, "image_pixels": 7840000, "num_layout_elements": 17, "num_tables": 1} +{"id": "ec9f64b6-3aed-4f60-abea-a4472bfc6515", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/ec9f64b6-3aed-4f60-abea-a4472bfc6515.png", "markdown_path": "track2_finixphoto_300/mds/ec9f64b6-3aed-4f60-abea-a4472bfc6515.md", "json_path": "track2_finixphoto_300/jsons/ec9f64b6-3aed-4f60-abea-a4472bfc6515.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 24, "num_tables": 1} +{"id": "ed636730-03a2-4fdc-a5ac-863f36c4f1b9", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/ed636730-03a2-4fdc-a5ac-863f36c4f1b9.png", "markdown_path": "track2_finixphoto_300/mds/ed636730-03a2-4fdc-a5ac-863f36c4f1b9.md", "json_path": "track2_finixphoto_300/jsons/ed636730-03a2-4fdc-a5ac-863f36c4f1b9.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 14, "num_tables": 1} +{"id": "ed81bc12-81c7-5b7e-b6ba-2989c0f8a361", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/ed81bc12-81c7-5b7e-b6ba-2989c0f8a361.png", "markdown_path": "track2_finixphoto_300/mds/ed81bc12-81c7-5b7e-b6ba-2989c0f8a361.md", "json_path": "track2_finixphoto_300/jsons/ed81bc12-81c7-5b7e-b6ba-2989c0f8a361.json", "has_structured_json": true, "image_width": 2800, "image_height": 2100, "image_pixels": 5880000, "num_layout_elements": 28, "num_tables": 1} +{"id": "edacd439-0cf6-4a21-84da-4b7f7453c0e3", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/edacd439-0cf6-4a21-84da-4b7f7453c0e3.png", "markdown_path": "track2_finixphoto_300/mds/edacd439-0cf6-4a21-84da-4b7f7453c0e3.md", "json_path": "track2_finixphoto_300/jsons/edacd439-0cf6-4a21-84da-4b7f7453c0e3.json", "has_structured_json": true, "image_width": 1080, "image_height": 629, "image_pixels": 679320, "num_layout_elements": 33, "num_tables": 1} +{"id": "f26c0296-043c-49ac-817e-609be218f410", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/f26c0296-043c-49ac-817e-609be218f410.png", "markdown_path": "track2_finixphoto_300/mds/f26c0296-043c-49ac-817e-609be218f410.md", "json_path": "track2_finixphoto_300/jsons/f26c0296-043c-49ac-817e-609be218f410.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 38, "num_tables": 0} +{"id": "f29b5142-c30d-4e8a-a1b2-902f17dee6c9", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/f29b5142-c30d-4e8a-a1b2-902f17dee6c9.png", "markdown_path": "track2_finixphoto_300/mds/f29b5142-c30d-4e8a-a1b2-902f17dee6c9.md", "json_path": "track2_finixphoto_300/jsons/f29b5142-c30d-4e8a-a1b2-902f17dee6c9.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 17, "num_tables": 0} +{"id": "f3151d2d-b309-4a4e-947e-659d09fd1f84", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/f3151d2d-b309-4a4e-947e-659d09fd1f84.png", "markdown_path": "track2_finixphoto_300/mds/f3151d2d-b309-4a4e-947e-659d09fd1f84.md", "json_path": "track2_finixphoto_300/jsons/f3151d2d-b309-4a4e-947e-659d09fd1f84.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 12, "num_tables": 1} +{"id": "f342e438-d8aa-43ca-9e4f-28f5886e9824", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/f342e438-d8aa-43ca-9e4f-28f5886e9824.png", "markdown_path": "track2_finixphoto_300/mds/f342e438-d8aa-43ca-9e4f-28f5886e9824.md", "json_path": "track2_finixphoto_300/jsons/f342e438-d8aa-43ca-9e4f-28f5886e9824.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 29, "num_tables": 0} +{"id": "f3d17410-ee07-545a-a26b-45c576bd0d8d", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/f3d17410-ee07-545a-a26b-45c576bd0d8d.png", "markdown_path": "track2_finixphoto_300/mds/f3d17410-ee07-545a-a26b-45c576bd0d8d.md", "json_path": "track2_finixphoto_300/jsons/f3d17410-ee07-545a-a26b-45c576bd0d8d.json", "has_structured_json": true, "image_width": 802, "image_height": 1190, "image_pixels": 954380, "num_layout_elements": 17, "num_tables": 2} +{"id": "f5973c5a-9c9d-4fb8-9973-1408933f69e5", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/f5973c5a-9c9d-4fb8-9973-1408933f69e5.png", "markdown_path": "track2_finixphoto_300/mds/f5973c5a-9c9d-4fb8-9973-1408933f69e5.md", "json_path": "track2_finixphoto_300/jsons/f5973c5a-9c9d-4fb8-9973-1408933f69e5.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 18, "num_tables": 0} +{"id": "f6566b71-cb23-5b0f-9ec9-b788cc0d2d3e", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/f6566b71-cb23-5b0f-9ec9-b788cc0d2d3e.png", "markdown_path": "track2_finixphoto_300/mds/f6566b71-cb23-5b0f-9ec9-b788cc0d2d3e.md", "json_path": "track2_finixphoto_300/jsons/f6566b71-cb23-5b0f-9ec9-b788cc0d2d3e.json", "has_structured_json": true, "image_width": 713, "image_height": 483, "image_pixels": 344379, "num_layout_elements": 12, "num_tables": 2} +{"id": "f70afea7-ec09-5dee-b3a0-1f7d8499b097", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/f70afea7-ec09-5dee-b3a0-1f7d8499b097.png", "markdown_path": "track2_finixphoto_300/mds/f70afea7-ec09-5dee-b3a0-1f7d8499b097.md", "json_path": "track2_finixphoto_300/jsons/f70afea7-ec09-5dee-b3a0-1f7d8499b097.json", "has_structured_json": true, "image_width": 640, "image_height": 412, "image_pixels": 263680, "num_layout_elements": 17, "num_tables": 2} +{"id": "f70b7d48-8d5d-40cd-806c-b68fa359d32c", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/f70b7d48-8d5d-40cd-806c-b68fa359d32c.png", "markdown_path": "track2_finixphoto_300/mds/f70b7d48-8d5d-40cd-806c-b68fa359d32c.md", "json_path": "track2_finixphoto_300/jsons/f70b7d48-8d5d-40cd-806c-b68fa359d32c.json", "has_structured_json": true, "image_width": 2100, "image_height": 1466, "image_pixels": 3078600, "num_layout_elements": 39, "num_tables": 1} +{"id": "fb6b80d8-b7b9-49cd-a291-27143941a495", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/fb6b80d8-b7b9-49cd-a291-27143941a495.png", "markdown_path": "track2_finixphoto_300/mds/fb6b80d8-b7b9-49cd-a291-27143941a495.md", "json_path": "track2_finixphoto_300/jsons/fb6b80d8-b7b9-49cd-a291-27143941a495.json", "has_structured_json": true, "image_width": 1190, "image_height": 1682, "image_pixels": 2001580, "num_layout_elements": 29, "num_tables": 0} +{"id": "fbfc8a90-871f-4b88-9515-a18c944deb53", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/fbfc8a90-871f-4b88-9515-a18c944deb53.png", "markdown_path": "track2_finixphoto_300/mds/fbfc8a90-871f-4b88-9515-a18c944deb53.md", "json_path": "track2_finixphoto_300/jsons/fbfc8a90-871f-4b88-9515-a18c944deb53.json", "has_structured_json": true, "image_width": 2100, "image_height": 2800, "image_pixels": 5880000, "num_layout_elements": 34, "num_tables": 1} +{"id": "fe5e0fa1-9d93-4c82-b2de-146f86ba2730", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/fe5e0fa1-9d93-4c82-b2de-146f86ba2730.png", "markdown_path": "track2_finixphoto_300/mds/fe5e0fa1-9d93-4c82-b2de-146f86ba2730.md", "json_path": "track2_finixphoto_300/jsons/fe5e0fa1-9d93-4c82-b2de-146f86ba2730.json", "has_structured_json": true, "image_width": 2800, "image_height": 1260, "image_pixels": 3528000, "num_layout_elements": 16, "num_tables": 1} +{"id": "ff14aaf7-b57f-44fa-a7f6-135c999fa557", "track_id": "track2", "track": "FinixPhoto", "subset": "medical_receipts", "subset_dir": "track2_finixphoto_300", "source_type": "mobile_captured", "document_type": "medical_receipts", "tasks": ["markdown_parsing", "structured_layout_parsing"], "image_path": "track2_finixphoto_300/images/ff14aaf7-b57f-44fa-a7f6-135c999fa557.png", "markdown_path": "track2_finixphoto_300/mds/ff14aaf7-b57f-44fa-a7f6-135c999fa557.md", "json_path": "track2_finixphoto_300/jsons/ff14aaf7-b57f-44fa-a7f6-135c999fa557.json", "has_structured_json": true, "image_width": 1178, "image_height": 720, "image_pixels": 848160, "num_layout_elements": 51, "num_tables": 1} +{"id": "01ac6c2a-a9ce-4a19-bb55-096f62222450", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/01ac6c2a-a9ce-4a19-bb55-096f62222450.png", "markdown_path": "track3_finixhuge_100_long/mds/01ac6c2a-a9ce-4a19-bb55-096f62222450.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 92024, "image_pixels": 138036000, "num_layout_elements": null, "num_tables": null} +{"id": "0499e7bc-d124-4e12-b4d6-264a560aa23c", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/0499e7bc-d124-4e12-b4d6-264a560aa23c.png", "markdown_path": "track3_finixhuge_100_long/mds/0499e7bc-d124-4e12-b4d6-264a560aa23c.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 74282, "image_pixels": 111423000, "num_layout_elements": null, "num_tables": null} +{"id": "04c35ba4-5f6f-4849-9d4a-17bfa7a2bf32", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/04c35ba4-5f6f-4849-9d4a-17bfa7a2bf32.png", "markdown_path": "track3_finixhuge_100_long/mds/04c35ba4-5f6f-4849-9d4a-17bfa7a2bf32.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 92924, "image_pixels": 140129392, "num_layout_elements": null, "num_tables": null} +{"id": "0517f4e9-e141-4e5e-a461-67c539accf13", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/0517f4e9-e141-4e5e-a461-67c539accf13.png", "markdown_path": "track3_finixhuge_100_long/mds/0517f4e9-e141-4e5e-a461-67c539accf13.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 62494, "image_pixels": 93741000, "num_layout_elements": null, "num_tables": null} +{"id": "0aa04c7f-1469-43e7-95f6-ed7c7a084f95", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/0aa04c7f-1469-43e7-95f6-ed7c7a084f95.png", "markdown_path": "track3_finixhuge_100_long/mds/0aa04c7f-1469-43e7-95f6-ed7c7a084f95.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 87512, "image_pixels": 131268000, "num_layout_elements": null, "num_tables": null} +{"id": "0f0d738f-b334-4ba9-aaa3-c646374a422a", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/0f0d738f-b334-4ba9-aaa3-c646374a422a.png", "markdown_path": "track3_finixhuge_100_long/mds/0f0d738f-b334-4ba9-aaa3-c646374a422a.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 45754, "image_pixels": 68631000, "num_layout_elements": null, "num_tables": null} +{"id": "142bcfe5-2a44-4aa9-b9f8-07a6299b2d5f", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/142bcfe5-2a44-4aa9-b9f8-07a6299b2d5f.png", "markdown_path": "track3_finixhuge_100_long/mds/142bcfe5-2a44-4aa9-b9f8-07a6299b2d5f.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 54548, "image_pixels": 81822000, "num_layout_elements": null, "num_tables": null} +{"id": "14e55339-c646-4432-bf51-f5fdee349f6b", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/14e55339-c646-4432-bf51-f5fdee349f6b.png", "markdown_path": "track3_finixhuge_100_long/mds/14e55339-c646-4432-bf51-f5fdee349f6b.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 60378, "image_pixels": 90567000, "num_layout_elements": null, "num_tables": null} +{"id": "15ee6c35-299c-4295-8c02-155afebaa028", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/15ee6c35-299c-4295-8c02-155afebaa028.png", "markdown_path": "track3_finixhuge_100_long/mds/15ee6c35-299c-4295-8c02-155afebaa028.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 95984, "image_pixels": 144743872, "num_layout_elements": null, "num_tables": null} +{"id": "15f908a1-ecbd-4e62-9d10-12c920cca0b2", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/15f908a1-ecbd-4e62-9d10-12c920cca0b2.png", "markdown_path": "track3_finixhuge_100_long/mds/15f908a1-ecbd-4e62-9d10-12c920cca0b2.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 30412, "image_pixels": 45618000, "num_layout_elements": null, "num_tables": null} +{"id": "1606e931-3f03-4413-b21c-0626b6bbf5d6", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/1606e931-3f03-4413-b21c-0626b6bbf5d6.png", "markdown_path": "track3_finixhuge_100_long/mds/1606e931-3f03-4413-b21c-0626b6bbf5d6.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 77438, "image_pixels": 116776504, "num_layout_elements": null, "num_tables": null} +{"id": "1796f941-c91a-4be2-96d1-84a201435f07", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/1796f941-c91a-4be2-96d1-84a201435f07.png", "markdown_path": "track3_finixhuge_100_long/mds/1796f941-c91a-4be2-96d1-84a201435f07.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 51300, "image_pixels": 77360400, "num_layout_elements": null, "num_tables": null} +{"id": "1a1e8c51-d91d-4b2a-a6e6-25c67718cf12", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/1a1e8c51-d91d-4b2a-a6e6-25c67718cf12.png", "markdown_path": "track3_finixhuge_100_long/mds/1a1e8c51-d91d-4b2a-a6e6-25c67718cf12.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 183272, "image_pixels": 274908000, "num_layout_elements": null, "num_tables": null} +{"id": "1da2ee61-a651-4ed6-81c8-807423922085", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/1da2ee61-a651-4ed6-81c8-807423922085.png", "markdown_path": "track3_finixhuge_100_long/mds/1da2ee61-a651-4ed6-81c8-807423922085.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 60602, "image_pixels": 91387816, "num_layout_elements": null, "num_tables": null} +{"id": "20627_1.0058_个人医疗费用保险B款(互联网专属)条款_FXTK2021111800000003124392_page12", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/20627_1.0058_个人医疗费用保险B款(互联网专属)条款_FXTK2021111800000003124392_page12.png", "markdown_path": "track3_finixhuge_100_long/mds/20627_1.0058_个人医疗费用保险B款(互联网专属)条款_FXTK2021111800000003124392_page12.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 61788, "image_pixels": 92682000, "num_layout_elements": null, "num_tables": null} +{"id": "21473_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001505706_page7", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/21473_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001505706_page7.png", "markdown_path": "track3_finixhuge_100_long/mds/21473_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001505706_page7.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 39404, "image_pixels": 59106000, "num_layout_elements": null, "num_tables": null} +{"id": "21475_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001498278_page8", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/21475_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001498278_page8.png", "markdown_path": "track3_finixhuge_100_long/mds/21475_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001498278_page8.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 32392, "image_pixels": 48588000, "num_layout_elements": null, "num_tables": null} +{"id": "21478_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001507036_page1", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/21478_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001507036_page1.png", "markdown_path": "track3_finixhuge_100_long/mds/21478_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001507036_page1.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 43028, "image_pixels": 64542000, "num_layout_elements": null, "num_tables": null} +{"id": "21484_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001510053_page6", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/21484_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001510053_page6.png", "markdown_path": "track3_finixhuge_100_long/mds/21484_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001510053_page6.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 42660, "image_pixels": 63990000, "num_layout_elements": null, "num_tables": null} +{"id": "21487_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001495249_page5", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/21487_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001495249_page5.png", "markdown_path": "track3_finixhuge_100_long/mds/21487_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001495249_page5.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 42056, "image_pixels": 63084000, "num_layout_elements": null, "num_tables": null} +{"id": "21491_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001513055_page2", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/21491_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001513055_page2.png", "markdown_path": "track3_finixhuge_100_long/mds/21491_1.0006_招商仁和爱乐保重大疾病保险条款_FXTK2021100900000001513055_page2.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 39656, "image_pixels": 59484000, "num_layout_elements": null, "num_tables": null} +{"id": "23339_1.0005_安盛天平个人一百种重大疾病保险(2022版)(互联网专属)条款_FXTK2022061400000011730383_page1", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/23339_1.0005_安盛天平个人一百种重大疾病保险(2022版)(互联网专属)条款_FXTK2022061400000011730383_page1.png", "markdown_path": "track3_finixhuge_100_long/mds/23339_1.0005_安盛天平个人一百种重大疾病保险(2022版)(互联网专属)条款_FXTK2022061400000011730383_page1.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 54350, "image_pixels": 81959800, "num_layout_elements": null, "num_tables": null} +{"id": "23339_1.0005_安盛天平个人一百种重大疾病保险(2022版)(互联网专属)条款_FXTK2022061400000011730383_page4", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/23339_1.0005_安盛天平个人一百种重大疾病保险(2022版)(互联网专属)条款_FXTK2022061400000011730383_page4.png", "markdown_path": "track3_finixhuge_100_long/mds/23339_1.0005_安盛天平个人一百种重大疾病保险(2022版)(互联网专属)条款_FXTK2022061400000011730383_page4.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 57616, "image_pixels": 86424000, "num_layout_elements": null, "num_tables": null} +{"id": "23458_1.0022_人保I无忧终身重疾险基础款_FXTK2021121500000004150736_page1", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/23458_1.0022_人保I无忧终身重疾险基础款_FXTK2021121500000004150736_page1.png", "markdown_path": "track3_finixhuge_100_long/mds/23458_1.0022_人保I无忧终身重疾险基础款_FXTK2021121500000004150736_page1.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 58148, "image_pixels": 87222000, "num_layout_elements": null, "num_tables": null} +{"id": "23458_1.0022_人保I无忧终身重疾险基础款_FXTK2021121500000004150736_page4", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/23458_1.0022_人保I无忧终身重疾险基础款_FXTK2021121500000004150736_page4.png", "markdown_path": "track3_finixhuge_100_long/mds/23458_1.0022_人保I无忧终身重疾险基础款_FXTK2021121500000004150736_page4.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 57908, "image_pixels": 86862000, "num_layout_elements": null, "num_tables": null} +{"id": "23cea08d-d7a5-4a3e-94cd-62661c1c69f2", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/23cea08d-d7a5-4a3e-94cd-62661c1c69f2.png", "markdown_path": "track3_finixhuge_100_long/mds/23cea08d-d7a5-4a3e-94cd-62661c1c69f2.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 71178, "image_pixels": 106767000, "num_layout_elements": null, "num_tables": null} +{"id": "24895_1.0012_中国人民财产保险股份有限公司个人住院医疗保险E款(互联网专属)_FXTK2022021500000005766508_page4", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/24895_1.0012_中国人民财产保险股份有限公司个人住院医疗保险E款(互联网专属)_FXTK2022021500000005766508_page4.png", "markdown_path": "track3_finixhuge_100_long/mds/24895_1.0012_中国人民财产保险股份有限公司个人住院医疗保险E款(互联网专属)_FXTK2022021500000005766508_page4.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 30654, "image_pixels": 46226232, "num_layout_elements": null, "num_tables": null} +{"id": "24935_1.0011_中国人民财产保险股份有限公司个人住院医疗保险F款(互联网专属)_FXTK2022021500000005758136_page1", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/24935_1.0011_中国人民财产保险股份有限公司个人住院医疗保险F款(互联网专属)_FXTK2022021500000005758136_page1.png", "markdown_path": "track3_finixhuge_100_long/mds/24935_1.0011_中国人民财产保险股份有限公司个人住院医疗保险F款(互联网专属)_FXTK2022021500000005758136_page1.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 50114, "image_pixels": 75171000, "num_layout_elements": null, "num_tables": null} +{"id": "25453_1.0005_交通出行人身意外伤害保险A款(互联网专属)条款_FXTK2022031100000006609381_page1", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/25453_1.0005_交通出行人身意外伤害保险A款(互联网专属)条款_FXTK2022031100000006609381_page1.png", "markdown_path": "track3_finixhuge_100_long/mds/25453_1.0005_交通出行人身意外伤害保险A款(互联网专属)条款_FXTK2022031100000006609381_page1.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 45680, "image_pixels": 68885440, "num_layout_elements": null, "num_tables": null} +{"id": "25564_1.0001_法定传染病保险(互联网专属)条款_FXTK2022041300000007532419_page1", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/25564_1.0001_法定传染病保险(互联网专属)条款_FXTK2022041300000007532419_page1.png", "markdown_path": "track3_finixhuge_100_long/mds/25564_1.0001_法定传染病保险(互联网专属)条款_FXTK2022041300000007532419_page1.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 33946, "image_pixels": 50919000, "num_layout_elements": null, "num_tables": null} +{"id": "25732b71-78ea-4a56-afac-c4c53cece514", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/25732b71-78ea-4a56-afac-c4c53cece514.png", "markdown_path": "track3_finixhuge_100_long/mds/25732b71-78ea-4a56-afac-c4c53cece514.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 86058, "image_pixels": 129087000, "num_layout_elements": null, "num_tables": null} +{"id": "25841_1.0008_阳光财产保险股份有限公司少儿重大疾病保险(互联网专属)_FXTK2022040800000007311047_page3", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/25841_1.0008_阳光财产保险股份有限公司少儿重大疾病保险(互联网专属)_FXTK2022040800000007311047_page3.png", "markdown_path": "track3_finixhuge_100_long/mds/25841_1.0008_阳光财产保险股份有限公司少儿重大疾病保险(互联网专属)_FXTK2022040800000007311047_page3.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 30796, "image_pixels": 46194000, "num_layout_elements": null, "num_tables": null} +{"id": "25847_1.0001_法定传染病保险(互联网专属)条款_FXTK2022040800000007339976_page1", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/25847_1.0001_法定传染病保险(互联网专属)条款_FXTK2022040800000007339976_page1.png", "markdown_path": "track3_finixhuge_100_long/mds/25847_1.0001_法定传染病保险(互联网专属)条款_FXTK2022040800000007339976_page1.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 34252, "image_pixels": 51652016, "num_layout_elements": null, "num_tables": null} +{"id": "266d63c2-b2cb-452b-82b9-c79ccc960d9b", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/266d63c2-b2cb-452b-82b9-c79ccc960d9b.png", "markdown_path": "track3_finixhuge_100_long/mds/266d63c2-b2cb-452b-82b9-c79ccc960d9b.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 33474, "image_pixels": 50211000, "num_layout_elements": null, "num_tables": null} +{"id": "26958_1.0005_温暖同行意外险_FXTK2022060200000011131710_page2", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/26958_1.0005_温暖同行意外险_FXTK2022060200000011131710_page2.png", "markdown_path": "track3_finixhuge_100_long/mds/26958_1.0005_温暖同行意外险_FXTK2022060200000011131710_page2.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 63732, "image_pixels": 96107856, "num_layout_elements": null, "num_tables": null} +{"id": "27014_1.0001_太平e满分年金保险_FXTK2022060800000011354804_page3", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/27014_1.0001_太平e满分年金保险_FXTK2022060800000011354804_page3.png", "markdown_path": "track3_finixhuge_100_long/mds/27014_1.0001_太平e满分年金保险_FXTK2022060800000011354804_page3.md", "json_path": null, "has_structured_json": false, "image_width": 3000, "image_height": 72284, "image_pixels": 216852000, "num_layout_elements": null, "num_tables": null} +{"id": "27095_1.0005_太平e满分年金保险_FXTK2022061400000011725652_page3", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/27095_1.0005_太平e满分年金保险_FXTK2022061400000011725652_page3.png", "markdown_path": "track3_finixhuge_100_long/mds/27095_1.0005_太平e满分年金保险_FXTK2022061400000011725652_page3.md", "json_path": null, "has_structured_json": false, "image_width": 3000, "image_height": 72284, "image_pixels": 216852000, "num_layout_elements": null, "num_tables": null} +{"id": "27344_1.0005_安盛天平个人一百种重大疾病保险(2022版B款)(互联网专属)条款_FXTK2022070100000012713453_page4", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/27344_1.0005_安盛天平个人一百种重大疾病保险(2022版B款)(互联网专属)条款_FXTK2022070100000012713453_page4.png", "markdown_path": "track3_finixhuge_100_long/mds/27344_1.0005_安盛天平个人一百种重大疾病保险(2022版B款)(互联网专属)条款_FXTK2022070100000012713453_page4.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 49888, "image_pixels": 74832000, "num_layout_elements": null, "num_tables": null} +{"id": "27677_1.0003_阳光财产保险股份有限公司个人特定药械费用医疗保险A款(互联网专属)_FXTK2022072600000014438138_page6", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/27677_1.0003_阳光财产保险股份有限公司个人特定药械费用医疗保险A款(互联网专属)_FXTK2022072600000014438138_page6.png", "markdown_path": "track3_finixhuge_100_long/mds/27677_1.0003_阳光财产保险股份有限公司个人特定药械费用医疗保险A款(互联网专属)_FXTK2022072600000014438138_page6.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 30690, "image_pixels": 46035000, "num_layout_elements": null, "num_tables": null} +{"id": "28034_1.0003_众安在线财产保险股份有限公司个人特定疾病保险条款(互联网 2022版A款)_FXTK2022081500000016302107_page1", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/28034_1.0003_众安在线财产保险股份有限公司个人特定疾病保险条款(互联网 2022版A款)_FXTK2022081500000016302107_page1.png", "markdown_path": "track3_finixhuge_100_long/mds/28034_1.0003_众安在线财产保险股份有限公司个人特定疾病保险条款(互联网 2022版A款)_FXTK2022081500000016302107_page1.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 58244, "image_pixels": 87366000, "num_layout_elements": null, "num_tables": null} +{"id": "28177_1.0008_众安在线财产保险股份有限公司附加恶性肿瘤——重度特定药械费用医疗保险条款(互联网2022版B款)_FXTK2022082200000017060434_page1", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/28177_1.0008_众安在线财产保险股份有限公司附加恶性肿瘤——重度特定药械费用医疗保险条款(互联网2022版B款)_FXTK2022082200000017060434_page1.png", "markdown_path": "track3_finixhuge_100_long/mds/28177_1.0008_众安在线财产保险股份有限公司附加恶性肿瘤——重度特定药械费用医疗保险条款(互联网2022版B款)_FXTK2022082200000017060434_page1.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 62278, "image_pixels": 93417000, "num_layout_elements": null, "num_tables": null} +{"id": "28303_1.0001_个⼈住院津贴保险A款【互联网专属】条款_FXTK2022083000000017830964_page8", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/28303_1.0001_个⼈住院津贴保险A款【互联网专属】条款_FXTK2022083000000017830964_page8.png", "markdown_path": "track3_finixhuge_100_long/mds/28303_1.0001_个⼈住院津贴保险A款【互联网专属】条款_FXTK2022083000000017830964_page8.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 56808, "image_pixels": 85212000, "num_layout_elements": null, "num_tables": null} +{"id": "28305_1.0001_个⼈住院津贴保险A款(互联网专属)条款_FXTK2022083000000017787281_page4", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/28305_1.0001_个⼈住院津贴保险A款(互联网专属)条款_FXTK2022083000000017787281_page4.png", "markdown_path": "track3_finixhuge_100_long/mds/28305_1.0001_个⼈住院津贴保险A款(互联网专属)条款_FXTK2022083000000017787281_page4.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 57452, "image_pixels": 86637616, "num_layout_elements": null, "num_tables": null} +{"id": "28328_1.0001_个人住院津贴保险A款(互联网专属)条款_FXTK2022083000000017727450_page5", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/28328_1.0001_个人住院津贴保险A款(互联网专属)条款_FXTK2022083000000017727450_page5.png", "markdown_path": "track3_finixhuge_100_long/mds/28328_1.0001_个人住院津贴保险A款(互联网专属)条款_FXTK2022083000000017727450_page5.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 43814, "image_pixels": 66071512, "num_layout_elements": null, "num_tables": null} +{"id": "28454_1.0005_安盛天平个人一百种重大疾病保险(2023版B款)(互联网专属)条款_FXTK2022090800000019198593_page2", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/28454_1.0005_安盛天平个人一百种重大疾病保险(2023版B款)(互联网专属)条款_FXTK2022090800000019198593_page2.png", "markdown_path": "track3_finixhuge_100_long/mds/28454_1.0005_安盛天平个人一百种重大疾病保险(2023版B款)(互联网专属)条款_FXTK2022090800000019198593_page2.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 68964, "image_pixels": 103997712, "num_layout_elements": null, "num_tables": null} +{"id": "28748_1.0007_众安在线财产保险股份有限公司个人重大疾病保险条款(互联网2022版E款)_FXTK2022092300000020582022_page5", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/28748_1.0007_众安在线财产保险股份有限公司个人重大疾病保险条款(互联网2022版E款)_FXTK2022092300000020582022_page5.png", "markdown_path": "track3_finixhuge_100_long/mds/28748_1.0007_众安在线财产保险股份有限公司个人重大疾病保险条款(互联网2022版E款)_FXTK2022092300000020582022_page5.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 113690, "image_pixels": 170535000, "num_layout_elements": null, "num_tables": null} +{"id": "29572_1.0024_健康福·终身重疾险(升级版)_FXTK2022111100000025515431_page1", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/29572_1.0024_健康福·终身重疾险(升级版)_FXTK2022111100000025515431_page1.png", "markdown_path": "track3_finixhuge_100_long/mds/29572_1.0024_健康福·终身重疾险(升级版)_FXTK2022111100000025515431_page1.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 58880, "image_pixels": 88320000, "num_layout_elements": null, "num_tables": null} +{"id": "29572_1.0024_健康福·终身重疾险(升级版)_FXTK2022111100000025515431_page2", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/29572_1.0024_健康福·终身重疾险(升级版)_FXTK2022111100000025515431_page2.png", "markdown_path": "track3_finixhuge_100_long/mds/29572_1.0024_健康福·终身重疾险(升级版)_FXTK2022111100000025515431_page2.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 81158, "image_pixels": 121737000, "num_layout_elements": null, "num_tables": null} +{"id": "29656_1.0001_阳光财产保险股份有限公司个人门急诊医疗保险C款(互联网专属)_FXTK2022111500000025739136_page4", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/29656_1.0001_阳光财产保险股份有限公司个人门急诊医疗保险C款(互联网专属)_FXTK2022111500000025739136_page4.png", "markdown_path": "track3_finixhuge_100_long/mds/29656_1.0001_阳光财产保险股份有限公司个人门急诊医疗保险C款(互联网专属)_FXTK2022111500000025739136_page4.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 63280, "image_pixels": 94920000, "num_layout_elements": null, "num_tables": null} +{"id": "29802_1.0001_阳光财产保险股份有限公司个人医疗费用保险G款(互联网专属)_FXTK2022111700000025841536_page6", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/29802_1.0001_阳光财产保险股份有限公司个人医疗费用保险G款(互联网专属)_FXTK2022111700000025841536_page6.png", "markdown_path": "track3_finixhuge_100_long/mds/29802_1.0001_阳光财产保险股份有限公司个人医疗费用保险G款(互联网专属)_FXTK2022111700000025841536_page6.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 95840, "image_pixels": 143760000, "num_layout_elements": null, "num_tables": null} +{"id": "29942_1.0007_人保福寿年年专属商业养老保险_FXTK2022112400000026497482_page2", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/29942_1.0007_人保福寿年年专属商业养老保险_FXTK2022112400000026497482_page2.png", "markdown_path": "track3_finixhuge_100_long/mds/29942_1.0007_人保福寿年年专属商业养老保险_FXTK2022112400000026497482_page2.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 55312, "image_pixels": 82968000, "num_layout_elements": null, "num_tables": null} +{"id": "2df64728-e797-4f2b-8a8a-38f6b09cb38f", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/2df64728-e797-4f2b-8a8a-38f6b09cb38f.png", "markdown_path": "track3_finixhuge_100_long/mds/2df64728-e797-4f2b-8a8a-38f6b09cb38f.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 38628, "image_pixels": 57942000, "num_layout_elements": null, "num_tables": null} +{"id": "30388_1.0014_人保寿险全心保重大疾病保险(A款)(互联网专属)(基础部分)_FXTK2022121900000028335042_page3", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/30388_1.0014_人保寿险全心保重大疾病保险(A款)(互联网专属)(基础部分)_FXTK2022121900000028335042_page3.png", "markdown_path": "track3_finixhuge_100_long/mds/30388_1.0014_人保寿险全心保重大疾病保险(A款)(互联网专属)(基础部分)_FXTK2022121900000028335042_page3.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 30296, "image_pixels": 45444000, "num_layout_elements": null, "num_tables": null} +{"id": "30561_1.0001_安盛天平个人综合住院医疗保险(2023 版 A 款)(互联网专属)条款_FXTK2023011200000029353299_page1", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/30561_1.0001_安盛天平个人综合住院医疗保险(2023 版 A 款)(互联网专属)条款_FXTK2023011200000029353299_page1.png", "markdown_path": "track3_finixhuge_100_long/mds/30561_1.0001_安盛天平个人综合住院医疗保险(2023 版 A 款)(互联网专属)条款_FXTK2023011200000029353299_page1.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 87446, "image_pixels": 131868568, "num_layout_elements": null, "num_tables": null} +{"id": "30608_1.0014_安盛天平个人旅行人身意外伤害保险(2022版A款)(互联网专属)条款_FXTK2023013100000029564193_page1", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/30608_1.0014_安盛天平个人旅行人身意外伤害保险(2022版A款)(互联网专属)条款_FXTK2023013100000029564193_page1.png", "markdown_path": "track3_finixhuge_100_long/mds/30608_1.0014_安盛天平个人旅行人身意外伤害保险(2022版A款)(互联网专属)条款_FXTK2023013100000029564193_page1.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 56560, "image_pixels": 85292480, "num_layout_elements": null, "num_tables": null} +{"id": "30621_1.0007_家庭成员意外伤害保险(互联网专属)条款_FXTK2023020200000029666426_page1", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/30621_1.0007_家庭成员意外伤害保险(互联网专属)条款_FXTK2023020200000029666426_page1.png", "markdown_path": "track3_finixhuge_100_long/mds/30621_1.0007_家庭成员意外伤害保险(互联网专属)条款_FXTK2023020200000029666426_page1.md", "json_path": null, "has_structured_json": false, "image_width": 1162, "image_height": 28585, "image_pixels": 33215770, "num_layout_elements": null, "num_tables": null} +{"id": "313e9822-b369-4318-894b-6267ff0e2453", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/313e9822-b369-4318-894b-6267ff0e2453.png", "markdown_path": "track3_finixhuge_100_long/mds/313e9822-b369-4318-894b-6267ff0e2453.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 40088, "image_pixels": 60132000, "num_layout_elements": null, "num_tables": null} +{"id": "3177f515-6463-4e6c-a0db-530e15a39869", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/3177f515-6463-4e6c-a0db-530e15a39869.png", "markdown_path": "track3_finixhuge_100_long/mds/3177f515-6463-4e6c-a0db-530e15a39869.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 50170, "image_pixels": 75656360, "num_layout_elements": null, "num_tables": null} +{"id": "36f8bd14-6c19-4be3-9a5f-b5fafdd9ee1e", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/36f8bd14-6c19-4be3-9a5f-b5fafdd9ee1e.png", "markdown_path": "track3_finixhuge_100_long/mds/36f8bd14-6c19-4be3-9a5f-b5fafdd9ee1e.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 37396, "image_pixels": 56094000, "num_layout_elements": null, "num_tables": null} +{"id": "3860778b-c308-4563-be16-8ea6b7241f58", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/3860778b-c308-4563-be16-8ea6b7241f58.png", "markdown_path": "track3_finixhuge_100_long/mds/3860778b-c308-4563-be16-8ea6b7241f58.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 51810, "image_pixels": 77715000, "num_layout_elements": null, "num_tables": null} +{"id": "3a6b1762-7a70-4a57-a61e-70511dec7112", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/3a6b1762-7a70-4a57-a61e-70511dec7112.png", "markdown_path": "track3_finixhuge_100_long/mds/3a6b1762-7a70-4a57-a61e-70511dec7112.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 90154, "image_pixels": 135231000, "num_layout_elements": null, "num_tables": null} +{"id": "4259b487-f1ff-4890-b019-64b99f4d5162", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/4259b487-f1ff-4890-b019-64b99f4d5162.png", "markdown_path": "track3_finixhuge_100_long/mds/4259b487-f1ff-4890-b019-64b99f4d5162.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 50508, "image_pixels": 76166064, "num_layout_elements": null, "num_tables": null} +{"id": "43230963-96d9-434c-b9de-4555c08d140d", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/43230963-96d9-434c-b9de-4555c08d140d.png", "markdown_path": "track3_finixhuge_100_long/mds/43230963-96d9-434c-b9de-4555c08d140d.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 83160, "image_pixels": 124740000, "num_layout_elements": null, "num_tables": null} +{"id": "542dc1bc-82d4-430a-87b7-75c7202122d8", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/542dc1bc-82d4-430a-87b7-75c7202122d8.png", "markdown_path": "track3_finixhuge_100_long/mds/542dc1bc-82d4-430a-87b7-75c7202122d8.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 94950, "image_pixels": 143184600, "num_layout_elements": null, "num_tables": null} +{"id": "55335c31-634a-4826-86d7-b80c5441be19", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/55335c31-634a-4826-86d7-b80c5441be19.png", "markdown_path": "track3_finixhuge_100_long/mds/55335c31-634a-4826-86d7-b80c5441be19.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 97356, "image_pixels": 146034000, "num_layout_elements": null, "num_tables": null} +{"id": "56fbed97-5ae2-4082-bdb9-353182d1a71b", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/56fbed97-5ae2-4082-bdb9-353182d1a71b.png", "markdown_path": "track3_finixhuge_100_long/mds/56fbed97-5ae2-4082-bdb9-353182d1a71b.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 34058, "image_pixels": 51087000, "num_layout_elements": null, "num_tables": null} +{"id": "58e43901-6a66-45b9-b8bc-ab855a96d609", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/58e43901-6a66-45b9-b8bc-ab855a96d609.png", "markdown_path": "track3_finixhuge_100_long/mds/58e43901-6a66-45b9-b8bc-ab855a96d609.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 96620, "image_pixels": 145702960, "num_layout_elements": null, "num_tables": null} +{"id": "59ad607c-f12b-452c-86e5-f847be00c3b2", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/59ad607c-f12b-452c-86e5-f847be00c3b2.png", "markdown_path": "track3_finixhuge_100_long/mds/59ad607c-f12b-452c-86e5-f847be00c3b2.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 87066, "image_pixels": 131295528, "num_layout_elements": null, "num_tables": null} +{"id": "59d2a77b-2a76-47ee-8847-6cc98b8ef3cc", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/59d2a77b-2a76-47ee-8847-6cc98b8ef3cc.png", "markdown_path": "track3_finixhuge_100_long/mds/59d2a77b-2a76-47ee-8847-6cc98b8ef3cc.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 65350, "image_pixels": 98025000, "num_layout_elements": null, "num_tables": null} +{"id": "5a229740-f121-41a2-86db-171c60698986", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/5a229740-f121-41a2-86db-171c60698986.png", "markdown_path": "track3_finixhuge_100_long/mds/5a229740-f121-41a2-86db-171c60698986.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 84518, "image_pixels": 126777000, "num_layout_elements": null, "num_tables": null} +{"id": "5b9c86b3-aacc-4fce-8514-22957515589b", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/5b9c86b3-aacc-4fce-8514-22957515589b.png", "markdown_path": "track3_finixhuge_100_long/mds/5b9c86b3-aacc-4fce-8514-22957515589b.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 49440, "image_pixels": 74555520, "num_layout_elements": null, "num_tables": null} +{"id": "5ee758a3-af23-4b07-bb00-5bf3247739e1", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/5ee758a3-af23-4b07-bb00-5bf3247739e1.png", "markdown_path": "track3_finixhuge_100_long/mds/5ee758a3-af23-4b07-bb00-5bf3247739e1.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 34148, "image_pixels": 51222000, "num_layout_elements": null, "num_tables": null} +{"id": "624fb24a-832f-4a79-8c3a-1cddbd0afde3", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/624fb24a-832f-4a79-8c3a-1cddbd0afde3.png", "markdown_path": "track3_finixhuge_100_long/mds/624fb24a-832f-4a79-8c3a-1cddbd0afde3.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 191578, "image_pixels": 287367000, "num_layout_elements": null, "num_tables": null} +{"id": "71582c58-43c5-4565-a9d3-c793c2a489cf", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/71582c58-43c5-4565-a9d3-c793c2a489cf.png", "markdown_path": "track3_finixhuge_100_long/mds/71582c58-43c5-4565-a9d3-c793c2a489cf.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 148548, "image_pixels": 222822000, "num_layout_elements": null, "num_tables": null} +{"id": "7cb47211-86bf-45df-9bdf-fad42266ebde", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/7cb47211-86bf-45df-9bdf-fad42266ebde.png", "markdown_path": "track3_finixhuge_100_long/mds/7cb47211-86bf-45df-9bdf-fad42266ebde.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 96652, "image_pixels": 145751216, "num_layout_elements": null, "num_tables": null} +{"id": "81f48347-9c24-4f66-9d1f-178a066bb8a2", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/81f48347-9c24-4f66-9d1f-178a066bb8a2.png", "markdown_path": "track3_finixhuge_100_long/mds/81f48347-9c24-4f66-9d1f-178a066bb8a2.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 31302, "image_pixels": 46953000, "num_layout_elements": null, "num_tables": null} +{"id": "83d34cf6-5d3f-4407-97f8-910646b07218", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/83d34cf6-5d3f-4407-97f8-910646b07218.png", "markdown_path": "track3_finixhuge_100_long/mds/83d34cf6-5d3f-4407-97f8-910646b07218.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 32028, "image_pixels": 48042000, "num_layout_elements": null, "num_tables": null} +{"id": "83f1ca88-2b2d-4400-92dc-6239594d793e", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/83f1ca88-2b2d-4400-92dc-6239594d793e.png", "markdown_path": "track3_finixhuge_100_long/mds/83f1ca88-2b2d-4400-92dc-6239594d793e.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 42966, "image_pixels": 64792728, "num_layout_elements": null, "num_tables": null} +{"id": "905a3440-208f-43dd-8628-751925f17ba8", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/905a3440-208f-43dd-8628-751925f17ba8.png", "markdown_path": "track3_finixhuge_100_long/mds/905a3440-208f-43dd-8628-751925f17ba8.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 30994, "image_pixels": 46491000, "num_layout_elements": null, "num_tables": null} +{"id": "95fe0b22-d74d-4774-878d-f7a17c1e60b7", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/95fe0b22-d74d-4774-878d-f7a17c1e60b7.png", "markdown_path": "track3_finixhuge_100_long/mds/95fe0b22-d74d-4774-878d-f7a17c1e60b7.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 30846, "image_pixels": 46269000, "num_layout_elements": null, "num_tables": null} +{"id": "9ab84b9b-6e0c-4425-b8d4-c136088f644c", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/9ab84b9b-6e0c-4425-b8d4-c136088f644c.png", "markdown_path": "track3_finixhuge_100_long/mds/9ab84b9b-6e0c-4425-b8d4-c136088f644c.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 86552, "image_pixels": 130520416, "num_layout_elements": null, "num_tables": null} +{"id": "a0684886-d43f-4c52-b9ab-83458ff3507f", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/a0684886-d43f-4c52-b9ab-83458ff3507f.png", "markdown_path": "track3_finixhuge_100_long/mds/a0684886-d43f-4c52-b9ab-83458ff3507f.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 50732, "image_pixels": 76098000, "num_layout_elements": null, "num_tables": null} +{"id": "a3595faa-9b62-4a21-87a9-5578576388a3", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/a3595faa-9b62-4a21-87a9-5578576388a3.png", "markdown_path": "track3_finixhuge_100_long/mds/a3595faa-9b62-4a21-87a9-5578576388a3.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 35284, "image_pixels": 52926000, "num_layout_elements": null, "num_tables": null} +{"id": "a665c0cf-fbd4-4ee1-ad28-ea1fe7cd0796", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/a665c0cf-fbd4-4ee1-ad28-ea1fe7cd0796.png", "markdown_path": "track3_finixhuge_100_long/mds/a665c0cf-fbd4-4ee1-ad28-ea1fe7cd0796.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 31190, "image_pixels": 46785000, "num_layout_elements": null, "num_tables": null} +{"id": "ac36e38c-57d0-4670-92f1-325bd2d7abd6", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/ac36e38c-57d0-4670-92f1-325bd2d7abd6.png", "markdown_path": "track3_finixhuge_100_long/mds/ac36e38c-57d0-4670-92f1-325bd2d7abd6.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 31624, "image_pixels": 47436000, "num_layout_elements": null, "num_tables": null} +{"id": "ad6b8f12-98a3-46f0-bc5a-9ee578cd4497", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/ad6b8f12-98a3-46f0-bc5a-9ee578cd4497.png", "markdown_path": "track3_finixhuge_100_long/mds/ad6b8f12-98a3-46f0-bc5a-9ee578cd4497.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 37842, "image_pixels": 57065736, "num_layout_elements": null, "num_tables": null} +{"id": "b0576e47-3ab4-47c0-9cd2-81956b259b9e", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/b0576e47-3ab4-47c0-9cd2-81956b259b9e.png", "markdown_path": "track3_finixhuge_100_long/mds/b0576e47-3ab4-47c0-9cd2-81956b259b9e.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 44186, "image_pixels": 66632488, "num_layout_elements": null, "num_tables": null} +{"id": "b63912fc-4866-4b89-972a-7a9ea57944be", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/b63912fc-4866-4b89-972a-7a9ea57944be.png", "markdown_path": "track3_finixhuge_100_long/mds/b63912fc-4866-4b89-972a-7a9ea57944be.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 30410, "image_pixels": 45615000, "num_layout_elements": null, "num_tables": null} +{"id": "d099b9bb-070b-430e-954f-df523d9dff9d", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/d099b9bb-070b-430e-954f-df523d9dff9d.png", "markdown_path": "track3_finixhuge_100_long/mds/d099b9bb-070b-430e-954f-df523d9dff9d.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 49890, "image_pixels": 74835000, "num_layout_elements": null, "num_tables": null} +{"id": "d42648b4-c6d5-4de8-a114-ca4efad5d3c7", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/d42648b4-c6d5-4de8-a114-ca4efad5d3c7.png", "markdown_path": "track3_finixhuge_100_long/mds/d42648b4-c6d5-4de8-a114-ca4efad5d3c7.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 38010, "image_pixels": 57015000, "num_layout_elements": null, "num_tables": null} +{"id": "d57f309f-2421-4891-a2cd-6387c2504837", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/d57f309f-2421-4891-a2cd-6387c2504837.png", "markdown_path": "track3_finixhuge_100_long/mds/d57f309f-2421-4891-a2cd-6387c2504837.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 75312, "image_pixels": 112968000, "num_layout_elements": null, "num_tables": null} +{"id": "d5a20fae-a82c-498a-92b5-216087950d0e", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/d5a20fae-a82c-498a-92b5-216087950d0e.png", "markdown_path": "track3_finixhuge_100_long/mds/d5a20fae-a82c-498a-92b5-216087950d0e.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 58910, "image_pixels": 88365000, "num_layout_elements": null, "num_tables": null} +{"id": "db110987-48aa-4edf-a1ef-c3df18f5f0f4", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/db110987-48aa-4edf-a1ef-c3df18f5f0f4.png", "markdown_path": "track3_finixhuge_100_long/mds/db110987-48aa-4edf-a1ef-c3df18f5f0f4.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 55956, "image_pixels": 83934000, "num_layout_elements": null, "num_tables": null} +{"id": "df8e60e0-8e7d-46ee-8f1b-c8a179f9c43e", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/df8e60e0-8e7d-46ee-8f1b-c8a179f9c43e.png", "markdown_path": "track3_finixhuge_100_long/mds/df8e60e0-8e7d-46ee-8f1b-c8a179f9c43e.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 51170, "image_pixels": 76755000, "num_layout_elements": null, "num_tables": null} +{"id": "dffd58b4-b821-43f5-94df-84ba0c0a2a19", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/dffd58b4-b821-43f5-94df-84ba0c0a2a19.png", "markdown_path": "track3_finixhuge_100_long/mds/dffd58b4-b821-43f5-94df-84ba0c0a2a19.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 94956, "image_pixels": 142434000, "num_layout_elements": null, "num_tables": null} +{"id": "ef6224c6-e8bb-4ca6-919e-4db260eabcb1", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/ef6224c6-e8bb-4ca6-919e-4db260eabcb1.png", "markdown_path": "track3_finixhuge_100_long/mds/ef6224c6-e8bb-4ca6-919e-4db260eabcb1.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 93658, "image_pixels": 140487000, "num_layout_elements": null, "num_tables": null} +{"id": "ef7786a0-41de-438f-925f-316865d2d67f", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/ef7786a0-41de-438f-925f-316865d2d67f.png", "markdown_path": "track3_finixhuge_100_long/mds/ef7786a0-41de-438f-925f-316865d2d67f.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 39148, "image_pixels": 59035184, "num_layout_elements": null, "num_tables": null} +{"id": "efa91b0b-ea11-4ed1-b3c7-5996d7e2f667", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/efa91b0b-ea11-4ed1-b3c7-5996d7e2f667.png", "markdown_path": "track3_finixhuge_100_long/mds/efa91b0b-ea11-4ed1-b3c7-5996d7e2f667.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 49426, "image_pixels": 74139000, "num_layout_elements": null, "num_tables": null} +{"id": "f5071d3e-524d-4351-bd93-ae31f8368251", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/f5071d3e-524d-4351-bd93-ae31f8368251.png", "markdown_path": "track3_finixhuge_100_long/mds/f5071d3e-524d-4351-bd93-ae31f8368251.md", "json_path": null, "has_structured_json": false, "image_width": 1508, "image_height": 33780, "image_pixels": 50940240, "num_layout_elements": null, "num_tables": null} +{"id": "fb9cb99c-6180-455b-ab0f-786b60c69ae5", "track_id": "track3", "track": "FinixHuge", "subset": "long_pages", "subset_dir": "track3_finixhuge_100_long", "source_type": "mixed_quality", "document_type": "ultra_long_financial_pages", "tasks": ["markdown_parsing", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_long/images/fb9cb99c-6180-455b-ab0f-786b60c69ae5.png", "markdown_path": "track3_finixhuge_100_long/mds/fb9cb99c-6180-455b-ab0f-786b60c69ae5.md", "json_path": null, "has_structured_json": false, "image_width": 1500, "image_height": 31040, "image_pixels": 46560000, "num_layout_elements": null, "num_tables": null} +{"id": "00332e7f-d485-4e83-9067-8bbbedde11cb", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/00332e7f-d485-4e83-9067-8bbbedde11cb.png", "markdown_path": "track3_finixhuge_100_table/mds/00332e7f-d485-4e83-9067-8bbbedde11cb.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3307, "image_pixels": 15470146, "num_layout_elements": null, "num_tables": null} +{"id": "015bd47c-7034-4532-a2f0-9d177d44b22b", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/015bd47c-7034-4532-a2f0-9d177d44b22b.png", "markdown_path": "track3_finixhuge_100_table/mds/015bd47c-7034-4532-a2f0-9d177d44b22b.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "051fa323-3542-4ea2-be5e-2463463298f9", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/051fa323-3542-4ea2-be5e-2463463298f9.png", "markdown_path": "track3_finixhuge_100_table/mds/051fa323-3542-4ea2-be5e-2463463298f9.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3306, "image_pixels": 15465468, "num_layout_elements": null, "num_tables": null} +{"id": "06364357-9eb8-44e0-969d-fcb3ef8568da", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/06364357-9eb8-44e0-969d-fcb3ef8568da.png", "markdown_path": "track3_finixhuge_100_table/mds/06364357-9eb8-44e0-969d-fcb3ef8568da.md", "json_path": null, "has_structured_json": false, "image_width": 8183, "image_height": 5787, "image_pixels": 47355021, "num_layout_elements": null, "num_tables": null} +{"id": "0878213b-66b1-412f-a50a-01b233ef840f", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/0878213b-66b1-412f-a50a-01b233ef840f.png", "markdown_path": "track3_finixhuge_100_table/mds/0878213b-66b1-412f-a50a-01b233ef840f.md", "json_path": null, "has_structured_json": false, "image_width": 8187, "image_height": 5785, "image_pixels": 47361795, "num_layout_elements": null, "num_tables": null} +{"id": "090853cd-9bd6-4f82-8b5b-52d6e83a68c8", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/090853cd-9bd6-4f82-8b5b-52d6e83a68c8.png", "markdown_path": "track3_finixhuge_100_table/mds/090853cd-9bd6-4f82-8b5b-52d6e83a68c8.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "0e8a501f-458e-46e4-af40-7a740c180d2b", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/0e8a501f-458e-46e4-af40-7a740c180d2b.png", "markdown_path": "track3_finixhuge_100_table/mds/0e8a501f-458e-46e4-af40-7a740c180d2b.md", "json_path": null, "has_structured_json": false, "image_width": 22277, "image_height": 15740, "image_pixels": 350639980, "num_layout_elements": null, "num_tables": null} +{"id": "0ed86277-9d3f-47c9-9129-afc0ee2bbb7d", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/0ed86277-9d3f-47c9-9129-afc0ee2bbb7d.png", "markdown_path": "track3_finixhuge_100_table/mds/0ed86277-9d3f-47c9-9129-afc0ee2bbb7d.md", "json_path": null, "has_structured_json": false, "image_width": 5785, "image_height": 8187, "image_pixels": 47361795, "num_layout_elements": null, "num_tables": null} +{"id": "116e74c6-e368-42ab-b09b-c0e5ee422334", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/116e74c6-e368-42ab-b09b-c0e5ee422334.png", "markdown_path": "track3_finixhuge_100_table/mds/116e74c6-e368-42ab-b09b-c0e5ee422334.md", "json_path": null, "has_structured_json": false, "image_width": 3307, "image_height": 4676, "image_pixels": 15463532, "num_layout_elements": null, "num_tables": null} +{"id": "141edbb1-d6ed-40be-a8aa-a86568c0a592", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/141edbb1-d6ed-40be-a8aa-a86568c0a592.png", "markdown_path": "track3_finixhuge_100_table/mds/141edbb1-d6ed-40be-a8aa-a86568c0a592.md", "json_path": null, "has_structured_json": false, "image_width": 8183, "image_height": 5787, "image_pixels": 47355021, "num_layout_elements": null, "num_tables": null} +{"id": "1519510e-1bc7-442f-b47d-687eb464bd86", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/1519510e-1bc7-442f-b47d-687eb464bd86.png", "markdown_path": "track3_finixhuge_100_table/mds/1519510e-1bc7-442f-b47d-687eb464bd86.md", "json_path": null, "has_structured_json": false, "image_width": 3306, "image_height": 4678, "image_pixels": 15465468, "num_layout_elements": null, "num_tables": null} +{"id": "1674392a-d10d-402f-91a3-d3d08917ec8d", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/1674392a-d10d-402f-91a3-d3d08917ec8d.png", "markdown_path": "track3_finixhuge_100_table/mds/1674392a-d10d-402f-91a3-d3d08917ec8d.md", "json_path": null, "has_structured_json": false, "image_width": 6613, "image_height": 4675, "image_pixels": 30915775, "num_layout_elements": null, "num_tables": null} +{"id": "18a56a77-21ed-4f7e-ad5d-711f02291441", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/18a56a77-21ed-4f7e-ad5d-711f02291441.png", "markdown_path": "track3_finixhuge_100_table/mds/18a56a77-21ed-4f7e-ad5d-711f02291441.md", "json_path": null, "has_structured_json": false, "image_width": 3308, "image_height": 4678, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "19a15357-a392-4556-af4d-85e72e5b6c0e", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/19a15357-a392-4556-af4d-85e72e5b6c0e.png", "markdown_path": "track3_finixhuge_100_table/mds/19a15357-a392-4556-af4d-85e72e5b6c0e.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "1ae225a3-3ec1-403a-bff5-10a2cfabbe74", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/1ae225a3-3ec1-403a-bff5-10a2cfabbe74.png", "markdown_path": "track3_finixhuge_100_table/mds/1ae225a3-3ec1-403a-bff5-10a2cfabbe74.md", "json_path": null, "has_structured_json": false, "image_width": 6614, "image_height": 4678, "image_pixels": 30940292, "num_layout_elements": null, "num_tables": null} +{"id": "1b8718d0-ea4f-4085-a853-9fa3d5a57ada", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/1b8718d0-ea4f-4085-a853-9fa3d5a57ada.png", "markdown_path": "track3_finixhuge_100_table/mds/1b8718d0-ea4f-4085-a853-9fa3d5a57ada.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "1c9ac6d2-bf42-44c0-964a-aa3217be4de2", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/1c9ac6d2-bf42-44c0-964a-aa3217be4de2.png", "markdown_path": "track3_finixhuge_100_table/mds/1c9ac6d2-bf42-44c0-964a-aa3217be4de2.md", "json_path": null, "has_structured_json": false, "image_width": 3307, "image_height": 4676, "image_pixels": 15463532, "num_layout_elements": null, "num_tables": null} +{"id": "1de69d49-53fd-4db4-9b5f-02aeb4777b7a", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/1de69d49-53fd-4db4-9b5f-02aeb4777b7a.png", "markdown_path": "track3_finixhuge_100_table/mds/1de69d49-53fd-4db4-9b5f-02aeb4777b7a.md", "json_path": null, "has_structured_json": false, "image_width": 8183, "image_height": 5787, "image_pixels": 47355021, "num_layout_elements": null, "num_tables": null} +{"id": "1f4293f3-412e-4b31-a3fc-9cab8dd46fb9", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/1f4293f3-412e-4b31-a3fc-9cab8dd46fb9.png", "markdown_path": "track3_finixhuge_100_table/mds/1f4293f3-412e-4b31-a3fc-9cab8dd46fb9.md", "json_path": null, "has_structured_json": false, "image_width": 4676, "image_height": 3307, "image_pixels": 15463532, "num_layout_elements": null, "num_tables": null} +{"id": "225fb899-268b-4abd-aa21-b94aa9dd65a0", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/225fb899-268b-4abd-aa21-b94aa9dd65a0.png", "markdown_path": "track3_finixhuge_100_table/mds/225fb899-268b-4abd-aa21-b94aa9dd65a0.md", "json_path": null, "has_structured_json": false, "image_width": 8183, "image_height": 5787, "image_pixels": 47355021, "num_layout_elements": null, "num_tables": null} +{"id": "2358594b-051c-4732-ab91-f4dd8eab8c73", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/2358594b-051c-4732-ab91-f4dd8eab8c73.png", "markdown_path": "track3_finixhuge_100_table/mds/2358594b-051c-4732-ab91-f4dd8eab8c73.md", "json_path": null, "has_structured_json": false, "image_width": 6615, "image_height": 4678, "image_pixels": 30944970, "num_layout_elements": null, "num_tables": null} +{"id": "251e4193-1dd9-4e2b-b05f-73d86f4bed7e", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/251e4193-1dd9-4e2b-b05f-73d86f4bed7e.png", "markdown_path": "track3_finixhuge_100_table/mds/251e4193-1dd9-4e2b-b05f-73d86f4bed7e.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "2554c249-23d3-4ede-8e3d-2df2b8aef267", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/2554c249-23d3-4ede-8e3d-2df2b8aef267.png", "markdown_path": "track3_finixhuge_100_table/mds/2554c249-23d3-4ede-8e3d-2df2b8aef267.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "2827031b-e181-4f49-91c7-e08461e8f5e9", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/2827031b-e181-4f49-91c7-e08461e8f5e9.png", "markdown_path": "track3_finixhuge_100_table/mds/2827031b-e181-4f49-91c7-e08461e8f5e9.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3306, "image_pixels": 15465468, "num_layout_elements": null, "num_tables": null} +{"id": "32799493-06ef-4f40-9bf1-8e345a600029", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/32799493-06ef-4f40-9bf1-8e345a600029.png", "markdown_path": "track3_finixhuge_100_table/mds/32799493-06ef-4f40-9bf1-8e345a600029.md", "json_path": null, "has_structured_json": false, "image_width": 6613, "image_height": 4675, "image_pixels": 30915775, "num_layout_elements": null, "num_tables": null} +{"id": "3475e9cf-34d5-4f83-a037-79779496709e", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/3475e9cf-34d5-4f83-a037-79779496709e.png", "markdown_path": "track3_finixhuge_100_table/mds/3475e9cf-34d5-4f83-a037-79779496709e.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "34e53b1c-e32c-4c57-90d3-cf1b07ca112b", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/34e53b1c-e32c-4c57-90d3-cf1b07ca112b.png", "markdown_path": "track3_finixhuge_100_table/mds/34e53b1c-e32c-4c57-90d3-cf1b07ca112b.md", "json_path": null, "has_structured_json": false, "image_width": 3307, "image_height": 4676, "image_pixels": 15463532, "num_layout_elements": null, "num_tables": null} +{"id": "38d6f9d0-eb2a-49a3-99eb-c89681a08f1a", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/38d6f9d0-eb2a-49a3-99eb-c89681a08f1a.png", "markdown_path": "track3_finixhuge_100_table/mds/38d6f9d0-eb2a-49a3-99eb-c89681a08f1a.md", "json_path": null, "has_structured_json": false, "image_width": 5785, "image_height": 8187, "image_pixels": 47361795, "num_layout_elements": null, "num_tables": null} +{"id": "3c3f1666-5662-4f43-ad02-5d213991f423", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/3c3f1666-5662-4f43-ad02-5d213991f423.png", "markdown_path": "track3_finixhuge_100_table/mds/3c3f1666-5662-4f43-ad02-5d213991f423.md", "json_path": null, "has_structured_json": false, "image_width": 6615, "image_height": 4678, "image_pixels": 30944970, "num_layout_elements": null, "num_tables": null} +{"id": "3fa0851c-958b-40f1-8233-256df369b293", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/3fa0851c-958b-40f1-8233-256df369b293.png", "markdown_path": "track3_finixhuge_100_table/mds/3fa0851c-958b-40f1-8233-256df369b293.md", "json_path": null, "has_structured_json": false, "image_width": 5606, "image_height": 7928, "image_pixels": 44444368, "num_layout_elements": null, "num_tables": null} +{"id": "4df76a25-74b0-4801-b4cd-f61b73c7764b", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/4df76a25-74b0-4801-b4cd-f61b73c7764b.png", "markdown_path": "track3_finixhuge_100_table/mds/4df76a25-74b0-4801-b4cd-f61b73c7764b.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "4f27636c-c9b0-4705-b37e-a19b6f0b07bb", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/4f27636c-c9b0-4705-b37e-a19b6f0b07bb.png", "markdown_path": "track3_finixhuge_100_table/mds/4f27636c-c9b0-4705-b37e-a19b6f0b07bb.md", "json_path": null, "has_structured_json": false, "image_width": 12721, "image_height": 17990, "image_pixels": 228850790, "num_layout_elements": null, "num_tables": null} +{"id": "529bb1c7-632a-4c0f-ab23-89429a2b553d", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/529bb1c7-632a-4c0f-ab23-89429a2b553d.png", "markdown_path": "track3_finixhuge_100_table/mds/529bb1c7-632a-4c0f-ab23-89429a2b553d.md", "json_path": null, "has_structured_json": false, "image_width": 5787, "image_height": 8187, "image_pixels": 47378169, "num_layout_elements": null, "num_tables": null} +{"id": "532dfde4-c1d9-4495-a592-0d26eb099da4", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/532dfde4-c1d9-4495-a592-0d26eb099da4.png", "markdown_path": "track3_finixhuge_100_table/mds/532dfde4-c1d9-4495-a592-0d26eb099da4.md", "json_path": null, "has_structured_json": false, "image_width": 3307, "image_height": 4676, "image_pixels": 15463532, "num_layout_elements": null, "num_tables": null} +{"id": "583ac07b-f9cd-49ac-91a3-3a0154c286c1", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/583ac07b-f9cd-49ac-91a3-3a0154c286c1.png", "markdown_path": "track3_finixhuge_100_table/mds/583ac07b-f9cd-49ac-91a3-3a0154c286c1.md", "json_path": null, "has_structured_json": false, "image_width": 8183, "image_height": 5787, "image_pixels": 47355021, "num_layout_elements": null, "num_tables": null} +{"id": "58f89fe3-499b-4298-878e-70d94cbad83d", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/58f89fe3-499b-4298-878e-70d94cbad83d.png", "markdown_path": "track3_finixhuge_100_table/mds/58f89fe3-499b-4298-878e-70d94cbad83d.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "5fdf46b0-a5e8-4081-bb60-50fe54006ba8", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/5fdf46b0-a5e8-4081-bb60-50fe54006ba8.png", "markdown_path": "track3_finixhuge_100_table/mds/5fdf46b0-a5e8-4081-bb60-50fe54006ba8.md", "json_path": null, "has_structured_json": false, "image_width": 22928, "image_height": 16223, "image_pixels": 371960944, "num_layout_elements": null, "num_tables": null} +{"id": "66a7ea3d-0962-49aa-8c1e-f8bebaf291d8", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/66a7ea3d-0962-49aa-8c1e-f8bebaf291d8.png", "markdown_path": "track3_finixhuge_100_table/mds/66a7ea3d-0962-49aa-8c1e-f8bebaf291d8.md", "json_path": null, "has_structured_json": false, "image_width": 15740, "image_height": 22277, "image_pixels": 350639980, "num_layout_elements": null, "num_tables": null} +{"id": "68797a40-a5d0-4ffb-aaa3-792efafea1e6", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/68797a40-a5d0-4ffb-aaa3-792efafea1e6.png", "markdown_path": "track3_finixhuge_100_table/mds/68797a40-a5d0-4ffb-aaa3-792efafea1e6.md", "json_path": null, "has_structured_json": false, "image_width": 6614, "image_height": 4678, "image_pixels": 30940292, "num_layout_elements": null, "num_tables": null} +{"id": "6950d267-1e21-45d7-9d85-0c47a9bf8bd3", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/6950d267-1e21-45d7-9d85-0c47a9bf8bd3.png", "markdown_path": "track3_finixhuge_100_table/mds/6950d267-1e21-45d7-9d85-0c47a9bf8bd3.md", "json_path": null, "has_structured_json": false, "image_width": 6614, "image_height": 4678, "image_pixels": 30940292, "num_layout_elements": null, "num_tables": null} +{"id": "69ba4380-b280-443a-af53-f06d97c6ee6a", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/69ba4380-b280-443a-af53-f06d97c6ee6a.png", "markdown_path": "track3_finixhuge_100_table/mds/69ba4380-b280-443a-af53-f06d97c6ee6a.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3306, "image_pixels": 15465468, "num_layout_elements": null, "num_tables": null} +{"id": "6ab6b885-e3c1-468c-b848-b25b943ea4cb", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/6ab6b885-e3c1-468c-b848-b25b943ea4cb.png", "markdown_path": "track3_finixhuge_100_table/mds/6ab6b885-e3c1-468c-b848-b25b943ea4cb.md", "json_path": null, "has_structured_json": false, "image_width": 5787, "image_height": 8183, "image_pixels": 47355021, "num_layout_elements": null, "num_tables": null} +{"id": "6c205e72-9e73-48d0-9373-f5c09b4b8207", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/6c205e72-9e73-48d0-9373-f5c09b4b8207.png", "markdown_path": "track3_finixhuge_100_table/mds/6c205e72-9e73-48d0-9373-f5c09b4b8207.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "6c28c22f-c4ec-4038-adfc-438d889cdc3e", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/6c28c22f-c4ec-4038-adfc-438d889cdc3e.png", "markdown_path": "track3_finixhuge_100_table/mds/6c28c22f-c4ec-4038-adfc-438d889cdc3e.md", "json_path": null, "has_structured_json": false, "image_width": 5787, "image_height": 8187, "image_pixels": 47378169, "num_layout_elements": null, "num_tables": null} +{"id": "734ca707-dfb3-41e5-8183-74c9cc37281c", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/734ca707-dfb3-41e5-8183-74c9cc37281c.png", "markdown_path": "track3_finixhuge_100_table/mds/734ca707-dfb3-41e5-8183-74c9cc37281c.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "790bec64-a119-402d-b1fa-c961d9e250ad", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/790bec64-a119-402d-b1fa-c961d9e250ad.png", "markdown_path": "track3_finixhuge_100_table/mds/790bec64-a119-402d-b1fa-c961d9e250ad.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "80995347-4472-436b-93f6-5aed79acee8b", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/80995347-4472-436b-93f6-5aed79acee8b.png", "markdown_path": "track3_finixhuge_100_table/mds/80995347-4472-436b-93f6-5aed79acee8b.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "88c6dbb4-47d4-4806-b0b8-82b3eb3f35c1", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/88c6dbb4-47d4-4806-b0b8-82b3eb3f35c1.png", "markdown_path": "track3_finixhuge_100_table/mds/88c6dbb4-47d4-4806-b0b8-82b3eb3f35c1.md", "json_path": null, "has_structured_json": false, "image_width": 4676, "image_height": 3307, "image_pixels": 15463532, "num_layout_elements": null, "num_tables": null} +{"id": "897df5dc-5f8f-4d4f-8f58-b994cf789654", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/897df5dc-5f8f-4d4f-8f58-b994cf789654.png", "markdown_path": "track3_finixhuge_100_table/mds/897df5dc-5f8f-4d4f-8f58-b994cf789654.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3307, "image_pixels": 15470146, "num_layout_elements": null, "num_tables": null} +{"id": "8a4b3d0f-93bf-416d-b7cc-36da8ef20d4c", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/8a4b3d0f-93bf-416d-b7cc-36da8ef20d4c.png", "markdown_path": "track3_finixhuge_100_table/mds/8a4b3d0f-93bf-416d-b7cc-36da8ef20d4c.md", "json_path": null, "has_structured_json": false, "image_width": 3308, "image_height": 4678, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "8b49fd91-90e6-499b-8ea1-b23b5493a82e", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/8b49fd91-90e6-499b-8ea1-b23b5493a82e.png", "markdown_path": "track3_finixhuge_100_table/mds/8b49fd91-90e6-499b-8ea1-b23b5493a82e.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3307, "image_pixels": 15470146, "num_layout_elements": null, "num_tables": null} +{"id": "8c8c784c-5dd5-40d2-9476-0a594b85fb6c", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/8c8c784c-5dd5-40d2-9476-0a594b85fb6c.png", "markdown_path": "track3_finixhuge_100_table/mds/8c8c784c-5dd5-40d2-9476-0a594b85fb6c.md", "json_path": null, "has_structured_json": false, "image_width": 3308, "image_height": 4678, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "8ff15f9a-7129-4c09-858c-e553c653f7ec", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/8ff15f9a-7129-4c09-858c-e553c653f7ec.png", "markdown_path": "track3_finixhuge_100_table/mds/8ff15f9a-7129-4c09-858c-e553c653f7ec.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "90874ded-97e7-46b8-8425-0ecaf7d6e55f", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/90874ded-97e7-46b8-8425-0ecaf7d6e55f.png", "markdown_path": "track3_finixhuge_100_table/mds/90874ded-97e7-46b8-8425-0ecaf7d6e55f.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "90a4388e-f521-43aa-8e77-7158bc58af26", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/90a4388e-f521-43aa-8e77-7158bc58af26.png", "markdown_path": "track3_finixhuge_100_table/mds/90a4388e-f521-43aa-8e77-7158bc58af26.md", "json_path": null, "has_structured_json": false, "image_width": 3307, "image_height": 4676, "image_pixels": 15463532, "num_layout_elements": null, "num_tables": null} +{"id": "90c8cdb9-90e5-4a8a-9ce8-6a72f3e8ca4b", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/90c8cdb9-90e5-4a8a-9ce8-6a72f3e8ca4b.png", "markdown_path": "track3_finixhuge_100_table/mds/90c8cdb9-90e5-4a8a-9ce8-6a72f3e8ca4b.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "94352240-793d-4aa1-9fa2-aee975a03f3c", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/94352240-793d-4aa1-9fa2-aee975a03f3c.png", "markdown_path": "track3_finixhuge_100_table/mds/94352240-793d-4aa1-9fa2-aee975a03f3c.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "945104ed-7770-40c6-a345-6feda93ae8b0", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/945104ed-7770-40c6-a345-6feda93ae8b0.png", "markdown_path": "track3_finixhuge_100_table/mds/945104ed-7770-40c6-a345-6feda93ae8b0.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "945e8fe9-8f6e-4ae6-87d4-6b0bc1751745", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/945e8fe9-8f6e-4ae6-87d4-6b0bc1751745.png", "markdown_path": "track3_finixhuge_100_table/mds/945e8fe9-8f6e-4ae6-87d4-6b0bc1751745.md", "json_path": null, "has_structured_json": false, "image_width": 4676, "image_height": 3307, "image_pixels": 15463532, "num_layout_elements": null, "num_tables": null} +{"id": "9723e972-9575-45be-81d7-35c426d3060f", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/9723e972-9575-45be-81d7-35c426d3060f.png", "markdown_path": "track3_finixhuge_100_table/mds/9723e972-9575-45be-81d7-35c426d3060f.md", "json_path": null, "has_structured_json": false, "image_width": 6614, "image_height": 4678, "image_pixels": 30940292, "num_layout_elements": null, "num_tables": null} +{"id": "973ecbf6-ebc9-468e-93a4-1aecd9814a19", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/973ecbf6-ebc9-468e-93a4-1aecd9814a19.png", "markdown_path": "track3_finixhuge_100_table/mds/973ecbf6-ebc9-468e-93a4-1aecd9814a19.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "97c4c182-74ec-455c-9d3b-2c1b99c5254f", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/97c4c182-74ec-455c-9d3b-2c1b99c5254f.png", "markdown_path": "track3_finixhuge_100_table/mds/97c4c182-74ec-455c-9d3b-2c1b99c5254f.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3307, "image_pixels": 15470146, "num_layout_elements": null, "num_tables": null} +{"id": "998ada4c-743d-416b-a132-fedfb21aa018", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/998ada4c-743d-416b-a132-fedfb21aa018.png", "markdown_path": "track3_finixhuge_100_table/mds/998ada4c-743d-416b-a132-fedfb21aa018.md", "json_path": null, "has_structured_json": false, "image_width": 6614, "image_height": 4678, "image_pixels": 30940292, "num_layout_elements": null, "num_tables": null} +{"id": "9c7857f3-2923-46a7-93a9-933146c35d11", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/9c7857f3-2923-46a7-93a9-933146c35d11.png", "markdown_path": "track3_finixhuge_100_table/mds/9c7857f3-2923-46a7-93a9-933146c35d11.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "a1aaef73-ebc9-404b-a72f-29f2b39125bc", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/a1aaef73-ebc9-404b-a72f-29f2b39125bc.png", "markdown_path": "track3_finixhuge_100_table/mds/a1aaef73-ebc9-404b-a72f-29f2b39125bc.md", "json_path": null, "has_structured_json": false, "image_width": 3308, "image_height": 4678, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "a300a942-66a1-4beb-8aad-21b7616ae44c", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/a300a942-66a1-4beb-8aad-21b7616ae44c.png", "markdown_path": "track3_finixhuge_100_table/mds/a300a942-66a1-4beb-8aad-21b7616ae44c.md", "json_path": null, "has_structured_json": false, "image_width": 5787, "image_height": 8183, "image_pixels": 47355021, "num_layout_elements": null, "num_tables": null} +{"id": "a44505fa-6639-4561-befd-e66eae9445af", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/a44505fa-6639-4561-befd-e66eae9445af.png", "markdown_path": "track3_finixhuge_100_table/mds/a44505fa-6639-4561-befd-e66eae9445af.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "a4924b6d-2eb6-4ebc-828e-ee32475c9e3e", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/a4924b6d-2eb6-4ebc-828e-ee32475c9e3e.png", "markdown_path": "track3_finixhuge_100_table/mds/a4924b6d-2eb6-4ebc-828e-ee32475c9e3e.md", "json_path": null, "has_structured_json": false, "image_width": 16527, "image_height": 23390, "image_pixels": 386566530, "num_layout_elements": null, "num_tables": null} +{"id": "a6d0f1e0-a082-49b5-ab65-d89ad31bc0bc", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/a6d0f1e0-a082-49b5-ab65-d89ad31bc0bc.png", "markdown_path": "track3_finixhuge_100_table/mds/a6d0f1e0-a082-49b5-ab65-d89ad31bc0bc.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 6617, "image_pixels": 30954326, "num_layout_elements": null, "num_tables": null} +{"id": "aef3bf0c-9a90-49d8-91e9-07417a66f4f6", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/aef3bf0c-9a90-49d8-91e9-07417a66f4f6.png", "markdown_path": "track3_finixhuge_100_table/mds/aef3bf0c-9a90-49d8-91e9-07417a66f4f6.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "b326dfb6-11c9-4ec7-b53d-417b456489b6", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/b326dfb6-11c9-4ec7-b53d-417b456489b6.png", "markdown_path": "track3_finixhuge_100_table/mds/b326dfb6-11c9-4ec7-b53d-417b456489b6.md", "json_path": null, "has_structured_json": false, "image_width": 5788, "image_height": 8186, "image_pixels": 47380568, "num_layout_elements": null, "num_tables": null} +{"id": "b44312da-8ad9-4870-a06a-8cd0e3e6ad68", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/b44312da-8ad9-4870-a06a-8cd0e3e6ad68.png", "markdown_path": "track3_finixhuge_100_table/mds/b44312da-8ad9-4870-a06a-8cd0e3e6ad68.md", "json_path": null, "has_structured_json": false, "image_width": 6614, "image_height": 4676, "image_pixels": 30927064, "num_layout_elements": null, "num_tables": null} +{"id": "b4fbeb89-087d-41d4-8a6c-58b824468a33", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/b4fbeb89-087d-41d4-8a6c-58b824468a33.png", "markdown_path": "track3_finixhuge_100_table/mds/b4fbeb89-087d-41d4-8a6c-58b824468a33.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "b5caddc4-cdb0-4f16-8bcf-499777d623df", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/b5caddc4-cdb0-4f16-8bcf-499777d623df.png", "markdown_path": "track3_finixhuge_100_table/mds/b5caddc4-cdb0-4f16-8bcf-499777d623df.md", "json_path": null, "has_structured_json": false, "image_width": 5788, "image_height": 8186, "image_pixels": 47380568, "num_layout_elements": null, "num_tables": null} +{"id": "bd843d61-18bf-4361-bb97-dd8ccd683de4", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/bd843d61-18bf-4361-bb97-dd8ccd683de4.png", "markdown_path": "track3_finixhuge_100_table/mds/bd843d61-18bf-4361-bb97-dd8ccd683de4.md", "json_path": null, "has_structured_json": false, "image_width": 3308, "image_height": 4678, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "c2c78d42-dbd1-435b-b64a-ea93a14850b3", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/c2c78d42-dbd1-435b-b64a-ea93a14850b3.png", "markdown_path": "track3_finixhuge_100_table/mds/c2c78d42-dbd1-435b-b64a-ea93a14850b3.md", "json_path": null, "has_structured_json": false, "image_width": 6614, "image_height": 4678, "image_pixels": 30940292, "num_layout_elements": null, "num_tables": null} +{"id": "c6632f54-9abc-4035-a7be-f652b748e7d6", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/c6632f54-9abc-4035-a7be-f652b748e7d6.png", "markdown_path": "track3_finixhuge_100_table/mds/c6632f54-9abc-4035-a7be-f652b748e7d6.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "c713916a-d903-4435-bd67-66dc313d64bc", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/c713916a-d903-4435-bd67-66dc313d64bc.png", "markdown_path": "track3_finixhuge_100_table/mds/c713916a-d903-4435-bd67-66dc313d64bc.md", "json_path": null, "has_structured_json": false, "image_width": 3307, "image_height": 4676, "image_pixels": 15463532, "num_layout_elements": null, "num_tables": null} +{"id": "cabe16d5-0973-491c-9954-732cdb83eaa5", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/cabe16d5-0973-491c-9954-732cdb83eaa5.png", "markdown_path": "track3_finixhuge_100_table/mds/cabe16d5-0973-491c-9954-732cdb83eaa5.md", "json_path": null, "has_structured_json": false, "image_width": 22277, "image_height": 15740, "image_pixels": 350639980, "num_layout_elements": null, "num_tables": null} +{"id": "cb6c353e-1220-4fa8-a561-2843ebd1e837", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/cb6c353e-1220-4fa8-a561-2843ebd1e837.png", "markdown_path": "track3_finixhuge_100_table/mds/cb6c353e-1220-4fa8-a561-2843ebd1e837.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "cc1ea3a3-18bf-4038-9419-d6cc01714e6c", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/cc1ea3a3-18bf-4038-9419-d6cc01714e6c.png", "markdown_path": "track3_finixhuge_100_table/mds/cc1ea3a3-18bf-4038-9419-d6cc01714e6c.md", "json_path": null, "has_structured_json": false, "image_width": 5787, "image_height": 8187, "image_pixels": 47378169, "num_layout_elements": null, "num_tables": null} +{"id": "ce5799a7-3a6a-46ea-af62-8fcbc7d3ec88", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/ce5799a7-3a6a-46ea-af62-8fcbc7d3ec88.png", "markdown_path": "track3_finixhuge_100_table/mds/ce5799a7-3a6a-46ea-af62-8fcbc7d3ec88.md", "json_path": null, "has_structured_json": false, "image_width": 5788, "image_height": 8186, "image_pixels": 47380568, "num_layout_elements": null, "num_tables": null} +{"id": "d59e3fbd-b00a-491a-b6dd-44ccdc9dbd70", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/d59e3fbd-b00a-491a-b6dd-44ccdc9dbd70.png", "markdown_path": "track3_finixhuge_100_table/mds/d59e3fbd-b00a-491a-b6dd-44ccdc9dbd70.md", "json_path": null, "has_structured_json": false, "image_width": 8699, "image_height": 12311, "image_pixels": 107093389, "num_layout_elements": null, "num_tables": null} +{"id": "d691818c-ae25-470b-a76b-1cefbf197037", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/d691818c-ae25-470b-a76b-1cefbf197037.png", "markdown_path": "track3_finixhuge_100_table/mds/d691818c-ae25-470b-a76b-1cefbf197037.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "d9a99684-487c-4268-bcfa-9db4d3b794e1", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/d9a99684-487c-4268-bcfa-9db4d3b794e1.png", "markdown_path": "track3_finixhuge_100_table/mds/d9a99684-487c-4268-bcfa-9db4d3b794e1.md", "json_path": null, "has_structured_json": false, "image_width": 6614, "image_height": 4678, "image_pixels": 30940292, "num_layout_elements": null, "num_tables": null} +{"id": "db515dd2-3771-4b3a-9b79-fc594ce2608a", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/db515dd2-3771-4b3a-9b79-fc594ce2608a.png", "markdown_path": "track3_finixhuge_100_table/mds/db515dd2-3771-4b3a-9b79-fc594ce2608a.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "e3e19b92-dca6-452f-a000-3998ac55d8b4", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/e3e19b92-dca6-452f-a000-3998ac55d8b4.png", "markdown_path": "track3_finixhuge_100_table/mds/e3e19b92-dca6-452f-a000-3998ac55d8b4.md", "json_path": null, "has_structured_json": false, "image_width": 3306, "image_height": 4678, "image_pixels": 15465468, "num_layout_elements": null, "num_tables": null} +{"id": "e56db050-7caa-4823-9481-83d62c6b0dd0", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/e56db050-7caa-4823-9481-83d62c6b0dd0.png", "markdown_path": "track3_finixhuge_100_table/mds/e56db050-7caa-4823-9481-83d62c6b0dd0.md", "json_path": null, "has_structured_json": false, "image_width": 8187, "image_height": 5785, "image_pixels": 47361795, "num_layout_elements": null, "num_tables": null} +{"id": "e84bf0cc-819c-4f7f-8cfb-3fa4b45265fc", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/e84bf0cc-819c-4f7f-8cfb-3fa4b45265fc.png", "markdown_path": "track3_finixhuge_100_table/mds/e84bf0cc-819c-4f7f-8cfb-3fa4b45265fc.md", "json_path": null, "has_structured_json": false, "image_width": 6614, "image_height": 4678, "image_pixels": 30940292, "num_layout_elements": null, "num_tables": null} +{"id": "e8b578eb-d776-48d8-8cc7-01090d0ee8b3", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/e8b578eb-d776-48d8-8cc7-01090d0ee8b3.png", "markdown_path": "track3_finixhuge_100_table/mds/e8b578eb-d776-48d8-8cc7-01090d0ee8b3.md", "json_path": null, "has_structured_json": false, "image_width": 6617, "image_height": 4678, "image_pixels": 30954326, "num_layout_elements": null, "num_tables": null} +{"id": "ec745262-a617-4423-b6f0-1d57849344b5", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/ec745262-a617-4423-b6f0-1d57849344b5.png", "markdown_path": "track3_finixhuge_100_table/mds/ec745262-a617-4423-b6f0-1d57849344b5.md", "json_path": null, "has_structured_json": false, "image_width": 6614, "image_height": 4678, "image_pixels": 30940292, "num_layout_elements": null, "num_tables": null} +{"id": "f0ab450d-bd73-478b-a9fd-016433edaed7", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/f0ab450d-bd73-478b-a9fd-016433edaed7.png", "markdown_path": "track3_finixhuge_100_table/mds/f0ab450d-bd73-478b-a9fd-016433edaed7.md", "json_path": null, "has_structured_json": false, "image_width": 22277, "image_height": 15740, "image_pixels": 350639980, "num_layout_elements": null, "num_tables": null} +{"id": "f23fb56f-0ec8-42c2-abea-c5d6e391852d", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/f23fb56f-0ec8-42c2-abea-c5d6e391852d.png", "markdown_path": "track3_finixhuge_100_table/mds/f23fb56f-0ec8-42c2-abea-c5d6e391852d.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "f5009a2d-b341-43f1-a9d3-d6f371606378", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/f5009a2d-b341-43f1-a9d3-d6f371606378.png", "markdown_path": "track3_finixhuge_100_table/mds/f5009a2d-b341-43f1-a9d3-d6f371606378.md", "json_path": null, "has_structured_json": false, "image_width": 11575, "image_height": 8186, "image_pixels": 94752950, "num_layout_elements": null, "num_tables": null} +{"id": "f501eee1-abb6-4c21-95fd-7824ea65cc2a", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/f501eee1-abb6-4c21-95fd-7824ea65cc2a.png", "markdown_path": "track3_finixhuge_100_table/mds/f501eee1-abb6-4c21-95fd-7824ea65cc2a.md", "json_path": null, "has_structured_json": false, "image_width": 8183, "image_height": 5787, "image_pixels": 47355021, "num_layout_elements": null, "num_tables": null} +{"id": "f55ee3ad-c6f8-402d-807c-4e514ee9bdf3", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/f55ee3ad-c6f8-402d-807c-4e514ee9bdf3.png", "markdown_path": "track3_finixhuge_100_table/mds/f55ee3ad-c6f8-402d-807c-4e514ee9bdf3.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3308, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "f64061da-24d5-4cbb-9379-a913f1b2c143", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/f64061da-24d5-4cbb-9379-a913f1b2c143.png", "markdown_path": "track3_finixhuge_100_table/mds/f64061da-24d5-4cbb-9379-a913f1b2c143.md", "json_path": null, "has_structured_json": false, "image_width": 3308, "image_height": 4678, "image_pixels": 15474824, "num_layout_elements": null, "num_tables": null} +{"id": "fa0a22fc-9e64-4551-a9db-b144f994213e", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/fa0a22fc-9e64-4551-a9db-b144f994213e.png", "markdown_path": "track3_finixhuge_100_table/mds/fa0a22fc-9e64-4551-a9db-b144f994213e.md", "json_path": null, "has_structured_json": false, "image_width": 5787, "image_height": 8187, "image_pixels": 47378169, "num_layout_elements": null, "num_tables": null} +{"id": "fbc4742a-6940-434b-aa7f-981967ad9df1", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/fbc4742a-6940-434b-aa7f-981967ad9df1.png", "markdown_path": "track3_finixhuge_100_table/mds/fbc4742a-6940-434b-aa7f-981967ad9df1.md", "json_path": null, "has_structured_json": false, "image_width": 5606, "image_height": 7928, "image_pixels": 44444368, "num_layout_elements": null, "num_tables": null} +{"id": "fd2907b4-3de6-4bec-aa73-cd3c644f055b", "track_id": "track3", "track": "FinixHuge", "subset": "large_tables", "subset_dir": "track3_finixhuge_100_table", "source_type": "mixed_quality", "document_type": "large_dense_tables", "tasks": ["markdown_parsing", "ultra_large_table_reconstruction", "ultra_large_page_processability"], "image_path": "track3_finixhuge_100_table/images/fd2907b4-3de6-4bec-aa73-cd3c644f055b.png", "markdown_path": "track3_finixhuge_100_table/mds/fd2907b4-3de6-4bec-aa73-cd3c644f055b.md", "json_path": null, "has_structured_json": false, "image_width": 4678, "image_height": 3306, "image_pixels": 15465468, "num_layout_elements": null, "num_tables": null} diff --git a/track1_finixdigital_242_insurance_terms/jsons/008053f7-47b1-4810-bfad-6f51c0ddc390.json b/track1_finixdigital_242_insurance_terms/jsons/008053f7-47b1-4810-bfad-6f51c0ddc390.json new file mode 100644 index 0000000000000000000000000000000000000000..a45dcd1d1d072cdd4d655cb891d5efe01ee2dbc2 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/008053f7-47b1-4810-bfad-6f51c0ddc390.json @@ -0,0 +1,263 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1190, + "height": 1685, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 180, + 142, + 748, + 175 + ], + "content": "被保险人在开始领取养老年金之前,本合同的现金价值如下:", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 140, + 181, + 1044, + 243 + ], + "content": "一、前 5 个保单年度(含),现金价值等于本合同的累计已交保险费的一定比例,具体比例如下:", + "order": 2 + }, + { + "category": "table", + "bbox": [ + 184, + 248, + 1012, + 477 + ], + "content": "
保单年度具体比例
第 1 个保单年度95%
第 2 个保单年度97%
第 3 个保单年度99%
第 4 个保单年度100%
第 5 个保单年度100%
", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 145, + 477, + 1050, + 535 + ], + "content": "二、第 6 个保单年度(含)到第 10 个保单年度(含),现金价值等于本合同的累计已交保险费(不计利息)与本合同个人账户累计收益的75%之和。", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 140, + 544, + 1047, + 605 + ], + "content": "三、第 11 个保单年度及以后,现金价值等于本合同的累计已交保险费(不计利息)与本合同个人账户累计收益的90%之和。", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 140, + 610, + 1047, + 671 + ], + "content": "上述累计已交保险费是指您按合同约定已支付的本合同的保险费之和。上述个人账户累计收益部分等于个人账户价值减去累计所交保险费(不计利息)后的余额。", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 180, + 679, + 703, + 709 + ], + "content": "本合同的现金价值自被保险人开始领取养老年金后为零。", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 175, + 719, + 536, + 745 + ], + "content": "您犹豫期后解除合同会遭受一定损失。", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 139, + 761, + 327, + 792 + ], + "content": "# 6、特殊解除合同", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 151, + 804, + 1044, + 871 + ], + "content": "本合同生效后,若被保险人发生本合同约定的重大疾病或遭遇意外伤害事故且伤残程度达到《人身保险伤残评定标准及代码》中人身伤残保险评定标准 1-3 级的,您可以申请特殊解除本合同。", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 136, + 877, + 1045, + 938 + ], + "content": "若您在被保险人开始领取养老年金前申请特殊解除本合同,我们退还申请特殊解除合同时的个人账户价值。", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 178, + 941, + 932, + 973 + ], + "content": "若您在被保险人开始领取养老年金后申请特殊解除本合同,我们的处理方式如下:", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 139, + 980, + 1050, + 1074 + ], + "content": "一、如您选择保证返还账户价值终身领取(月领/年领)方式,且申请特殊解除合同时我们已给付的养老年金总和小于养老年金开始领取日的个人账户价值,我们退还养老年金开始领取日的个人账户价值与已给付的养老年金总和(不计利息)的差额。", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 139, + 1081, + 1051, + 1140 + ], + "content": "二、如您选择固定期限(10、15 或 20 年)领取(月领/年领),我们按以下两者中的较大者一次性给付:", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 182, + 1149, + 708, + 1178 + ], + "content": "1. 固定领取期内尚未给付的养老年金之和(不计利息);", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 178, + 1179, + 967, + 1214 + ], + "content": "2. 养老年金开始领取日的个人账户价值与已给付养老年金之和(不计利息)的差额。", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 141, + 1217, + 1029, + 1283 + ], + "content": "您因被保险人发生上述情形申请特殊解除本合同时,应填写合同解除申请书,并提供下列证明和资料:", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 184, + 1290, + 312, + 1317 + ], + "content": "1. 保险合同;", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 183, + 1324, + 404, + 1357 + ], + "content": "2. 您的有效身份证件;", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 138, + 1364, + 1033, + 1427 + ], + "content": "3. 如果被保险人罹患本合同所指的重大疾病,需要提供我们认可医院的专科医生出具的附有病历、必要病理检验、血液检验及其他科学方法检验报告的疾病诊断书;", + "order": 20 + }, + { + "category": "text", + "bbox": [ + 139, + 1429, + 1040, + 1525 + ], + "content": "4. 因遭遇意外伤害导致伤残且达到人身伤残保险评定标准 1 至 3 级的,需提供我们认可鉴定机构的被保险人伤残程度的资料或身体伤残程度鉴定书;公安等有权部门出具的意外事故证明;所能提供的与确认保险事故的性质、原因、伤害程度等有关的其他证明和资料;", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 178, + 1529, + 569, + 1561 + ], + "content": "5. 特殊解除合同时需要的其他相关材料。", + "order": 22 + }, + { + "category": "page-footer", + "bbox": [ + 571, + 1556, + 626, + 1587 + ], + "content": "4/16", + "order": 23 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/01c9577f-0cca-440e-a037-93c754764553.json b/track1_finixdigital_242_insurance_terms/jsons/01c9577f-0cca-440e-a037-93c754764553.json new file mode 100644 index 0000000000000000000000000000000000000000..24251d2be27cefa5e6a0af2edd337dee7d165706 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/01c9577f-0cca-440e-a037-93c754764553.json @@ -0,0 +1,186 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 164, + 149, + 400, + 182 + ], + "content": "# 二、创富领先投资账户", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 175, + 198, + 416, + 232 + ], + "content": "## (一) 账户特征与投资策略", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 174, + 238, + 1008, + 299 + ], + "content": "本账户适合流动性需求适中、有能力且愿意承受较高程度风险以获得可能高于市场平均收益率水平回报的投保人。", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 174, + 307, + 1009, + 557 + ], + "content": "本账户采用积极的投资策略,重点投资于基金产品,并根据市场状况进行灵活调整,强调风险与收益的匹配,并通过适度配置固定收益类以及类固定收益的其他金融资产,以取得稳定的投资回报。在账户构建过程中,首先采取自上而下的策略,通过对宏观经济的分析确定账户的资产配置比例,精选并积极配置能够带来超越市场平均收益的公募基金。本投资组合主要通过宏观经济数据库的构建、宏观经济数据的及时跟踪分析,以及与专业机构投资者的定期沟通,力争在市场趋势改变前适当调整各投资品种的比例,控制投资风险,追求超额收益。", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 177, + 575, + 499, + 607 + ], + "content": "## (二) 资产配置范围及投资比例限制", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 175, + 612, + 1009, + 822 + ], + "content": "本账户主要投资于开放式基金、封闭式基金以及其他权益类资产、债券、债权投资计划、集合资金信托计划、货币市场工具、其他金融资产等投资工具。其中,开放式基金、封闭式基金以及其他权益类资产的投资比例为账户价值的 0-90%;债券、债券回购等固定收益类资产合计占账户价值的 0-60%;流动性资产的投资余额不低于账户价值的 5%;基础设施投资计划、不动产相关金融产品、其他金融资产的投资余额不超过账户价值的 75%,其中单一项目的投资余额不超过账户价值的 50%。", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 175, + 831, + 1009, + 898 + ], + "content": "本账户可参与股票战略配售、定向增发、网下和网上新股申购等一级市场投资以及法律法规允许或监管部门批准的其他投资。", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 173, + 918, + 357, + 947 + ], + "content": "## (三) 业绩比较基准", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 210, + 955, + 677, + 983 + ], + "content": "深300指数收益率*70%+上证国债指数收益率*30%。", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 172, + 1004, + 357, + 1037 + ], + "content": "## (四) 主要投资风险", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 214, + 1043, + 885, + 1072 + ], + "content": "本账户的主要投资风险为市场风险、政策风险、信用风险及流动性风险。", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 177, + 1093, + 355, + 1123 + ], + "content": "## (五) 资产托管情况", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 216, + 1130, + 757, + 1160 + ], + "content": "本账户所有投资资产均托管在中国建设银行北京复兴支行。", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 175, + 1183, + 358, + 1212 + ], + "content": "## (六) 历史单位价格", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 216, + 1216, + 849, + 1245 + ], + "content": "本账户自成立以来每月末单位价格如下图(截至 2023 年 3 月 31 日)。", + "order": 15 + }, + { + "category": "page-footer", + "bbox": [ + 581, + 1574, + 604, + 1595 + ], + "content": "4", + "order": 16 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/090e980a-47b3-4ba9-898d-87047e69cb7f.json b/track1_finixdigital_242_insurance_terms/jsons/090e980a-47b3-4ba9-898d-87047e69cb7f.json new file mode 100644 index 0000000000000000000000000000000000000000..3003f1140dddfca798b026f9fc9a19f16179a2f8 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/090e980a-47b3-4ba9-898d-87047e69cb7f.json @@ -0,0 +1,32 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 222, + 150, + 373, + 180 + ], + "content": "# 四、特别声明", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 217, + 191, + 780, + 220 + ], + "content": "本产品说明书内容仅供参考,具体合同内容以产品条款为准。", + "order": 2 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/0915fdd1-dc13-42e4-bc3f-1deb95fc242e.json b/track1_finixdigital_242_insurance_terms/jsons/0915fdd1-dc13-42e4-bc3f-1deb95fc242e.json new file mode 100644 index 0000000000000000000000000000000000000000..cad20deb4f2037af98d0566c89979ff4222bfc99 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/0915fdd1-dc13-42e4-bc3f-1deb95fc242e.json @@ -0,0 +1,185 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "figure", + "bbox": [ + 896, + 107, + 967, + 164 + ], + "order": 1 + }, + { + "category": "text", + "bbox": [ + 982, + 108, + 1115, + 142 + ], + "content": "国泰产险", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 982, + 146, + 1098, + 166 + ], + "content": "Cathay Insurance", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 68, + 171, + 1115, + 272 + ], + "content": "保”、第 9 条“投保人、被保险人义务”、第 10.1 条“保险金申请材料”、第 11.2 条“保险合同解除”、及第 12 条“释义”中部分以黑体字加粗标示的内容。", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 86, + 321, + 436, + 356 + ], + "content": "# 6、 产品保险期间/不保证续保", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 116, + 387, + 442, + 418 + ], + "content": "本产品是不保证续保保险产品。", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 68, + 453, + 1115, + 550 + ], + "content": "本产品保险期间为一年。保险期间届满,投保人需要重新向保险公司申请投保本产品,并经保险人同意,交纳保险费,获得新的保险合同。", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 85, + 601, + 303, + 635 + ], + "content": "# 7、 产品缴费方式", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 114, + 665, + 969, + 701 + ], + "content": "本产品的缴费方式分为按年缴费和分期缴费两种方式,您可以根据需求自行选择。", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 68, + 731, + 1117, + 833 + ], + "content": "若您选择按年缴费,应当在订立本合同时一次性交清全部保险费。若未按照合同约定的期限支付保险费的,保险合同不生效。", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 115, + 864, + 540, + 895 + ], + "content": "若您选择分期缴费的,请注意以下内容:", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 67, + 929, + 1097, + 1031 + ], + "content": "分期缴费的缴费周期为月,总共 12 期;未缴付首期保费的,保险合同不成立,我们不承担保险责任。", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 67, + 1060, + 1109, + 1160 + ], + "content": "(1)自缴费日零时起 30 天为宽限期,投保人在宽限期内补缴当期保费的,保单持续有效,且针对宽限期内发生的保险事故,我们仍承担保险责任。", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 67, + 1191, + 1110, + 1361 + ], + "content": "(2)若您未按照保险合同约定的付款时间足额缴付当期保费,且自缴费日零时起 30 日内宽限期内仍未足额补缴当期保费的,则本保险合同的保险期间在上一个缴费周期结束时中止,保险期间中止后发生的保险事故,我们不承担给付保险金的责任。", + "order": 14 + }, + { + "category": "section-header", + "bbox": [ + 86, + 1406, + 279, + 1441 + ], + "content": "# 8、 产品等待期", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 66, + 1470, + 1112, + 1575 + ], + "content": "本保险的等待期为 90 天,若是预约投保等待期为 60 天,意外伤害引起的保险事故或续保无等待期。", + "order": 16 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/10d17bd5-5291-4474-8a5d-45d0b6e45c20.json b/track1_finixdigital_242_insurance_terms/jsons/10d17bd5-5291-4474-8a5d-45d0b6e45c20.json new file mode 100644 index 0000000000000000000000000000000000000000..fc67d48f638380faaa6f0d353a21b942562abfb8 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/10d17bd5-5291-4474-8a5d-45d0b6e45c20.json @@ -0,0 +1,164 @@ +{ + "resized_height": 1408, + "resized_width": 992, + "width": 993, + "height": 1404, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 183, + 128, + 441, + 153 + ], + "content": "指进行马术、杂技、驯兽等表演。", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 147, + 162, + 414, + 189 + ], + "content": "# 十八、感染艾滋病病毒或患艾滋病", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 181, + 197, + 579, + 220 + ], + "content": "艾滋病病毒指人类免疫缺陷病毒,英文缩写为 HIV。", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 149, + 228, + 851, + 322 + ], + "content": "艾滋病指人类免疫缺陷病毒引起的获得性免疫缺陷综合征,英文缩写为 AIDS。在人体血液或其它样本中检测到艾滋病病毒或其抗体呈阳性,没有出现临床症状或体征的,为感染艾滋病病毒;如果同时出现了明显临床症状或体征的,为患艾滋病。", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 148, + 331, + 328, + 355 + ], + "content": "# 十九、未满期净保险费", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 182, + 363, + 565, + 386 + ], + "content": "除另有约定外,按下述公式计算未满期净保险费:", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 149, + 394, + 853, + 458 + ], + "content": "如投保人在本合同成立时选择一次性交付保险费,未满期净保险费=保险费×[1-(保险单已经过天数/保险期间天数)]×(1-退保手续费率)。经过天数不足一天的按一天计算。", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 149, + 463, + 853, + 556 + ], + "content": "如投保人在本合同成立时选择分期交付保险费,未满期净保险费=本合同的当期保险费×[1-(当期实际经过天数/当期实际天数)]×(1-退保手续费率)。经过天数不足一天按一天计算。", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 182, + 563, + 710, + 625 + ], + "content": "退保手续费率由投保人和保险人在投保时约定,并在本合同中载明。\n\n若本合同已发生保险金给付,未满期净保险费为零。", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 147, + 631, + 275, + 655 + ], + "content": "# 二十、不可抗力", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 181, + 663, + 548, + 691 + ], + "content": "指不能预见、不能避免并不能克服的客观情况。", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 147, + 697, + 328, + 722 + ], + "content": "# 二十一、保险金申请人", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 182, + 731, + 728, + 758 + ], + "content": "指受益人或被保险人的继承人或依法享有保险金请求权的其他自然人。", + "order": 13 + }, + { + "category": "page-footer", + "bbox": [ + 485, + 1304, + 505, + 1326 + ], + "content": "10", + "order": 14 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/11bceca9-0986-4d27-a5a5-73665c032f6e.json b/track1_finixdigital_242_insurance_terms/jsons/11bceca9-0986-4d27-a5a5-73665c032f6e.json new file mode 100644 index 0000000000000000000000000000000000000000..662c5eb06ccd792d67f0636dab025fb45937eeb5 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/11bceca9-0986-4d27-a5a5-73665c032f6e.json @@ -0,0 +1,240 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "figure", + "bbox": [ + 788, + 107, + 862, + 165 + ], + "order": 1 + }, + { + "category": "text", + "bbox": [ + 869, + 107, + 1011, + 142 + ], + "content": "国泰产险", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 872, + 147, + 999, + 165 + ], + "content": "Cathay Insurance", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 173, + 165, + 1015, + 245 + ], + "content": "(5)被保险接受整容手术、其他内、外科手术或其他诊疗活动过程中发生的医疗意外和医疗损害;", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 236, + 265, + 802, + 300 + ], + "content": "(6)被保险人未遵医嘱,私自服用、涂用、注射药物;", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 176, + 314, + 1010, + 402 + ], + "content": "(7)被保险人受细菌、病毒或寄生虫感染(但因意外伤害事故致伤口感染者除外),或高原反应、中暑、猝死、食物中毒;", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 175, + 415, + 1008, + 504 + ], + "content": "(8)任何生物、化学、原子能武器,原子能或核能装置所造成的爆炸、灼伤、污染或辐射;", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 237, + 516, + 397, + 553 + ], + "content": "(9)恐怖袭击;", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 174, + 564, + 1000, + 652 + ], + "content": "(10)被保险人从事潜水、跳伞、攀岩运动、探险活动、武术比赛、摔跤比赛、特技表演、赛马、赛车等高风险的活动;", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 172, + 666, + 1003, + 752 + ], + "content": "(11)未满 12 周岁驾驶自行车、三轮车;未满 16 周岁驾驶电动自行车和残疾人机动轮椅车;", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 239, + 765, + 724, + 802 + ], + "content": "(12)战争、军事行动、暴动或武装叛乱期间;", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 237, + 817, + 936, + 856 + ], + "content": "(13)被保险人从事非法、犯罪活动期间或被依法拘留、服刑期间;", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 234, + 867, + 793, + 905 + ], + "content": "(14)被保险人酗酒或受毒品、管制药物的影响期间;", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 173, + 919, + 1002, + 1007 + ], + "content": "(15)存在精神和行为障碍(以世界卫生组织颁布的《疾病和有关健康问题的国际统计分类(ICD-10)》为准)期间;", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 174, + 1017, + 1000, + 1106 + ], + "content": "(16)被保险人酒后驾驶、无有效驾驶证驾驶或驾驶无有效行驶证的机动车期间。", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 223, + 1121, + 939, + 1158 + ], + "content": "国泰财产保险有限责任公司附加意外医疗保险条款(互联网 A 款):", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 177, + 1172, + 1005, + 1256 + ], + "content": "(1)因椎间盘突出症(包括椎间盘膨出、椎间盘突出、椎间盘脱出、游离型椎间盘等类型)造成被保险人支出的医疗费用;", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 236, + 1272, + 824, + 1307 + ], + "content": "(2)被保险人体检、疗养、心理咨询或康复治疗的费用;", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 174, + 1325, + 1009, + 1412 + ], + "content": "(3)用于矫形、整容、美容、器官移植或修复、安装及购买残疾用具(如轮椅、假肢、助听器、假眼、配镜等)的费用;", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 236, + 1421, + 902, + 1462 + ], + "content": "(4)交通费、食宿费、生活补助费,及被保险人的误工补贴费;", + "order": 20 + }, + { + "category": "text", + "bbox": [ + 235, + 1470, + 656, + 1514 + ], + "content": "(5)主险合同中列明的“责任免除”事项;", + "order": 21 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/12cae7f9-8d69-4093-b328-a23d71683dfa.json b/track1_finixdigital_242_insurance_terms/jsons/12cae7f9-8d69-4093-b328-a23d71683dfa.json new file mode 100644 index 0000000000000000000000000000000000000000..7610a180f8a88fb6cdd997c6751e67dbfde67a38 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/12cae7f9-8d69-4093-b328-a23d71683dfa.json @@ -0,0 +1,285 @@ +{ + "resized_height": 1408, + "resized_width": 992, + "width": 993, + "height": 1404, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 261, + 104, + 720, + 131 + ], + "content": "时起生效,保险期间为1年,并进入下一个保证续保期间。", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 261, + 131, + 637, + 235 + ], + "content": "若发生下列情形之一的,本合同不再接受续保:\n(1)本产品已停售;\n(2)被保险人的年龄已满 75 周岁³;\n(3)未通过续保审核。", + "order": 2 + }, + { + "category": "section-header", + "bbox": [ + 101, + 242, + 254, + 294 + ], + "content": "## 2.3 基本保险金额", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 261, + 244, + 898, + 294 + ], + "content": "本合同的基本保险金额由您在投保时与我们约定并在保险合同上载明。若该金额发生变更,则以变更后的金额为准。", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 100, + 301, + 254, + 382 + ], + "content": "## 2.4 失能收入损失保险金最高给付期限", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 261, + 301, + 898, + 404 + ], + "content": "本合同失能收入损失保险金(包括特定疾病及意外伤害失能收入损失保险金和特定恶性肿瘤——重度失能收入损失保险金)的最高给付期限分为 60 个月和 120 个月两种,失能收入损失保险金最高给付期限由您在投保时与我们约定并在保险合同上载明。", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 261, + 404, + 848, + 431 + ], + "content": "失能收入损失保险金最高给付期限一经确定,在保证续保期间内不得变更。", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 102, + 438, + 217, + 465 + ], + "content": "## 2.5 等待期", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 261, + 438, + 898, + 542 + ], + "content": "自本合同生效之日起 90 日内,被保险人因意外伤害⁴以外的原因,被确诊患有本合同约定的特定疾病⁵或特定恶性肿瘤——重度⁶,我们不承担保险责任,退还您已交的本合同保险费(不计利息),本合同和保证续保期间均终止。这 90 日的时间称为等待期。", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 262, + 543, + 601, + 620 + ], + "content": "以下两种情形,无等待期:\n(1)被保险人因意外伤害发生上述情形的;\n(2)您续保本合同的。", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 99, + 631, + 234, + 654 + ], + "content": "## 2.6 保险责任", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 261, + 627, + 898, + 731 + ], + "content": "本合同的保险责任分为基本部分和可选部分。\n您可以单独投保基本部分,也可以同时投保基本部分和可选部分,但不能单独投保可选部分。您投保的可选部分以保险单上载明的为准。\n在本合同有效期内,我们承担如下保险责任:", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 159, + 742, + 234, + 763 + ], + "content": "### 基本部分", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 158, + 774, + 254, + 873 + ], + "content": "#### 特定疾病及意外伤害失能收入损失保险金", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 261, + 773, + 898, + 849 + ], + "content": "被保险人首次满足如下特定疾病及意外伤害失能收入损失保险金给付条件之一,且被保险人生存的,我们在每月的失能收入损失保险金给付日⁷按基本保险金额给付特定疾病及意外伤害失能收入损失保险金:", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 261, + 849, + 898, + 927 + ], + "content": "(1)被保险人于等待期后经我们认可的医院⁸确诊初次患有⁹本合同约定的特定疾病(一种或多种)且因该特定疾病首次达到本合同约定的该特定疾病所对应的失能状态要求¹⁰;", + "order": 16 + }, + { + "category": "footnote", + "bbox": [ + 99, + 986, + 891, + 1029 + ], + "content": "³ 周岁:指按有效身份证件中记载的出生日期计算的年龄,自出生之日起为 0 周岁,每经过一年增加一岁,不足一年的不计。", + "order": 17 + }, + { + "category": "footnote", + "bbox": [ + 99, + 1029, + 897, + 1089 + ], + "content": "⁴ 意外伤害:指外来的、突发的、非本意的、非疾病的使身体受到伤害的客观事件,猝死不属于意外伤害。猝死指外表看似健康的人因潜在疾病、机能障碍或其他原因在出现症状后 24 小时内发生的非暴力性突然死亡,以医疗机构的诊断或公安、司法机关的鉴定为准。", + "order": 18 + }, + { + "category": "footnote", + "bbox": [ + 99, + 1089, + 875, + 1106 + ], + "content": "⁵ 特定疾病:名称列参见 “2.5 我们所保障的特定疾病列表”,具体定义见 “9.1 特定疾病定义及对应失能状态要求”。", + "order": 19 + }, + { + "category": "footnote", + "bbox": [ + 100, + 1106, + 734, + 1125 + ], + "content": "⁶ 特定恶性肿瘤——重度:具体定义见 “9.2 特定恶性肿瘤——重度定义及对应失能状态要求”。", + "order": 20 + }, + { + "category": "footnote", + "bbox": [ + 99, + 1126, + 892, + 1167 + ], + "content": "⁷ 失能收入损失保险金给付日:指我们首次给付失能收入损失保险金的日期及之后每月的对应日。若当月无对应的同一日,则以该月最后一日为保单生效对应日。", + "order": 21 + }, + { + "category": "footnote", + "bbox": [ + 99, + 1167, + 897, + 1226 + ], + "content": "⁸ 我们认可的医院:指国家《医院分级管理标准》中的二级或二级以上的医院。不包括康复医院或康复病房、精神病院、疗养院、护理院、戒酒或戒毒中心、精神心理治疗中心、急诊或门诊观察室、无相应医护人员或设备的二级或三级医院的联合医院或联合病房。若我们有指定,则指我们指定的医院。", + "order": 22 + }, + { + "category": "footnote", + "bbox": [ + 100, + 1226, + 891, + 1264 + ], + "content": "⁹ 确诊初次患有:指自被保险人出生之日起经我们认可的医院确诊第一次患有某种疾病,而不是指自本合同生效、复效之后经我们认可的医院确诊第一次患有某种疾病。", + "order": 23 + }, + { + "category": "footnote", + "bbox": [ + 101, + 1265, + 897, + 1305 + ], + "content": "¹⁰ 失能状态要求:详见 “9.1 特定疾病定义及对应失能状态要求”、“9.2 特定恶性肿瘤——重度定义及对应失能状态要求”。", + "order": 24 + }, + { + "category": "page-footer", + "bbox": [ + 405, + 1342, + 585, + 1363 + ], + "content": "条款正文第 2 页 /共 17 页", + "order": 25 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/13977ebf-0bb0-4e16-a1ae-3cef62246628.json b/track1_finixdigital_242_insurance_terms/jsons/13977ebf-0bb0-4e16-a1ae-3cef62246628.json new file mode 100644 index 0000000000000000000000000000000000000000..bcbfe5ac8c71e9cdafa2d6a4d5d65caef113534a --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/13977ebf-0bb0-4e16-a1ae-3cef62246628.json @@ -0,0 +1,174 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "figure", + "bbox": [ + 786, + 104, + 861, + 166 + ], + "order": 1 + }, + { + "category": "text", + "bbox": [ + 873, + 109, + 1009, + 143 + ], + "content": "国泰产险", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 873, + 146, + 991, + 166 + ], + "content": "Cathay Insurance", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 177, + 167, + 991, + 246 + ], + "content": "上一个缴费周期结束时中止,保险期间中止后发生的保险事故,我们不承担给付保险金的责任。", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 194, + 280, + 384, + 314 + ], + "content": "## 8、 产品等待期", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 218, + 329, + 783, + 363 + ], + "content": "本保险的等待期为 30 天,若是续约保单则无等待期。", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 194, + 394, + 384, + 427 + ], + "content": "## 9、 产品犹豫期", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 220, + 443, + 497, + 473 + ], + "content": "本产品的犹豫期为 15 天。", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 197, + 510, + 696, + 540 + ], + "content": "## 10、 产品合同解除(退保)条件、流程及时限", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 208, + 555, + 632, + 588 + ], + "content": "### (1)、产品合同解除(退保)条件、时限", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 175, + 605, + 994, + 736 + ], + "content": "在本合同成立后,投保人可以书面形式通知保险人解除合同。投保人通过保险人认可或同意的网站等互联网渠道申请解除本合同的,可视作投保人的书面申请。其中:", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 170, + 751, + 1007, + 885 + ], + "content": "(1) 在本合同的生效日之前,投保人要求解除本合同的,自保险人接到保险合同解除申请之日起,本合同的效力终止,保险人应当全额退还已收取的保险费。", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 170, + 894, + 996, + 1230 + ], + "content": "(2)除另有约定外,在本合同的生效日之后,投保人有 15 日(含)的犹豫期。在此期间内,投保人要求解除本合同的,自保险人接到保险合同解除申请之日起,本合同的效力终止,保险人应当全额退还已收取的保险费。投保人要求在犹豫期内解除本合同的,对于合同解除前被保险人发生的保险事故,保险人将不承担任何保险责任,若保险人已经承担保险责任的,被保险人应当向保险人退还已经支付的保险金,投保人对被保险人退还保险金应承担连带责任。", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 177, + 1242, + 995, + 1377 + ], + "content": "(3)在本合同的保险期间内且犹豫期届满后,投保人要求解除本合同的,自保险人接到保险合同解除申请之日起,本合同的效力终止。保险人将向投保人退还未满期保险费。", + "order": 14 + }, + { + "category": "section-header", + "bbox": [ + 207, + 1392, + 441, + 1422 + ], + "content": "### (2)、退保流程及公式", + "order": 15 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/1abb05d2-55aa-43de-8a87-f53157e27338.json b/track1_finixdigital_242_insurance_terms/jsons/1abb05d2-55aa-43de-8a87-f53157e27338.json new file mode 100644 index 0000000000000000000000000000000000000000..4ec3dca61b564611bc0fefa84c6fbb5f4ff15aea --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/1abb05d2-55aa-43de-8a87-f53157e27338.json @@ -0,0 +1,230 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 549, + 170, + 693, + 202 + ], + "content": "# 八、投保示例", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 108, + 204, + 159, + 231 + ], + "content": "## 示例", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 110, + 244, + 1098, + 314 + ], + "content": "周先生,30 周岁,为自己投保了“太保福有余终身寿险(互联网)”,选择 5 年交,年交保险费100,000元。", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 148, + 326, + 243, + 357 + ], + "content": "### 保单利益", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 108, + 372, + 1090, + 467 + ], + "content": "身故保险金或全残保险金:交费期满前,身故保险金或全残保险金为已交保险费的一定比例和现金价值的较大者;交费期满后,身故保险金或全残保险金为已交保险费的一定比例、现金价值和有效保险金额的较大者。", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 108, + 465, + 1088, + 528 + ], + "content": "*根据身故或确定全残时到达年龄,对应的已交保险费的一定比例为:40 周岁及以下,160%:41-60周岁,140%:61周岁及以上,120%。", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 152, + 530, + 908, + 559 + ], + "content": "*合同生效或最后一次复效(以较迟者为准)之日起90日内保单利益将有所不同。", + "order": 7 + }, + { + "category": "caption", + "bbox": [ + 390, + 593, + 842, + 621 + ], + "content": "**太保福有余终身寿险(互联网)保单利益示例表**", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 120, + 655, + 300, + 686 + ], + "content": "被保险人:周先生", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 437, + 655, + 616, + 687 + ], + "content": "投保年龄:30周岁", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 765, + 655, + 860, + 685 + ], + "content": "性别:男", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 122, + 688, + 290, + 716 + ], + "content": "交费方式:5年交", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 438, + 687, + 669, + 716 + ], + "content": "年交保险费: 100,000元", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 765, + 687, + 1016, + 717 + ], + "content": "基本保险金额:446,200元", + "order": 14 + }, + { + "category": "caption", + "bbox": [ + 889, + 748, + 1083, + 779 + ], + "content": "货币单位:人民币元", + "order": 15 + }, + { + "category": "table", + "bbox": [ + 136, + 778, + 1062, + 1308 + ], + "content": "
保单年度年度保险费累计保险费有效保险金额身故保险金或全残保险金现金价值
(退保金)
1100,000100,000446,200160,00019,300
2100,000200,000459,600320,00050,200
3100,000300,000473,400480,00094,300
4100,000400,000487,600640,000159,900
5100,000500,000502,200800,000233,800
60500,000517,300800,000315,500
70500,000532,800800,000399,600
80500,000548,800800,000486,200
90500,000565,200800,000575,200
100500,000582,200800,000592,200
200500,000782,400794,800794,800
300500,0001,051,5001,068,2001,068,200
400500,0001,413,1001,435,5001,435,500
500500,0001,899,1001,929,1001,929,100
600500,0002,552,3002,592,2002,592,200
700500,0003,430,0003,482,3003,482,300
", + "order": 16 + }, + { + "category": "caption", + "bbox": [ + 104, + 1309, + 891, + 1337 + ], + "content": "注:1、身故保险金或全残保险金、现金价值为保单年度末且经过完整保单年度的值;", + "order": 17 + }, + { + "category": "caption", + "bbox": [ + 145, + 1336, + 1089, + 1401 + ], + "content": "2、身故保险金或全残保险金为保单年度末的值,保单年度中的身故保险金或全残保险金可能高于或低于该数值;", + "order": 18 + }, + { + "category": "caption", + "bbox": [ + 146, + 1403, + 367, + 1433 + ], + "content": "3、演示数据保留整数;", + "order": 19 + }, + { + "category": "caption", + "bbox": [ + 146, + 1433, + 807, + 1470 + ], + "content": "4、105 周岁以后对应保单年度末的现金价值等于当年的有效保险金额。", + "order": 20 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/1cd8ead1-35d7-43c6-b8e2-e9edc3cfdd09.json b/track1_finixdigital_242_insurance_terms/jsons/1cd8ead1-35d7-43c6-b8e2-e9edc3cfdd09.json new file mode 100644 index 0000000000000000000000000000000000000000..05401e94cb540a6bfc742d1127a7a12c3c507954 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/1cd8ead1-35d7-43c6-b8e2-e9edc3cfdd09.json @@ -0,0 +1,378 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1190, + "height": 1685, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "figure", + "bbox": [ + 45, + 29, + 103, + 69 + ], + "order": 1 + }, + { + "category": "text", + "bbox": [ + 103, + 31, + 226, + 69 + ], + "content": "众安保险", + "order": 2 + }, + { + "category": "figure", + "bbox": [ + 253, + 27, + 285, + 71 + ], + "order": 3 + }, + { + "category": "text", + "bbox": [ + 285, + 27, + 383, + 53 + ], + "content": "柏盛健康", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 285, + 53, + 361, + 71 + ], + "content": "prosper", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 85, + 142, + 312, + 189 + ], + "content": "# 二)直付医疗", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 87, + 242, + 345, + 279 + ], + "content": "## 1. 什么是直付医疗", + "order": 7 + }, + { + "category": "figure", + "bbox": [ + 145, + 328, + 353, + 539 + ], + "order": 8 + }, + { + "category": "text", + "bbox": [ + 460, + 325, + 1084, + 428 + ], + "content": "当被保险人在提供直付医疗服务的网络医院就诊时,如果医疗费用在保障范围内,则由我们按照保险合同约定与上述医院直接结算相关医疗费用,为被保险人省去事后向我们提交相关理赔申请的手续。", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 460, + 434, + 975, + 464 + ], + "content": "被保险人可扫描左侧二维码查询对应计划的直付网络医院。", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 85, + 554, + 400, + 591 + ], + "content": "## 2. 网络医院内住院直付", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 132, + 670, + 209, + 697 + ], + "content": "【STEP 1】", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 290, + 671, + 369, + 698 + ], + "content": "【STEP 2】", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 444, + 671, + 519, + 699 + ], + "content": "【STEP 3】", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 609, + 671, + 685, + 695 + ], + "content": "【STEP 4】", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 775, + 672, + 848, + 695 + ], + "content": "【STEP 5】", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 927, + 671, + 1002, + 695 + ], + "content": "【STEP 6】", + "order": 17 + }, + { + "category": "figure", + "bbox": [ + 108, + 705, + 1082, + 731 + ], + "order": 18 + }, + { + "category": "text", + "bbox": [ + 133, + 736, + 238, + 783 + ], + "content": "搜索直付网络医院", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 291, + 738, + 397, + 801 + ], + "content": "自行前往医院就诊,并获取住院单", + "order": 20 + }, + { + "category": "text", + "bbox": [ + 445, + 736, + 565, + 763 + ], + "content": "提交预授权申请", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 611, + 738, + 729, + 799 + ], + "content": "预授权通过后,按约定日期前往医院入院治疗", + "order": 22 + }, + { + "category": "text", + "bbox": [ + 774, + 735, + 876, + 837 + ], + "content": "出院时确认诊断和费用属实后,填写理赔申请表并交回医院", + "order": 23 + }, + { + "category": "text", + "bbox": [ + 933, + 737, + 1037, + 780 + ], + "content": "我们会与医院直接结算", + "order": 24 + }, + { + "category": "text", + "bbox": [ + 355, + 877, + 766, + 908 + ], + "content": "您可选择以下任一方式进行预授权申请", + "order": 25 + }, + { + "category": "figure", + "bbox": [ + 114, + 946, + 206, + 1039 + ], + "order": 26 + }, + { + "category": "text", + "bbox": [ + 211, + 944, + 532, + 1055 + ], + "content": "1. 医院工作人员会协助您向我们发起预授权申请(部分公立医院不适用)。", + "order": 27 + }, + { + "category": "figure", + "bbox": [ + 578, + 947, + 667, + 1038 + ], + "order": 28 + }, + { + "category": "text", + "bbox": [ + 675, + 957, + 1056, + 1028 + ], + "content": "2. 在拿到住院单后,您可自行提交预授权申请。", + "order": 29 + }, + { + "category": "section-header", + "bbox": [ + 86, + 1124, + 426, + 1232 + ], + "content": "## 3. 如您在非网络医院被通知需要住院,希望转到网络医院进行住院治疗", + "order": 30 + }, + { + "category": "text", + "bbox": [ + 459, + 1319, + 812, + 1349 + ], + "content": "① 请提前联系我们查询指定网络医院。", + "order": 31 + }, + { + "category": "text", + "bbox": [ + 460, + 1354, + 1108, + 1385 + ], + "content": "② 提交预授权申请(包括住院相关就诊病历、检查报告、住院通知等)。", + "order": 32 + }, + { + "category": "text", + "bbox": [ + 460, + 1391, + 1099, + 1495 + ], + "content": "③ 预授权通过后,我们将为您在网络医院内发生的住院前门诊费用进行直付担保,并在此次网络医院内门诊就诊情况审核后对住院费用进行直付担保,我们会与医院直接结算相关费用。", + "order": 33 + }, + { + "category": "page-footer", + "bbox": [ + 1101, + 1596, + 1129, + 1624 + ], + "content": "11", + "order": 34 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/1dafdf2d-a448-483a-83a1-5d223b473300.json b/track1_finixdigital_242_insurance_terms/jsons/1dafdf2d-a448-483a-83a1-5d223b473300.json new file mode 100644 index 0000000000000000000000000000000000000000..7313811a1036ed124a2977f5e65893cf3eb05039 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/1dafdf2d-a448-483a-83a1-5d223b473300.json @@ -0,0 +1,230 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 175, + 154, + 891, + 182 + ], + "content": "指定重大疾病 60 天,其他疾病 20 天(如为意外事故导致,等待期均为 20 天)", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 176, + 204, + 705, + 231 + ], + "content": "连续投保不重复计算等待期,非连续投保重新计算等待期", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 173, + 254, + 850, + 280 + ], + "content": "宠物在投保前或等待期内患有保障范围内的疾病,保险人不承担赔偿责任", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 172, + 304, + 663, + 332 + ], + "content": "## 7、宠物疾病及意外医疗保险金责任不赔付以下费用:", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 221, + 352, + 657, + 382 + ], + "content": "(1)宠物粮及零食(包括处方粮、处方罐头等);", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 176, + 400, + 1010, + 578 + ], + "content": "(2)无注册证字产品、非治疗所必需的营养品(例如辅酶 Q10、益生菌、营养膏、化毛膏、氨基酸、钙、微量元素、鱼油、卵磷脂、虾红素、软骨素、补血剂、免疫增强剂等)、饲证字产品(例如关节营养剂、膀胱粘膜营养剂、皮肤营养剂等)、卫消证字产品(如抑菌喷剂、环境消毒剂、护理清洁类产品等);", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 225, + 599, + 1006, + 628 + ], + "content": "(3)保健用品(例如洁齿棒、漱口水、去泪痕眼药水、美毛粉、沐浴液、药浴香波等);", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 224, + 649, + 594, + 676 + ], + "content": "(4)防咬圈、牙刷、牵引绳、航空箱等;", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 224, + 698, + 409, + 724 + ], + "content": "(5)疫苗、驱虫药;", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 175, + 745, + 1008, + 825 + ], + "content": "(6)非疾病原因的手术或处置项目(例如绝育、去势、剖腹产、立耳、断爪、洁牙、割声带等)及由此导致的并发症;", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 224, + 845, + 677, + 873 + ], + "content": "(7)美容、洗澡、剪指甲、拔耳毛、挤肛门腺等;", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 225, + 895, + 803, + 923 + ], + "content": "(8)寄养费、安乐费、火化费、遗体处理费等非治疗必须项目;", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 224, + 944, + 583, + 972 + ], + "content": "(9)丢失、死亡或伤人(第三者责任);", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 223, + 993, + 645, + 1022 + ], + "content": "(10)非因疾病或意外伤害而衍生的牙齿问题;", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 223, + 1042, + 518, + 1070 + ], + "content": "(11)先天原因导致的髌骨脱位;", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 223, + 1091, + 582, + 1119 + ], + "content": "(12)在等待期内已存在的疾病和症状;", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 174, + 1141, + 297, + 1168 + ], + "content": "## 8、投保规则", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 174, + 1189, + 1009, + 1271 + ], + "content": "本产品仅限本人购买,同一宠物犬/猫在同一时间限在保一份,多投无效,每一投保人限同时投保 3 份。", + "order": 18 + }, + { + "category": "section-header", + "bbox": [ + 175, + 1288, + 338, + 1316 + ], + "content": "## 9、关于医院清单", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 175, + 1336, + 1007, + 1466 + ], + "content": "保险人有权根据实际合作情况、综合服务质量和整体风控考量对医院清单进行调整,用户出险时须以页面显示的最新定点/非定点医院清单为准。非上述清单内医院发生的相关费用,保险人不承担赔偿责任。", + "order": 20 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/224127b9-f450-44fb-a5c3-e1fc86344e8b.json b/track1_finixdigital_242_insurance_terms/jsons/224127b9-f450-44fb-a5c3-e1fc86344e8b.json new file mode 100644 index 0000000000000000000000000000000000000000..505dddf21c44c0209ab4d20e250455a0dd6e8570 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/224127b9-f450-44fb-a5c3-e1fc86344e8b.json @@ -0,0 +1,109 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 97, + 114, + 1066, + 174 + ], + "content": "解除本合同时,您需要填写解除合同通知书,并提供您的保险合同及有效身份证件。自我们收到您解除合同的通知书时,本合同即被解除,合同解除前发生的保险事故我们不承担保险责任。", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 107, + 191, + 379, + 220 + ], + "content": "### 【犹豫期后退保(解除合同)】", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 141, + 221, + 969, + 249 + ], + "content": "本合同成立后,您可以解除本合同,请填写解除合同通知书并向我们提供下列证明和资料:", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 140, + 253, + 259, + 281 + ], + "content": "1. 保险合同;", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 140, + 285, + 344, + 312 + ], + "content": "2. 您的有效身份证件。", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 97, + 316, + 1065, + 375 + ], + "content": "自我们收到解除合同通知书之日起,本合同终止。您在犹豫期后解除本合同的,我们自收到解除合同通知书之日起 30 日内向您退还本合同的现金价值。", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 139, + 378, + 552, + 406 + ], + "content": "您在犹豫期后解除合同会遭受一定损失。", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 107, + 424, + 316, + 452 + ], + "content": "### 【退保金(现金价值)】", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 96, + 452, + 1065, + 544 + ], + "content": "退保金即现金价值,指保险单所具有的价值,通常体现为解除合同时,根据精算原理计算的、由我们退还的那部分金额。保单年度末的现金价值会在保险合同上载明,保单年度内的现金价值,您可以向我们咨询。", + "order": 9 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/22f089c7-54af-4a91-bc40-6b9845155497.json b/track1_finixdigital_242_insurance_terms/jsons/22f089c7-54af-4a91-bc40-6b9845155497.json new file mode 100644 index 0000000000000000000000000000000000000000..d5616ddef6113a7097fe5e5025a349c24932ca06 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/22f089c7-54af-4a91-bc40-6b9845155497.json @@ -0,0 +1,263 @@ +{ + "resized_height": 1408, + "resized_width": 992, + "width": 993, + "height": 1404, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 124, + 94, + 274, + 118 + ], + "content": "### 一、初始保险金额", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 126, + 121, + 588, + 145 + ], + "content": "初始保险金额由您与我们约定,并在保险单中载明。", + "order": 2 + }, + { + "category": "section-header", + "bbox": [ + 125, + 148, + 274, + 171 + ], + "content": "### 二、红利保险金额", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 89, + 173, + 903, + 226 + ], + "content": "红利保险金额是指因分配年度红利所增加的保险金额。已分配的红利保险金额也将计入以后各年度的红利计算基数。", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 86, + 228, + 275, + 255 + ], + "content": "## 2.2. 我们提供的保障", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 88, + 256, + 903, + 308 + ], + "content": "在保险期间内,我们承担下列保险责任,在本合同履行中发生合同效力中止情形的,则按照本条款第3.3款的约定执行:", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 123, + 310, + 258, + 333 + ], + "content": "### 一、养老保险金", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 126, + 334, + 268, + 359 + ], + "content": "#### 1、领取起始年龄", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 89, + 360, + 907, + 437 + ], + "content": "男性被保险人可选择的领取起始年龄为 60 周岁、65 周岁、70 周岁三种,女性被保险人可选择的领取起始年龄为 50 周岁、55 周岁、60 周岁、65 周岁、70 周岁五种,具体的领取起始年龄由您在投保时与我们约定,并在保险单中载明。养老保险金领取起始年龄在合同生效后不能变更。", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 126, + 439, + 338, + 463 + ], + "content": "#### 2、首个养老保险金领取日", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 125, + 465, + 877, + 490 + ], + "content": "首个养老保险金领取日为被保险人年满养老保险金领取起始年龄后的首个合同生效日对应日次日。", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 125, + 492, + 234, + 514 + ], + "content": "#### 3、领取方式", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 88, + 517, + 903, + 597 + ], + "content": "养老保险金有年领和月领两种领取方式,由您在投保时与我们约定,并在保险单中载明。如需变更养老保险金领取方式,您可以在首个养老保险金领取日(不含当日)前向我们提出书面申请,养老保险金领取方式自首个养老保险金领取日(含当日)起不得变更。", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 123, + 597, + 236, + 620 + ], + "content": "#### 4、领取金额", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 88, + 620, + 906, + 752 + ], + "content": "自首个养老保险金领取日起,我们按照以下约定给付养老保险金:\n(1)若选择年领,被保险人在首个养老保险金领取日及以后的每个合同生效日对应日的次日零时生存的,我们按本合同有效保险金额的100%给付养老保险金;\n(2)若选择月领,被保险人在首个养老保险金领取日及以后的每个合同生效日月度对应日的次日零时生存的,我们按本合同有效保险金额的8.5%给付养老保险金。", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 125, + 753, + 232, + 775 + ], + "content": "#### 5、保证给付", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 89, + 777, + 907, + 985 + ], + "content": "养老保险金的保证给付期间包括无保证给付期间、保证给付期间20年和保证给付期间30年三种,由您在投保时与我们约定,并在保险单中载明。养老保险金保证给付期间在合同生效后不能变更。\n若约定的养老保险金的保证给付期间为无保证给付期间,自首个养老保险金领取日起,若被保险人生存,我们将按照约定的领取方式和领取金额给付养老保险金。\n若约定的养老保险金的保证给付期间为20年,自首个养老保险金领取日起的20个保单年度内,无论被保险人是否生存,我们均按照约定的领取方式和领取金额给付养老保险金。\n若约定的养老保险金的保证给付期间为30年,自首个养老保险金领取日起的30个保单年度内,无论被保险人是否生存,我们均按照约定的领取方式和领取金额给付养老保险金。", + "order": 17 + }, + { + "category": "section-header", + "bbox": [ + 124, + 986, + 258, + 1010 + ], + "content": "### 二、身故保险金", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 88, + 1011, + 902, + 1115 + ], + "content": "若被保险人在首个养老保险金领取日(不含当日)前身故,我们给付身故保险金,本合同终止。身故保险金等于以下两者中的金额较大者与被保险人身故时累计红利保险金额对应的现金价值之和:\n(1)被保险人身故时本合同已交付的保险费;\n(2)被保险人身故时本合同初始保险金额对应的现金价值。", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 88, + 1115, + 900, + 1167 + ], + "content": "若被保险人在首个养老保险金领取日(含当日)后身故,我们不承担给付身故保险金的责任。", + "order": 20 + }, + { + "category": "section-header", + "bbox": [ + 90, + 1171, + 295, + 1197 + ], + "content": "## 2.3. 我们不承担的责任", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 123, + 1198, + 901, + 1311 + ], + "content": "因下列任一情形导致被保险人身故的,我们不承担给付身故保险金的责任:\n一、投保人对被保险人的故意杀害、故意伤害;\n二、被保险人故意犯罪或者抗拒依法采取的刑事强制措施;\n三、被保险人自本合同成立或者合同效力恢复之日起2年内自杀,但被保险人自杀时为无民", + "order": 22 + }, + { + "category": "page-footer", + "bbox": [ + 482, + 1314, + 508, + 1333 + ], + "content": "3/8", + "order": 23 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/237017a8-47df-4a9d-a8ab-b8c0f37d9603.json b/track1_finixdigital_242_insurance_terms/jsons/237017a8-47df-4a9d-a8ab-b8c0f37d9603.json new file mode 100644 index 0000000000000000000000000000000000000000..db8323b06a1cf9e5a04c214a56b5500d962a57ad --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/237017a8-47df-4a9d-a8ab-b8c0f37d9603.json @@ -0,0 +1,570 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 816, + 97, + 1095, + 121 + ], + "content": "平安健康〔2023〕医疗保险032号", + "order": 1 + }, + { + "category": "figure", + "bbox": [ + 893, + 123, + 1012, + 242 + ], + "order": 2 + }, + { + "category": "text", + "bbox": [ + 868, + 247, + 1051, + 269 + ], + "content": "请扫描以查询验证条款", + "order": 3 + }, + { + "category": "title", + "bbox": [ + 503, + 207, + 685, + 247 + ], + "content": "# 阅读指引", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 170, + 271, + 1005, + 302 + ], + "content": "本阅读指引有助于您理解条款,对“平安互联网e惠保医疗保险”内容的解释以条款为准。", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 161, + 315, + 334, + 342 + ], + "content": "# 您拥有的重要权益", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 248, + 345, + 1041, + 372 + ], + "content": "## 签收本主险合同后15日内您可以要求全额退还保险费....1.6", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 249, + 375, + 1038, + 404 + ], + "content": "## 被保险人可以享受本主险合同提供的保障....2.2", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 249, + 408, + 1039, + 433 + ], + "content": "## 您有退保的权利....7.1", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 161, + 435, + 379, + 463 + ], + "content": "# 您应当特别注意的事项", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 251, + 466, + 1036, + 526 + ], + "content": "## 我们对免除保险人责任的条款作了特别提示,详见条款正文中背景突出显示的内容....2.2、3.1、3.2、8.1、8.2、脚注", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 250, + 527, + 1037, + 556 + ], + "content": "## 退保会给您造成一定的损失,请您慎重决策....7.1", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 250, + 559, + 1038, + 587 + ], + "content": "## 费用补偿型医疗保险是适用补偿原则的....2.2.10", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 251, + 588, + 1038, + 615 + ], + "content": "## 您有及时向我们通知保险事故的责任....6.2", + "order": 14 + }, + { + "category": "section-header", + "bbox": [ + 253, + 618, + 1035, + 647 + ], + "content": "## 我们对一些重要术语进行了解释,并作了显著标识,请您注意....脚注", + "order": 15 + }, + { + "category": "section-header", + "bbox": [ + 252, + 648, + 1038, + 678 + ], + "content": "## 本主险合同的保险期间为1年....1.7", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 163, + 679, + 1000, + 706 + ], + "content": "# 条款是保险合同的重要内容,为充分保障您的权益,请您仔细阅读本条款。条款目录如下:", + "order": 17 + }, + { + "category": "section-header", + "bbox": [ + 193, + 714, + 365, + 741 + ], + "content": "## 1. 您与我们的合同", + "order": 18 + }, + { + "category": "section-header", + "bbox": [ + 211, + 742, + 346, + 770 + ], + "content": "### 1.1 合同构成", + "order": 19 + }, + { + "category": "section-header", + "bbox": [ + 212, + 772, + 406, + 798 + ], + "content": "### 1.2 合同成立与生效", + "order": 20 + }, + { + "category": "section-header", + "bbox": [ + 212, + 801, + 345, + 827 + ], + "content": "### 1.3 保险对象", + "order": 21 + }, + { + "category": "section-header", + "bbox": [ + 213, + 829, + 343, + 854 + ], + "content": "### 1.4 投保年龄", + "order": 22 + }, + { + "category": "section-header", + "bbox": [ + 213, + 856, + 344, + 883 + ], + "content": "### 1.5 保险区域", + "order": 23 + }, + { + "category": "section-header", + "bbox": [ + 212, + 886, + 320, + 911 + ], + "content": "### 1.6 犹豫期", + "order": 24 + }, + { + "category": "section-header", + "bbox": [ + 212, + 914, + 466, + 939 + ], + "content": "### 1.7 保险期间与不保证续保", + "order": 25 + }, + { + "category": "section-header", + "bbox": [ + 191, + 940, + 363, + 968 + ], + "content": "## 2. 我们提供的保障", + "order": 26 + }, + { + "category": "section-header", + "bbox": [ + 208, + 969, + 344, + 995 + ], + "content": "### 2.1保险计划", + "order": 27 + }, + { + "category": "section-header", + "bbox": [ + 208, + 999, + 344, + 1022 + ], + "content": "### 2.2 保险责任", + "order": 28 + }, + { + "category": "section-header", + "bbox": [ + 192, + 1025, + 301, + 1051 + ], + "content": "## 3. 责任免除", + "order": 29 + }, + { + "category": "section-header", + "bbox": [ + 210, + 1053, + 343, + 1079 + ], + "content": "### 3.1 责任免除", + "order": 30 + }, + { + "category": "section-header", + "bbox": [ + 211, + 1084, + 386, + 1107 + ], + "content": "### 3.2 其他免责条款", + "order": 31 + }, + { + "category": "section-header", + "bbox": [ + 191, + 1109, + 363, + 1137 + ], + "content": "## 4. 我们提供的服务", + "order": 32 + }, + { + "category": "section-header", + "bbox": [ + 211, + 1139, + 382, + 1165 + ], + "content": "### 4.1 健康管理服务", + "order": 33 + }, + { + "category": "section-header", + "bbox": [ + 192, + 1167, + 364, + 1193 + ], + "content": "## 5. 如何支付保险费", + "order": 34 + }, + { + "category": "section-header", + "bbox": [ + 212, + 1195, + 383, + 1222 + ], + "content": "### 5.1 保险费的支付", + "order": 35 + }, + { + "category": "section-header", + "bbox": [ + 586, + 717, + 759, + 744 + ], + "content": "## 6. 如何领取保险金", + "order": 36 + }, + { + "category": "section-header", + "bbox": [ + 607, + 746, + 718, + 770 + ], + "content": "### 6.1 受益人", + "order": 37 + }, + { + "category": "section-header", + "bbox": [ + 606, + 772, + 778, + 799 + ], + "content": "### 6.2 保险事故通知", + "order": 38 + }, + { + "category": "section-header", + "bbox": [ + 606, + 802, + 759, + 827 + ], + "content": "### 6.3 保险金申请", + "order": 39 + }, + { + "category": "section-header", + "bbox": [ + 606, + 827, + 779, + 856 + ], + "content": "### 6.4 保险金的赔付", + "order": 40 + }, + { + "category": "section-header", + "bbox": [ + 607, + 859, + 739, + 884 + ], + "content": "### 6.5 诉讼时效", + "order": 41 + }, + { + "category": "section-header", + "bbox": [ + 587, + 885, + 792, + 911 + ], + "content": "## 7. 如何解除保险合同", + "order": 42 + }, + { + "category": "section-header", + "bbox": [ + 608, + 914, + 885, + 940 + ], + "content": "### 7.1 您解除合同的手续及风险", + "order": 43 + }, + { + "category": "section-header", + "bbox": [ + 586, + 942, + 802, + 968 + ], + "content": "## 8. 其他需要关注的事项", + "order": 44 + }, + { + "category": "section-header", + "bbox": [ + 606, + 971, + 841, + 998 + ], + "content": "### 8.1 明确说明与如实告知", + "order": 45 + }, + { + "category": "section-header", + "bbox": [ + 604, + 1000, + 739, + 1024 + ], + "content": "### 8.2 年龄错误", + "order": 46 + }, + { + "category": "section-header", + "bbox": [ + 605, + 1027, + 778, + 1052 + ], + "content": "### 8.3 合同内容变更", + "order": 47 + }, + { + "category": "section-header", + "bbox": [ + 605, + 1056, + 779, + 1080 + ], + "content": "### 8.4 联系方式变更", + "order": 48 + }, + { + "category": "section-header", + "bbox": [ + 606, + 1083, + 736, + 1110 + ], + "content": "### 8.5 效力终止", + "order": 49 + }, + { + "category": "section-header", + "bbox": [ + 587, + 1144, + 988, + 1172 + ], + "content": "## 附表1:平安互联网e惠保医疗保险计划表", + "order": 50 + }, + { + "category": "section-header", + "bbox": [ + 587, + 1175, + 983, + 1232 + ], + "content": "## 附表2:平安互联网e惠保医疗保险特定疾病清单", + "order": 51 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/23d193f7-d151-4fc2-a62d-79d78eefd8d0.json b/track1_finixdigital_242_insurance_terms/jsons/23d193f7-d151-4fc2-a62d-79d78eefd8d0.json new file mode 100644 index 0000000000000000000000000000000000000000..d014168e337d40e43e58dca2670c882088c9e6d8 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/23d193f7-d151-4fc2-a62d-79d78eefd8d0.json @@ -0,0 +1,329 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 292, + 53, + 881, + 81 + ], + "content": "中国太平洋财产保险股份有限公司个人意外伤害医疗保险(H2022 互联网)", + "order": 1 + }, + { + "category": "title", + "bbox": [ + 372, + 146, + 863, + 200 + ], + "content": "# 中国太平洋财产保险股份有限公司", + "order": 2 + }, + { + "category": "title", + "bbox": [ + 302, + 213, + 945, + 257 + ], + "content": "# 个人意外伤害医疗保险(H2022 互联网)条款", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 356, + 280, + 882, + 323 + ], + "content": "注册号:C00001432512021122029633", + "order": 4 + }, + { + "category": "title", + "bbox": [ + 523, + 342, + 712, + 380 + ], + "content": "# 阅读指引", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 167, + 393, + 1073, + 446 + ], + "content": "本阅读指引有助于您理解条款,对本合同内容的解释以条款为准。", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 182, + 473, + 441, + 516 + ], + "content": "# 您拥有的重要权益", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 203, + 547, + 1075, + 583 + ], + "content": "## 本合同提供的保障在保险责任条款中列明....2.5", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 205, + 611, + 1072, + 647 + ], + "content": "## 您有退保的权利....5.1", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 173, + 662, + 467, + 704 + ], + "content": "# 您应当特别注意的事项", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 200, + 736, + 1067, + 772 + ], + "content": "## 本合同有比例给付、免赔额的约定,请您注意....2.5", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 200, + 797, + 1070, + 833 + ], + "content": "## 本合同有责任免除条款,请您注意....2.7", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 198, + 858, + 1073, + 898 + ], + "content": "## 保险事故发生后,请及时通知我们....3.2", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 198, + 923, + 1072, + 961 + ], + "content": "## 退保会给您造成一定的损失,请您慎重决策....5.1", + "order": 14 + }, + { + "category": "section-header", + "bbox": [ + 199, + 984, + 1072, + 1024 + ], + "content": "## 您有如实告知的义务....6.1", + "order": 15 + }, + { + "category": "section-header", + "bbox": [ + 200, + 1046, + 1075, + 1084 + ], + "content": "## 我们对一些重要术语进行了解释,并作了显著标识,请您注意....7", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 124, + 1104, + 1076, + 1213 + ], + "content": "# 保险条款是保险合同的重要内容,为充分保障您的权益,请您仔细阅读本保险条款。", + "order": 17 + }, + { + "category": "section-header", + "bbox": [ + 178, + 1227, + 534, + 1275 + ], + "content": "# 条款目录(不含三级目录)", + "order": 18 + }, + { + "category": "section-header", + "bbox": [ + 143, + 1296, + 405, + 1410 + ], + "content": "## 1. 您与我们订立的合同", + "order": 19 + }, + { + "category": "section-header", + "bbox": [ + 143, + 1422, + 339, + 1464 + ], + "content": "### 1.1 合同构成", + "order": 20 + }, + { + "category": "section-header", + "bbox": [ + 143, + 1486, + 408, + 1527 + ], + "content": "### 1.2 合同成立与生", + "order": 21 + }, + { + "category": "section-header", + "bbox": [ + 462, + 1297, + 516, + 1338 + ], + "content": "### 效", + "order": 22 + }, + { + "category": "section-header", + "bbox": [ + 473, + 1361, + 670, + 1403 + ], + "content": "### 1.3 投保年龄", + "order": 23 + }, + { + "category": "section-header", + "bbox": [ + 478, + 1422, + 670, + 1464 + ], + "content": "### 1.4 被保险人", + "order": 24 + }, + { + "category": "section-header", + "bbox": [ + 476, + 1486, + 638, + 1528 + ], + "content": "### 1.5 投保人", + "order": 25 + }, + { + "category": "section-header", + "bbox": [ + 803, + 1294, + 1074, + 1342 + ], + "content": "## 2. 我们提供的保障", + "order": 26 + }, + { + "category": "section-header", + "bbox": [ + 806, + 1362, + 1011, + 1401 + ], + "content": "### 2.1 保险金额", + "order": 27 + }, + { + "category": "section-header", + "bbox": [ + 803, + 1421, + 1008, + 1465 + ], + "content": "### 2.2 保险期间", + "order": 28 + }, + { + "category": "section-header", + "bbox": [ + 803, + 1483, + 975, + 1526 + ], + "content": "### 2.3 等待期", + "order": 29 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/280efc82-8eb3-4eed-871d-72bbf5bf903b.json b/track1_finixdigital_242_insurance_terms/jsons/280efc82-8eb3-4eed-871d-72bbf5bf903b.json new file mode 100644 index 0000000000000000000000000000000000000000..6c87a79a17c8318cb1307d0b0d01f7bbf0812ad7 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/280efc82-8eb3-4eed-871d-72bbf5bf903b.json @@ -0,0 +1,219 @@ +{ + "resized_height": 1408, + "resized_width": 992, + "width": 993, + "height": 1404, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 339, + 93, + 654, + 120 + ], + "content": "(二)被保险人身故时本合同的现金价值。", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 302, + 120, + 909, + 148 + ], + "content": "二、上述“被保险人身故时的到达年龄所对应的给付比例”的取值约定如下表:", + "order": 2 + }, + { + "category": "table", + "bbox": [ + 337, + 156, + 916, + 295 + ], + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
身故时的到达年龄给付比例
0-17 周岁100%
18-40 周岁160%
41-60 周岁140%
61 周岁及以上120%
", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 337, + 295, + 905, + 347 + ], + "content": "其中,到达年龄指的是被保险人原始投保年龄,加上当时保单年度数,再减去 1 后所得到的年龄。", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 82, + 364, + 223, + 394 + ], + "content": "## 2.3 责任免除", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 302, + 365, + 912, + 629 + ], + "content": "一、因下列情形之一导致被保险人身故的,我们不承担给付身故保险金的责任:\n(一)投保人对被保险人的故意杀害、故意伤害;\n(二)被保险人故意犯罪或者抗拒依法采取的刑事强制措施;\n(三)被保险人故意自伤,或自本合同成立或者本合同效力恢复之日起2年内自杀,但被保险人自杀时为无民事行为能力人的除外;\n(四)被保险人服用、吸食或注射毒品[见10.8];\n(五)被保险人酒后驾驶[见10.9]、无合法有效驾驶证驾驶[见10.10]或驾驶无合法有效行驶证[见10.11]的机动车[见10.12];\n(六)战争[见10.13]、军事冲突[见10.14]、暴乱[见10.15]或武装叛乱;\n(七)核爆炸、核辐射或核污染。", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 302, + 629, + 904, + 680 + ], + "content": "二、发生上述第(一)项情形导致被保险人身故的,本合同终止,我们向被保险人的继承人(除投保人本人外)退还本合同的现金价值。", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 302, + 680, + 904, + 734 + ], + "content": "三、发生上述其他情形导致被保险人身故的,本合同终止,我们向您退还本合同的现金价值。", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 80, + 748, + 258, + 779 + ], + "content": "## 2.4 其他免责条款", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 302, + 752, + 910, + 856 + ], + "content": "除本条款“2.3 责任免除”外,本合同中还有一些免除或者减轻我们责任的条款,详见“1.4 犹豫期”、“2.1 等待期”、“3.2 保险事故通知”、“6.1 效力中止与恢复”、“8.1 明确说明与如实告知”、“9.1 年龄错误的处理”、“10 释义”中背景突出显示的免除或者减轻我们责任的内容。", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 82, + 873, + 222, + 900 + ], + "content": "## 2.5 保险金额", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 302, + 871, + 910, + 979 + ], + "content": "本合同保险金额按本条款第 2.2 条规定,根据基本保险金额进行计算确定。基本保险金额由您和本公司在投保时约定,但须符合本公司当时的投保规定,约定的基本保险金额将在保险单上载明,若基本保险金额发生变更,则以变更后金额为准。", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 82, + 995, + 276, + 1050 + ], + "content": "## 2.6 未成年人身故保险金限制", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 302, + 994, + 912, + 1076 + ], + "content": "为未成年人投保的人身保险,在被保险人成年之前,因被保险人身故给付的保险金总和不得超过国务院保险监督管理机构规定的限额,身故给付的保险金额总和约定也不得超过前述限额。", + "order": 14 + }, + { + "category": "section-header", + "bbox": [ + 82, + 1093, + 222, + 1120 + ], + "content": "## 2.7 保险期间", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 302, + 1095, + 905, + 1146 + ], + "content": "本合同的保险期间自本合同生效日零时起算,分为六年和八年两种。保险期间由您在投保时与我们约定,并在保险单上载明。", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 83, + 1171, + 272, + 1209 + ], + "content": "# ③ 保险金的申请", + "order": 17 + }, + { + "category": "section-header", + "bbox": [ + 82, + 1235, + 204, + 1264 + ], + "content": "## 3.1 受益人", + "order": 18 + }, + { + "category": "page-footer", + "bbox": [ + 446, + 1352, + 545, + 1373 + ], + "content": "第3页,共9页", + "order": 19 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/2d733c65-811b-4e2a-b73e-2a7d81d98337.json b/track1_finixdigital_242_insurance_terms/jsons/2d733c65-811b-4e2a-b73e-2a7d81d98337.json new file mode 100644 index 0000000000000000000000000000000000000000..ac62dbbf3f65f7cb266acb0e22a14817384bacf7 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/2d733c65-811b-4e2a-b73e-2a7d81d98337.json @@ -0,0 +1,241 @@ +{ + "resized_height": 1184, + "resized_width": 1696, + "width": 1684, + "height": 1191, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 778, + 148, + 915, + 175 + ], + "content": "# 八、投保示例", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 177, + 183, + 263, + 210 + ], + "content": "## 示例一:", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 177, + 219, + 1522, + 278 + ], + "content": "周先生,32 周岁,为自己投保了 100 份“太保盈有余(2024)年金保险(互联网)”,趸交,保险费 100,000 元,保险期间为 10 年,基本保险金额 120,400 元。", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 220, + 314, + 317, + 342 + ], + "content": "### 保单利益", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 221, + 346, + 363, + 372 + ], + "content": "保单利益如下:", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 226, + 377, + 386, + 403 + ], + "content": "1、生存保险金:", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 260, + 405, + 1264, + 435 + ], + "content": "保险期间届满前的最后 3 个合同生效日对应日,每次领取 1,000 元,直至身故或合同终止(以较早者为准)。", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 228, + 441, + 386, + 473 + ], + "content": "2、满期保险金:", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 262, + 471, + 662, + 501 + ], + "content": "若生存至保险期间届满,领取 120,400 元。", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 228, + 508, + 386, + 529 + ], + "content": "3、身故保险金:", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 259, + 531, + 915, + 567 + ], + "content": "为以下两者的较大者:①已支付的保险费;②身故时合同的现金价值。", + "order": 11 + }, + { + "category": "caption", + "bbox": [ + 599, + 594, + 1140, + 629 + ], + "content": "太保盈有余(2024)年金保险(互联网)保单利益示例表", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 324, + 656, + 504, + 687 + ], + "content": "被保险人:周先生", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 610, + 657, + 704, + 686 + ], + "content": "性别:男", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 871, + 656, + 1058, + 689 + ], + "content": "投保年龄:32 周岁", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 1176, + 659, + 1337, + 687 + ], + "content": "保险期间:10 年", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 324, + 689, + 487, + 719 + ], + "content": "交费方式:趸交", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 611, + 687, + 804, + 720 + ], + "content": "保险费:100,000 元", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 873, + 688, + 1135, + 719 + ], + "content": "基本保险金额:120,400 元", + "order": 19 + }, + { + "category": "caption", + "bbox": [ + 1308, + 720, + 1508, + 750 + ], + "content": "货币单位:人民币元", + "order": 20 + }, + { + "category": "table", + "bbox": [ + 179, + 748, + 1519, + 1027 + ], + "content": "
保单年度年度保险费累计保险费现金价值(退保金)生存保险金累计生存保险金满期保险金身故保险金
1100,000100,00090,700000100,000
20100,00093,900000100,000
30100,00097,200000100,000
40100,000100,600000100,600
50100,000106,600000106,600
60100,000111,900000111,900
", + "order": 21 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/2f8ed865-a9e9-4d8e-946c-f0eb1fe1cc28.json b/track1_finixdigital_242_insurance_terms/jsons/2f8ed865-a9e9-4d8e-946c-f0eb1fe1cc28.json new file mode 100644 index 0000000000000000000000000000000000000000..ac028bc8a8368121e63c24291e0db1635a0806e1 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/2f8ed865-a9e9-4d8e-946c-f0eb1fe1cc28.json @@ -0,0 +1,782 @@ +{ + "resized_height": 4512, + "resized_width": 736, + "width": 750, + "height": 4522, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 38, + 64, + 571, + 116 + ], + "content": "# 为什么要给自己和家人买意外险?", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 43, + 126, + 246, + 167 + ], + "content": "花小钱保大风险", + "order": 2 + }, + { + "category": "figure", + "bbox": [ + 138, + 186, + 516, + 477 + ], + "order": 3 + }, + { + "category": "text", + "bbox": [ + 64, + 489, + 238, + 529 + ], + "content": "意外无法预测", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 75, + 552, + 212, + 583 + ], + "content": "无法提前预知", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 75, + 599, + 239, + 660 + ], + "content": "会给家庭带来伤害和经济损失", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 279, + 492, + 457, + 528 + ], + "content": "产品性价比高", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 292, + 553, + 443, + 584 + ], + "content": "低至12.21元/月", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 291, + 596, + 456, + 660 + ], + "content": "投保门槛低,无需健康告知", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 499, + 493, + 672, + 528 + ], + "content": "意外保障充足", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 510, + 552, + 674, + 615 + ], + "content": "最高15万元意外保障", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 510, + 633, + 672, + 663 + ], + "content": "最高2万意外医疗", + "order": 12 + }, + { + "category": "caption", + "bbox": [ + 171, + 701, + 559, + 730 + ], + "content": "*限1-3类职业投保,具体职业详见投保须知", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 42, + 798, + 477, + 848 + ], + "content": "# 覆盖日常绝大部分意外风险", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 41, + 863, + 547, + 899 + ], + "content": "每月仅需一顿早餐钱,全方位护航一整年", + "order": 15 + }, + { + "category": "figure", + "bbox": [ + 341, + 948, + 393, + 1003 + ], + "order": 16 + }, + { + "category": "text", + "bbox": [ + 321, + 1006, + 419, + 1036 + ], + "content": "浴室滑倒", + "order": 17 + }, + { + "category": "figure", + "bbox": [ + 165, + 1021, + 226, + 1075 + ], + "order": 18 + }, + { + "category": "text", + "bbox": [ + 146, + 1078, + 244, + 1108 + ], + "content": "交通意外", + "order": 19 + }, + { + "category": "figure", + "bbox": [ + 522, + 1020, + 571, + 1072 + ], + "order": 20 + }, + { + "category": "text", + "bbox": [ + 498, + 1076, + 594, + 1108 + ], + "content": "运动受伤", + "order": 21 + }, + { + "category": "figure", + "bbox": [ + 194, + 1122, + 557, + 1358 + ], + "order": 22 + }, + { + "category": "figure", + "bbox": [ + 86, + 1185, + 137, + 1237 + ], + "order": 23 + }, + { + "category": "text", + "bbox": [ + 59, + 1241, + 162, + 1274 + ], + "content": "跌倒摔伤", + "order": 24 + }, + { + "category": "figure", + "bbox": [ + 599, + 1186, + 646, + 1239 + ], + "order": 25 + }, + { + "category": "text", + "bbox": [ + 571, + 1243, + 673, + 1273 + ], + "content": "动物咬伤", + "order": 26 + }, + { + "category": "figure", + "bbox": [ + 168, + 1347, + 221, + 1399 + ], + "order": 27 + }, + { + "category": "text", + "bbox": [ + 148, + 1404, + 245, + 1437 + ], + "content": "旅途意外", + "order": 28 + }, + { + "category": "figure", + "bbox": [ + 521, + 1345, + 577, + 1400 + ], + "order": 29 + }, + { + "category": "text", + "bbox": [ + 499, + 1405, + 597, + 1435 + ], + "content": "坠物砸伤", + "order": 30 + }, + { + "category": "figure", + "bbox": [ + 347, + 1436, + 395, + 1488 + ], + "order": 31 + }, + { + "category": "text", + "bbox": [ + 324, + 1492, + 420, + 1525 + ], + "content": "火灾烫伤", + "order": 32 + }, + { + "category": "section-header", + "bbox": [ + 38, + 1620, + 516, + 1670 + ], + "content": "# 意外门急诊及住院费用可报销", + "order": 33 + }, + { + "category": "text", + "bbox": [ + 39, + 1683, + 435, + 1722 + ], + "content": "意外医疗年累计免赔额仅300元", + "order": 34 + }, + { + "category": "text", + "bbox": [ + 310, + 1795, + 429, + 1852 + ], + "content": "年累计免赔额300元", + "order": 35 + }, + { + "category": "text", + "bbox": [ + 139, + 1832, + 236, + 1889 + ], + "content": "有无社保都能保", + "order": 36 + }, + { + "category": "text", + "bbox": [ + 482, + 1833, + 588, + 1888 + ], + "content": "社保结算80%报销", + "order": 37 + }, + { + "category": "figure", + "bbox": [ + 240, + 1908, + 502, + 2068 + ], + "order": 38 + }, + { + "category": "text", + "bbox": [ + 91, + 1972, + 164, + 2030 + ], + "content": "不限社保目录", + "order": 39 + }, + { + "category": "text", + "bbox": [ + 547, + 1975, + 667, + 2033 + ], + "content": "非社保结算60%报销", + "order": 40 + }, + { + "category": "caption", + "bbox": [ + 43, + 2101, + 688, + 2160 + ], + "content": "*有社保且经过社保结算的按照80%给付比例结算,无社保或有社保但未经社保结算的按照60%给付比例结算。", + "order": 41 + }, + { + "category": "section-header", + "bbox": [ + 39, + 2239, + 377, + 2286 + ], + "content": "# 充足的意外风险保障", + "order": 42 + }, + { + "category": "text", + "bbox": [ + 38, + 2300, + 331, + 2342 + ], + "content": "给自己和家人一份安心", + "order": 43 + }, + { + "category": "figure", + "bbox": [ + 112, + 2394, + 175, + 2454 + ], + "order": 44 + }, + { + "category": "text", + "bbox": [ + 69, + 2471, + 219, + 2511 + ], + "content": "骨折保险金", + "order": 45 + }, + { + "category": "text", + "bbox": [ + 72, + 2536, + 212, + 2576 + ], + "content": "最高1000元", + "order": 46 + }, + { + "category": "figure", + "bbox": [ + 343, + 2396, + 397, + 2448 + ], + "order": 47 + }, + { + "category": "text", + "bbox": [ + 283, + 2471, + 454, + 2511 + ], + "content": "意外住院津贴", + "order": 48 + }, + { + "category": "text", + "bbox": [ + 311, + 2540, + 425, + 2575 + ], + "content": "最高90天", + "order": 49 + }, + { + "category": "figure", + "bbox": [ + 567, + 2396, + 625, + 2449 + ], + "order": 50 + }, + { + "category": "text", + "bbox": [ + 519, + 2471, + 669, + 2509 + ], + "content": "救护车费用", + "order": 51 + }, + { + "category": "text", + "bbox": [ + 530, + 2541, + 660, + 2575 + ], + "content": "最高500元", + "order": 52 + }, + { + "category": "section-header", + "bbox": [ + 44, + 2673, + 202, + 2720 + ], + "content": "# 保障计划", + "order": 53 + }, + { + "category": "table", + "bbox": [ + 44, + 2756, + 695, + 3107 + ], + "content": "
保障责任保险金额
意外身故/伤残150000
意外医疗20000
意外住院津贴(最长90天)30元/天
意外骨折、关节脱位保险金1000
救护车费用500
保费(元/月)12.21
保费(元/年)139.00
", + "order": 54 + }, + { + "category": "caption", + "bbox": [ + 227, + 3123, + 501, + 3154 + ], + "content": "*具体以保险合同约定为准", + "order": 55 + }, + { + "category": "section-header", + "bbox": [ + 41, + 3221, + 193, + 3273 + ], + "content": "# 理赔案例", + "order": 56 + }, + { + "category": "figure", + "bbox": [ + 41, + 3299, + 691, + 3587 + ], + "order": 57 + }, + { + "category": "figure", + "bbox": [ + 74, + 3608, + 124, + 3655 + ], + "order": 58 + }, + { + "category": "text", + "bbox": [ + 167, + 3617, + 236, + 3654 + ], + "content": "投保", + "order": 59 + }, + { + "category": "text", + "bbox": [ + 163, + 3660, + 654, + 3731 + ], + "content": "2022年7月,谢先生在支付宝为自己投保了成人亲民型意外险,保障期限一年。", + "order": 60 + }, + { + "category": "figure", + "bbox": [ + 74, + 3735, + 123, + 3785 + ], + "order": 61 + }, + { + "category": "text", + "bbox": [ + 164, + 3744, + 231, + 3783 + ], + "content": "出险", + "order": 62 + }, + { + "category": "text", + "bbox": [ + 165, + 3789, + 673, + 3895 + ], + "content": "2022年10月,谢先生下楼时不慎摔倒,造成多处软组织损伤,前往医院后需住院治疗,住院14天。", + "order": 63 + }, + { + "category": "figure", + "bbox": [ + 75, + 3902, + 121, + 3948 + ], + "order": 64 + }, + { + "category": "text", + "bbox": [ + 167, + 3913, + 234, + 3948 + ], + "content": "报案", + "order": 65 + }, + { + "category": "text", + "bbox": [ + 165, + 3954, + 662, + 4025 + ], + "content": "2022年11月3日,谢先生向保险公司发起报案,并于11月4日提交完整理赔材料至保险公司。", + "order": 66 + }, + { + "category": "figure", + "bbox": [ + 68, + 4028, + 122, + 4083 + ], + "order": 67 + }, + { + "category": "text", + "bbox": [ + 168, + 4038, + 235, + 4078 + ], + "content": "理赔", + "order": 68 + }, + { + "category": "text", + "bbox": [ + 163, + 4084, + 675, + 4307 + ], + "content": "经审核,本次事故属于保险范围。意外医疗治疗费用5063.2元,扣除免赔额300元,未使用社保结算,按60%赔付比例给付保险金,意外医疗责任赔付金额2857.92元。住院14天,按照30元/天,意外住院津贴责任赔付金额420元。综上,保险公司最终赔付3277.92元。", + "order": 69 + }, + { + "category": "figure", + "bbox": [ + 252, + 4361, + 326, + 4414 + ], + "order": 70 + }, + { + "category": "text", + "bbox": [ + 328, + 4363, + 472, + 4408 + ], + "content": "国泰产险", + "order": 71 + }, + { + "category": "text", + "bbox": [ + 231, + 4421, + 508, + 4470 + ], + "content": "让每个人简单的享受保险", + "order": 72 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/439a30a7-1c4a-41b6-8629-c001b0e18b50.json b/track1_finixdigital_242_insurance_terms/jsons/439a30a7-1c4a-41b6-8629-c001b0e18b50.json new file mode 100644 index 0000000000000000000000000000000000000000..aab9a3ac97bf85bb2cf549ef9872df8d52bdca84 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/439a30a7-1c4a-41b6-8629-c001b0e18b50.json @@ -0,0 +1,404 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "figure", + "bbox": [ + 55, + 59, + 132, + 138 + ], + "order": 1 + }, + { + "category": "text", + "bbox": [ + 138, + 69, + 298, + 109 + ], + "content": "中国太平", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 138, + 108, + 298, + 129 + ], + "content": "CHINA TAIPING", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 308, + 63, + 539, + 129 + ], + "content": "95589 客服热线 Service Hotline", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 839, + 47, + 1132, + 77 + ], + "content": "太平养老[2022]疾病保险 038 号", + "order": 5 + }, + { + "category": "figure", + "bbox": [ + 927, + 82, + 1046, + 200 + ], + "order": 6 + }, + { + "category": "text", + "bbox": [ + 879, + 207, + 1094, + 232 + ], + "content": "请扫描以查询验证条款", + "order": 7 + }, + { + "category": "title", + "bbox": [ + 416, + 224, + 766, + 264 + ], + "content": "# 太平养老保险股份有限公司", + "order": 8 + }, + { + "category": "title", + "bbox": [ + 416, + 266, + 767, + 288 + ], + "content": "# TAIPING PENSION CO., LTD.", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 516, + 290, + 666, + 315 + ], + "content": "(以下简称本公司)", + "order": 10 + }, + { + "category": "title", + "bbox": [ + 302, + 330, + 880, + 368 + ], + "content": "# 太平盛世终身重大疾病保险(互联网)条款", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 99, + 384, + 196, + 410 + ], + "content": "阅读提示:", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 140, + 414, + 695, + 441 + ], + "content": "一、 本公司根据本合同中所述第 2.3 条承担相应的保险责任;", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 98, + 446, + 1095, + 505 + ], + "content": "二、在部分情况下,本合同不承担保险责任,请留意第 1.4 条、第 2.4 条、第 3.2 条、第 4.2 条、第 5.2 条、第 7.2 条、第 7.4 条中突出显示的内容;", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 139, + 510, + 615, + 535 + ], + "content": "三、本合同为客户预留了犹豫期,请留意第 1.4 条;", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 139, + 540, + 655, + 569 + ], + "content": "四、解除保险合同会造成一定的损失,请留意第 6.1 条。", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 98, + 614, + 356, + 645 + ], + "content": "# 1. 合同基本信息", + "order": 17 + }, + { + "category": "section-header", + "bbox": [ + 98, + 685, + 298, + 714 + ], + "content": "## 1.1 合同构成", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 348, + 684, + 1097, + 776 + ], + "content": "太平盛世终身重大疾病保险(互联网)合同(以下简称“本合同”)由保险单及所附条款、投保单、与本合同有关的投保文件、声明、批注、附贴批单、其它书面或电子协议构成。", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 348, + 786, + 1098, + 881 + ], + "content": "若构成本合同的文件正本需留本公司存档,则其复印件或电子影像印刷件亦视为本合同及附加保险合同的构成部分,其效力与正本相同;若正本与复印件或电子影像件的内容不同,则以正本为准。", + "order": 20 + }, + { + "category": "section-header", + "bbox": [ + 94, + 889, + 296, + 917 + ], + "content": "## 1.2 投保范围", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 348, + 890, + 911, + 916 + ], + "content": "凡符合本公司承保条件者,经本公司同意,均可参加本保险。", + "order": 22 + }, + { + "category": "section-header", + "bbox": [ + 94, + 930, + 334, + 987 + ], + "content": "## 1.3 合同成立及生效", + "order": 23 + }, + { + "category": "text", + "bbox": [ + 348, + 929, + 848, + 955 + ], + "content": "投保人提出保险申请、本公司同意承保,本合同成立。", + "order": 24 + }, + { + "category": "text", + "bbox": [ + 349, + 961, + 1102, + 1051 + ], + "content": "除另有约定外,自本合同成立、本公司收取保险费并签发电子保险单的次日零时起本合同生效,本公司开始承担保险责任,合同生效日期在电子保险单上载明。生效对应日、保单年度(见释义)均以该日期计算。", + "order": 25 + }, + { + "category": "section-header", + "bbox": [ + 92, + 1062, + 276, + 1090 + ], + "content": "## 1.4 犹豫期", + "order": 26 + }, + { + "category": "text", + "bbox": [ + 349, + 1061, + 1103, + 1184 + ], + "content": "从投保人首次收到本合同电子保险单次日起有 15 天的犹豫期。在此期间,请您认真审视本合同,如果您认为本合同与您的需求不相符,您可以在此期间提出解除本合同,本公司将无息退还投保人所交的全部保险费。本合同即被解除,本公司自始不承担保险责任。", + "order": 27 + }, + { + "category": "text", + "bbox": [ + 350, + 1188, + 1101, + 1245 + ], + "content": "犹豫期内解除本合同时,您需要提出申请,并向本公司提供电子保险单及有效身份证件(见释义);", + "order": 28 + }, + { + "category": "text", + "bbox": [ + 349, + 1251, + 1101, + 1310 + ], + "content": "如果您在犹豫期内在线申请解除合同的,我们将在 1 个工作日内核定并通知申请人;如遇复杂情形,我们有权将核定期限延展至 3 个工作日。", + "order": 29 + }, + { + "category": "section-header", + "bbox": [ + 92, + 1345, + 381, + 1372 + ], + "content": "# 2. 本公司提供的保障", + "order": 30 + }, + { + "category": "section-header", + "bbox": [ + 94, + 1413, + 334, + 1471 + ], + "content": "## 2.1 基本保险金额", + "order": 31 + }, + { + "category": "text", + "bbox": [ + 348, + 1413, + 1111, + 1441 + ], + "content": "本合同的基本保险金额在投保时由投保人和本公司约定,并在保险单或批注上列明。", + "order": 32 + }, + { + "category": "text", + "bbox": [ + 348, + 1453, + 891, + 1480 + ], + "content": "如果该金额发生变更,则以变更后的金额为基本保险金额。", + "order": 33 + }, + { + "category": "section-header", + "bbox": [ + 94, + 1492, + 297, + 1518 + ], + "content": "## 2.2 保险期间", + "order": 34 + }, + { + "category": "text", + "bbox": [ + 348, + 1492, + 1104, + 1520 + ], + "content": "本合同的保险期间为终身,自本合同生效日零时至被保险人身故时止,并在保险单", + "order": 35 + }, + { + "category": "page-footer", + "bbox": [ + 360, + 1547, + 824, + 1578 + ], + "content": "太平盛世终身重大疾病保险(互联网),第 1页,共41 页", + "order": 36 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/458ad7e2-e071-4dff-9b28-467dce374665.json b/track1_finixdigital_242_insurance_terms/jsons/458ad7e2-e071-4dff-9b28-467dce374665.json new file mode 100644 index 0000000000000000000000000000000000000000..ceae8d0dc7e86a6d2628c6cf4afa3c2c0d24572f --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/458ad7e2-e071-4dff-9b28-467dce374665.json @@ -0,0 +1,722 @@ +{ + "resized_height": 4864, + "resized_width": 736, + "width": 750, + "height": 4875, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 51, + 54, + 682, + 102 + ], + "content": "# 运动发生意外医疗救治是重中之重", + "order": 1 + }, + { + "category": "figure", + "bbox": [ + 60, + 150, + 257, + 392 + ], + "order": 2 + }, + { + "category": "text", + "bbox": [ + 131, + 406, + 194, + 440 + ], + "content": "骨折", + "order": 3 + }, + { + "category": "figure", + "bbox": [ + 269, + 152, + 465, + 392 + ], + "order": 4 + }, + { + "category": "text", + "bbox": [ + 309, + 403, + 424, + 444 + ], + "content": "ICU抢救", + "order": 5 + }, + { + "category": "figure", + "bbox": [ + 483, + 148, + 675, + 394 + ], + "order": 6 + }, + { + "category": "text", + "bbox": [ + 535, + 402, + 631, + 444 + ], + "content": "植物人", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 113, + 491, + 665, + 535 + ], + "content": "我国每年发生各类需要就医的伤害约为6200万人次。", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 114, + 552, + 608, + 593 + ], + "content": "我国每年因伤害引起的直接医疗费达650亿元。", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 112, + 612, + 658, + 686 + ], + "content": "发生严重意外事故,伤残或高昂治疗费及后续休养, 会对家庭经济状况带来长期影响。", + "order": 10 + }, + { + "category": "footnote", + "bbox": [ + 147, + 725, + 577, + 759 + ], + "content": "*数据来源:国家卫计委《中国伤害预防报告》", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 85, + 843, + 650, + 894 + ], + "content": "# 全民运动守护 7-65周岁均可保", + "order": 12 + }, + { + "category": "figure", + "bbox": [ + 73, + 936, + 259, + 1114 + ], + "order": 13 + }, + { + "category": "figure", + "bbox": [ + 322, + 971, + 371, + 1022 + ], + "order": 14 + }, + { + "category": "text", + "bbox": [ + 373, + 978, + 485, + 1020 + ], + "content": "青少年", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 334, + 1034, + 577, + 1078 + ], + "content": "体能锻炼、摸爬跑跳", + "order": 16 + }, + { + "category": "figure", + "bbox": [ + 179, + 1145, + 223, + 1196 + ], + "order": 17 + }, + { + "category": "text", + "bbox": [ + 226, + 1152, + 339, + 1195 + ], + "content": "中青年", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 188, + 1209, + 430, + 1247 + ], + "content": "健身远足、骑车踏青", + "order": 19 + }, + { + "category": "figure", + "bbox": [ + 489, + 1116, + 672, + 1288 + ], + "order": 20 + }, + { + "category": "figure", + "bbox": [ + 78, + 1297, + 260, + 1470 + ], + "order": 21 + }, + { + "category": "figure", + "bbox": [ + 323, + 1327, + 372, + 1376 + ], + "order": 22 + }, + { + "category": "text", + "bbox": [ + 373, + 1332, + 488, + 1376 + ], + "content": "老年人", + "order": 23 + }, + { + "category": "text", + "bbox": [ + 334, + 1389, + 549, + 1428 + ], + "content": "广场舞、晨练散步", + "order": 24 + }, + { + "category": "section-header", + "bbox": [ + 86, + 1530, + 651, + 1585 + ], + "content": "# 涵盖日常运动 高风险运动也能保", + "order": 25 + }, + { + "category": "figure", + "bbox": [ + 296, + 1649, + 429, + 1769 + ], + "order": 26 + }, + { + "category": "text", + "bbox": [ + 327, + 1774, + 400, + 1816 + ], + "content": "足球", + "order": 27 + }, + { + "category": "figure", + "bbox": [ + 100, + 1726, + 238, + 1855 + ], + "order": 28 + }, + { + "category": "text", + "bbox": [ + 133, + 1859, + 202, + 1896 + ], + "content": "跑步", + "order": 29 + }, + { + "category": "figure", + "bbox": [ + 490, + 1725, + 633, + 1855 + ], + "order": 30 + }, + { + "category": "text", + "bbox": [ + 522, + 1856, + 620, + 1897 + ], + "content": "广场舞", + "order": 31 + }, + { + "category": "figure", + "bbox": [ + 227, + 1832, + 522, + 2066 + ], + "order": 32 + }, + { + "category": "figure", + "bbox": [ + 43, + 1930, + 178, + 2061 + ], + "order": 33 + }, + { + "category": "text", + "bbox": [ + 79, + 2062, + 153, + 2105 + ], + "content": "滑雪", + "order": 34 + }, + { + "category": "figure", + "bbox": [ + 550, + 1930, + 686, + 2064 + ], + "order": 35 + }, + { + "category": "text", + "bbox": [ + 591, + 2066, + 656, + 2106 + ], + "content": "登山", + "order": 36 + }, + { + "category": "figure", + "bbox": [ + 172, + 2080, + 313, + 2213 + ], + "order": 37 + }, + { + "category": "text", + "bbox": [ + 209, + 2214, + 274, + 2247 + ], + "content": "冲浪", + "order": 38 + }, + { + "category": "figure", + "bbox": [ + 410, + 2080, + 544, + 2213 + ], + "order": 39 + }, + { + "category": "text", + "bbox": [ + 418, + 2213, + 538, + 2248 + ], + "content": "室内健身", + "order": 40 + }, + { + "category": "section-header", + "bbox": [ + 96, + 2327, + 634, + 2386 + ], + "content": "# 运动小磕小碰 自购药品可报销", + "order": 41 + }, + { + "category": "text", + "bbox": [ + 166, + 2395, + 568, + 2445 + ], + "content": "就近药店、诊所外购药也能赔", + "order": 42 + }, + { + "category": "text", + "bbox": [ + 153, + 2505, + 263, + 2547 + ], + "content": "跌打药膏", + "order": 43 + }, + { + "category": "text", + "bbox": [ + 441, + 2504, + 528, + 2540 + ], + "content": "膏药贴", + "order": 44 + }, + { + "category": "figure", + "bbox": [ + 131, + 2519, + 603, + 2741 + ], + "order": 45 + }, + { + "category": "text", + "bbox": [ + 66, + 2574, + 221, + 2614 + ], + "content": "创面消毒喷雾", + "order": 46 + }, + { + "category": "text", + "bbox": [ + 557, + 2574, + 664, + 2616 + ], + "content": "包扎绷带", + "order": 47 + }, + { + "category": "section-header", + "bbox": [ + 120, + 2847, + 616, + 2948 + ], + "content": "# 最高50万运动意外医疗保障 门诊住院均可报销", + "order": 48 + }, + { + "category": "text", + "bbox": [ + 167, + 2958, + 569, + 3009 + ], + "content": "不限社保用药 进口钢板也能赔", + "order": 49 + }, + { + "category": "figure", + "bbox": [ + 125, + 3035, + 644, + 3251 + ], + "order": 50 + }, + { + "category": "figure", + "bbox": [ + 109, + 3278, + 251, + 3404 + ], + "order": 51 + }, + { + "category": "text", + "bbox": [ + 141, + 3411, + 221, + 3446 + ], + "content": "检查费", + "order": 52 + }, + { + "category": "figure", + "bbox": [ + 296, + 3286, + 440, + 3410 + ], + "order": 53 + }, + { + "category": "text", + "bbox": [ + 312, + 3414, + 419, + 3447 + ], + "content": "住院手术", + "order": 54 + }, + { + "category": "figure", + "bbox": [ + 484, + 3278, + 623, + 3407 + ], + "order": 55 + }, + { + "category": "text", + "bbox": [ + 517, + 3414, + 602, + 3447 + ], + "content": "进口药", + "order": 56 + }, + { + "category": "figure", + "bbox": [ + 110, + 3457, + 247, + 3578 + ], + "order": 57 + }, + { + "category": "text", + "bbox": [ + 91, + 3584, + 268, + 3615 + ], + "content": "进口钛合金钢板", + "order": 58 + }, + { + "category": "figure", + "bbox": [ + 296, + 3450, + 440, + 3578 + ], + "order": 59 + }, + { + "category": "text", + "bbox": [ + 326, + 3584, + 411, + 3616 + ], + "content": "床位费", + "order": 60 + }, + { + "category": "figure", + "bbox": [ + 487, + 3452, + 626, + 3578 + ], + "order": 61 + }, + { + "category": "text", + "bbox": [ + 493, + 3582, + 623, + 3615 + ], + "content": "抗排异治疗", + "order": 62 + }, + { + "category": "footnote", + "bbox": [ + 68, + 3652, + 666, + 3733 + ], + "content": "*意外医疗费用扣除1000元年免赔额后,社保内赔付比例100%,社保外赔付比例80%", + "order": 63 + }, + { + "category": "section-header", + "bbox": [ + 284, + 3800, + 453, + 3851 + ], + "content": "# 保障方案", + "order": 64 + }, + { + "category": "table", + "bbox": [ + 17, + 3883, + 719, + 4239 + ], + "content": "
保险责任保额
计划一计划二
运动意外医疗费用
(年累计免赔额1000元,社保内赔付比例100%,社保外赔付比例80%)
10万元50万元
运动意外医疗药品费用100元300元
运动意外身故/残疾1000元1000元
", + "order": 65 + }, + { + "category": "table", + "bbox": [ + 15, + 4254, + 721, + 4662 + ], + "content": "
保费(元/年)
年龄计划一计划二
7-25周岁81189
26-45周岁98229
46-55周岁128297
56-65周岁203475
", + "order": 66 + }, + { + "category": "footnote", + "bbox": [ + 16, + 4675, + 712, + 4776 + ], + "content": "本产品适用条款《众安在线财产保险股份有限公司个人运动意外伤害保险条款(互联网)注册号:C00017932312021120818413》等,条款内容详见《保险条款》", + "order": 67 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/45e86cd5-4490-4c5e-8878-4a38ee17e201.json b/track1_finixdigital_242_insurance_terms/jsons/45e86cd5-4490-4c5e-8878-4a38ee17e201.json new file mode 100644 index 0000000000000000000000000000000000000000..9f277d17b1090a9b72577036212945cb03610c46 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/45e86cd5-4490-4c5e-8878-4a38ee17e201.json @@ -0,0 +1,120 @@ +{ + "resized_height": 864, + "resized_width": 576, + "width": 576, + "height": 864, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 28, + 31, + 551, + 87 + ], + "content": "(2)被保险人被确诊为“恶性肿瘤——重度”时保险合同已交付的保险费;", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 28, + 94, + 551, + 150 + ], + "content": "(3)被保险人被确诊为“恶性肿瘤——重度”时保险合同的现金价值。", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 26, + 156, + 551, + 275 + ], + "content": "被保险人由于同一疾病原因或同次医疗行为符合原位癌保险金和“恶性肿瘤——重度”保险金给付条件的,我们仅按“恶性肿瘤——重度”保险金承担保险责任,不再承担给付原位癌保险金责任,原位癌保险金责任终止。", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 26, + 281, + 550, + 430 + ], + "content": "被保险人由于同一疾病原因或同次医疗行为符合“恶性肿瘤——轻度”保险金和“恶性肿瘤——重度”保险金给付条件的,我们仅按“恶性肿瘤——重度”保险金承担保险责任,不再承担给付“恶性肿瘤——轻度”保险金责任,“恶性肿瘤——轻度”保险金责任终止。", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 27, + 437, + 551, + 557 + ], + "content": "被保险人由于同一疾病原因或同次医疗行为符合原位癌保险金和“恶性肿瘤——轻度”保险金给付条件的,我们仅按“恶性肿瘤——轻度”保险金承担保险责任,不再承担给付原位癌保险金责任,原位癌保险金责任终止。", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 69, + 563, + 195, + 586 + ], + "content": "## 二、可选责任", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 68, + 594, + 375, + 617 + ], + "content": "身故保险金或永久完全残疾保险金", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 24, + 623, + 550, + 742 + ], + "content": "被保险人身故或初次罹患保险合同约定的永久完全残疾,我们按被保险人身故时或永久完全残疾时保险合同已交付的保险费和现金价值两者中的金额较大者给付身故保险金或永久完全残疾保险金,保险合同终止。", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 25, + 749, + 550, + 805 + ], + "content": "“恶性肿瘤——重度”保险金、永久完全残疾保险金和身故保险金保险责任,我们仅按其中一项承担保险责任。,", + "order": 9 + }, + { + "category": "page-footer", + "bbox": [ + 266, + 823, + 314, + 843 + ], + "content": "4/11", + "order": 10 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/489dd3af-9312-47f9-8c0f-316fbc6565c6.json b/track1_finixdigital_242_insurance_terms/jsons/489dd3af-9312-47f9-8c0f-316fbc6565c6.json new file mode 100644 index 0000000000000000000000000000000000000000..84ecb3173d42122fd9027e6b56e4965a418f5360 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/489dd3af-9312-47f9-8c0f-316fbc6565c6.json @@ -0,0 +1,197 @@ +{ + "resized_height": 1408, + "resized_width": 992, + "width": 993, + "height": 1404, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 177, + 106, + 264, + 132 + ], + "content": "## 疗保险金", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 332, + 104, + 900, + 209 + ], + "content": "疗时发生的必须由被保险人个人自行承担的合理且必要的床位费、陪床费、重症监护室床位费、膳食费、护理费、治疗费、检查检验费、药品费、医生诊疗费、手术费、转院救护车使用费和医疗器械费,我们根据本主险合同约定的赔付比例在保险金总赔付限额内赔付质子重离子医疗保险金。", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 332, + 213, + 608, + 236 + ], + "content": "本项责任不适用医疗费用直接结算。", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 332, + 238, + 632, + 260 + ], + "content": "免赔额不适用质子重离子医疗保险金。", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 329, + 264, + 897, + 317 + ], + "content": "请注意质子重离子医疗保险金保险责任不适用 2.2.5 条的保险金计算方法。", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 178, + 345, + 317, + 397 + ], + "content": "## 出院后特别关怀保险金", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 331, + 342, + 901, + 444 + ], + "content": "在本主险合同保险期间内,对于被保险人在等待期后的住院结束后 90 日内发生的家庭护理费³⁵、康复治疗费³⁶及临终关怀医疗费³⁷,我们依据 2.2.5 条的保险金计算方法结合补偿原则在保险金总赔付限额内赔付出院后特别关怀保险金。", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 331, + 448, + 899, + 497 + ], + "content": "在每一保险期间内,我们仅对被保险人出院次日起 90 日内的费用承担保险责任。", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 332, + 501, + 650, + 527 + ], + "content": "本项保险责任不适用医疗费用直接结算。", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 177, + 549, + 317, + 604 + ], + "content": "## 保险区域外紧急医疗保险金", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 331, + 544, + 901, + 758 + ], + "content": "在本主险合同保险期间内,被保险人以短期旅游签证或短期商务签证的身份,在本主险合同约定的保障区域以外的全球其他国家和地区进行预定不长于 30 个自然日的短期旅行时,因遭受意外伤害事故或指定的突发急性病³⁸需紧急医疗的,我们对发生在网络医院³⁹的相关紧急医疗产生的必须由被保险人个人自行承担的符合“一般住院医疗保险金”保险责任范围内的医疗费用以及合理且必要的门诊急诊医疗费用,我们依据 2.2.5 条的保险金计算方法结合补偿原则在本项保险金赔付限额内赔付保险区域外紧急医疗保险金。", + "order": 11 + }, + { + "category": "footnote", + "bbox": [ + 83, + 803, + 911, + 863 + ], + "content": "分期的国际通用标准。T指原发肿瘤的大小、形态等;N指淋巴结的转移情况;M指有无其他脏器的转移情况。\n甲状腺癌的 TNM 分期采用目前现行的 AJCC 第八版定义标准,我国国家卫生健康委员会 2018 年发布的《甲状腺癌诊疗规范(2018 年版)》也采用此定义标准。", + "order": 12 + }, + { + "category": "footnote", + "bbox": [ + 79, + 862, + 917, + 940 + ], + "content": "³⁵家庭护理费指根据医生建议,出院后必须立即在家中接受由专业护士提供的与住院治疗的病症直接相关的护理而发生的护理费用,包括康复保健、家庭健康指导等卫生咨询服务,以及换药、导尿、测血压、输液、注射、压力性溃疡护理、鼻饲、造瘘等可在居家环境下实施的临床护理技术服务而发生的相关费用。\n专业护士指国家护士注册机构登记名册中登记在案的护士。", + "order": 13 + }, + { + "category": "footnote", + "bbox": [ + 81, + 941, + 913, + 1076 + ], + "content": "³⁶康复治疗费指在医院接受门诊急诊治疗或住院治疗,由专科医生进行的康复功能评估、确定康复目标、制定康复计划、实施治疗方案以实现最大程度的功能恢复和重建治疗而发生的医疗费用。治疗范围须满足下列条件其一:\n(1)手术后的康复治疗;\n(2)中枢神经损伤后的康复治疗;\n(3)脑卒中、脑中风或者脑出血后的康复治疗;\n(4)言语或者吞咽功能障碍的康复治疗(因精神疾病导致的除外)。\n以上治疗手段包括:物理治疗、中医理疗及其他特殊疗法、生物反馈疗法、康复营养、康复护理等。", + "order": 14 + }, + { + "category": "footnote", + "bbox": [ + 82, + 1078, + 914, + 1135 + ], + "content": "³⁷临终关怀医疗费指被保险人因达到疾病的终末期状态而在当地合法注册的临终护理机构或设有临终护理病房的医疗机构,且在患者及其家属的要求和医生的同意下一切积极治疗已被放弃,仅接受以减轻痛苦为目的的姑息治疗所导致的住院费用。疾病的终末期状态指疾病已经无法以现有的医疗技术治疗或缓解并且将导致被保险人在未来六个月内死亡。", + "order": 15 + }, + { + "category": "footnote", + "bbox": [ + 83, + 1136, + 917, + 1272 + ], + "content": "³⁸指定的突发急性病指以下疾病病程短、病情相对严重,需要短期治疗的疾病,包括:(1)高热(成人摄氏38.5度以上、小儿摄氏39度以上);(2)急性腹痛、剧烈呕吐、严重腹泻;(3)各种原因的休克;(4)昏迷;(5)癫痫发作;(6)严重喘息、呼吸困难;(7)急性胸痛、急性心力衰竭、严重心律失常;(8)高血压危象、高血压脑病、脑血管意外;(9)各种原因所致急性出血;(10)急性泌尿道出血、尿闭、肾绞痛;(11)各种急性中毒(如食物或药物中毒),各种意外(如触电、溺水);(12)脑外伤、骨折、脱位、撕裂、烧伤、烫伤或其他急性外伤;(13)各种有毒动物或昆虫咬伤或者急性过敏性疾病;(14)五官及呼吸道或食道异物,急性眼痛、眼红或眼肿,突然视力障碍以及眼外伤;(15)其他给予危、急、重病者的紧急治疗。", + "order": 16 + }, + { + "category": "footnote", + "bbox": [ + 82, + 1273, + 912, + 1313 + ], + "content": "³⁹网络医院指在本主险合同中列明的医院网络范围内的医院,不同的保障责任可能会对应不同的网络医院。网络医院发生变更时,您可以通过我们的服务电话或网站查询。对部分网络医院我们还可提供门诊预约服务,您可通过服务电话查询并进行预约。", + "order": 17 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/49144717-1fc5-4203-947e-2d948d765513.json b/track1_finixdigital_242_insurance_terms/jsons/49144717-1fc5-4203-947e-2d948d765513.json new file mode 100644 index 0000000000000000000000000000000000000000..46ea7c8a4f798efe5a59f1ca683ddc006cab9dad --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/49144717-1fc5-4203-947e-2d948d765513.json @@ -0,0 +1,186 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 170, + 151, + 1010, + 234 + ], + "content": "尊享版:(1)17 项宠物基础体检+粪检+血常规+DR(2张)+基础生化;(2)猫三联/犬八联 1 针;(3)免费邮寄宠物驱虫药 3 支;(4)宠物消费额度", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 171, + 249, + 1011, + 433 + ], + "content": "1)保证预约成功率,请至少提前 24 小时预约服务,具体预约路径为支付宝搜“蚂蚁宠物”小程序--授权获取保单数据--点击右下角“我的”—在商品订单内选择所需核销的服务进行预约。宠物消费额度,可用于在“蚂蚁宠物”小程序内“买药” tab 内以优惠价选购所需的服务或商品。", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 175, + 451, + 1008, + 576 + ], + "content": "注:对于购买月缴版的用户,赠送的福利仍于保单生效后即可使用,如已使用服务,则保单在完成缴纳 4 期保费前无法退保。年缴客户则需在保 4 个月以上方可退保(使用宠物消费额度不受此限制)。", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 175, + 598, + 936, + 624 + ], + "content": "2)本产品赠松的增值服务使用者需与投保宠物为同一只宠物,不得转增其他宠物。", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 175, + 644, + 1007, + 824 + ], + "content": "3)授权上海蚂蚁萌宠信息技术有限公司每月下发 200 元消费额度,该额度在“蚂蚁宠物”小程序中购买药品、健康护理可享一定优惠,该额度在保单年度内可累积,未使用部分不可折现,若保单失效,则消费额度一同失效。保险人可调整折扣额度范围与下发规则,调整时将通过系统公告等方式告知。", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 175, + 845, + 499, + 871 + ], + "content": "4)增值服务有效期同保单有效期。", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 175, + 893, + 285, + 923 + ], + "content": "## 7、等待期:", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 175, + 942, + 894, + 970 + ], + "content": "指定重大疾病 60 天,其他疾病 20 天(如为意外事故导致,等待期均为 20 天)", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 175, + 992, + 708, + 1020 + ], + "content": "连续投保不重复计算等待期,非连续投保重新计算等待期", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 175, + 1043, + 852, + 1070 + ], + "content": "宠物在投保前或等待期内患有保障范围内的疾病,保险人不承担赔偿责任", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 175, + 1089, + 664, + 1120 + ], + "content": "## 8、宠物疾病及意外医疗保险金责任不赔付以下费用:", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 224, + 1138, + 662, + 1167 + ], + "content": "(1)宠物粮及零食(包括处方粮、处方罐头等);", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 169, + 1193, + 1015, + 1370 + ], + "content": "(2)无注册证字产品、非治疗所必需的营养品(例如辅酶 Q10、益生菌、营养膏、化毛膏、氨基酸、钙、微量元素、鱼油、卵磷脂、虾红素、软骨素、补血剂、免疫增强剂等)、饲证字产品(例如关节营养剂、膀胱粘膜营养剂、皮肤营养剂等)、卫消证字产品(如抑菌喷剂、环境消毒剂、护理清洁类产品等);", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 222, + 1387, + 1016, + 1414 + ], + "content": "(3)保健用品(例如洁齿棒、漱口水、去泪痕眼药水、美毛粉、沐浴液、药浴香波等);", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 221, + 1436, + 595, + 1465 + ], + "content": "(4)防咬圈、牙刷、牵引绳、航空箱等;", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 222, + 1484, + 406, + 1513 + ], + "content": "(5)疫苗、驱虫药;", + "order": 16 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/4a713ad5-d34f-483c-889b-b9b11bc72544.json b/track1_finixdigital_242_insurance_terms/jsons/4a713ad5-d34f-483c-889b-b9b11bc72544.json new file mode 100644 index 0000000000000000000000000000000000000000..91433f95fb77a7bc7f652a60f09d7ca8c93c7e2d --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/4a713ad5-d34f-483c-889b-b9b11bc72544.json @@ -0,0 +1,43 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 490, + 85, + 695, + 110 + ], + "content": "太平人寿产品说明书文稿", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 174, + 145, + 1009, + 207 + ], + "content": "三条 明确说明与如实告知”、“第二十五条 年龄错误”及其他条目中以加粗字体醒目显示的内容。", + "order": 2 + }, + { + "category": "page-footer", + "bbox": [ + 521, + 1569, + 657, + 1599 + ], + "content": "第 4 页,共 6 页", + "order": 3 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/4e55cd44-1f04-4060-ae32-e4ca6356f579.json b/track1_finixdigital_242_insurance_terms/jsons/4e55cd44-1f04-4060-ae32-e4ca6356f579.json new file mode 100644 index 0000000000000000000000000000000000000000..b51e43714d9eb0434e2583ff55148d03b6319fa9 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/4e55cd44-1f04-4060-ae32-e4ca6356f579.json @@ -0,0 +1,361 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "title", + "bbox": [ + 348, + 143, + 696, + 183 + ], + "content": "# 新华养老保险股份有限公司", + "order": 1 + }, + { + "category": "title", + "bbox": [ + 208, + 183, + 840, + 226 + ], + "content": "# 新华养老福满盈养老年金保险(互联网)利益条款", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 833, + 117, + 1088, + 141 + ], + "content": "新华养老[2024]养老年金保险007号", + "order": 3 + }, + { + "category": "figure", + "bbox": [ + 899, + 147, + 1022, + 271 + ], + "order": 4 + }, + { + "category": "text", + "bbox": [ + 882, + 275, + 1040, + 297 + ], + "content": "请扫描以查询验证条款", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 155, + 302, + 980, + 334 + ], + "content": "在本条款中,“您”指投保人,“我们”、“本公司”均指新华养老保险股份有限公司。", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 158, + 359, + 336, + 387 + ], + "content": "# 第一条 合同构成", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 158, + 385, + 1025, + 497 + ], + "content": "新华养老福满盈养老年金保险(互联网)合同(以下简称“本合同”)由保险条款、保险单或其他保险凭证、投保单、与本合同有关的投保文件、声明、批注、批单以及与本合同有关的其他书面材料共同构成。保险条款包括新华养老福满盈养老年金保险(互联网)利益条款(以下简称“本合同利益条款”)和个人保险基本条款第二版(以下简称“本合同基本条款”)。", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 158, + 519, + 335, + 547 + ], + "content": "# 第二条 投保范围", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 157, + 548, + 1027, + 629 + ], + "content": "1. 被保险人范围:本合同接受的被保险人的投保年龄范围为 0 周岁(须出生满 30 日)(详见释义)至 80 周岁,且须符合投保当时我们的规定。选择领取计划二(详见本合同利益条款第五条)的,您在投保时须符合计划二的投保年龄要求。", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 157, + 629, + 1031, + 687 + ], + "content": "2. 投保人范围:被保险人本人或对被保险人有保险利益的其他人可作为投保人向我们投保本保险。", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 157, + 707, + 337, + 736 + ], + "content": "# 第三条 保险金额", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 162, + 735, + 1030, + 789 + ], + "content": "本合同基本保险金额由您和我们在投保时约定并在保险单上载明,且须符合投保当时我们的规定。若该金额发生变更,则以变更后的金额为基本保险金额。", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 202, + 791, + 955, + 818 + ], + "content": "本合同保险金额按本合同利益条款第七条约定、根据基本保险金额进行计算确定。", + "order": 14 + }, + { + "category": "section-header", + "bbox": [ + 156, + 842, + 335, + 870 + ], + "content": "# 第四条 保险期间", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 156, + 870, + 1028, + 928 + ], + "content": "本合同的保险期间为被保险人终身,自本合同生效日的零时起至被保险人身故时止,保险期间在保险单上载明。", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 155, + 950, + 335, + 981 + ], + "content": "# 第五条 领取计划", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 155, + 981, + 1027, + 1033 + ], + "content": "本合同的领取计划分为计划一和计划二两种,由您在投保时与我们约定,并在保险单上载明。", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 159, + 1033, + 1027, + 1116 + ], + "content": "计划一:养老年金开始领取年龄为 5 5周岁(限女性被保险人)、60 周岁、65 周岁和70 周岁四种,您可选择其中一种作为本合同的养老年金开始领取年龄。养老年金开始领取日为被保险人达到养老年金开始领取年龄所对应的保单生效对应日(详见释义),并在保险单上载明。", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 159, + 1113, + 1030, + 1171 + ], + "content": "计划二:养老年金开始领取日为犹豫期结束的次日(限被保险人投保年龄大于等于 60 周岁的男性、被保险人投保年龄大于等于 55 周岁的女性)。", + "order": 20 + }, + { + "category": "section-header", + "bbox": [ + 159, + 1192, + 503, + 1222 + ], + "content": "# 第六条 养老年金领取频率及领取日", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 200, + 1222, + 930, + 1249 + ], + "content": "养老年金领取频率与开始领取日由您和我们在投保时约定,并在保险单上载明。", + "order": 22 + }, + { + "category": "text", + "bbox": [ + 198, + 1249, + 1014, + 1276 + ], + "content": "1. 养老年金领取频率为年领或月领,您可选择其中一种作为本合同的养老年金领取频率。", + "order": 23 + }, + { + "category": "text", + "bbox": [ + 201, + 1276, + 826, + 1304 + ], + "content": "2. 养老年金开始领取日根据您在投保时与我们约定的领取计划确定。", + "order": 24 + }, + { + "category": "text", + "bbox": [ + 170, + 1302, + 1029, + 1359 + ], + "content": "3. 第二次及以后的养老年金领取日为养老年金开始领取日之后,保单生效日在每年或每月(按养老年金领取频率确定)的对应日,如当月无对应的同一日,则以当月最后一日为对应日。", + "order": 25 + }, + { + "category": "section-header", + "bbox": [ + 159, + 1381, + 335, + 1412 + ], + "content": "# 第七条保险责任", + "order": 26 + }, + { + "category": "text", + "bbox": [ + 202, + 1411, + 635, + 1438 + ], + "content": "在本合同保险期间内,我们承担下列保险责任:", + "order": 27 + }, + { + "category": "section-header", + "bbox": [ + 204, + 1438, + 314, + 1465 + ], + "content": "## 1.养老年金", + "order": 28 + }, + { + "category": "text", + "bbox": [ + 158, + 1465, + 1037, + 1518 + ], + "content": "在本合同约定的首次养老年金领取日及其后每年(或每月)的对应日,如被保险人生存,我们按本合同约定的每年(或每月)领取金额给付养老年金,直至被保险人身故,本合同终止。", + "order": 29 + }, + { + "category": "text", + "bbox": [ + 205, + 1520, + 669, + 1549 + ], + "content": "(1)按年领取的,每年领取金额为基本保险金额;", + "order": 30 + }, + { + "category": "page-footer", + "bbox": [ + 167, + 1574, + 218, + 1594 + ], + "content": "20241", + "order": 31 + }, + { + "category": "page-footer", + "bbox": [ + 965, + 1571, + 1017, + 1595 + ], + "content": "第1页", + "order": 32 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/4fcf86c8-f7d0-49b0-b59a-454b49a35e52.json b/track1_finixdigital_242_insurance_terms/jsons/4fcf86c8-f7d0-49b0-b59a-454b49a35e52.json new file mode 100644 index 0000000000000000000000000000000000000000..5e5f22b50d221066e39a1ea2483bb1ba70c4da68 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/4fcf86c8-f7d0-49b0-b59a-454b49a35e52.json @@ -0,0 +1,109 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 95, + 115, + 908, + 143 + ], + "content": "除合同的通知书时,本合同即被解除,合同解除前发生的保险事故我们不承担保险责任。", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 108, + 158, + 381, + 189 + ], + "content": "## 【犹豫期后退保(解除合同)】", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 138, + 191, + 970, + 218 + ], + "content": "本合同成立后,您可以解除本合同,请填写解除合同通知书并向我们提供下列证明和资料:", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 142, + 222, + 265, + 248 + ], + "content": "1. 保险合同;", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 141, + 255, + 345, + 280 + ], + "content": "2. 您的有效身份证件。", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 99, + 283, + 1065, + 344 + ], + "content": "自我们收到解除合同通知书之日起,本合同终止。您在犹豫期后解除本合同的,我们自收到解除合同通知书之日起 30 日内向您退还本合同的现金价值。", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 137, + 346, + 556, + 376 + ], + "content": "您在犹豫期后解除合同可能会遭受一定损失。", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 104, + 393, + 317, + 420 + ], + "content": "## 【退保金(现金价值)】", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 99, + 421, + 1068, + 514 + ], + "content": "退保金即现金价值,指保险单所具有的价值,通常体现为解除合同时,根据精算原理计算的、由我们退还的那部分金额。保单年度末的现金价值会在保险合同上载明,保单年度内的现金价值,您可以向我们咨询。", + "order": 9 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/532d4d41-e985-414c-bb03-30950a5aec9a.json b/track1_finixdigital_242_insurance_terms/jsons/532d4d41-e985-414c-bb03-30950a5aec9a.json new file mode 100644 index 0000000000000000000000000000000000000000..16f2239259daae98a34e0a866ee0969bdd54f240 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/532d4d41-e985-414c-bb03-30950a5aec9a.json @@ -0,0 +1,251 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 840, + 58, + 1135, + 86 + ], + "content": "泰康人寿[2024]年金保险 074 号", + "order": 1 + }, + { + "category": "figure", + "bbox": [ + 929, + 92, + 1046, + 212 + ], + "order": 2 + }, + { + "category": "text", + "bbox": [ + 884, + 218, + 1097, + 246 + ], + "content": "请扫描以查询验证条款", + "order": 3 + }, + { + "category": "title", + "bbox": [ + 279, + 164, + 904, + 205 + ], + "content": "#泰康乐鑫年年 D 款年金保险(分红型)条款", + "order": 4 + }, + { + "category": "title", + "bbox": [ + 527, + 227, + 657, + 267 + ], + "content": "# 阅读指引", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 116, + 316, + 284, + 354 + ], + "content": "# 1 我们的保障", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 111, + 362, + 1078, + 390 + ], + "content": "泰康乐鑫年年 D 款年金保险(分红型)(以下简称“乐鑫年年 D 款”)产品提供生存、身故保障及保单红利。", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 114, + 413, + 256, + 450 + ], + "content": "# 2 名词解释", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 149, + 462, + 498, + 490 + ], + "content": "投保人:购买保险并交纳保险费的人。", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 148, + 498, + 457, + 524 + ], + "content": "被保险人: 受保险合同保障的人。", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 149, + 529, + 978, + 558 + ], + "content": "生存类保险金受益人:被保险人生存期间领取生存类保险金的人,本产品中默认为投保人。", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 149, + 565, + 688, + 593 + ], + "content": "身故保险金受益人:被保险人身故后领取身故保险金的人。", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 113, + 619, + 255, + 656 + ], + "content": "# 3 案例说明", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 109, + 667, + 1081, + 723 + ], + "content": "例:李女士为丈夫张先生(30 岁)投保“乐鑫年年 D 款”,李女士为投保人及生存类保险金受益人,张先生为被保险人,儿子张宝贝为身故保险金受益人。", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 150, + 726, + 360, + 754 + ], + "content": "年交保险费:10000 元", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 150, + 760, + 307, + 787 + ], + "content": "交费期间:10 年", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 150, + 794, + 371, + 823 + ], + "content": "基本保险金额:4160 元", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 150, + 829, + 596, + 856 + ], + "content": "生存保险金和祝寿保险金的领取频次:按年领取", + "order": 18 + }, + { + "category": "table", + "bbox": [ + 100, + 869, + 1092, + 1335 + ], + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
保障内容领取人保障金额给付条件1
特别保险金李女士10000 元张先生在本合同第 6 个保单年度的年生效对应日生存
生存保险金李女士自本合同第 7 个保单年度起,至张先生年满 59 周岁后首个本合同的年生效对应日:
4160 元×20%=832 元
自张先生年满 60 岁起,至年满 105 周岁后首个本合同的年生效对应日:
4160 元×30%=1248 元
自第 7 个保单年度起,张先生在每个年生效对应日生存,直至 105 岁
祝寿保险金李女士自张先生年满 80 周岁后首个本合同的年生效对应日起,至张先生年满 89 周岁后首个本合同的年生效对应日:
10000 元×10×10%=10000 元
自张先生年满 80 岁起,在每个年生效对应日生存,直至 89 岁
身故保险金张宝贝累计已交保险费(扣除累计已给付祝寿保险金)与身故时现金价值较大者如果张先生身故
", + "order": 19 + }, + { + "category": "caption", + "bbox": [ + 107, + 1341, + 1080, + 1398 + ], + "content": "以上举例不包括分红产生的相关利益,且仅供您更好地理解产品之用,您所购买产品的具体保险责任及责任免除情形在保险合同中载明。", + "order": 20 + }, + { + "category": "footnote", + "bbox": [ + 109, + 1557, + 418, + 1584 + ], + "content": "¹给付条件:具体请见“1.3 保险责任”。", + "order": 21 + }, + { + "category": "page-footer", + "bbox": [ + 889, + 1612, + 1076, + 1641 + ], + "content": "乐鑫年年 D 款年金条款", + "order": 22 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/58dcf1f4-ab5f-4a08-aa89-1cc1a89057db.json b/track1_finixdigital_242_insurance_terms/jsons/58dcf1f4-ab5f-4a08-aa89-1cc1a89057db.json new file mode 100644 index 0000000000000000000000000000000000000000..0269cd978c5886c28e20cfb483c136e07d050115 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/58dcf1f4-ab5f-4a08-aa89-1cc1a89057db.json @@ -0,0 +1,130 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 174, + 87, + 555, + 110 + ], + "content": "长城平型关终身寿险(互联网专属)产品说明书", + "order": 1 + }, + { + "category": "figure", + "bbox": [ + 845, + 75, + 881, + 109 + ], + "order": 2 + }, + { + "category": "text", + "bbox": [ + 883, + 73, + 981, + 98 + ], + "content": "长城人寿", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 885, + 98, + 979, + 109 + ], + "content": "GREATWALL LIFE", + "order": 4 + }, + { + "category": "table", + "bbox": [ + 176, + 142, + 1074, + 217 + ], + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
60100-500,000.002,608,321.372,647,230.002,647,230.00
65105-500,000.003,023,759.353,068,860.003,068,860.00
", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 171, + 251, + 987, + 313 + ], + "content": "注:1.本演示截至105周岁,若被保险人仍然生存,本主险合同继续有效,我们继续承担本主险合同约定的保险责任。", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 225, + 314, + 895, + 346 + ], + "content": "2. 上述利益演示中,身故或全残保险金为保险单年度末对应的给付金额。", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 226, + 346, + 808, + 377 + ], + "content": "3. 上述利益演示中,现金价值为保险单年度末对应的现金价值。", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 510, + 496, + 885, + 526 + ], + "content": "“本人已认真阅读并理解本产品说明书。”", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 578, + 544, + 725, + 573 + ], + "content": "投保人(签名):", + "order": 10 + }, + { + "category": "page-footer", + "bbox": [ + 518, + 1576, + 639, + 1604 + ], + "content": "第 4 页,共 4 页", + "order": 11 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/5a2726c0-4ec5-4e0c-80ca-00256ba771e7.json b/track1_finixdigital_242_insurance_terms/jsons/5a2726c0-4ec5-4e0c-80ca-00256ba771e7.json new file mode 100644 index 0000000000000000000000000000000000000000..83401015f186a20cf186d4b45e63986420e8079c --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/5a2726c0-4ec5-4e0c-80ca-00256ba771e7.json @@ -0,0 +1,197 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 175, + 113, + 329, + 147 + ], + "content": "# 二、利益演示", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 173, + 150, + 1018, + 244 + ], + "content": "30岁的刘先生为自己投保了“招商信诺真享福重大疾病保险(互联网专属)”,交费期间为30年,交费方式为年交,基本保险金额30万元,年交保险费4599元,刘先生可获得的保险利益演示如下:", + "order": 2 + }, + { + "category": "caption", + "bbox": [ + 917, + 246, + 1013, + 274 + ], + "content": "单位:元", + "order": 3 + }, + { + "category": "table", + "bbox": [ + 169, + 271, + 1042, + 938 + ], + "content": "
保单年度保单年度末被保险人年龄年度保险费累计保险费重大疾病保险金轻症疾病保险金身故保险金是否轻症豁免剩余保费退保金*
1314,5994,599300,00090,0000213
2324,5999,198300,00090,0000492
3334,59913,797300,00090,0000918
4344,59918,396300,00090,00003,408
5354,59922,995300,00090,00006,051
6364,59927,594300,00090,00008,847
7374,59932,193300,00090,000011,805
8384,59936,792300,00090,000014,931
9394,59941,391300,00090,000018,240
10404,59945,990300,00090,000021,738
15454,59968,985300,00090,000042,303
20504,59991,980300,00090,000068,235
25554,599114,975300,00090,000095,415
30604,599137,970300,00090,0000127,152
3565137,970300,00090,0000145,611
4070137,970300,00090,0000165,402
4575137,970300,00090,0000191,067
5080137,970300,00090,0000243,885
5585137,970300,00090,000300,000261,603
6090137,970300,00090,000300,000275,967
6595137,970300,00090,000300,000286,680
70100137,970300,00090,000300,000293,283
75105137,970300,00090,000300,000302,109
", + "order": 4 + }, + { + "category": "caption", + "bbox": [ + 174, + 926, + 209, + 951 + ], + "content": "注:", + "order": 5 + }, + { + "category": "caption", + "bbox": [ + 176, + 956, + 417, + 979 + ], + "content": "1、退保金为保单年度末的金额。", + "order": 6 + }, + { + "category": "caption", + "bbox": [ + 176, + 982, + 1020, + 1033 + ], + "content": "2、我们对每种轻症疾病最多给付一次轻症疾病保险金,在保险期间内最多对三种轻症疾病承担保险责任,但每种轻症疾病首次确诊日期需间隔不短于一年。本项保险责任自第三种轻症疾病确诊之时起终止。", + "order": 7 + }, + { + "category": "caption", + "bbox": [ + 176, + 1037, + 1021, + 1090 + ], + "content": "3、如果被保险人在疾病首次确诊时同时符合主合同约定的轻症疾病和主合同约定的重大疾病的,我们仅承担给付重大疾病保险金的责任。", + "order": 8 + }, + { + "category": "caption", + "bbox": [ + 178, + 1094, + 614, + 1119 + ], + "content": "4、我们不累计给付本合同的身故保险金和重大疾病保险金。", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 174, + 1156, + 420, + 1188 + ], + "content": "# 三、犹豫期及解除合同", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 184, + 1190, + 307, + 1216 + ], + "content": "## (一)犹豫期", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 216, + 1220, + 598, + 1245 + ], + "content": "本合同自您签收之日起15天内为犹豫期。", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 184, + 1282, + 328, + 1313 + ], + "content": "## (二)解除合同", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 173, + 1313, + 1013, + 1367 + ], + "content": "如果您在犹豫期内要求解除本合同,我们将向您无息退还已支付的保险费,对于本合同解除前发生的保险事故我们不承担给付保险金的责任。", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 173, + 1371, + 1011, + 1458 + ], + "content": "如果您在犹豫期后要求解除合同,本合同自我们收到完整的解除合同申请之日起效力终止,我们自收到完整的解除合同申请之日起30天内向您退还本合同在合同终止之日的现金价值。本合同解除后发生的保险事故我们不承担保险责任。", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 173, + 1461, + 1014, + 1521 + ], + "content": "现金价值即保险单所具有的价值,为解除合同时根据精算原理计算的由我们退还的那部分金额。", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 218, + 1527, + 590, + 1552 + ], + "content": "您在犹豫期后解除合同会遭受一定损失。", + "order": 17 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/5bde3c3d-2a0d-45d3-b976-f650a0f8fd92.json b/track1_finixdigital_242_insurance_terms/jsons/5bde3c3d-2a0d-45d3-b976-f650a0f8fd92.json new file mode 100644 index 0000000000000000000000000000000000000000..a9b179303b07076a07cb614f42461cb5dc8c1e93 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/5bde3c3d-2a0d-45d3-b976-f650a0f8fd92.json @@ -0,0 +1,185 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "figure", + "bbox": [ + 896, + 106, + 967, + 165 + ], + "order": 1 + }, + { + "category": "text", + "bbox": [ + 982, + 108, + 1116, + 144 + ], + "content": "国泰产险", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 982, + 147, + 1098, + 165 + ], + "content": "Cathay Insurance", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 123, + 174, + 399, + 215 + ], + "content": "### 3.3.2 特定药品费用", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 128, + 273, + 448, + 313 + ], + "content": "必须同时满足以下条件:", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 64, + 362, + 1118, + 579 + ], + "content": "① 该药品须由指定医院的专科医生在保险期间内开具处方,且药品处方符合中国国家药品监督管理部门批准的该药品说明书中所列明的适应症和用法用量,且为被保险人当前治疗必需的药品;", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 129, + 625, + 671, + 682 + ], + "content": "② 该药品每次的处方剂量不超过 1 个月;", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 125, + 729, + 670, + 779 + ], + "content": "③ 该药品须在《特定药品清单》列表中;", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 127, + 826, + 672, + 868 + ], + "content": "④ 该药品须在保险人指定的药店中购买;", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 128, + 922, + 898, + 977 + ], + "content": "⑤ 履行了保险条款第 14. 3条约定的“特定药品购买流程 ” 。", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 122, + 1018, + 1074, + 1074 + ], + "content": "对于不满足上述条件的特定药品费用,保险人不承担给付保险金的责任。", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 124, + 1125, + 457, + 1163 + ], + "content": "### 3.3.3 细胞免疫疗法费用", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 125, + 1222, + 450, + 1263 + ], + "content": "必须同时满足以下条件:", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 124, + 1318, + 1089, + 1361 + ], + "content": "① 治疗药品须在《细胞免疫疗法药品清单》列表中,且符合指定适应症;", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 126, + 1418, + 941, + 1462 + ], + "content": "② 须由保险人安排到细胞免疫疗法指定医疗机构中接受治疗;", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 129, + 1513, + 957, + 1560 + ], + "content": "③ 履行了保险条款第 14.4 条约定的“细胞免疫疗法就医流程” 。", + "order": 16 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/5e927543-a586-42e2-97db-d226c0afed90.json b/track1_finixdigital_242_insurance_terms/jsons/5e927543-a586-42e2-97db-d226c0afed90.json new file mode 100644 index 0000000000000000000000000000000000000000..96bd62fd1ed62a63db0e9256aac8c4767d15dbaf --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/5e927543-a586-42e2-97db-d226c0afed90.json @@ -0,0 +1,142 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 911, + 145, + 1077, + 167 + ], + "content": "JR/T0083—2013", + "order": 1 + }, + { + "category": "table", + "bbox": [ + 100, + 167, + 1056, + 540 + ], + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
胸部损伤导致大于等于12根肋骨骨折8级s4302A.350
胸部损伤导致大于等于8根肋骨骨折9级s4302A.250
胸部损伤导致大于等于4根肋骨缺失9级s4302A.120Z
胸部损伤导致大于等于4根肋骨骨折10级s4302A.150
胸部损伤导致大于等于2根肋骨缺失10级s4302A.120
", + "order": 2 + }, + { + "category": "section-header", + "bbox": [ + 107, + 541, + 687, + 574 + ], + "content": "## 4.5 消化、代谢和内分泌系统有关的结构和功能", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 107, + 612, + 444, + 646 + ], + "content": "### 4.5.1 咀嚼和吞咽功能障碍", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 108, + 686, + 1048, + 758 + ], + "content": "咀嚼是指用后牙(如磨牙)碾、磨或咀嚼食物的功能。吞咽是指通过口腔、咽和食道把食物和饮料以适宜的频率和速度送入胃中的功能。", + "order": 5 + }, + { + "category": "caption", + "bbox": [ + 546, + 759, + 610, + 792 + ], + "content": "表18", + "order": 6 + }, + { + "category": "table", + "bbox": [ + 98, + 792, + 1058, + 910 + ], + "content": "\n\n\n\n\n\n\n\n\n\n\n
伤残
条目
等级伤残
代码
咀嚼、吞咽功能完全丧失1级b5102.4,b5105.4
", + "order": 7 + }, + { + "category": "caption", + "bbox": [ + 107, + 908, + 1028, + 983 + ], + "content": "表注:咀嚼、吞咽功能丧失指由于牙齿以外的原因引起器质障碍或机能障碍,以致不能作咀嚼、吞咽运动,除流质食物外不能摄取或吞咽的状态。", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 107, + 981, + 362, + 1016 + ], + "content": "### 4.5.2 肠的结构损伤", + "order": 9 + }, + { + "category": "caption", + "bbox": [ + 547, + 1055, + 609, + 1088 + ], + "content": "表19", + "order": 10 + }, + { + "category": "table", + "bbox": [ + 99, + 1088, + 1058, + 1390 + ], + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
伤残
条目
等级伤残
代码
腹部损伤导致小肠切除大于等于90%1级s5400.328Z
腹部损伤导致小肠切除大于等于75%,合并短肠综合症2级s5400.328;b5152.3
腹部损伤导致小肠切除大于等于75%4级s5400.328
", + "order": 11 + }, + { + "category": "page-footer", + "bbox": [ + 1032, + 1560, + 1056, + 1582 + ], + "content": "15", + "order": 12 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/6597faf2-550c-4f04-b887-8d0e95c207c8.json b/track1_finixdigital_242_insurance_terms/jsons/6597faf2-550c-4f04-b887-8d0e95c207c8.json new file mode 100644 index 0000000000000000000000000000000000000000..841a4f4d00ca2aef5d7b51c217f9a1fe2d072bc3 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/6597faf2-550c-4f04-b887-8d0e95c207c8.json @@ -0,0 +1,142 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 910, + 144, + 1077, + 170 + ], + "content": "JR/T 0083-2013", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 109, + 211, + 469, + 254 + ], + "content": "## 3.3 确定保险金给付比例", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 150, + 306, + 998, + 349 + ], + "content": "应根据伤残等级对应的百分比,确定保险金给付比例。", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 108, + 401, + 470, + 447 + ], + "content": "## 3.4 多处伤残的评定原则", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 104, + 491, + 1054, + 834 + ], + "content": "当同一保险事故造成两处或两处以上伤残时,应首先对各处伤残程度分别进行评定,如果几处伤残等级不同,以最重的伤残等级作为最终的评定结论;如果两处或两处以上伤残等级相同,伤残等级在原评定基础上最多晋升一级,最高晋升至第一级。同一部位和性质的伤残,不应采用本标准条文两条以上或者同一条文两次以上进行评定。", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 142, + 850, + 777, + 887 + ], + "content": "注:本标准中“以上”均包括本数值或本部位,下同。", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 107, + 958, + 498, + 999 + ], + "content": "# 4 伤残内容、等级及代码", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 109, + 1088, + 575, + 1134 + ], + "content": "## 4.1 神经系统的结构和精神功能", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 109, + 1183, + 416, + 1228 + ], + "content": "### 4.1.1 脑膜的结构损伤", + "order": 9 + }, + { + "category": "caption", + "bbox": [ + 547, + 1281, + 607, + 1321 + ], + "content": "表1", + "order": 10 + }, + { + "category": "table", + "bbox": [ + 97, + 1335, + 1058, + 1525 + ], + "content": "
伤残
条目
等级伤残
代码
外伤性脑脊液鼻漏或耳漏10级s130.188
", + "order": 11 + }, + { + "category": "page-footer", + "bbox": [ + 1029, + 1558, + 1046, + 1581 + ], + "content": "4", + "order": 12 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/66464c20-2f7c-446c-bbd4-3d7fb722f249.json b/track1_finixdigital_242_insurance_terms/jsons/66464c20-2f7c-446c-bbd4-3d7fb722f249.json new file mode 100644 index 0000000000000000000000000000000000000000..727ee9649d17d079d79c3a42ec1e60203959e312 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/66464c20-2f7c-446c-bbd4-3d7fb722f249.json @@ -0,0 +1,230 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 259, + 143, + 427, + 176 + ], + "content": "金后本合同终止。", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 218, + 180, + 557, + 212 + ], + "content": "### 5.轻症疾病和中症疾病豁免保险费", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 258, + 211, + 1023, + 309 + ], + "content": "若被保险人因遭受意外伤害或在等待期后因意外伤害以外的原因经我们认可的医院专科医生确诊初次发生本合同约定的轻症疾病或中症疾病(无论一种或多种),我们将豁免本合同自轻症疾病、中症疾病确诊之日以后的各期保险费。", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 257, + 309, + 739, + 338 + ], + "content": "被豁免的保险费视为已交纳,同时本合同继续有效。", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 189, + 372, + 341, + 401 + ], + "content": "## (二)可选责任", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 219, + 405, + 427, + 433 + ], + "content": "### 1、身故或全残保险金", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 261, + 434, + 1010, + 499 + ], + "content": "若被保险人因遭受意外伤害或在等待期后因意外伤害以外的原因导致身故或全残,我们按以下约定给付身故或全残保险金,本合同终止。", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 261, + 496, + 1012, + 590 + ], + "content": "(1) 若被保险人于年满 18 周岁后的首个合同生效日对应日前身故或全残,我们按您累计已交保险费和被保险人身故或全残时本合同的现金价值较大者给付身故或全残保险金。", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 261, + 590, + 1010, + 682 + ], + "content": "(2) 若被保险人于年满 18 周岁后的首个合同生效日对应日(含)后(若投保时被保险人年满 18 周岁的,自合同生效日后)身故或全残,我们将按本合同的基本保险金额给付身故或全残保险金。", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 261, + 685, + 1009, + 749 + ], + "content": "前述“首次重大疾病保险金”与“身故或全残保险金”二者不可兼得,即若我们给付其中任何一项保险金,则其余一项保险金将不再给付。", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 219, + 752, + 404, + 783 + ], + "content": "### 2.疾病关爱保险金", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 273, + 783, + 559, + 816 + ], + "content": "#### (一)首次轻症疾病关爱保险金", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 261, + 814, + 1009, + 968 + ], + "content": "若被保险人因遭受意外伤害或在等待期后因意外伤害以外的原因,在第 30 个保单周年日零时前,经我们认可的医院专科医生确诊初次发生本合同约定的轻症疾病(无论一种或多种),我们在按本合同约定给付轻症疾病保险金的同时,按本合同基本保险金额的15%给付首次轻症疾病关爱保险金,给付后首次轻症疾病关爱保险金责任终止。", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 273, + 969, + 559, + 1002 + ], + "content": "#### (二)首次中症疾病关爱保险金", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 260, + 1000, + 1008, + 1157 + ], + "content": "若被保险人因遭受意外伤害或在等待期后因意外伤害以外的原因,在第 30 个保单周年日零时前,经我们认可的医院专科医生确诊初次发生本合同约定的中症疾病(无论一种或多种),我们在按本合同约定给付中症疾病保险金的同时,按本合同基本保险金额的30%给付首次中症疾病关爱保险金,给付后首次中症疾病关爱保险金责任终止。", + "order": 15 + }, + { + "category": "section-header", + "bbox": [ + 273, + 1157, + 563, + 1190 + ], + "content": "#### (三)首次重大疾病关爱保险金", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 261, + 1188, + 1005, + 1345 + ], + "content": "若被保险人因遭受意外伤害或在等待期后因意外伤害以外的原因,在第 30 个保单周年日零时前,经我们认可的医院专科医生确诊初次发生本合同约定的重大疾病(无论一种或多种),我们在按本合同约定给付首次重大疾病保险金的同时,按本合同基本保险金额的50%给付首次重大疾病关爱保险金,给付后首次重大疾病关爱保险金责任终止。", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 261, + 1346, + 1006, + 1410 + ], + "content": "本合同首次轻症疾病关爱保险金、首次中症疾病关爱保险金和首次重大疾病关爱保险金的给付次数分别以一次为限。", + "order": 18 + }, + { + "category": "section-header", + "bbox": [ + 219, + 1410, + 491, + 1443 + ], + "content": "### 3.重大疾病多次给付保险金", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 259, + 1442, + 1007, + 1506 + ], + "content": "重大疾病多次给付保险金责任包括“第二次重大疾病保险金”“第三次重大疾病保险金”和“第四次重大疾病保险金”。", + "order": 20 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/66e3ad2c-0c6f-414d-a4fa-eca800eb6bdb.json b/track1_finixdigital_242_insurance_terms/jsons/66e3ad2c-0c6f-414d-a4fa-eca800eb6bdb.json new file mode 100644 index 0000000000000000000000000000000000000000..e25fe10bad7476902ca0c47a9e1ea218f4c94d3d --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/66e3ad2c-0c6f-414d-a4fa-eca800eb6bdb.json @@ -0,0 +1,218 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 911, + 142, + 1078, + 172 + ], + "content": "JR/T 0083—2013", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 149, + 186, + 638, + 217 + ], + "content": "例如某人的智力缺损可以编码为 b117 “智力功能”。", + "order": 2 + }, + { + "category": "caption", + "bbox": [ + 568, + 216, + 630, + 244 + ], + "content": "图 A1", + "order": 3 + }, + { + "category": "figure", + "bbox": [ + 205, + 324, + 392, + 431 + ], + "order": 4 + }, + { + "category": "text", + "bbox": [ + 439, + 312, + 632, + 336 + ], + "content": "损伤范围(一级限定值)", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 439, + 338, + 704, + 362 + ], + "content": "损伤的程度或部位(二级限定值)", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 147, + 389, + 192, + 410 + ], + "content": "b117.", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 146, + 487, + 492, + 519 + ], + "content": "身体功能限定值的具体说明如表 A2。", + "order": 8 + }, + { + "category": "caption", + "bbox": [ + 570, + 517, + 629, + 542 + ], + "content": "表 A2", + "order": 9 + }, + { + "category": "table", + "bbox": [ + 95, + 542, + 1058, + 985 + ], + "content": "\n\n\n\n\n\n\n\n\n
一级限定值
\n损伤的范围
二级限定值
\n损伤的程度或部位
0 没有损伤(0-4%)
\n1 轻度损伤(5-24%)
\n2 中度损伤(25-49%)
\n3 重度损伤(50-95%)
\n4 完全损伤(96-100%)

\n8 未特指
\n9 不适用
损伤的程度
\n空位
\nZ
\nY
\nX
\nW
\n....
\n注:损伤的程度针对同一损伤的范围,按照英文字母倒序,程度逐渐加重。

\n损伤的部位
\n1 右侧
\n2 左侧
\n3 双侧
\n1/2 特指一侧(右侧或左侧)
\n2/1 特指另一侧(右侧或左侧)
", + "order": 10 + }, + { + "category": "caption", + "bbox": [ + 107, + 990, + 1002, + 1043 + ], + "content": "表注:使用二级限定值,如果同时存在损伤的程度和损伤的部位,先编码损伤的程度,再编码损伤的部位。例如:b210.1X3 双眼低视力大于等于 1 级 (1X-程度;3-双侧)。", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 105, + 1060, + 454, + 1093 + ], + "content": "### A. 4. 1. 2 身体功能一级限定值的使用", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 109, + 1107, + 1020, + 1162 + ], + "content": "一旦出现损伤,身体功能损伤或障碍的范围或程度,就可以使用通用的限定值进行量化。例如:s76000.250/ s76002.250,s76000.240/ s76002.240 ; b710.2", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 109, + 1162, + 1053, + 1212 + ], + "content": "脊柱骨折脱位导致颈椎或腰椎畸形愈合,且颈部或腰部活动度丧失大于等于 25%(达到中度障碍“2” : 5-24%)", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 109, + 1214, + 618, + 1239 + ], + "content": "s76000.250/ s76002.250,s76000.240/ s76002.240 ; b710.3", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 109, + 1239, + 1004, + 1292 + ], + "content": "脊柱骨折脱位导致颈椎或腰椎畸形愈合,且颈部或腰部活动度丧失大于等于50%(达到 重度障碍“3” : 50-95%)", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 109, + 1294, + 458, + 1320 + ], + "content": "### A. 4. 1. 3 身体功能二级限定值的使用", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 107, + 1337, + 1063, + 1426 + ], + "content": "身体功能二级限定值是在 ICF 身体功能一级限定值的基础上,人身保险伤残评定标准自定义扩展的内容。在身体功能一级限定值说明不充分的情况下,用二级限定值进一步细化说明损伤的程度或部位。具体规则和方法如下:", + "order": 18 + }, + { + "category": "page-footer", + "bbox": [ + 1030, + 1559, + 1056, + 1582 + ], + "content": "22", + "order": 19 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/697565ee-a4f7-4668-8790-079e839bac18.json b/track1_finixdigital_242_insurance_terms/jsons/697565ee-a4f7-4668-8790-079e839bac18.json new file mode 100644 index 0000000000000000000000000000000000000000..36d3a9d5e0e3f6f57533e4436d00a47bab4055c6 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/697565ee-a4f7-4668-8790-079e839bac18.json @@ -0,0 +1,76 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 97, + 98, + 1076, + 251 + ], + "content": "(1)被保险人身故或全残时本主险合同的现金价值 ;", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 103, + 277, + 1080, + 536 + ], + "content": "(2)被保险人身故或全残时本主险合同已交保险费年度数×年交保险费(无息)×《给付比例表》对应的给付比例;", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 107, + 561, + 1079, + 725 + ], + "content": "(3)被保险人身故或全残时本主险合同的当年度保险金额。", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 165, + 757, + 466, + 815 + ], + "content": "《给付比例表》", + "order": 4 + }, + { + "category": "table", + "bbox": [ + 87, + 824, + 1096, + 1368 + ], + "content": "
被保险人身故或全残时对应的到达年龄给付比例
18-40周岁160%
41-60周岁140%
61周岁及以上120%
", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 103, + 1441, + 422, + 1501 + ], + "content": "## 三、责任免除", + "order": 6 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/6a2a0d10-c039-474a-8bfc-2391a1a35f58.json b/track1_finixdigital_242_insurance_terms/jsons/6a2a0d10-c039-474a-8bfc-2391a1a35f58.json new file mode 100644 index 0000000000000000000000000000000000000000..79571ee47d04a99f1eec685896d5ac8f9162de5f --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/6a2a0d10-c039-474a-8bfc-2391a1a35f58.json @@ -0,0 +1,207 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1190, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 44, + 27, + 165, + 48 + ], + "content": "2024/10/31 14:17", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 608, + 29, + 745, + 54 + ], + "content": "弹性对接文档", + "order": 2 + }, + { + "category": "figure", + "bbox": [ + 145, + 67, + 1041, + 535 + ], + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 97, + 595, + 484, + 635 + ], + "content": "## 3.1.蚂蚁同步机构建立服务合约", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 97, + 675, + 244, + 708 + ], + "content": "### 3.1.1.使用场景", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 93, + 733, + 1077, + 836 + ], + "content": "用户在支付宝上购买或获赠一份服务时,支付宝便会给用户创建一张服务的凭证,该凭证即为“服务合约”;服务商也需要以此作为给用户提供服务的依据。因此当用户购买或获赠服务后,支付宝便会通过本接口通知服务商出单。", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 97, + 876, + 247, + 908 + ], + "content": "### 3.1.2.如何使用", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 97, + 930, + 1065, + 999 + ], + "content": "服务商的同学需要按照本接口入参和返回值的定义实现此接口,当用户获得服务后,支付宝便会调用此接口。", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 97, + 1014, + 679, + 1048 + ], + "content": "服务商在收到支付宝的“服务出单”请求后,需要进行如下处理:", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 180, + 1064, + 375, + 1094 + ], + "content": "持久化这份服务合约", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 180, + 1109, + 624, + 1138 + ], + "content": "生成服务商自己的服务合约编号并返回给支付宝", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 97, + 1178, + 250, + 1212 + ], + "content": "### 3.1.3.接口名称", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 94, + 1237, + 514, + 1268 + ], + "content": "spi.alipay.ins.scene.valueadded.service.create", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 97, + 1307, + 248, + 1341 + ], + "content": "### 3.1.4请求参数", + "order": 14 + }, + { + "category": "table", + "bbox": [ + 101, + 1357, + 1097, + 1613 + ], + "content": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
字段描述字段名称字段类型是否必传最大长度示例值
支付宝服务合约编号ant_ser_contract_noString5020190507100200000000081000201
", + "order": 15 + }, + { + "category": "other", + "bbox": [ + 33, + 1608, + 97, + 1635 + ], + "content": "3805字", + "order": 16 + }, + { + "category": "page-footer", + "bbox": [ + 43, + 1642, + 420, + 1669 + ], + "content": "https://yuque.antfin.com/avlbyt/sw9krf/bcog5igaid9e665", + "order": 17 + }, + { + "category": "page-footer", + "bbox": [ + 1102, + 1645, + 1143, + 1666 + ], + "content": "6/19", + "order": 18 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/6d154ea1-ddcb-423f-adb3-fb678a877771.json b/track1_finixdigital_242_insurance_terms/jsons/6d154ea1-ddcb-423f-adb3-fb678a877771.json new file mode 100644 index 0000000000000000000000000000000000000000..741e13b6693475801c77ab0462995e0aa21236a3 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/6d154ea1-ddcb-423f-adb3-fb678a877771.json @@ -0,0 +1,218 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "figure", + "bbox": [ + 786, + 106, + 863, + 164 + ], + "order": 1 + }, + { + "category": "text", + "bbox": [ + 872, + 108, + 1011, + 143 + ], + "content": "国泰产险", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 876, + 146, + 992, + 166 + ], + "content": "Cathay Insurance", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 237, + 166, + 988, + 202 + ], + "content": "## 4.1 国泰财产保险有限责任公司个人意外伤害保险条款(互联网 A 款)", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 241, + 230, + 1016, + 264 + ], + "content": "因下列原因造成被保险人身故或伤残的,保险人不承担给付保险金责任:", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 235, + 294, + 540, + 331 + ], + "content": "(一)投保人的故意行为;", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 193, + 355, + 1014, + 444 + ], + "content": "(二)被保险人自致伤害或自杀,但被保险人自杀时为无民事行为能力人的除外;", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 239, + 471, + 969, + 510 + ], + "content": "(三)因被保险人挑衅或故意行为而导致的打斗、被袭击或被谋杀;", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 241, + 533, + 815, + 576 + ], + "content": "(四)被保险人妊娠、流产、分娩、疾病、药物过敏;", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 194, + 603, + 1011, + 686 + ], + "content": "(五)被保险人接受整容手术、其他内、外科手术或其他诊疗活动过程中发生的医疗意外和医疗损害;", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 241, + 713, + 847, + 753 + ], + "content": "(六)被保险人未遵医嘱,私自服用、涂用、注射药物;", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 191, + 778, + 1011, + 870 + ], + "content": "(七)被保险人受细菌、病毒或寄生虫感染(但因意外伤害事故致伤口感染者除外),或高原反应、中暑、猝死、食物中毒;", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 191, + 894, + 1013, + 979 + ], + "content": "(八)任何生物、化学、原子能武器,原子能或核能装置所造成的爆炸、灼伤、污染或辐射;", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 239, + 1005, + 446, + 1046 + ], + "content": "(九)恐怖袭击;", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 192, + 1071, + 1014, + 1158 + ], + "content": "(十)被保险人从事潜水、跳伞、攀岩运动、探险活动、武术比赛、摔跤比赛、特技表演、赛马、赛车等高风险的活动;", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 191, + 1187, + 1012, + 1272 + ], + "content": "(十一)未满 12 周岁驾驶自行车、三轮车;未满 16 周岁驾驶电动自行车和残疾人机动轮椅车。", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 191, + 1303, + 1014, + 1387 + ], + "content": "被保险人在下列期间遭受伤害以致身故或伤残的,保险人也不承担给付保险金责任:", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 238, + 1418, + 754, + 1453 + ], + "content": "(一)战争、军事行动、暴动或武装叛乱期间;", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 241, + 1481, + 970, + 1516 + ], + "content": "(二)被保险人从事非法、犯罪活动期间或被依法拘留、服刑期间;", + "order": 19 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/6d96ea2b-129e-48e2-9536-90fbc7292f3e.json b/track1_finixdigital_242_insurance_terms/jsons/6d96ea2b-129e-48e2-9536-90fbc7292f3e.json new file mode 100644 index 0000000000000000000000000000000000000000..083ef83c33f523bc76430ec248019023fb5306ec --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/6d96ea2b-129e-48e2-9536-90fbc7292f3e.json @@ -0,0 +1,261 @@ +{ + "resized_height": 1600, + "resized_width": 1184, + "width": 1191, + "height": 1616, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "figure", + "bbox": [ + 62, + 67, + 120, + 127 + ], + "order": 1 + }, + { + "category": "text", + "bbox": [ + 128, + 72, + 256, + 106 + ], + "content": "中国太平", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 127, + 105, + 255, + 122 + ], + "content": "CHINA TAIPING", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 262, + 67, + 450, + 123 + ], + "content": "95589 客服热线 Service Hotlin", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 865, + 71, + 1115, + 98 + ], + "content": "太平人寿[2023]年金保险038号", + "order": 5 + }, + { + "category": "figure", + "bbox": [ + 934, + 100, + 1051, + 214 + ], + "order": 6 + }, + { + "category": "text", + "bbox": [ + 899, + 219, + 1087, + 243 + ], + "content": "请扫描以查询验证条款", + "order": 7 + }, + { + "category": "title", + "bbox": [ + 415, + 152, + 766, + 194 + ], + "content": "# 太平人寿保险有限公司", + "order": 8 + }, + { + "category": "title", + "bbox": [ + 419, + 194, + 766, + 217 + ], + "content": "# TAIPING LIFE INSURANCE CO.,LTD.", + "order": 9 + }, + { + "category": "title", + "bbox": [ + 309, + 238, + 886, + 279 + ], + "content": "# 太平福满e生年金保险(互联网专属)条款", + "order": 10 + }, + { + "category": "title", + "bbox": [ + 540, + 313, + 659, + 350 + ], + "content": "# 特别提示", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 147, + 422, + 548, + 455 + ], + "content": "感谢您选择了太平人寿保险有限公司。", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 148, + 460, + 914, + 490 + ], + "content": "为了方便您更好地理解保险条款,我们提供了以下常用的基本名词释义。", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 150, + 530, + 311, + 561 + ], + "content": "# 基本名词释义:", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 151, + 565, + 1084, + 632 + ], + "content": "投保人:是指与保险公司订立保险合同的人,按照保险合同负有支付保险费的义务。在本合同中以“您”代称。", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 149, + 676, + 1079, + 743 + ], + "content": "被保险人:在人身保险合同中是指人身受保险合同保障,享有保险金请求权的人。投保人也可以为自己投保,成为被保险人。", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 148, + 783, + 1089, + 852 + ], + "content": "受益人:是指人身保险合同中,由被保险人或者投保人指定的,享有保险金请求权的人。", + "order": 17 + }, + { + "category": "section-header", + "bbox": [ + 150, + 931, + 407, + 962 + ], + "content": "# 您应当特别注意的事项:", + "order": 18 + }, + { + "category": "section-header", + "bbox": [ + 229, + 967, + 1099, + 1034 + ], + "content": "## 签收本合同之日起 15 日(即犹豫期)内您若要求解除保险合同,我们仅扣除工本费....第二十一条", + "order": 19 + }, + { + "category": "section-header", + "bbox": [ + 228, + 1040, + 1100, + 1069 + ], + "content": "## 在部分情况下,我们不承担保险责任....第八条", + "order": 20 + }, + { + "category": "section-header", + "bbox": [ + 229, + 1075, + 1096, + 1109 + ], + "content": "## 解除保险合同会给您造成一定的损失,请您慎重决策....第二十二条", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 147, + 1179, + 1099, + 1251 + ], + "content": "此外,在您阅读本条款正文之前,请先浏览一下目录,以便对条款结构有一个大致的了解。本条款中的每一部分都关乎到您的切身利益,请务必逐条仔细阅读并关注注释内容。", + "order": 22 + }, + { + "category": "page-footer", + "bbox": [ + 534, + 1471, + 663, + 1498 + ], + "content": "第1页,共9页", + "order": 23 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/6de3bc4e-b6fd-4ac1-a832-5149145b6247.json b/track1_finixdigital_242_insurance_terms/jsons/6de3bc4e-b6fd-4ac1-a832-5149145b6247.json new file mode 100644 index 0000000000000000000000000000000000000000..f8685ee97d3b917d6edcd0674655e7d1c14a2398 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/6de3bc4e-b6fd-4ac1-a832-5149145b6247.json @@ -0,0 +1,219 @@ +{ + "resized_height": 1184, + "resized_width": 1696, + "width": 1684, + "height": 1191, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 780, + 143, + 921, + 176 + ], + "content": "# 八、投保示例", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 176, + 179, + 257, + 209 + ], + "content": "## 示例一:", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 168, + 219, + 1524, + 278 + ], + "content": "王先生,30 周岁,为自己投保 “太保悦有余(2024)养老年金保险 (互联网)”,年交保费为 50,000 元,3 年交,养老金领取方式为至被保险人年满 106 周岁年领。", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 215, + 312, + 314, + 341 + ], + "content": "### 保单利益", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 223, + 348, + 448, + 371 + ], + "content": "王先生的保单利益如下:", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 250, + 379, + 365, + 405 + ], + "content": "1、养老金:", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 287, + 411, + 1522, + 467 + ], + "content": "王先生于 60 周岁后首个合同生效日对应日,每年于合同生效日对应日可按基本保险金额领取 15,150 元养老金, 直至被保险人身故或合同终止(以较早者为准)。", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 251, + 475, + 412, + 499 + ], + "content": "2、身故保险金:", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 286, + 503, + 1518, + 563 + ], + "content": "(1)若王先生在养老金领取起始日之前(不含养老金领取起始日)身故,本公司按被保险人身故时投保人根据合同约定已支付的保险费总额与合同的现金价值较大者给付身故保险金;", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 288, + 568, + 1516, + 659 + ], + "content": "(2)若王先生在养老金领取起始日之后(含养老金领取起始日)身故,且已交保险费大于已给付的养老金总和,本公司按合同已支付保险费总额减去已给付的养老金总和的差额给付身故保险金,合同终止;已交保险费小于或等于已给付的养老金总和,本公司将不再给付身故保险金,合同终止。", + "order": 10 + }, + { + "category": "caption", + "bbox": [ + 576, + 690, + 1163, + 721 + ], + "content": "太保悦有余(2024)养老年金保险(互联网)保单利益示例表", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 452, + 755, + 626, + 782 + ], + "content": "被保险人:王先生", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 779, + 755, + 870, + 781 + ], + "content": "性别:男", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 1054, + 754, + 1234, + 781 + ], + "content": "投保年龄:30 周岁", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 453, + 787, + 622, + 813 + ], + "content": "交费方式:3 年交", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 765, + 785, + 966, + 812 + ], + "content": "年交保费:50,000元", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 1056, + 786, + 1299, + 814 + ], + "content": "基本保险金额:15,150元", + "order": 17 + }, + { + "category": "caption", + "bbox": [ + 1309, + 816, + 1504, + 842 + ], + "content": "货币单位:人民币元", + "order": 18 + }, + { + "category": "table", + "bbox": [ + 173, + 844, + 1520, + 1026 + ], + "content": "
保单年度年度保险费累计保险费现金价值
(退保金)
养老金累计养老金身故保险金
150,00050,00019,0500050,000
250,000100,00043,20000100,000
350,000150,00071,45000150,000
", + "order": 19 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/6df6b34b-785b-4cc0-ba26-3dca06c440a4.json b/track1_finixdigital_242_insurance_terms/jsons/6df6b34b-785b-4cc0-ba26-3dca06c440a4.json new file mode 100644 index 0000000000000000000000000000000000000000..0109338da5b9cc917ca233caab7b6cd545f941e3 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/6df6b34b-785b-4cc0-ba26-3dca06c440a4.json @@ -0,0 +1,153 @@ +{ + "resized_height": 1184, + "resized_width": 1696, + "width": 1684, + "height": 1191, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 744, + 85, + 951, + 108 + ], + "content": "太平人寿产品说明书文稿", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 140, + 196, + 428, + 231 + ], + "content": "# 投保示例及保单利益测算:", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 140, + 255, + 1553, + 317 + ], + "content": "李女士,30 周岁,为自己投保太平稳享盈两全保险(互联网专属),选择 5 年交费,月交保险费 5000 元,保险期间 15 年,基本保险金额约 702922 元。她可获得的主要保单利益包括:", + "order": 3 + }, + { + "category": "caption", + "bbox": [ + 993, + 321, + 1148, + 347 + ], + "content": "单位:人民币元", + "order": 4 + }, + { + "category": "table", + "bbox": [ + 142, + 350, + 1146, + 750 + ], + "content": "
保单年度被保险人年龄年度保险费累计保险费满期保险金身故保险金现金价值
1316000060000070292231683
23260000120000070292274928
333600001800000702922123344
434600002400000702922182711
535600003000000702922248656
63603000000702922262172
73703000000702922276428
83803000000702922291456
93903000000702922307294
104003000000702922324000
15450300000456000702922422222
", + "order": 5 + }, + { + "category": "caption", + "bbox": [ + 141, + 756, + 702, + 779 + ], + "content": "注:1、 上述利益演示中,身故保险金及满期保险金仅给付其中一项。", + "order": 6 + }, + { + "category": "caption", + "bbox": [ + 178, + 788, + 921, + 812 + ], + "content": "2、 上述利益演示中,各保单年度除年度保险费及累计保险费外,其他均为保单年度末数值。", + "order": 7 + }, + { + "category": "caption", + "bbox": [ + 178, + 818, + 493, + 840 + ], + "content": "3、 上述年度保险费=月交保险费×12。", + "order": 8 + }, + { + "category": "caption", + "bbox": [ + 178, + 850, + 919, + 875 + ], + "content": "4、 上述利益演示中,当年度满期保险金为该保单年度末翌日之周年日应给付的满期保险金。", + "order": 9 + }, + { + "category": "caption", + "bbox": [ + 177, + 878, + 1411, + 904 + ], + "content": "5、 现金价值是指解除保险合同时,根据保险单所具有的价值退还的金额。上述现金价值演示数值已包含该保单年度末翌日之周年日应给付的满期保险金。", + "order": 10 + }, + { + "category": "caption", + "bbox": [ + 178, + 909, + 737, + 934 + ], + "content": "6、 上述利益演示中,假定无欠交的保险费或其他未还清款项等情况。", + "order": 11 + }, + { + "category": "caption", + "bbox": [ + 177, + 944, + 685, + 965 + ], + "content": "7、 上述利益演示表数值统一采用四舍五入方式保留到整数位。", + "order": 12 + }, + { + "category": "page-footer", + "bbox": [ + 781, + 1060, + 915, + 1087 + ], + "content": "第 4 页,共 5 页", + "order": 13 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/6f21aa82-9124-4697-910f-ae72ce896de2.json b/track1_finixdigital_242_insurance_terms/jsons/6f21aa82-9124-4697-910f-ae72ce896de2.json new file mode 100644 index 0000000000000000000000000000000000000000..e87cff7d58b2894188a003f6ed96d92639736be0 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/6f21aa82-9124-4697-910f-ae72ce896de2.json @@ -0,0 +1,174 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "figure", + "bbox": [ + 769, + 19, + 893, + 145 + ], + "order": 1 + }, + { + "category": "text", + "bbox": [ + 902, + 38, + 1052, + 66 + ], + "content": "复星保德信人寿", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 901, + 69, + 1154, + 96 + ], + "content": "[2024]养老年金保险023号", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 901, + 101, + 1115, + 127 + ], + "content": "请扫描以查询验证条款", + "order": 4 + }, + { + "category": "title", + "bbox": [ + 359, + 155, + 830, + 198 + ], + "content": "# 复星保德信人寿保险有限公司", + "order": 5 + }, + { + "category": "title", + "bbox": [ + 197, + 247, + 996, + 291 + ], + "content": "# 复星保德信星海赢家(青鸾版)养老年金保险条款", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 510, + 400, + 714, + 444 + ], + "content": "# 阅读提示", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 154, + 455, + 1070, + 516 + ], + "content": "本阅读提示是为了帮助投保人(您)、被保险人和受益人更好地理解条款,对本合同内容的解释以条款正文为准。", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 522, + 562, + 722, + 594 + ], + "content": "## 产品重要信息概览", + "order": 9 + }, + { + "category": "table", + "bbox": [ + 141, + 605, + 1081, + 973 + ], + "content": "
保险责任养老年金
祝寿金
满期金
身故保险金
保险期间至 106 周岁
投保年龄出生满 30 天至 60 周岁
", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 570, + 1033, + 674, + 1065 + ], + "content": "## 特别提示", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 156, + 1081, + 1070, + 1143 + ], + "content": "(1)在特定情况下,您、被保险人或受益人的权益可能会受到影响,请您仔细阅读条款正文中灰色阴影显著标识的内容。", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 155, + 1146, + 1068, + 1207 + ], + "content": "(2)您有退保的权利,犹豫期内申请退保的,我们将在扣除不超过10元的工本费后,无息退还您已支付的保险费;犹豫期后退保会给您造成一定的损失,请您慎重决策。", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 196, + 1308, + 981, + 1339 + ], + "content": "条款是保险合同的主要内容,为充分保障您的权益,请您仔细阅读本条款。", + "order": 14 + }, + { + "category": "page-footer", + "bbox": [ + 585, + 1605, + 605, + 1633 + ], + "content": "1", + "order": 15 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/71de86a3-942a-4019-950b-27c20c2dd2b6.json b/track1_finixdigital_242_insurance_terms/jsons/71de86a3-942a-4019-950b-27c20c2dd2b6.json new file mode 100644 index 0000000000000000000000000000000000000000..037fd11d6fa35c6f504196c484dc3fdd24645bd4 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/71de86a3-942a-4019-950b-27c20c2dd2b6.json @@ -0,0 +1,262 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 96, + 113, + 498, + 143 + ], + "content": "中荷互联网岁岁享 2.0 护理保险产品说明书", + "order": 1 + }, + { + "category": "figure", + "bbox": [ + 855, + 89, + 942, + 135 + ], + "order": 2 + }, + { + "category": "text", + "bbox": [ + 952, + 82, + 1083, + 118 + ], + "content": "中荷人寿", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 954, + 119, + 1080, + 136 + ], + "content": "BOB-CARDIF LIFE", + "order": 4 + }, + { + "category": "table", + "bbox": [ + 207, + 143, + 978, + 440 + ], + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
75710,00070,000112,00070,00057,620
85810,00080,000128,00080,00071,870
95910,00090,000144,00090,00087,090
106010,000100,000160,000103,310103,310
20700100,000156,336130,280130,280
30800100,000193,632161,360161,360
40900100,000222,612185,510185,510
501000100,000220,164183,470183,470
561060100,000186,960155,800155,800
", + "order": 5 + }, + { + "category": "caption", + "bbox": [ + 98, + 441, + 135, + 472 + ], + "content": "注:", + "order": 6 + }, + { + "category": "caption", + "bbox": [ + 138, + 470, + 586, + 502 + ], + "content": "护理给付、疾病身故给付以年末发生演示;", + "order": 7 + }, + { + "category": "caption", + "bbox": [ + 139, + 503, + 1073, + 536 + ], + "content": "该表仅用于演示,实际金额会因四舍五入带来细微差别,具体以实际保单及作业规则为准。", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 99, + 566, + 320, + 603 + ], + "content": "# ③ 犹豫期及退保", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 140, + 632, + 276, + 666 + ], + "content": "## 3.1 犹豫期", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 100, + 664, + 1085, + 760 + ], + "content": "自您签收本合同之日起,有十五日的犹豫期。在此期间请您认真审视本合同,如果您认为本合同与您的需求不相符,您可以在此期间提出解除本合同,我们将退还您所支付的全部保险费。", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 100, + 761, + 1085, + 861 + ], + "content": "解除本合同时,您需要填写解除合同通知书,并提供您的保险合同及有效身份证件。自我们收到您解除合同的通知书时,本合同即被解除,合同解除前发生的保险事故我们不承担保险责任。", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 147, + 890, + 376, + 924 + ], + "content": "## 3.2 解除合同(退保)", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 97, + 923, + 1085, + 985 + ], + "content": "本合同成立后,您可以解除本合同(简称退保),请填写解除合同通知书并向我们提供下列证明和资料:", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 158, + 988, + 316, + 1018 + ], + "content": "(1)保险合同;", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 158, + 1019, + 414, + 1049 + ], + "content": "(2)您的有效身份证件。", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 98, + 1051, + 1085, + 1115 + ], + "content": "自我们收到解除合同通知书的当日 24 时起,本合同终止。您在犹豫期后解除本合同的,我们自收到解除合同通知书之日起 30 日内向您退还本合同的现金价值。", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 142, + 1116, + 616, + 1146 + ], + "content": "您在犹豫期后解除合同可能会遭受一定损失。", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 98, + 1149, + 1083, + 1243 + ], + "content": "现金价值指保险单所具有的价值,通常体现为解除合同时,根据精算原理计算的、由我们退还的那部分金额。保单年度末的现金价值会在保险合同上载明,保单年度内的现金价值,您可以向我们咨询。", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 99, + 1243, + 1085, + 1340 + ], + "content": "考虑到保单平均承担的本公司经营支出、保险责任对应的成本以及客户提前终止保单导致本公司的损失,我们从所交的保险费中扣除了相关费用。因此,您在犹豫期后退保会遭受一定的损失。解除合同后,您会失去原有的保障。", + "order": 20 + }, + { + "category": "section-header", + "bbox": [ + 99, + 1374, + 207, + 1406 + ], + "content": "## 温馨提示:", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 99, + 1407, + 1082, + 1501 + ], + "content": "本产品说明书仅供参考,具体内容以《中荷互联网岁岁享 2.0 护理保险合同》为准。本产品的条款您可以在我们的官方网站进行查询,或扫描产品条款首页的二维码,在中保协“中国人身保险产品信息库”进行查询。", + "order": 22 + }, + { + "category": "page-footer", + "bbox": [ + 97, + 1569, + 188, + 1596 + ], + "content": "ELCC-01", + "order": 23 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/7207f285-a4a7-46b7-9735-b01c9ef952e9.json b/track1_finixdigital_242_insurance_terms/jsons/7207f285-a4a7-46b7-9735-b01c9ef952e9.json new file mode 100644 index 0000000000000000000000000000000000000000..6f47ac9c31dc6f9d066803e78ec9f061a93bb0f5 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/7207f285-a4a7-46b7-9735-b01c9ef952e9.json @@ -0,0 +1,249 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 177, + 84, + 601, + 111 + ], + "content": "长城烽火台好药无忧保医疗保险(互联网)产品说明书", + "order": 1 + }, + { + "category": "figure", + "bbox": [ + 845, + 72, + 880, + 107 + ], + "order": 2 + }, + { + "category": "text", + "bbox": [ + 882, + 72, + 981, + 97 + ], + "content": "长城人寿", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 885, + 96, + 981, + 107 + ], + "content": "GREATWALL LIFE", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 174, + 150, + 980, + 304 + ], + "content": "(1)本主险合同所指免赔额均指年度免赔额,指在本主险合同有效期内,应由被保险人自行承担,本主险合同不予赔偿的部分。被保险人从基本医疗保险、公费医疗、政府主办补充医疗获得的补偿,不可用于抵扣免赔额。但被保险人从其他途径已获得的医疗费用补偿可用于抵扣免赔额。", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 174, + 312, + 980, + 425 + ], + "content": "(2)本主险合同约定的一般疾病院外特定药品费用医疗保险金及恶性肿瘤―—重度院外特定药品费用医疗保险金的免赔额为人民币0元;院内药品费用医疗保险金的免赔额为人民币2,000元;院内其他费用医疗保险金的免赔额为人民币20,000元。", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 174, + 433, + 976, + 506 + ], + "content": "(3)在本主险合同有效期内,被保险人每次理赔申请所抵扣的免赔额可进行累计,已从本主险合同获得的医疗费用补偿不可用于抵扣免赔额。", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 174, + 517, + 980, + 589 + ], + "content": "(4)在本主险合同有效期内,免赔额经抵扣后剩余的金额为免赔额余额,且免赔额余额大于或等于人民币0元。", + "order": 8 + }, + { + "category": "figure", + "bbox": [ + 176, + 611, + 205, + 639 + ], + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 210, + 608, + 330, + 642 + ], + "content": "# 给付比例", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 175, + 662, + 981, + 774 + ], + "content": "您投保本主险合同时,我们将对被保险人的健康情况进行测评,根据测评结果将被保险人的健康等级分为“优选体”或“标准体”。被保险人的健康等级在投保时确定,并在保险单上载明。", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 226, + 787, + 828, + 814 + ], + "content": "(1)一般疾病院外特定药品费用医疗保险金的给付比例如下确定:", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 218, + 826, + 482, + 855 + ], + "content": "优选体为80%;标准体为40%。", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 227, + 863, + 913, + 897 + ], + "content": "(2)恶性肿瘤——重度院外特定药品费用医疗保险金的给付比例如下确定:", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 175, + 904, + 982, + 1019 + ], + "content": "优选体为80%;标准体为40%。若被保险人以参加基本医疗保险、公费医疗保险身份投保,但在保险事故发生时未以参加基本医疗保险、公费医疗保险身份就诊并结算,优选体给付比例为48%;标准体给付比例为24%。", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 225, + 1029, + 702, + 1060 + ], + "content": "(3)院内药品费用医疗保险金的给付比例如下确定:", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 175, + 1070, + 983, + 1182 + ], + "content": "优选体为60%;标准体为30%。若被保险人以参加基本医疗保险、公费医疗保险身份投保,但在保险事故发生时未以参加基本医疗保险、公费医疗保险身份就诊并结算,优选体给付比例为36%;标准体给付比例为18%。", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 229, + 1194, + 703, + 1223 + ], + "content": "(4)院内其他费用医疗保险金的给付比例如下确定:", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 175, + 1232, + 983, + 1345 + ], + "content": "优选体为60%;标准体为30%。若被保险人以参加基本医疗保险、公费医疗保险身份投保,但在保险事故发生时未以参加基本医疗保险、公费医疗保险身份就诊并结算,优选体给付比例为36%;标准体给付比例为18%。", + "order": 19 + }, + { + "category": "figure", + "bbox": [ + 176, + 1368, + 205, + 1397 + ], + "order": 20 + }, + { + "category": "section-header", + "bbox": [ + 212, + 1365, + 471, + 1402 + ], + "content": "# 补偿原则和赔付标准", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 173, + 1418, + 983, + 1534 + ], + "content": "本主险合同适用医疗费用补偿原则。若被保险人已从基本医疗保险、公费医疗、政府主办补充医疗和其他途径获得医疗费用补偿,则我们仅对被保险人实际支出的、合理且必要的、符合本主险合同保险责任范围内的医疗费用扣除其所获医疗费用补偿和对应", + "order": 22 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/755a1ad2-c00e-4e49-8350-f103ed27a69e.json b/track1_finixdigital_242_insurance_terms/jsons/755a1ad2-c00e-4e49-8350-f103ed27a69e.json new file mode 100644 index 0000000000000000000000000000000000000000..9ce8997680dd9cdad5fcc5d23e582b351d06f714 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/755a1ad2-c00e-4e49-8350-f103ed27a69e.json @@ -0,0 +1,208 @@ +{ + "resized_height": 1408, + "resized_width": 992, + "width": 993, + "height": 1404, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 149, + 128, + 850, + 189 + ], + "content": "者职业需要处理血液或者其他体液时感染上人类免疫缺陷病毒(HIV)。必须满足下列全部条件:", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 143, + 196, + 849, + 357 + ], + "content": "(1)感染必须发生在被保险人从事其职业工作过程中;\n(2)血清转化必须出现在事故发生后的6个月以内;\n(3)必须提供被保险人在所报事故发生后的5天以内进行的检查报告,该报告必须显示被保险人血液HIV病毒阴性 和/或HIV抗体阴性;\n(4)必须在事故发生后的12个月内证实被保险人体内存在HIV病毒或者HIV抗体。", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 184, + 365, + 265, + 387 + ], + "content": "职业列表:", + "order": 3 + }, + { + "category": "table", + "bbox": [ + 302, + 383, + 687, + 501 + ], + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
医生(包括牙医)护士
医院化验室工作人员医院护工
救护车工作人员助产士
警察(包括狱警)消防人员
", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 146, + 505, + 853, + 566 + ], + "content": "在任何治愈艾滋病(AIDS)或阻止HIV病毒作用的疗法被发现以后,或能防止AIDS发生的医疗方法被研究出来以后,本保障将不再予以赔付。", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 147, + 572, + 853, + 668 + ], + "content": "任何因其他传播方式(包括:输血、性传播或静脉注射毒品)导致的HIV感染不在本附加合同保障范围内。保险人必须拥有获得使用被保险人的所有血液样本的权利和能够对这些样本进行独立检验的权利。", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 146, + 670, + 853, + 732 + ], + "content": "保险人承担本项疾病责任不受主合同责任免除中“被保险人感染艾滋病病毒或患艾滋病”的限制。", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 183, + 739, + 559, + 763 + ], + "content": "## 90. 输血原因导致人类免疫缺陷病毒(HIV)感染", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 149, + 773, + 850, + 831 + ], + "content": "被保险人因输血感染上人类免疫缺陷病毒(HIV)并且根据HIV感染分类及AIDS诊断标准被确诊为艾滋病(AIDS)期。满足下列全部条件:", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 189, + 838, + 671, + 863 + ], + "content": "(1)在等待期满保障起始日之后,被保险人因输血而感染HIV;", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 146, + 870, + 850, + 929 + ], + "content": "(2)提供输血治疗的输血中心或医院出具该项输血感染属医疗责任事故的报告,或者法院终审裁定为医疗责任;", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 190, + 938, + 504, + 962 + ], + "content": "(3)受感染的被保险人不是血友病患者。", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 149, + 969, + 853, + 1033 + ], + "content": "在任何治愈艾滋病(AIDS)或阻止HIV病毒作用的疗法被发现以后,或能防止AIDS发生的医疗方法被研究出来以后,本保障将不再予以赔付。", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 147, + 1039, + 853, + 1133 + ], + "content": "任何因其他传播方式(包括:性传播或静脉注射毒品)导致的HIV感染不在本附加合同保障范围内。保险人必须拥有获得使用被保险人的所有血液样本的权利和能够对这些样本进行独立检验的权利。", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 146, + 1138, + 853, + 1203 + ], + "content": "保险人承担本项疾病责任不受主合同责任免除中“被保险人感染艾滋病病毒或患艾滋病”的限制。", + "order": 15 + }, + { + "category": "section-header", + "bbox": [ + 183, + 1208, + 594, + 1232 + ], + "content": "## 91. 器官移植原因导致人类免疫缺陷病毒(HIV)感染", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 183, + 1236, + 819, + 1266 + ], + "content": "被保险人因接受器官移植感染上人类免疫缺陷病毒(HIV)并且满足下列全部条件:", + "order": 17 + }, + { + "category": "page-footer", + "bbox": [ + 485, + 1304, + 505, + 1326 + ], + "content": "21", + "order": 18 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/7a057090-96a5-40ff-be1a-226e56cc714f.json b/track1_finixdigital_242_insurance_terms/jsons/7a057090-96a5-40ff-be1a-226e56cc714f.json new file mode 100644 index 0000000000000000000000000000000000000000..dbf9b892c561b56d9082a191192fcb6258840d8b --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/7a057090-96a5-40ff-be1a-226e56cc714f.json @@ -0,0 +1,229 @@ +{ + "resized_height": 1408, + "resized_width": 992, + "width": 993, + "height": 1404, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 764, + 120, + 907, + 142 + ], + "content": "JR/T 0083—2013", + "order": 1 + }, + { + "category": "caption", + "bbox": [ + 458, + 153, + 509, + 179 + ], + "content": "表 A5", + "order": 2 + }, + { + "category": "table", + "bbox": [ + 84, + 192, + 882, + 298 + ], + "content": "
肌力
肌力2级-功能限定值为3
肌力3级-功能限定值为2
肌力4级-功能限定值为1
", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 92, + 298, + 281, + 324 + ], + "content": "## 1. 身体结构的编码", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 129, + 338, + 562, + 365 + ], + "content": "身体结构是身体解剖部位,如器官、肢体及其组成成份。", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 93, + 376, + 321, + 401 + ], + "content": "## 1. 身体结构的扩展规则", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 129, + 415, + 740, + 442 + ], + "content": "根据人身保险伤残评定标准中的具体情况,对涉及的身体结构编码进行了扩展。", + "order": 7 + }, + { + "category": "table", + "bbox": [ + 123, + 446, + 660, + 758 + ], + "content": "
s3100A- 鼻翼s3108A- 鼻孔s3108B- 鼻腔
s41008- 特指心肌s43018A- 肺叶s4302A- 肋骨
s5400A- 十二指肠s5400C- 回肠s5401A- 结肠
s5401B- 直肠s5408A- 盲肠s598A- 肛门
s6100A- 孤肾s6308- 特指输精管s7101A-上颌骨
s7101B-下颌骨s7103A- 颞下颌关节s7108- 特指面部软组织
s73008A-肱骨骺板s73008B-尺骨骺板s73008C-桡骨骺板
s75008A-股骨骺板s75008B-胫骨骺板s75008C-腓骨骺板
s75020A- 全部足趾s75021A- 跗跖关节s75028A-足弓
s7701A- 髋臼s8100A- 头皮s8100B- 面部皮肤
", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 92, + 767, + 312, + 790 + ], + "content": "## 2. 身体结构的限定值", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 90, + 803, + 885, + 875 + ], + "content": "身体结构使用四级限定值进行编码。一级限定值描述损伤的范围和程度,二级限定值用于显示改变的性质,三级限定值说明损伤的部位,自定义的四级限定值细化说明损伤的程度或其他说明。身体结构的限定值并不全是四位全部使用,编码形式有且只有下列四种:", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 128, + 875, + 676, + 964 + ], + "content": "身体结构的类目编码+一级限定值\n身体结构的类目编码+一级限定值+二级限定值\n身体结构的类目编码+一级限定值+二级限定值+三级限定值\n身体结构的类目编码+一级限定值+二级限定值+三级限定值+四级限定值", + "order": 11 + }, + { + "category": "caption", + "bbox": [ + 458, + 966, + 509, + 986 + ], + "content": "图 A2", + "order": 12 + }, + { + "category": "figure", + "bbox": [ + 125, + 1015, + 332, + 1173 + ], + "order": 13 + }, + { + "category": "text", + "bbox": [ + 367, + 1015, + 530, + 1036 + ], + "content": "损伤范围(一级限定值)", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 366, + 1036, + 529, + 1055 + ], + "content": "损伤性质(二级限定值)", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 368, + 1055, + 530, + 1076 + ], + "content": "损伤部位(三级限定值)", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 368, + 1076, + 621, + 1096 + ], + "content": "损伤程度或其他(自定义四级限定值)", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 124, + 1115, + 172, + 1136 + ], + "content": "s7300.", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 129, + 1136, + 456, + 1163 + ], + "content": "身体结构的各级限定值的具体说明如表A6。", + "order": 19 + }, + { + "category": "page-footer", + "bbox": [ + 863, + 1294, + 885, + 1314 + ], + "content": "24", + "order": 20 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/7e89259b-b083-4cb2-bf46-a67b2da2fee3.json b/track1_finixdigital_242_insurance_terms/jsons/7e89259b-b083-4cb2-bf46-a67b2da2fee3.json new file mode 100644 index 0000000000000000000000000000000000000000..20ab329ca20ef76b76c96939b94958cc82b2585c --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/7e89259b-b083-4cb2-bf46-a67b2da2fee3.json @@ -0,0 +1,241 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1192, + "height": 1685, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 909, + 144, + 1068, + 169 + ], + "content": "JR/T 0083—2013", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 551, + 194, + 659, + 220 + ], + "content": "# 附 录 A", + "order": 2 + }, + { + "category": "section-header", + "bbox": [ + 546, + 222, + 673, + 251 + ], + "content": "# (规范性附录)", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 480, + 253, + 769, + 283 + ], + "content": "# 人身保险伤残评定标准编码规则", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 135, + 315, + 251, + 344 + ], + "content": "## 1. 概述", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 135, + 372, + 1079, + 527 + ], + "content": "人身保险伤残评定标准采用世界卫生组织《国际功能、残疾和健康分类》(以下简称“ICF”)的有关功能和残疾的分类理论与方法,建立编码原则,对“神经系统的结构和精神功能”、“眼,耳和有关的结构和功能”、“发声和言语的结构和功能”、“心血管,免疫和呼吸系统的结构和功能”、“消化、代谢和内分泌系统有关的结构和功能”、“泌尿和生殖系统有关的结构和功能”、神经肌肉骨骼和运动有关的结构和功能”和“皮肤和有关的结构和功能”8 大类 281 项人身保险伤残条目进行编码。", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 132, + 559, + 377, + 591 + ], + "content": "## 2. 字母和数字的含义", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 172, + 622, + 1040, + 652 + ], + "content": "人身保险伤残评定标准主要包括两个成份:身体功能和身体结构,在每种成份的编码前均指定一个首字母。", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 177, + 657, + 382, + 683 + ], + "content": "1. b 用于身体功能", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 175, + 687, + 380, + 714 + ], + "content": "2. s 用于身体结构", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 132, + 716, + 1058, + 779 + ], + "content": "紧跟字母 b 和 s 是编码数字,开始是章数(1 位数字),接着是二级水平(2 位数字)、第三和四级水平(各为 1 位数字)。如下例所示:", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 177, + 782, + 679, + 816 + ], + "content": "s7 与运动相关的结构(1级水平类目)", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 176, + 818, + 677, + 853 + ], + "content": "s730 上肢的结构(2级水平类目)", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 175, + 857, + 675, + 889 + ], + "content": "s7302 手的结构(3级水平类目)", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 174, + 894, + 677, + 922 + ], + "content": "s73001 上臂的关节(4级水平类目)", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 134, + 923, + 1072, + 983 + ], + "content": "根据人身保险伤残评定标准中伤残条目的需要,可以应用任何级别的编码数字。任何个体在每一水平上可以有不止一种编码,它们可以是相互独立的或是彼此间相互联系的。", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 131, + 1015, + 346, + 1048 + ], + "content": "## 3. 分类级别的含义", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 135, + 1080, + 1077, + 1170 + ], + "content": "人身保险伤残评定标准按照 ICF 分为 8 个大类,每个大类分为身体结构一级分类和身体功能一级分类,在身体结构或身体功能的一级分类下又分为二级或三级或四级小类。人身保险伤残评定标准中涉及ICF 的具体内容如表 A1。", + "order": 18 + }, + { + "category": "caption", + "bbox": [ + 597, + 1206, + 654, + 1229 + ], + "content": "表 A1", + "order": 19 + }, + { + "category": "table", + "bbox": [ + 128, + 1231, + 1085, + 1389 + ], + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
身体结构身体功能
大类一级分类二级或三级或四级分类一级分类二级或三级或四级分类
神经系统的结构和精神功能s1 神经系统的结构s110 脑的结构b1 精神功能b110 意识功能
b117 智力功能
b167 语言精神功能
b198 其他特指的精神功能
", + "order": 20 + }, + { + "category": "page-footer", + "bbox": [ + 590, + 1557, + 614, + 1579 + ], + "content": "24", + "order": 21 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/7f74a090-ea36-46d7-b0e2-eb182f6fc975.json b/track1_finixdigital_242_insurance_terms/jsons/7f74a090-ea36-46d7-b0e2-eb182f6fc975.json new file mode 100644 index 0000000000000000000000000000000000000000..05be9a2737b16c99b895cb953cbb1eb5f7fe7a8f --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/7f74a090-ea36-46d7-b0e2-eb182f6fc975.json @@ -0,0 +1,1102 @@ +{ + "resized_height": 9184, + "resized_width": 736, + "width": 750, + "height": 9178, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "figure", + "bbox": [ + 42, + 31, + 94, + 99 + ], + "order": 1 + }, + { + "category": "title", + "bbox": [ + 92, + 38, + 646, + 95 + ], + "content": "# 医无忧·少儿高端意外医疗险", + "order": 2 + }, + { + "category": "figure", + "bbox": [ + 646, + 32, + 691, + 99 + ], + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 167, + 175, + 562, + 249 + ], + "content": "# 高端医院意外医疗", + "order": 4 + }, + { + "category": "figure", + "bbox": [ + 22, + 294, + 705, + 553 + ], + "order": 5 + }, + { + "category": "text", + "bbox": [ + 337, + 537, + 662, + 579 + ], + "content": "候诊少排队,减少交叉感染", + "order": 6 + }, + { + "category": "figure", + "bbox": [ + 23, + 648, + 717, + 906 + ], + "order": 7 + }, + { + "category": "text", + "bbox": [ + 311, + 894, + 684, + 933 + ], + "content": "可选医院广泛,磕碰随时上私立", + "order": 8 + }, + { + "category": "figure", + "bbox": [ + 17, + 1006, + 709, + 1265 + ], + "order": 9 + }, + { + "category": "text", + "bbox": [ + 334, + 1253, + 656, + 1293 + ], + "content": "享优质医疗资源, 就诊高效", + "order": 10 + }, + { + "category": "figure", + "bbox": [ + 18, + 1366, + 711, + 1617 + ], + "order": 11 + }, + { + "category": "text", + "bbox": [ + 336, + 1606, + 655, + 1656 + ], + "content": "医护耐心照料,宝宝少哭闹", + "order": 12 + }, + { + "category": "figure", + "bbox": [ + 21, + 1720, + 708, + 1976 + ], + "order": 13 + }, + { + "category": "text", + "bbox": [ + 324, + 1962, + 668, + 2013 + ], + "content": "温馨就诊环境, 爸妈陪诊安心", + "order": 14 + }, + { + "category": "figure", + "bbox": [ + 158, + 2076, + 591, + 2275 + ], + "order": 15 + }, + { + "category": "figure", + "bbox": [ + 63, + 2294, + 113, + 2379 + ], + "order": 16 + }, + { + "category": "text", + "bbox": [ + 333, + 2272, + 420, + 2321 + ], + "content": "支持", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 112, + 2320, + 624, + 2367 + ], + "content": "私立+公立医院国际部/特需部/VIP", + "order": 18 + }, + { + "category": "figure", + "bbox": [ + 624, + 2297, + 677, + 2375 + ], + "order": 19 + }, + { + "category": "text", + "bbox": [ + 153, + 2430, + 286, + 2509 + ], + "content": "私立医院\n(二级及以上)", + "order": 20 + }, + { + "category": "text", + "bbox": [ + 88, + 2531, + 345, + 2581 + ], + "content": "北京美中宜和妇儿医院", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 101, + 2610, + 329, + 2659 + ], + "content": "上海嘉会国际医院", + "order": 22 + }, + { + "category": "text", + "bbox": [ + 104, + 2689, + 326, + 2744 + ], + "content": "成都天使儿童医院", + "order": 23 + }, + { + "category": "text", + "bbox": [ + 96, + 2769, + 328, + 2825 + ], + "content": "浙江大学树兰医院", + "order": 24 + }, + { + "category": "text", + "bbox": [ + 178, + 2865, + 256, + 2903 + ], + "content": "......", + "order": 25 + }, + { + "category": "text", + "bbox": [ + 401, + 2436, + 646, + 2510 + ], + "content": "公立医院\n国际部/特需部/VIP部", + "order": 26 + }, + { + "category": "text", + "bbox": [ + 379, + 2533, + 661, + 2605 + ], + "content": "浙江大学医学院附属儿童医院国际医学部", + "order": 27 + }, + { + "category": "text", + "bbox": [ + 383, + 2622, + 656, + 2696 + ], + "content": "首都医科大学附属北京儿童医院国际部", + "order": 28 + }, + { + "category": "text", + "bbox": [ + 385, + 2711, + 659, + 2782 + ], + "content": "上海交通大学医学院附属上海儿童医学中心", + "order": 29 + }, + { + "category": "text", + "bbox": [ + 381, + 2795, + 661, + 2870 + ], + "content": "武汉儿童医院国际医疗部(IMS)", + "order": 30 + }, + { + "category": "text", + "bbox": [ + 481, + 2873, + 558, + 2907 + ], + "content": "......", + "order": 31 + }, + { + "category": "section-header", + "bbox": [ + 60, + 3038, + 671, + 3102 + ], + "content": "# 高端医院意外医疗,最高5万保额", + "order": 32 + }, + { + "category": "text", + "bbox": [ + 174, + 3104, + 564, + 3154 + ], + "content": "0免赔额,不限社保内用药", + "order": 33 + }, + { + "category": "caption", + "bbox": [ + 248, + 3154, + 488, + 3201 + ], + "content": "*以投保10-17岁版为例", + "order": 34 + }, + { + "category": "figure", + "bbox": [ + 332, + 3227, + 416, + 3304 + ], + "order": 35 + }, + { + "category": "text", + "bbox": [ + 319, + 3311, + 419, + 3389 + ], + "content": "医院选择广", + "order": 36 + }, + { + "category": "figure", + "bbox": [ + 84, + 3362, + 186, + 3447 + ], + "order": 37 + }, + { + "category": "text", + "bbox": [ + 75, + 3452, + 175, + 3534 + ], + "content": "就诊少排队", + "order": 38 + }, + { + "category": "figure", + "bbox": [ + 223, + 3398, + 529, + 3596 + ], + "order": 39 + }, + { + "category": "figure", + "bbox": [ + 574, + 3359, + 646, + 3429 + ], + "order": 40 + }, + { + "category": "text", + "bbox": [ + 546, + 3437, + 667, + 3516 + ], + "content": "享优质医疗资源", + "order": 41 + }, + { + "category": "text", + "bbox": [ + 124, + 3615, + 652, + 3667 + ], + "content": "公立医院特需部、国际部、外宾医疗、VIP部", + "order": 42 + }, + { + "category": "text", + "bbox": [ + 119, + 3693, + 659, + 3739 + ], + "content": "公立医院联合病房、干部病房、国际医疗中心", + "order": 43 + }, + { + "category": "text", + "bbox": [ + 249, + 3765, + 513, + 3814 + ], + "content": "私立医院(二级及以上)", + "order": 44 + }, + { + "category": "footnote", + "bbox": [ + 35, + 3840, + 698, + 4124 + ], + "content": "*高端医院医疗责任是指:\n在保险期间内,被保险人遭受意外伤害事故在国内(不含港澳台)二级及以上私立医院,和公立医院特需部、外宾医疗、干部病房、联合病房、国际医疗中心、VIP部联合医院、诊所(不含康复医院)进行治疗并实际发生的、必需且合理的医疗费用,符合当地社会基本医疗保险规定可报销部分的医疗费用赔付比例100%,超出当地社会基本医疗保险规定的部分赔付比例80%。\n每自然月仅限就诊一次,累计赔偿限额以保单约定为准。(本责任保额包含在意外门急诊住院医疗费中)", + "order": 45 + }, + { + "category": "section-header", + "bbox": [ + 56, + 4183, + 680, + 4241 + ], + "content": "# 意外医疗高保额,高端医院也能赔", + "order": 46 + }, + { + "category": "text", + "bbox": [ + 170, + 4240, + 566, + 4301 + ], + "content": "0免赔额,不限社保内用药", + "order": 47 + }, + { + "category": "text", + "bbox": [ + 216, + 4331, + 520, + 4382 + ], + "content": "意外医疗费用可保障", + "order": 48 + }, + { + "category": "figure", + "bbox": [ + 105, + 4418, + 245, + 4546 + ], + "order": 49 + }, + { + "category": "text", + "bbox": [ + 113, + 4550, + 230, + 4596 + ], + "content": "门诊手术", + "order": 50 + }, + { + "category": "figure", + "bbox": [ + 309, + 4419, + 446, + 4542 + ], + "order": 51 + }, + { + "category": "text", + "bbox": [ + 336, + 4548, + 431, + 4596 + ], + "content": "挂号费", + "order": 52 + }, + { + "category": "figure", + "bbox": [ + 493, + 4417, + 632, + 4545 + ], + "order": 53 + }, + { + "category": "text", + "bbox": [ + 498, + 4549, + 626, + 4597 + ], + "content": "检查检验费", + "order": 54 + }, + { + "category": "figure", + "bbox": [ + 106, + 4597, + 249, + 4725 + ], + "order": 55 + }, + { + "category": "text", + "bbox": [ + 114, + 4725, + 231, + 4786 + ], + "content": "住院手术", + "order": 56 + }, + { + "category": "figure", + "bbox": [ + 311, + 4614, + 455, + 4719 + ], + "order": 57 + }, + { + "category": "text", + "bbox": [ + 327, + 4730, + 431, + 4782 + ], + "content": "床位费", + "order": 58 + }, + { + "category": "figure", + "bbox": [ + 502, + 4603, + 636, + 4723 + ], + "order": 59 + }, + { + "category": "text", + "bbox": [ + 506, + 4724, + 618, + 4781 + ], + "content": "药品费", + "order": 60 + }, + { + "category": "footnote", + "bbox": [ + 46, + 4817, + 691, + 4958 + ], + "content": "*意外门急诊住院医疗费,是指在国内(不含港澳台)二级及以上医院进行治疗并实际发生的、必需且合理的医疗费用,符合当地社会基本医疗保险规定可报销部分的医疗费用赔付比例100%,超出当地社会基本医疗保险规定的部分赔付比例80%。", + "order": 61 + }, + { + "category": "section-header", + "bbox": [ + 193, + 5007, + 533, + 5076 + ], + "content": "# 特设丰富专项责任", + "order": 62 + }, + { + "category": "figure", + "bbox": [ + 164, + 5093, + 239, + 5166 + ], + "order": 63 + }, + { + "category": "text", + "bbox": [ + 101, + 5167, + 306, + 5215 + ], + "content": "意外骨折关节脱位", + "order": 64 + }, + { + "category": "text", + "bbox": [ + 100, + 5216, + 307, + 5265 + ], + "content": "保额最高2万", + "order": 65 + }, + { + "category": "figure", + "bbox": [ + 480, + 5090, + 605, + 5171 + ], + "order": 66 + }, + { + "category": "text", + "bbox": [ + 437, + 5169, + 621, + 5213 + ], + "content": "食物中毒医疗费", + "order": 67 + }, + { + "category": "text", + "bbox": [ + 436, + 5212, + 626, + 5265 + ], + "content": "保额1000元", + "order": 68 + }, + { + "category": "figure", + "bbox": [ + 148, + 5307, + 270, + 5385 + ], + "order": 69 + }, + { + "category": "text", + "bbox": [ + 112, + 5383, + 296, + 5429 + ], + "content": "脸部疤痕医疗费", + "order": 70 + }, + { + "category": "text", + "bbox": [ + 70, + 5429, + 342, + 5477 + ], + "content": "保额最高5000元", + "order": 71 + }, + { + "category": "figure", + "bbox": [ + 479, + 5305, + 578, + 5387 + ], + "order": 72 + }, + { + "category": "text", + "bbox": [ + 440, + 5384, + 619, + 5426 + ], + "content": "狂犬疫苗医疗费", + "order": 73 + }, + { + "category": "text", + "bbox": [ + 393, + 5427, + 664, + 5480 + ], + "content": "保额最高5000元", + "order": 74 + }, + { + "category": "footnote", + "bbox": [ + 246, + 5513, + 490, + 5557 + ], + "content": "*以投保10-17岁版为例", + "order": 75 + }, + { + "category": "section-header", + "bbox": [ + 196, + 5617, + 540, + 5684 + ], + "content": "# 熊孩子闯祸也不怕", + "order": 76 + }, + { + "category": "text", + "bbox": [ + 93, + 5685, + 649, + 5740 + ], + "content": "误伤他人帮赔偿、误损他人财物能理赔", + "order": 77 + }, + { + "category": "figure", + "bbox": [ + 59, + 5752, + 666, + 6132 + ], + "order": 78 + }, + { + "category": "footnote", + "bbox": [ + 248, + 6132, + 488, + 6179 + ], + "content": "*以投保10-17岁版为例", + "order": 79 + }, + { + "category": "section-header", + "bbox": [ + 120, + 6236, + 609, + 6303 + ], + "content": "# 享家庭医生、法律咨询服务", + "order": 80 + }, + { + "category": "figure", + "bbox": [ + 51, + 6331, + 328, + 6529 + ], + "order": 81 + }, + { + "category": "text", + "bbox": [ + 329, + 6375, + 646, + 6433 + ], + "content": "家庭医生健康咨询服务", + "order": 82 + }, + { + "category": "text", + "bbox": [ + 569, + 6437, + 638, + 6496 + ], + "content": "2次", + "order": 83 + }, + { + "category": "figure", + "bbox": [ + 46, + 6537, + 384, + 6732 + ], + "order": 84 + }, + { + "category": "text", + "bbox": [ + 378, + 6584, + 638, + 6643 + ], + "content": "法律服务电话咨询", + "order": 85 + }, + { + "category": "text", + "bbox": [ + 415, + 6643, + 639, + 6706 + ], + "content": "一次(限30分钟)", + "order": 86 + }, + { + "category": "text", + "bbox": [ + 284, + 6776, + 454, + 6837 + ], + "content": "使用流程", + "order": 87 + }, + { + "category": "figure", + "bbox": [ + 147, + 6864, + 202, + 6919 + ], + "order": 88 + }, + { + "category": "text", + "bbox": [ + 96, + 6921, + 245, + 6985 + ], + "content": "众安保险服务小程序", + "order": 89 + }, + { + "category": "figure", + "bbox": [ + 345, + 6863, + 406, + 6917 + ], + "order": 90 + }, + { + "category": "text", + "bbox": [ + 314, + 6918, + 439, + 6988 + ], + "content": "申请领取填写信息", + "order": 91 + }, + { + "category": "figure", + "bbox": [ + 540, + 6860, + 610, + 6911 + ], + "order": 92 + }, + { + "category": "text", + "bbox": [ + 515, + 6914, + 636, + 6964 + ], + "content": "申请服务", + "order": 93 + }, + { + "category": "text", + "bbox": [ + 97, + 7016, + 590, + 7071 + ], + "content": "① 支付宝搜索“众安保险服务”支付宝小程序", + "order": 94 + }, + { + "category": "text", + "bbox": [ + 98, + 7073, + 378, + 7121 + ], + "content": "② 点击进入“我的”页面", + "order": 95 + }, + { + "category": "text", + "bbox": [ + 98, + 7134, + 468, + 7184 + ], + "content": "③ 选择“专属服务”页面进行预约", + "order": 96 + }, + { + "category": "text", + "bbox": [ + 93, + 7185, + 640, + 7235 + ], + "content": "1、家庭医生健康咨询,在保险期间内可使用两次。", + "order": 97 + }, + { + "category": "text", + "bbox": [ + 94, + 7234, + 646, + 7306 + ], + "content": "2、法律服务电话咨询,在保险期间内可使用一次, 限30分钟。", + "order": 98 + }, + { + "category": "section-header", + "bbox": [ + 281, + 7399, + 454, + 7461 + ], + "content": "# 产品方案", + "order": 99 + }, + { + "category": "table", + "bbox": [ + 43, + 7475, + 692, + 8894 + ], + "content": "
保险责任保险金额
0-17岁版10-17岁版
意外伤害身故残疾20万元50万元
意外门急诊住院医疗费
0免赔额,社保内费用赔付比例100%,社保外费用赔付比例80%
20万元50万元
高端意外门诊住院医疗费
0免赔额,社保内费用赔付比例100%,社保外费用赔付比例80%
3万元5万元
狂犬疫苗医疗费2000元5000元
食物中毒医疗费1000元1000元
意外骨折关节脱位1万元2万元
Ⅲ度烧烫伤1万元2万元
脸部疤痕医疗费2000元5000元
意外伤害救护车费用2000元2000元
个人责任人伤部分10万元15万元
个人责任财损部分
每次事故扣除免赔额为“人民币500元或损失金额的10%,两者以高者为准”
1万元15000元
家庭医生健康咨询两次两次
法律服务电话咨询一次
(限30分钟)
一次
(限30分钟)
生效时间投保成功后第5日零时
", + "order": 100 + }, + { + "category": "caption", + "bbox": [ + 32, + 8913, + 707, + 8995 + ], + "content": "*高端意外门诊住院医疗费、狂犬疫苗医疗费责任保额包含在意外门急诊住院医疗费中。", + "order": 101 + }, + { + "category": "footnote", + "bbox": [ + 35, + 8998, + 705, + 9117 + ], + "content": "本产品适用条款《众安在线财产保险股份有限公司个人意外伤害保险条款(互联网)(众安在线)(备-普通意外保险)【2021】(主)129号》等,具体保障内容以保险条款约定为准。", + "order": 102 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/81724269-7c3a-40b9-acf8-d27c5184c274.json b/track1_finixdigital_242_insurance_terms/jsons/81724269-7c3a-40b9-acf8-d27c5184c274.json new file mode 100644 index 0000000000000000000000000000000000000000..d867cc732364f07e1f0b113e4c76844686b149bb --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/81724269-7c3a-40b9-acf8-d27c5184c274.json @@ -0,0 +1,520 @@ +{ + "resized_height": 4832, + "resized_width": 736, + "width": 750, + "height": 4826, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "title", + "bbox": [ + 118, + 86, + 619, + 163 + ], + "content": "# 质子重离子医疗保险", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 224, + 165, + 518, + 215 + ], + "content": "一 互联网专属 一", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 166, + 216, + 570, + 279 + ], + "content": "不惧癌症治疗高负担", + "order": 3 + }, + { + "category": "figure", + "bbox": [ + 52, + 98, + 136, + 279 + ], + "order": 4 + }, + { + "category": "figure", + "bbox": [ + 604, + 101, + 686, + 285 + ], + "order": 5 + }, + { + "category": "figure", + "bbox": [ + 65, + 443, + 114, + 491 + ], + "order": 6 + }, + { + "category": "text", + "bbox": [ + 118, + 446, + 299, + 489 + ], + "content": "现实情况:", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 54, + 507, + 430, + 629 + ], + "content": "担心患癌后不好治,生存几率低?", + "order": 8 + }, + { + "category": "figure", + "bbox": [ + 494, + 418, + 669, + 666 + ], + "order": 9 + }, + { + "category": "figure", + "bbox": [ + 64, + 774, + 112, + 824 + ], + "order": 10 + }, + { + "category": "text", + "bbox": [ + 125, + 774, + 329, + 825 + ], + "content": "我们的优势:", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 97, + 845, + 676, + 915 + ], + "content": "享高精尖质子重离子治疗保障", + "order": 12 + }, + { + "category": "figure", + "bbox": [ + 60, + 955, + 692, + 1306 + ], + "order": 13 + }, + { + "category": "text", + "bbox": [ + 95, + 1317, + 300, + 1388 + ], + "content": "治疗效果好", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 62, + 1417, + 328, + 1493 + ], + "content": "5年生存率高达97.1%局部肿瘤控制率达81.8%", + "order": 15 + }, + { + "category": "figure", + "bbox": [ + 326, + 1368, + 390, + 1433 + ], + "order": 16 + }, + { + "category": "text", + "bbox": [ + 391, + 1320, + 668, + 1382 + ], + "content": "精度高副作用小", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 376, + 1430, + 680, + 1480 + ], + "content": "精准照射无创伤,毒副作用小", + "order": 18 + }, + { + "category": "caption", + "bbox": [ + 149, + 1515, + 589, + 1559 + ], + "content": "*数据来源:上海质子重离子医院四周年临床实验统计", + "order": 19 + }, + { + "category": "figure", + "bbox": [ + 66, + 1687, + 113, + 1736 + ], + "order": 20 + }, + { + "category": "text", + "bbox": [ + 114, + 1690, + 300, + 1740 + ], + "content": "现实情况:", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 55, + 1761, + 492, + 1857 + ], + "content": "担心几十万的质子重离子费用不能医保报销,自费经济压力大?", + "order": 22 + }, + { + "category": "figure", + "bbox": [ + 505, + 1657, + 668, + 1912 + ], + "order": 23 + }, + { + "category": "figure", + "bbox": [ + 64, + 2019, + 113, + 2068 + ], + "order": 24 + }, + { + "category": "text", + "bbox": [ + 126, + 2019, + 332, + 2072 + ], + "content": "我们的优势:", + "order": 25 + }, + { + "category": "text", + "bbox": [ + 592, + 2054, + 661, + 2094 + ], + "content": "责任内", + "order": 26 + }, + { + "category": "text", + "bbox": [ + 100, + 2093, + 636, + 2153 + ], + "content": "赔付限额100万,看病不用愁", + "order": 27 + }, + { + "category": "figure", + "bbox": [ + 200, + 2210, + 323, + 2324 + ], + "order": 28 + }, + { + "category": "text", + "bbox": [ + 232, + 2327, + 290, + 2366 + ], + "content": "肝癌", + "order": 29 + }, + { + "category": "figure", + "bbox": [ + 420, + 2202, + 539, + 2326 + ], + "order": 30 + }, + { + "category": "text", + "bbox": [ + 427, + 2329, + 537, + 2363 + ], + "content": "前列腺癌", + "order": 31 + }, + { + "category": "figure", + "bbox": [ + 38, + 2321, + 155, + 2438 + ], + "order": 32 + }, + { + "category": "text", + "bbox": [ + 63, + 2437, + 124, + 2473 + ], + "content": "肺癌", + "order": 33 + }, + { + "category": "figure", + "bbox": [ + 155, + 2350, + 617, + 2824 + ], + "order": 34 + }, + { + "category": "figure", + "bbox": [ + 588, + 2320, + 701, + 2433 + ], + "order": 35 + }, + { + "category": "text", + "bbox": [ + 601, + 2435, + 684, + 2472 + ], + "content": "胰腺癌", + "order": 36 + }, + { + "category": "figure", + "bbox": [ + 25, + 2488, + 144, + 2600 + ], + "order": 37 + }, + { + "category": "text", + "bbox": [ + 28, + 2599, + 130, + 2649 + ], + "content": "鼻咽癌", + "order": 38 + }, + { + "category": "figure", + "bbox": [ + 600, + 2490, + 716, + 2602 + ], + "order": 39 + }, + { + "category": "text", + "bbox": [ + 613, + 2603, + 706, + 2647 + ], + "content": "食道癌", + "order": 40 + }, + { + "category": "text", + "bbox": [ + 188, + 2866, + 558, + 2929 + ], + "content": "适合哪些群体配置?", + "order": 41 + }, + { + "category": "figure", + "bbox": [ + 53, + 2979, + 671, + 3352 + ], + "order": 42 + }, + { + "category": "text", + "bbox": [ + 193, + 3363, + 546, + 3425 + ], + "content": "28天-70周岁可投保", + "order": 43 + }, + { + "category": "text", + "bbox": [ + 114, + 3434, + 612, + 3561 + ], + "content": "无论是否配置医疗险、重疾险等其他险种,均可额外投保质子重离子医疗保障,性价比高,小投入抵御大风险。", + "order": 44 + }, + { + "category": "caption", + "bbox": [ + 253, + 3681, + 473, + 3753 + ], + "content": "产品计划", + "order": 45 + }, + { + "category": "table", + "bbox": [ + 30, + 3798, + 715, + 4530 + ], + "content": "
保障计划计划一
年度总限额100万
床位费限额1500元/天
医院范围上海质子重离子医院
暨复旦大学附属肿瘤医院
质子重离子中心
年免赔额0
赔付比例100%
犹豫期15天
(投保15天内退保,全额退款无任何费用)
等待期90天
投保年龄28天~70周岁,重新投保至99周岁
保险期间1年
", + "order": 46 + }, + { + "category": "caption", + "bbox": [ + 27, + 4539, + 274, + 4582 + ], + "content": "*具体以产品条款为准", + "order": 47 + }, + { + "category": "footnote", + "bbox": [ + 26, + 4591, + 701, + 4787 + ], + "content": "注:本产品适用条款为“平安互联网质子重离子医疗保险(报备文号平保健发〔2023〕254号,条款编码平安健康〔2023〕医疗保险049号)”,具体保障责任根据您购买时选择的产品计划为准,如您对本产品有疑义,请联系我司在线客服或拨打95511-7咨询。", + "order": 48 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/89807b9c-13fa-4fb9-94dc-febf89b9c016.json b/track1_finixdigital_242_insurance_terms/jsons/89807b9c-13fa-4fb9-94dc-febf89b9c016.json new file mode 100644 index 0000000000000000000000000000000000000000..0f77a46f154eb3f9136cf144c607b139b017f8d5 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/89807b9c-13fa-4fb9-94dc-febf89b9c016.json @@ -0,0 +1,537 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 822, + 35, + 1120, + 65 + ], + "content": "人保健康[2022]医疗保险015号", + "order": 1 + }, + { + "category": "figure", + "bbox": [ + 910, + 67, + 1033, + 192 + ], + "order": 2 + }, + { + "category": "text", + "bbox": [ + 863, + 194, + 1080, + 222 + ], + "content": "请扫描以查询验证条款", + "order": 3 + }, + { + "category": "title", + "bbox": [ + 366, + 157, + 815, + 198 + ], + "content": "# 中国人民健康保险股份有限公司", + "order": 4 + }, + { + "category": "title", + "bbox": [ + 253, + 209, + 931, + 252 + ], + "content": "# 人保健康福安相伴城市定制型团体医疗保险条款", + "order": 5 + }, + { + "category": "title", + "bbox": [ + 528, + 275, + 654, + 311 + ], + "content": "# 阅读指引", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 285, + 325, + 884, + 360 + ], + "content": "本阅读指引旨在帮助投保人理解条款,具体内容以条款约定为准。", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 136, + 380, + 351, + 407 + ], + "content": "# 投保人拥有的重要权益", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 142, + 426, + 1079, + 453 + ], + "content": "## 本合同为被保险人提供的保障内容在保险责任条款中列明....2.2", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 142, + 457, + 1079, + 484 + ], + "content": "## 投保人有解除本合同的权利...3.2", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 136, + 498, + 394, + 525 + ], + "content": "# 投保人需要特别注意的事项", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 141, + 543, + 1079, + 571 + ], + "content": "## 在某些情况下,本公司不承担保险责任....2.4/2.5", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 141, + 575, + 1078, + 602 + ], + "content": "## 投保人应当按约定支付保险费...4.1", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 141, + 606, + 1078, + 634 + ], + "content": "## 投保人有如实告知的义务....6.1", + "order": 14 + }, + { + "category": "section-header", + "bbox": [ + 141, + 638, + 1078, + 665 + ], + "content": "## 保险事故发生后,请及时通知本公司....5.1", + "order": 15 + }, + { + "category": "section-header", + "bbox": [ + 141, + 670, + 1078, + 697 + ], + "content": "## 解除合同会造成一定的损失,请慎重抉择...3.2", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 142, + 701, + 1079, + 728 + ], + "content": "## 本合同对条款中出现的一些重要术语进行了解释,请投保人注意....7", + "order": 17 + }, + { + "category": "section-header", + "bbox": [ + 135, + 739, + 1030, + 769 + ], + "content": "# 条款中凡是以黑体字加下划线标示的内容均为免除或减轻本公司责任的条款,请投保人特别注意。", + "order": 18 + }, + { + "category": "section-header", + "bbox": [ + 135, + 781, + 906, + 810 + ], + "content": "# 条款是保险合同的重要内容,为充分保障投保人的权益,请投保人仔细阅读本条款。", + "order": 19 + }, + { + "category": "section-header", + "bbox": [ + 135, + 822, + 227, + 850 + ], + "content": "# 条款目录", + "order": 20 + }, + { + "category": "section-header", + "bbox": [ + 126, + 870, + 246, + 896 + ], + "content": "## 1. 投保范围", + "order": 21 + }, + { + "category": "section-header", + "bbox": [ + 148, + 897, + 277, + 923 + ], + "content": "### 1.1 投保范围", + "order": 22 + }, + { + "category": "section-header", + "bbox": [ + 124, + 924, + 352, + 952 + ], + "content": "## 2. 保险责任及责任免除", + "order": 23 + }, + { + "category": "section-header", + "bbox": [ + 143, + 953, + 279, + 978 + ], + "content": "### 2.1 保险期间", + "order": 24 + }, + { + "category": "section-header", + "bbox": [ + 144, + 980, + 278, + 1006 + ], + "content": "### 2.2 保险责任", + "order": 25 + }, + { + "category": "section-header", + "bbox": [ + 145, + 1007, + 383, + 1033 + ], + "content": "### 2.3 补偿原则和赔付标准", + "order": 26 + }, + { + "category": "section-header", + "bbox": [ + 145, + 1035, + 279, + 1061 + ], + "content": "### 2.4 责任免除", + "order": 27 + }, + { + "category": "section-header", + "bbox": [ + 145, + 1062, + 321, + 1089 + ], + "content": "### 2.5 其他免责条款", + "order": 28 + }, + { + "category": "section-header", + "bbox": [ + 125, + 1089, + 248, + 1116 + ], + "content": "## 3. 合同效力", + "order": 29 + }, + { + "category": "section-header", + "bbox": [ + 145, + 1116, + 342, + 1143 + ], + "content": "### 3.1 合同成立与生效", + "order": 30 + }, + { + "category": "section-header", + "bbox": [ + 146, + 1144, + 403, + 1171 + ], + "content": "### 3.2 解除合同的手续及风险", + "order": 31 + }, + { + "category": "section-header", + "bbox": [ + 123, + 1171, + 226, + 1199 + ], + "content": "## 4. 保险费", + "order": 32 + }, + { + "category": "section-header", + "bbox": [ + 146, + 1199, + 256, + 1225 + ], + "content": "### 4.1 保险费", + "order": 33 + }, + { + "category": "section-header", + "bbox": [ + 122, + 1227, + 352, + 1253 + ], + "content": "## 5. 保险金的申请及给付", + "order": 34 + }, + { + "category": "section-header", + "bbox": [ + 144, + 1254, + 322, + 1281 + ], + "content": "### 5.1 保险事故通知", + "order": 35 + }, + { + "category": "section-header", + "bbox": [ + 145, + 1282, + 256, + 1308 + ], + "content": "### 5.2 受益人", + "order": 36 + }, + { + "category": "section-header", + "bbox": [ + 145, + 1308, + 342, + 1335 + ], + "content": "### 5.3 保险金申请资料", + "order": 37 + }, + { + "category": "section-header", + "bbox": [ + 145, + 1337, + 319, + 1362 + ], + "content": "### 5.4 保险金的给付", + "order": 38 + }, + { + "category": "section-header", + "bbox": [ + 145, + 1362, + 277, + 1391 + ], + "content": "### 5.5 诉讼时效", + "order": 39 + }, + { + "category": "section-header", + "bbox": [ + 642, + 868, + 767, + 897 + ], + "content": "## 6. 其他事项", + "order": 40 + }, + { + "category": "section-header", + "bbox": [ + 664, + 897, + 902, + 924 + ], + "content": "### 6.1明确说明与如实告知", + "order": 41 + }, + { + "category": "section-header", + "bbox": [ + 643, + 925, + 922, + 979 + ], + "content": "### 6.2 本公司合同解除权的限制", + "order": 42 + }, + { + "category": "section-header", + "bbox": [ + 663, + 980, + 840, + 1006 + ], + "content": "### 6.3 合同内容变更", + "order": 43 + }, + { + "category": "section-header", + "bbox": [ + 662, + 1006, + 841, + 1033 + ], + "content": "### 6.4 联系方式变更", + "order": 44 + }, + { + "category": "section-header", + "bbox": [ + 663, + 1034, + 840, + 1061 + ], + "content": "### 6.5 被保险人变动", + "order": 45 + }, + { + "category": "section-header", + "bbox": [ + 663, + 1062, + 902, + 1089 + ], + "content": "### 6.6 年龄确定与错误处理", + "order": 46 + }, + { + "category": "section-header", + "bbox": [ + 663, + 1088, + 799, + 1115 + ], + "content": "### 6.7 争议处理", + "order": 47 + }, + { + "category": "section-header", + "bbox": [ + 643, + 1116, + 766, + 1144 + ], + "content": "## 7. 名词释义", + "order": 48 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/8dd6e657-d6bc-448f-ba16-7402b6b1c886.json b/track1_finixdigital_242_insurance_terms/jsons/8dd6e657-d6bc-448f-ba16-7402b6b1c886.json new file mode 100644 index 0000000000000000000000000000000000000000..cced53303a3e1b0314a9c68219f339092375b5aa --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/8dd6e657-d6bc-448f-ba16-7402b6b1c886.json @@ -0,0 +1,241 @@ +{ + "resized_height": 1184, + "resized_width": 1696, + "width": 1684, + "height": 1191, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 795, + 131, + 934, + 158 + ], + "content": "# 十、投保示例", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 140, + 161, + 210, + 190 + ], + "content": "## 示例一", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 140, + 209, + 1548, + 264 + ], + "content": "张先生,35 周岁,有 100,000 元闲置资金,结合财富管理与风险保障需求,选择了“太保鑫红利 2.0 两全保险(分红型)”100 份,是交保险费 100,000 元。", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 180, + 299, + 275, + 325 + ], + "content": "### 保单利益", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 183, + 345, + 413, + 369 + ], + "content": "张先生的保单利益如下:", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 181, + 376, + 816, + 401 + ], + "content": "1、满期保险金:5 年保险期间届满,可领取108,700元满期保险金。", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 180, + 407, + 846, + 431 + ], + "content": "2、红利:保单有效期内,可参与公司红利分配。红利分配是不确定的。", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 181, + 439, + 811, + 465 + ], + "content": "3、身故保险金或全残保险金:按已支付的保险费总额的160%给付。", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 179, + 472, + 1005, + 499 + ], + "content": "4、民航交通意外身故保险金或民航交通意外全残保险金:2 倍身故保险金或全残保险金。", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 181, + 503, + 621, + 530 + ], + "content": "*合同生效之日起 90 日内保单利益将有所不同。", + "order": 10 + }, + { + "category": "caption", + "bbox": [ + 612, + 563, + 1114, + 593 + ], + "content": "太保鑫红利 2.0 两全保险(分红型)保单利益示例表", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 358, + 622, + 535, + 654 + ], + "content": "被保险人:张先生", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 677, + 622, + 861, + 652 + ], + "content": "投保年龄:35周岁", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 1009, + 622, + 1100, + 653 + ], + "content": "性别:男", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 354, + 658, + 514, + 685 + ], + "content": "交费方式:趸交", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 681, + 656, + 912, + 684 + ], + "content": "趸交保险费:100,000元", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 1007, + 657, + 1265, + 686 + ], + "content": "基本保险金额: 108,700元", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 1325, + 686, + 1522, + 715 + ], + "content": "货币单位:人民币元", + "order": 18 + }, + { + "category": "table", + "bbox": [ + 139, + 714, + 1544, + 975 + ], + "content": "
保单
年度
趸交
保险费
累计
保险费
身故保险金或全残保险金民航交通意外身故保险金或民航交通意外全残保险金满期保险金现金价值
(退保金)
年度红利累积红利
保证利益红利演示保证利益红利演示
1100,000100,000160,000320,000-94,80001,34901,349
2-100,000160,000320,000-98,10001,38202,765
3-100,000160,000320,000-101,50001,41604,250
4-100,000160,000320,000-105,00001,45005,806
5-100,000160,000320,000108,700001,48607,437
", + "order": 19 + }, + { + "category": "caption", + "bbox": [ + 137, + 978, + 1545, + 1035 + ], + "content": "注:1、红利分配分别按保证利益、红利演示2种情况进行预测,仅作为参考之用。红利演示不作为未来红利分配的保证,实际红利水平可能高于或低于表中所列数字;", + "order": 20 + }, + { + "category": "caption", + "bbox": [ + 179, + 1041, + 631, + 1065 + ], + "content": "2、为了便于说明,假定合同生效日为1月1日;", + "order": 21 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/8ec50d91-3f98-414a-a56a-667f7b766415.json b/track1_finixdigital_242_insurance_terms/jsons/8ec50d91-3f98-414a-a56a-667f7b766415.json new file mode 100644 index 0000000000000000000000000000000000000000..7a537b27b75f530ea4ead62442ff8031cdc5cea0 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/8ec50d91-3f98-414a-a56a-667f7b766415.json @@ -0,0 +1,370 @@ +{ + "resized_height": 2976, + "resized_width": 736, + "width": 750, + "height": 2967, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 107, + 78, + 707, + 152 + ], + "content": "# 火灾无情 风险不容小觑", + "order": 1 + }, + { + "category": "figure", + "bbox": [ + 9, + 202, + 347, + 681 + ], + "order": 2 + }, + { + "category": "text", + "bbox": [ + 351, + 232, + 721, + 266 + ], + "content": "数据统计,2022年1月-9月全国共接报", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 357, + 283, + 520, + 319 + ], + "content": "火灾63.68万起", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 350, + 335, + 490, + 370 + ], + "content": "死亡1441人", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 353, + 386, + 488, + 422 + ], + "content": "受伤1640人", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 352, + 439, + 583, + 472 + ], + "content": "直接财产损失55亿元", + "order": 7 + }, + { + "category": "footnote", + "bbox": [ + 350, + 498, + 677, + 525 + ], + "content": "*数据来源:国家消防救援局应急管理部", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 126, + 695, + 263, + 728 + ], + "content": "房屋主体", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 99, + 775, + 298, + 838 + ], + "content": "高层民宅、洋房住宅别墅(非自建)", + "order": 10 + }, + { + "category": "figure", + "bbox": [ + 510, + 595, + 590, + 677 + ], + "order": 11 + }, + { + "category": "text", + "bbox": [ + 486, + 693, + 613, + 730 + ], + "content": "房屋装修", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 475, + 776, + 628, + 838 + ], + "content": "水暖、气暖供电设备、吊顶", + "order": 13 + }, + { + "category": "footnote", + "bbox": [ + 28, + 880, + 707, + 946 + ], + "content": "*被保险人住所地位于全国(不含港、澳、台地区),仅承保由于火灾、爆炸造成的损失", + "order": 14 + }, + { + "category": "section-header", + "bbox": [ + 33, + 1063, + 596, + 1129 + ], + "content": "# 最高300万火灾家财险", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 68, + 1217, + 105, + 1251 + ], + "content": "低", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 75, + 1272, + 308, + 1314 + ], + "content": "保费低至 0.75元/月", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 75, + 1318, + 294, + 1348 + ], + "content": "上述最低保费是指计划一", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 70, + 1372, + 102, + 1402 + ], + "content": "高", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 77, + 1422, + 314, + 1460 + ], + "content": "保额最高300万/年", + "order": 20 + }, + { + "category": "text", + "bbox": [ + 74, + 1462, + 288, + 1492 + ], + "content": "上述最高保额是指计划三", + "order": 21 + }, + { + "category": "figure", + "bbox": [ + 266, + 1167, + 727, + 1581 + ], + "order": 22 + }, + { + "category": "section-header", + "bbox": [ + 247, + 1670, + 485, + 1736 + ], + "content": "# 保障责任", + "order": 23 + }, + { + "category": "table", + "bbox": [ + 19, + 1769, + 722, + 2050 + ], + "content": "
产品保障责任保额
计划一计划二计划三
房屋主体500,0001,000,0002,000,000
房屋装修200,000500,0001,000,000
保障期限1年
", + "order": 24 + }, + { + "category": "section-header", + "bbox": [ + 248, + 2170, + 485, + 2234 + ], + "content": "# 特别注意", + "order": 25 + }, + { + "category": "text", + "bbox": [ + 60, + 2277, + 572, + 2316 + ], + "content": "保单生效日:自成功缴费后第四日零时起生效;", + "order": 26 + }, + { + "category": "text", + "bbox": [ + 57, + 2332, + 704, + 2408 + ], + "content": "投保的房屋地址须精确到户(门牌号),每个被保险房屋仅限购1份;", + "order": 27 + }, + { + "category": "text", + "bbox": [ + 59, + 2424, + 509, + 2463 + ], + "content": "本计划仅承保建筑年限小于25年的房屋;", + "order": 28 + }, + { + "category": "text", + "bbox": [ + 59, + 2473, + 618, + 2515 + ], + "content": "被保险人住所的建筑结构须为混凝土或钢筋混凝土;", + "order": 29 + }, + { + "category": "text", + "bbox": [ + 57, + 2527, + 702, + 2603 + ], + "content": "被保险人住所及家庭财产的使用仅限以居住为目的,不含自建房、平房(别墅除外)、商用或办公、生产用的房屋。", + "order": 30 + }, + { + "category": "text", + "bbox": [ + 59, + 2618, + 612, + 2659 + ], + "content": "被保险人住所未遭受过任何与投保保障有关的损失;", + "order": 31 + }, + { + "category": "text", + "bbox": [ + 59, + 2669, + 719, + 2708 + ], + "content": "被保险房屋具有合法有效的《房地产权证》或《不动产权证书》。", + "order": 32 + }, + { + "category": "footnote", + "bbox": [ + 30, + 2795, + 703, + 2928 + ], + "content": "注:本产品适用条款为《京东安联财产保险有限公司家庭财产火灾爆炸保险条款(2020版)》(备案号:(京东安联)(备-普通家财险)【2020】(主)120号)(注册号:C00005032112020082004661),具体保障责任以您实际投保时所选择的产品计划为准,如您对产品有异议可联系在线客服。", + "order": 33 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/93300cba-67fa-492b-b1dd-ed1bcbbba093.json b/track1_finixdigital_242_insurance_terms/jsons/93300cba-67fa-492b-b1dd-ed1bcbbba093.json new file mode 100644 index 0000000000000000000000000000000000000000..d4b3c6366317d5fc58220b91e6a62587d1a41ed1 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/93300cba-67fa-492b-b1dd-ed1bcbbba093.json @@ -0,0 +1,340 @@ +{ + "resized_height": 1408, + "resized_width": 992, + "width": 993, + "height": 1404, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 148, + 121, + 305, + 145 + ], + "content": "## 2.3 责任免除", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 147, + 147, + 198, + 172 + ], + "content": "### 2.3.1", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 228, + 146, + 848, + 198 + ], + "content": "因下列情形之一,导致被保险人支出自费医疗费用的,保险人不承担给付保险金责任:", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 234, + 199, + 613, + 221 + ], + "content": "(1) 投保人对被保险人的故意杀害、故意伤害;", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 233, + 222, + 855, + 244 + ], + "content": "(2) 被保险人故意自伤或自杀,但被保险人自杀时为无民事行为能力人的除外;", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 233, + 244, + 754, + 266 + ], + "content": "(3) 被保险人因挑衅或故意行为而导致的打斗、被袭击或被谋杀;", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 231, + 265, + 853, + 312 + ], + "content": "(4) 被保险人接受包括美容、整容、整形手术在内的任何医疗行为而造成的意外;", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 233, + 314, + 852, + 357 + ], + "content": "(5) 被保险人未遵医嘱服用、涂用、注射药物,但按使用说明的规定使用非处方药不在此限;", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 234, + 358, + 853, + 402 + ], + "content": "(6) 被保险人受酒精、毒品、管制药物的影响,但遵医嘱使用药物的情形不在此限;", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 234, + 404, + 852, + 449 + ], + "content": "(7) 任何生物、化学、原子能武器,原子能或核能装置所造成的爆炸、灼伤、污染或辐射;", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 234, + 449, + 650, + 472 + ], + "content": "(8) 战争、军事冲突、暴乱或武装叛乱、恐怖袭击;", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 234, + 472, + 685, + 494 + ], + "content": "(9) 被保险人故意犯罪或抗拒依法采取的刑事强制措施;", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 234, + 495, + 853, + 541 + ], + "content": "(10) 被保险人存在精神和行为障碍(以世界卫生组织颁布的《疾病和有关健康问题的国际统计分类(ICD-10)》为准)。", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 145, + 540, + 200, + 565 + ], + "content": "### 2.3.2", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 230, + 541, + 757, + 566 + ], + "content": "对于本附加险合同载明的免赔额,保险人不承担给付保险金的责任。", + "order": 15 + }, + { + "category": "section-header", + "bbox": [ + 146, + 566, + 307, + 592 + ], + "content": "## 2.4 保险金额", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 223, + 591, + 851, + 638 + ], + "content": "每一被保险人的保险金额是保险人承担给付该被保险人保险金责任的最高限额。", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 223, + 637, + 840, + 683 + ], + "content": "医疗保险类自费医疗费用、工伤保险类自费医疗费用的保险金额由投保人、保险人双方约定,并在保险单中载明。", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 256, + 683, + 732, + 707 + ], + "content": "每一被保险人的保险金额一经确定,在保险期间内不得变更。", + "order": 19 + }, + { + "category": "section-header", + "bbox": [ + 147, + 707, + 323, + 732 + ], + "content": "# 3 保险金申请", + "order": 20 + }, + { + "category": "text", + "bbox": [ + 226, + 732, + 844, + 892 + ], + "content": "保险金申请人(见释义)向保险人申请给付保险金时,应填写保险金给付申请书,并提交以下材料。保险金申请人因特殊原因不能提供以下材料的,应提供其它合法有效的材料。若保险金申请人委托他人申请的,还应提供授权委托书原件、委托人和受托人的身份证明等相关证明文件。保险人按照本保险合同的约定,认为有关的证明和资料不完整的,应当及时一次性通知保险金申请人补充提供。保险金申请人未能提供有关材料,导致保险人无法核实该申请的真实性的,保险人对无法核实部分不承担给付保险金的责任。", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 267, + 893, + 469, + 915 + ], + "content": "(1) 保险金给付申请书;", + "order": 22 + }, + { + "category": "text", + "bbox": [ + 267, + 915, + 383, + 938 + ], + "content": "(2) 保险单;", + "order": 23 + }, + { + "category": "text", + "bbox": [ + 267, + 938, + 594, + 957 + ], + "content": "(3) 保险金申请人、被保险人身份证明;", + "order": 24 + }, + { + "category": "text", + "bbox": [ + 267, + 959, + 844, + 1004 + ], + "content": "(4) 指定医疗机构出具的医疗费用发票/收据、费用明细清单/帐、病历、出院小结、诊断证明及其他医疗记录等;", + "order": 25 + }, + { + "category": "text", + "bbox": [ + 270, + 1004, + 849, + 1095 + ], + "content": "(5) 对于已经从社会基本医疗保险、公费医疗和任何第三方(包括任何商业医疗保险)获得相关医疗费用补偿的,应提供社会基本医疗保险机构、商业保险机构或其他第三方的医疗费用分割单或医疗费用结算证明;", + "order": 26 + }, + { + "category": "text", + "bbox": [ + 268, + 1094, + 850, + 1143 + ], + "content": "(6) 保险金申请人所能提供的与确认保险事故的性质、原因、损失程度等有关的其他证明和资料。", + "order": 27 + }, + { + "category": "section-header", + "bbox": [ + 147, + 1142, + 267, + 1167 + ], + "content": "# 4 释义", + "order": 28 + }, + { + "category": "section-header", + "bbox": [ + 145, + 1168, + 300, + 1193 + ], + "content": "## 4.1 被保资格", + "order": 29 + }, + { + "category": "text", + "bbox": [ + 223, + 1194, + 850, + 1288 + ], + "content": "无论本附加险合同为首次投保、续保还是非续保的,被保险人获得被保资格的日期均以以下两者中较晚的日期为准:(1)本附加险合同的保险期间起始日;(2)本附加险合同项下增加该被保险人批单所载生效日,有多张批单增加该被保险人的,以最晚批单所载生效日为准。", + "order": 30 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/9619c6bb-1e64-4e72-b840-e7a44abd3da5.json b/track1_finixdigital_242_insurance_terms/jsons/9619c6bb-1e64-4e72-b840-e7a44abd3da5.json new file mode 100644 index 0000000000000000000000000000000000000000..c27459f17c5a7eb2b364f42569e9d2582b2724f4 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/9619c6bb-1e64-4e72-b840-e7a44abd3da5.json @@ -0,0 +1,241 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 910, + 144, + 1074, + 170 + ], + "content": "JR/T 0083-2013", + "order": 1 + }, + { + "category": "title", + "bbox": [ + 556, + 196, + 658, + 222 + ], + "content": "# 附录 A", + "order": 2 + }, + { + "category": "title", + "bbox": [ + 546, + 232, + 676, + 257 + ], + "content": "# (规范性附录)", + "order": 3 + }, + { + "category": "title", + "bbox": [ + 476, + 267, + 777, + 294 + ], + "content": "# 人身保险伤残评定标准编码规则", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 137, + 341, + 248, + 367 + ], + "content": "# 6. 概述", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 137, + 401, + 1078, + 542 + ], + "content": "人身保险伤残评定标准采用世界卫生组织《国际功能、残疾和健康分类》(以下简称“ICF”)的有关功能和残疾的分类理论与方法,建立编码原则,对“神经系统的结构和精神功能”、“眼,耳和有关的结构和功能”、“发声和言语的结构和功能”、“心血管,免疫和呼吸系统的结构和功能”、“消化、代谢和内分泌系统有关的结构和功能”、“泌尿和生殖系统有关的结构和功能”、神经肌肉骨骼和运动有关的结构和功能”和“皮肤和有关的结构和功能”8 大类281 项人身保险伤残条目进行编码。", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 137, + 573, + 370, + 600 + ], + "content": "# 7. 字母和数字的含义", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 178, + 634, + 1074, + 662 + ], + "content": "人身保险伤残评定标准主要包括两个成份:身体功能和身体结构,在每种成份的编码前均指定一个首字母。", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 178, + 664, + 382, + 689 + ], + "content": "1. b 用于身体功能", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 178, + 695, + 382, + 722 + ], + "content": "2. s 用于身体结构", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 138, + 727, + 1116, + 785 + ], + "content": "紧跟字母 b 和 s 是编码数字,开始是章数(1 位数字),接着是二级水平(2 位数字)、第三和四级水平(各为 1 位数字)。如下例所示:", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 178, + 795, + 683, + 823 + ], + "content": "s7 与运动相关的结构 (1级水平类目)", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 178, + 832, + 683, + 860 + ], + "content": "s730 上肢的结构 (2级水平类目)", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 178, + 872, + 683, + 898 + ], + "content": "s7302 手的结构 (3级水平类目)", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 178, + 910, + 684, + 938 + ], + "content": "s73001 上臂的关节 (4级水平类目)", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 139, + 941, + 1076, + 996 + ], + "content": "根据人身保险伤残评定标准中伤残条目的需要,可以应用任何级别的编码数字。任何个体在每一水平上可以有不止一种编码,它们可以是相互独立的或是彼此间相互联系的。", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 134, + 1027, + 340, + 1056 + ], + "content": "# 8. 分类级别的含义", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 134, + 1087, + 1077, + 1175 + ], + "content": "人身保险伤残评定标准按照 ICF 分为 8 个大类,每个大类分为身体结构一级分类和身体功能一级分类,在身体结构或身体功能的一级分类下又分为二级或三级或四级小类。人身保险伤残评定标准中涉及ICF 的具体内容如表A1。", + "order": 18 + }, + { + "category": "caption", + "bbox": [ + 598, + 1205, + 653, + 1232 + ], + "content": "表 A1", + "order": 19 + }, + { + "category": "table", + "bbox": [ + 126, + 1229, + 1091, + 1393 + ], + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
身体结构身体功能
大类一级分类二级或三级或四级分类一级分类二级或三级或四级分类
神经系统的结构和精神功能s1 神经系统的结构s110 脑的结构b1 精神功能b110 意识功能
b117 智力功能
b167 语言精神功能
b198 其他特指的精神功能
", + "order": 20 + }, + { + "category": "page-footer", + "bbox": [ + 1030, + 1558, + 1056, + 1583 + ], + "content": "19", + "order": 21 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/997a4077-01e2-42b4-8a38-925860c7b5d4.json b/track1_finixdigital_242_insurance_terms/jsons/997a4077-01e2-42b4-8a38-925860c7b5d4.json new file mode 100644 index 0000000000000000000000000000000000000000..59d175e65499616bd082722d4a1c37a8ec73bb87 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/997a4077-01e2-42b4-8a38-925860c7b5d4.json @@ -0,0 +1,1439 @@ +{ + "resized_height": 8384, + "resized_width": 736, + "width": 750, + "height": 8379, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 35, + 62, + 597, + 114 + ], + "content": "# 房子是家的承载 大小风险不容忽视", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 100, + 180, + 223, + 223 + ], + "content": "火灾暴雨", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 511, + 177, + 634, + 222 + ], + "content": "宠物伤人", + "order": 3 + }, + { + "category": "figure", + "bbox": [ + 247, + 212, + 485, + 449 + ], + "order": 4 + }, + { + "category": "text", + "bbox": [ + 48, + 286, + 186, + 373 + ], + "content": "窗户玻璃意外破裂", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 556, + 282, + 686, + 370 + ], + "content": "水暖管爆裂", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 102, + 423, + 225, + 470 + ], + "content": "入室抢劫", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 515, + 425, + 636, + 471 + ], + "content": "用电安全", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 31, + 584, + 691, + 637 + ], + "content": "# 家财险·家庭综合保障险 全方位守护爱家", + "order": 9 + }, + { + "category": "table", + "bbox": [ + 37, + 688, + 697, + 1073 + ], + "content": "
保障内容普通家财险家财险·家庭综合保障险
保额30-300万最高800万
玻璃意外破裂
资金账户安全
贵重物品盗抢
不保
增值服务洗衣鞋/洗家电/包维修
", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 33, + 1151, + 310, + 1208 + ], + "content": "# 房屋大风险保障", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 33, + 1209, + 499, + 1254 + ], + "content": "保各类天灾人祸造成的房屋财产损失", + "order": 12 + }, + { + "category": "figure", + "bbox": [ + 61, + 1290, + 239, + 1442 + ], + "order": 13 + }, + { + "category": "text", + "bbox": [ + 54, + 1462, + 244, + 1548 + ], + "content": "保房屋主体及室内附属设备", + "order": 14 + }, + { + "category": "figure", + "bbox": [ + 280, + 1292, + 463, + 1445 + ], + "order": 15 + }, + { + "category": "text", + "bbox": [ + 288, + 1467, + 454, + 1510 + ], + "content": "保室内装潢", + "order": 16 + }, + { + "category": "figure", + "bbox": [ + 511, + 1298, + 674, + 1448 + ], + "order": 17 + }, + { + "category": "text", + "bbox": [ + 521, + 1464, + 674, + 1509 + ], + "content": "保室内财产", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 156, + 1602, + 246, + 1655 + ], + "content": "天灾", + "order": 19 + }, + { + "category": "figure", + "bbox": [ + 140, + 1691, + 189, + 1746 + ], + "order": 20 + }, + { + "category": "text", + "bbox": [ + 194, + 1691, + 268, + 1739 + ], + "content": "暴雨", + "order": 21 + }, + { + "category": "figure", + "bbox": [ + 142, + 1739, + 192, + 1789 + ], + "order": 22 + }, + { + "category": "text", + "bbox": [ + 193, + 1742, + 264, + 1785 + ], + "content": "台风", + "order": 23 + }, + { + "category": "figure", + "bbox": [ + 140, + 1788, + 194, + 1834 + ], + "order": 24 + }, + { + "category": "text", + "bbox": [ + 192, + 1784, + 265, + 1831 + ], + "content": "冰雹", + "order": 25 + }, + { + "category": "figure", + "bbox": [ + 142, + 1829, + 190, + 1878 + ], + "order": 26 + }, + { + "category": "text", + "bbox": [ + 194, + 1832, + 266, + 1877 + ], + "content": "火灾", + "order": 27 + }, + { + "category": "text", + "bbox": [ + 170, + 1896, + 237, + 1919 + ], + "content": "......", + "order": 28 + }, + { + "category": "text", + "bbox": [ + 491, + 1604, + 580, + 1660 + ], + "content": "人祸", + "order": 29 + }, + { + "category": "figure", + "bbox": [ + 435, + 1693, + 480, + 1741 + ], + "order": 30 + }, + { + "category": "text", + "bbox": [ + 479, + 1694, + 611, + 1738 + ], + "content": "燃气意外", + "order": 31 + }, + { + "category": "figure", + "bbox": [ + 436, + 1739, + 483, + 1786 + ], + "order": 32 + }, + { + "category": "text", + "bbox": [ + 486, + 1741, + 613, + 1789 + ], + "content": "用电安全", + "order": 33 + }, + { + "category": "figure", + "bbox": [ + 434, + 1787, + 484, + 1831 + ], + "order": 34 + }, + { + "category": "text", + "bbox": [ + 487, + 1789, + 612, + 1832 + ], + "content": "高空坠物", + "order": 35 + }, + { + "category": "figure", + "bbox": [ + 434, + 1832, + 484, + 1882 + ], + "order": 36 + }, + { + "category": "text", + "bbox": [ + 484, + 1831, + 665, + 1877 + ], + "content": "飞行物体坠落", + "order": 37 + }, + { + "category": "text", + "bbox": [ + 503, + 1894, + 567, + 1922 + ], + "content": "......", + "order": 38 + }, + { + "category": "section-header", + "bbox": [ + 33, + 2029, + 346, + 2086 + ], + "content": "# 居家高发风险保障", + "order": 39 + }, + { + "category": "figure", + "bbox": [ + 64, + 2129, + 136, + 2198 + ], + "order": 40 + }, + { + "category": "text", + "bbox": [ + 133, + 2142, + 373, + 2187 + ], + "content": "水暖管爆裂漏水", + "order": 41 + }, + { + "category": "text", + "bbox": [ + 64, + 2203, + 138, + 2246 + ], + "content": "事故", + "order": 42 + }, + { + "category": "text", + "bbox": [ + 136, + 2203, + 649, + 2247 + ], + "content": "气温、高压、外力撞击等导致水暖管破裂", + "order": 43 + }, + { + "category": "text", + "bbox": [ + 63, + 2249, + 136, + 2295 + ], + "content": "赔偿", + "order": 44 + }, + { + "category": "text", + "bbox": [ + 137, + 2253, + 647, + 2292 + ], + "content": "被保房屋内管道维修费用以及直接财产损失", + "order": 45 + }, + { + "category": "text", + "bbox": [ + 77, + 2336, + 562, + 2378 + ], + "content": "突出点:自家邻家公共水暖管爆裂都能赔", + "order": 46 + }, + { + "category": "figure", + "bbox": [ + 74, + 2458, + 131, + 2507 + ], + "order": 47 + }, + { + "category": "text", + "bbox": [ + 132, + 2460, + 404, + 2506 + ], + "content": "窗户玻璃意外破损", + "order": 48 + }, + { + "category": "text", + "bbox": [ + 70, + 2516, + 130, + 2564 + ], + "content": "事故", + "order": 49 + }, + { + "category": "text", + "bbox": [ + 139, + 2516, + 673, + 2567 + ], + "content": "气温、高空坠物等原因导致窗户玻璃意外破裂", + "order": 50 + }, + { + "category": "text", + "bbox": [ + 67, + 2573, + 133, + 2614 + ], + "content": "赔偿", + "order": 51 + }, + { + "category": "text", + "bbox": [ + 133, + 2574, + 639, + 2620 + ], + "content": "玻璃维修费用或者置换费用(扣除折旧、残值)", + "order": 52 + }, + { + "category": "text", + "bbox": [ + 75, + 2645, + 659, + 2695 + ], + "content": "突出点:普通玻璃、钢化玻璃、夹层玻璃等都能赔", + "order": 53 + }, + { + "category": "footnote", + "bbox": [ + 57, + 2719, + 687, + 2760 + ], + "content": "*本保险玻璃破碎损失责任在投保成功后的第30日零时生效", + "order": 54 + }, + { + "category": "figure", + "bbox": [ + 78, + 2820, + 130, + 2876 + ], + "order": 55 + }, + { + "category": "text", + "bbox": [ + 130, + 2820, + 403, + 2871 + ], + "content": "家用电器用电安全", + "order": 56 + }, + { + "category": "text", + "bbox": [ + 67, + 2879, + 139, + 2931 + ], + "content": "事故", + "order": 57 + }, + { + "category": "text", + "bbox": [ + 140, + 2882, + 668, + 2964 + ], + "content": "供电线路遭受意外、供电部门故障等导致被保险房屋家用电器直接损毁", + "order": 58 + }, + { + "category": "text", + "bbox": [ + 64, + 2971, + 136, + 3019 + ], + "content": "赔偿", + "order": 59 + }, + { + "category": "text", + "bbox": [ + 139, + 2980, + 682, + 3060 + ], + "content": "家用电器维修或置换费用(含屋外空调器、太阳能、热水器等室外设备)", + "order": 60 + }, + { + "category": "text", + "bbox": [ + 73, + 3080, + 646, + 3123 + ], + "content": "突出点:空调、冰箱、洗衣机、电视机等都能赔", + "order": 61 + }, + { + "category": "figure", + "bbox": [ + 71, + 3194, + 128, + 3252 + ], + "order": 62 + }, + { + "category": "text", + "bbox": [ + 129, + 3194, + 340, + 3243 + ], + "content": "邻里误伤误损", + "order": 63 + }, + { + "category": "text", + "bbox": [ + 70, + 3253, + 132, + 3296 + ], + "content": "事故", + "order": 64 + }, + { + "category": "text", + "bbox": [ + 135, + 3250, + 665, + 3335 + ], + "content": "火灾爆炸、高空坠物、宠物责任等原因导致第三者人身伤亡或财产损失", + "order": 65 + }, + { + "category": "text", + "bbox": [ + 69, + 3343, + 135, + 3388 + ], + "content": "赔偿", + "order": 66 + }, + { + "category": "text", + "bbox": [ + 137, + 3344, + 671, + 3388 + ], + "content": "第三者人身伤亡及医疗费用、第三者财产损失", + "order": 67 + }, + { + "category": "figure", + "bbox": [ + 90, + 3407, + 209, + 3492 + ], + "order": 68 + }, + { + "category": "text", + "bbox": [ + 92, + 3493, + 202, + 3541 + ], + "content": "高空坠物", + "order": 69 + }, + { + "category": "figure", + "bbox": [ + 233, + 3406, + 360, + 3489 + ], + "order": 70 + }, + { + "category": "text", + "bbox": [ + 232, + 3490, + 359, + 3533 + ], + "content": "宠物伤人", + "order": 71 + }, + { + "category": "figure", + "bbox": [ + 379, + 3399, + 504, + 3495 + ], + "order": 72 + }, + { + "category": "text", + "bbox": [ + 384, + 3496, + 502, + 3536 + ], + "content": "火灾爆炸", + "order": 73 + }, + { + "category": "figure", + "bbox": [ + 529, + 3400, + 649, + 3491 + ], + "order": 74 + }, + { + "category": "text", + "bbox": [ + 530, + 3490, + 644, + 3537 + ], + "content": "水管破裂", + "order": 75 + }, + { + "category": "section-header", + "bbox": [ + 38, + 3641, + 341, + 3691 + ], + "content": "# 财产资金安全保障", + "order": 76 + }, + { + "category": "text", + "bbox": [ + 30, + 3697, + 448, + 3745 + ], + "content": "保入室盗抢、资金账户盗刷盗用", + "order": 77 + }, + { + "category": "figure", + "bbox": [ + 93, + 3773, + 324, + 3990 + ], + "order": 78 + }, + { + "category": "text", + "bbox": [ + 118, + 4058, + 287, + 4127 + ], + "content": "入室盗抢", + "order": 79 + }, + { + "category": "text", + "bbox": [ + 137, + 4145, + 277, + 4196 + ], + "content": "手机/ipad", + "order": 80 + }, + { + "category": "text", + "bbox": [ + 131, + 4193, + 278, + 4243 + ], + "content": "现金/金银", + "order": 81 + }, + { + "category": "text", + "bbox": [ + 136, + 4242, + 274, + 4285 + ], + "content": "珠宝首饰", + "order": 82 + }, + { + "category": "text", + "bbox": [ + 164, + 4285, + 243, + 4333 + ], + "content": "手表", + "order": 83 + }, + { + "category": "text", + "bbox": [ + 164, + 4349, + 242, + 4377 + ], + "content": "......", + "order": 84 + }, + { + "category": "figure", + "bbox": [ + 423, + 3775, + 643, + 3982 + ], + "order": 85 + }, + { + "category": "text", + "bbox": [ + 415, + 4056, + 649, + 4109 + ], + "content": "资金账户盗用", + "order": 86 + }, + { + "category": "text", + "bbox": [ + 476, + 4151, + 588, + 4195 + ], + "content": "银行卡", + "order": 87 + }, + { + "category": "text", + "bbox": [ + 480, + 4193, + 590, + 4240 + ], + "content": "信用卡", + "order": 88 + }, + { + "category": "text", + "bbox": [ + 487, + 4240, + 579, + 4286 + ], + "content": "存折", + "order": 89 + }, + { + "category": "text", + "bbox": [ + 407, + 4286, + 653, + 4335 + ], + "content": "支付宝、微信钱包", + "order": 90 + }, + { + "category": "text", + "bbox": [ + 494, + 4350, + 569, + 4378 + ], + "content": "......", + "order": 91 + }, + { + "category": "section-header", + "bbox": [ + 36, + 4486, + 556, + 4537 + ], + "content": "# 享有超值到家服务,家家用得上", + "order": 92 + }, + { + "category": "text", + "bbox": [ + 31, + 4536, + 286, + 4571 + ], + "content": "(付费版生效后可使用)", + "order": 93 + }, + { + "category": "text", + "bbox": [ + 36, + 4575, + 433, + 4618 + ], + "content": "在线预约使用 24小时客服热线", + "order": 94 + }, + { + "category": "text", + "bbox": [ + 71, + 4679, + 227, + 4731 + ], + "content": "衣鞋送洗", + "order": 95 + }, + { + "category": "text", + "bbox": [ + 96, + 4763, + 208, + 4811 + ], + "content": "羽绒服", + "order": 96 + }, + { + "category": "text", + "bbox": [ + 89, + 4812, + 215, + 4856 + ], + "content": "羊毛衣", + "order": 97 + }, + { + "category": "text", + "bbox": [ + 89, + 4860, + 217, + 4904 + ], + "content": "呢子衣", + "order": 98 + }, + { + "category": "text", + "bbox": [ + 107, + 4904, + 200, + 4951 + ], + "content": "西装", + "order": 99 + }, + { + "category": "text", + "bbox": [ + 98, + 4948, + 200, + 4997 + ], + "content": "运动鞋", + "order": 100 + }, + { + "category": "text", + "bbox": [ + 58, + 4999, + 250, + 5045 + ], + "content": "顺丰上门取送", + "order": 101 + }, + { + "category": "text", + "bbox": [ + 287, + 4675, + 450, + 4735 + ], + "content": "家电清洗", + "order": 102 + }, + { + "category": "text", + "bbox": [ + 323, + 4764, + 408, + 4810 + ], + "content": "空调", + "order": 103 + }, + { + "category": "text", + "bbox": [ + 322, + 4804, + 408, + 4857 + ], + "content": "冰箱", + "order": 104 + }, + { + "category": "text", + "bbox": [ + 315, + 4861, + 420, + 4903 + ], + "content": "洗衣机", + "order": 105 + }, + { + "category": "text", + "bbox": [ + 310, + 4906, + 422, + 4950 + ], + "content": "油烟机", + "order": 106 + }, + { + "category": "text", + "bbox": [ + 310, + 4950, + 420, + 4995 + ], + "content": "燃气灶", + "order": 107 + }, + { + "category": "text", + "bbox": [ + 311, + 4999, + 425, + 5047 + ], + "content": "热水器", + "order": 108 + }, + { + "category": "text", + "bbox": [ + 507, + 4680, + 663, + 4735 + ], + "content": "家庭维修", + "order": 109 + }, + { + "category": "text", + "bbox": [ + 536, + 4764, + 638, + 4809 + ], + "content": "电视机", + "order": 110 + }, + { + "category": "text", + "bbox": [ + 547, + 4813, + 624, + 4859 + ], + "content": "空调", + "order": 111 + }, + { + "category": "text", + "bbox": [ + 535, + 4858, + 637, + 4906 + ], + "content": "洗衣机", + "order": 112 + }, + { + "category": "text", + "bbox": [ + 541, + 4903, + 627, + 4951 + ], + "content": "冰箱", + "order": 113 + }, + { + "category": "text", + "bbox": [ + 540, + 4954, + 628, + 4997 + ], + "content": "灯具", + "order": 114 + }, + { + "category": "text", + "bbox": [ + 518, + 4999, + 658, + 5039 + ], + "content": "管道疏通", + "order": 115 + }, + { + "category": "text", + "bbox": [ + 35, + 5143, + 123, + 5244 + ], + "content": "使用流程", + "order": 116 + }, + { + "category": "figure", + "bbox": [ + 122, + 5119, + 683, + 5210 + ], + "order": 117 + }, + { + "category": "text", + "bbox": [ + 123, + 5219, + 256, + 5258 + ], + "content": "1.查看保单", + "order": 118 + }, + { + "category": "text", + "bbox": [ + 266, + 5221, + 401, + 5259 + ], + "content": "2.在线预约", + "order": 119 + }, + { + "category": "text", + "bbox": [ + 410, + 5217, + 538, + 5259 + ], + "content": "3.上门服务", + "order": 120 + }, + { + "category": "text", + "bbox": [ + 542, + 5217, + 699, + 5263 + ], + "content": "4.完成及评价", + "order": 121 + }, + { + "category": "footnote", + "bbox": [ + 33, + 5295, + 683, + 5367 + ], + "content": "1.家庭财产服务须在付费版保单生效后方可申请使用,服务有效期同保单有效期。", + "order": 122 + }, + { + "category": "footnote", + "bbox": [ + 41, + 5367, + 591, + 5407 + ], + "content": "2.家庭财产服务仅限在被保险人名下的住宅内使用。", + "order": 123 + }, + { + "category": "footnote", + "bbox": [ + 39, + 5406, + 525, + 5441 + ], + "content": "3.使用前请确认本人名下房产符合承保条件。", + "order": 124 + }, + { + "category": "footnote", + "bbox": [ + 38, + 5441, + 657, + 5477 + ], + "content": "4.具体服务项目及次数以投保时所选计划及保单载明为准。", + "order": 125 + }, + { + "category": "footnote", + "bbox": [ + 39, + 5477, + 614, + 5517 + ], + "content": "5.使用增值服务后,视为同意付费版保单不进行退保。", + "order": 126 + }, + { + "category": "section-header", + "bbox": [ + 30, + 5597, + 201, + 5654 + ], + "content": "# 保障方案", + "order": 127 + }, + { + "category": "table", + "bbox": [ + 38, + 5675, + 700, + 7861 + ], + "content": "
赠险体验期30天
商险保障期1年
保险责任保险金额(元)
因火灾、爆炸、暴雨、台风等原因导致的房屋主体及附属设备损失500万
室内装潢损失20万
室内财产20万
免赔额300元或损失金额10%取高
财产资金安全室内财产盗抢损失(含现金、手表、金银、珠宝及首饰)1万
免赔额为300元或损失金额10%取高
个人账户资金损失5万
免赔额为300元
居家高发风险保障玻璃意外破碎损失1000元
免赔额为300元或损失金额10%取高
水暖管爆裂损失1万
免赔额为300元或损失金额10%取高
家用电器用电安全1万
免赔额为300元或损失金额10%取高
居家三者责任人身伤亡10万
医疗费用仅承担社保内部分,免赔额300元,赔付比例90%
居家三者责任财产损失3万
免赔额为300元或损失金额10%取高
家庭财产服务(付费版生效后可使用)衣鞋送洗3件
家电清洗1台
维修疏通1次
商险保险费一次性交清318元
月缴26.5元/月
", + "order": 128 + }, + { + "category": "footnote", + "bbox": [ + 56, + 7867, + 109, + 7899 + ], + "content": "注:", + "order": 129 + }, + { + "category": "footnote", + "bbox": [ + 56, + 7903, + 676, + 8012 + ], + "content": "1.本产品承保的室内财产盗抢损失,其中便携式设备的赔付限额为该项责任保额*20%,现金、手表、金银、珠宝及首饰的赔付限额为该项责任保额*10%;", + "order": 130 + }, + { + "category": "footnote", + "bbox": [ + 59, + 8013, + 670, + 8157 + ], + "content": "2.本产品承保的玻璃意外破碎损失,仅保障被保险房屋窗户玻璃,不包含淋浴房玻璃、温室玻璃、阳光房玻璃、家具家电玻璃、玻璃用品、镜子以及其他装饰性玻璃。本项责任仅赔付投保成功后的第30日以后出险的事故。", + "order": 131 + }, + { + "category": "footnote", + "bbox": [ + 61, + 8155, + 669, + 8303 + ], + "content": "3.本产品适用条款为《国泰财产保险有限责任公司家庭财产保险(B款)》(注册号:C00013332112023071306231),相关附加险使用条款详见投保须知。具体保障责任根据您购买时产品计划为准。", + "order": 132 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/9c281a1e-da8c-4405-9c04-ec8271d34747.json b/track1_finixdigital_242_insurance_terms/jsons/9c281a1e-da8c-4405-9c04-ec8271d34747.json new file mode 100644 index 0000000000000000000000000000000000000000..73157981e203bf93cecb293ae71a32ec6c2a9f5b --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/9c281a1e-da8c-4405-9c04-ec8271d34747.json @@ -0,0 +1,317 @@ +{ + "resized_height": 6624, + "resized_width": 1504, + "width": 1500, + "height": 6630, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "title", + "bbox": [ + 32, + 94, + 1468, + 195 + ], + "content": "# 太平鑫多多2.0两全保险(互联网专属)条款", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 368, + 329, + 1113, + 404 + ], + "content": "太平人寿[2025]两全保险034号", + "order": 2 + }, + { + "category": "figure", + "bbox": [ + 507, + 475, + 1003, + 961 + ], + "order": 3 + }, + { + "category": "text", + "bbox": [ + 473, + 1021, + 1012, + 1097 + ], + "content": "请扫描以查询验证条款", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 83, + 1202, + 1379, + 1408 + ], + "content": "# 1 您(投保人)与我们(太平人寿保险有限公司)的合同", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 75, + 1523, + 551, + 1605 + ], + "content": "## 第一条 合同构成", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 84, + 1646, + 1408, + 1985 + ], + "content": "太平鑫多多2.0两全保险(互联网专属)合同(以下简称本合同)由本保险条款、保险单或其他保险凭证、投保单、与本合同有关的投保文件、声明、批注、批单以及与本合同有关的其他书面材料共同构成。", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 80, + 2043, + 554, + 2129 + ], + "content": "## 第二条 投保范围", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 85, + 2167, + 1382, + 2417 + ], + "content": "本合同接受的被保险人的投保年龄范围为0周岁(释义一)(须出生满28日)至65周岁,且须符合投保当时我们的规定。", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 79, + 2479, + 729, + 2563 + ], + "content": "## 第三条 合同成立与生效", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 84, + 2604, + 1414, + 2769 + ], + "content": "您提出保险申请且我们同意承保,本合同成立。本合同成立日期在保险单上载明。", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 83, + 2821, + 1363, + 3072 + ], + "content": "本合同生效日期在保险单上载明。保单周年日(释义二)、保单年度(释义三)、保险费约定支付日(释义四)均以该日期计算。", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 81, + 3128, + 1414, + 3297 + ], + "content": "除另有约定外,我们自本合同生效日零时开始承担保险责任。", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 80, + 3352, + 554, + 3436 + ], + "content": "## 第四条 保险期间", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 79, + 3479, + 1331, + 3557 + ], + "content": "本合同的保险期间分为固定年期型与岁满型两种类型。", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 82, + 3613, + 1411, + 4284 + ], + "content": "保险期间类型为固定年期型的,本合同的保险期间自本合同生效日零时起算,分为11年、15年、20年和30年四种。保险期间类型为岁满型的,若被保险人为女性,则本合同的保险期间自本合同生效日零时起算,至被保险人年满55周岁后的首个保单周年日零时止;若被保险人为男性,则本合同的保险期间自本合同生效日零时起算,至被保险人年满60周岁后的首个保单周年日零时止。保险期间由您在投保时与我们约定,并在保险单上载明。", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 85, + 4330, + 909, + 4436 + ], + "content": "# 2 我们提供哪些保障利益", + "order": 17 + }, + { + "category": "section-header", + "bbox": [ + 82, + 4545, + 671, + 4631 + ], + "content": "## 第五条 基本保险金额", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 87, + 4674, + 1410, + 4919 + ], + "content": "本合同的基本保险金额在投保时由您和我们约定,并在保险单或批注上列明。如果该金额发生变更,则以变更后的金额为基本保险金额。", + "order": 19 + }, + { + "category": "section-header", + "bbox": [ + 80, + 4983, + 550, + 5070 + ], + "content": "## 第六条 保险责任", + "order": 20 + }, + { + "category": "text", + "bbox": [ + 84, + 5112, + 1412, + 5271 + ], + "content": "在本合同保险期间内且本合同有效,我们按照下列约定承担给付相应保险金的责任:", + "order": 21 + }, + { + "category": "section-header", + "bbox": [ + 82, + 5329, + 483, + 5406 + ], + "content": "### 一、满期保险金", + "order": 22 + }, + { + "category": "text", + "bbox": [ + 83, + 5465, + 1413, + 5711 + ], + "content": "如果被保险人在本合同期满日(释义五)零时生存,我们按本合同期满时的基本保险金额给付满期保险金,本合同终止。", + "order": 23 + }, + { + "category": "section-header", + "bbox": [ + 85, + 5770, + 476, + 5845 + ], + "content": "### 二、身故保险金", + "order": 24 + }, + { + "category": "text", + "bbox": [ + 81, + 5907, + 1413, + 6065 + ], + "content": "如果被保险人身故,我们按以下方式给付身故保险金,本合同终止。", + "order": 25 + }, + { + "category": "text", + "bbox": [ + 77, + 6124, + 1411, + 6286 + ], + "content": "1. 如果被保险人身故时未满18周岁,我们按被保险人身故时以下两项金额中的较大者给付身故保险金:", + "order": 26 + }, + { + "category": "text", + "bbox": [ + 118, + 6344, + 519, + 6425 + ], + "content": "(1) 已交保险费;", + "order": 27 + }, + { + "category": "text", + "bbox": [ + 117, + 6476, + 953, + 6562 + ], + "content": "(2) 本合同的现金价值(释义六)。", + "order": 28 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/9c3c72c1-58ac-45dc-a512-89278f823fa9.json b/track1_finixdigital_242_insurance_terms/jsons/9c3c72c1-58ac-45dc-a512-89278f823fa9.json new file mode 100644 index 0000000000000000000000000000000000000000..d4394de6ac679666911858e2844f524d03239549 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/9c3c72c1-58ac-45dc-a512-89278f823fa9.json @@ -0,0 +1,196 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 906, + 140, + 1078, + 172 + ], + "content": "JR/T 0083-2013", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 148, + 189, + 637, + 219 + ], + "content": "例如某人的智力缺损可以编码为 b117 “智力功能”。", + "order": 2 + }, + { + "category": "caption", + "bbox": [ + 563, + 223, + 632, + 252 + ], + "content": "图 A1", + "order": 3 + }, + { + "category": "figure", + "bbox": [ + 195, + 334, + 407, + 456 + ], + "order": 4 + }, + { + "category": "text", + "bbox": [ + 444, + 327, + 635, + 356 + ], + "content": "损伤范围(一级限定值)", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 442, + 364, + 704, + 394 + ], + "content": "损伤的程度或部位(二级限定值)", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 144, + 421, + 195, + 449 + ], + "content": "b117.", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 153, + 521, + 489, + 554 + ], + "content": "身体功能限定值的具体说明如表 A2。", + "order": 8 + }, + { + "category": "caption", + "bbox": [ + 566, + 556, + 632, + 582 + ], + "content": "表 A2", + "order": 9 + }, + { + "category": "table", + "bbox": [ + 94, + 582, + 1059, + 1031 + ], + "content": "\n\n\n\n\n\n\n\n\n
一级限定值
\n损伤的范围
二级限定值
\n损伤的程度或部位
0 没有损伤(0-4%)
\n1 轻度损伤(5-24%)
\n2 中度损伤(25-49%)
\n3 重度损伤(50-95%)
\n4 完全损伤(96-100%)

\n8 未特指
\n9 不适用
损伤的程度
\n空位
\nZ
\nY
\nX
\nW
\n....
\n注:损伤的程度针对同一损伤的范围,按照英文字母倒序,程度逐渐加重。

\n损伤的部位
\n1 右侧
\n2 左侧
\n3 双侧
\n1/2 特指一侧(右侧或左侧)
\n2/1 特指另一侧(右侧或左侧)
", + "order": 10 + }, + { + "category": "caption", + "bbox": [ + 103, + 1042, + 1006, + 1105 + ], + "content": "表注:使用二级限定值,如果同时存在损伤的程度和损伤的部位,先编码损伤的程度,再编码损伤的部位。例如:b210.1X3 双眼低视力大于等于 1 级 (1X- 程度;3- 双侧)。", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 107, + 1121, + 456, + 1152 + ], + "content": "#### A. 4. 1. 2 身体功能一级限定值的使用", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 105, + 1169, + 1053, + 1296 + ], + "content": "一旦出现损伤,身体功能损伤或障碍的范围或程度,就可以使用通用的限定值进行量化。例如:s76000.250/ s76002.250, s76000.240/ s76002.240;b710.2 \n脊柱骨折脱位导致颈椎或腰椎畸形愈合,且颈部或腰部活动度丧失大于等于25%(达到中度障碍“2” : 5-24%)", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 105, + 1298, + 1002, + 1388 + ], + "content": "s76000.250/ s76002.250, s76000.240/ s76002.240;b710.3 \n脊柱骨折脱位导致颈椎或腰椎畸形愈合,且颈部或腰部活动度丧失大于等于50%(达到 重度障碍“3” : 50-95%)", + "order": 14 + }, + { + "category": "section-header", + "bbox": [ + 105, + 1402, + 461, + 1436 + ], + "content": "#### A. 4. 1. 3 身体功能二级限定值的使用", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 107, + 1452, + 1061, + 1549 + ], + "content": "身体功能二级限定值是在 ICF 身体功能一级限定值的基础上,人身保险伤残评定标准自定义扩展的内容。在身体功能一级限定值说明不充分的情况下,用二级限定值进一步细化说明损伤的程度或部位。具体规则和方法如下:", + "order": 16 + }, + { + "category": "page-footer", + "bbox": [ + 1028, + 1556, + 1055, + 1584 + ], + "content": "21", + "order": 17 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/9facb8b5-99d2-47e2-8748-65c44f459641.json b/track1_finixdigital_242_insurance_terms/jsons/9facb8b5-99d2-47e2-8748-65c44f459641.json new file mode 100644 index 0000000000000000000000000000000000000000..18f0a11a9ec49372a3340e9f902debeb5df812bc --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/9facb8b5-99d2-47e2-8748-65c44f459641.json @@ -0,0 +1,108 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "figure", + "bbox": [ + 787, + 105, + 860, + 165 + ], + "order": 1 + }, + { + "category": "text", + "bbox": [ + 873, + 108, + 1009, + 143 + ], + "content": "国泰产险", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 873, + 147, + 994, + 164 + ], + "content": "Cathay Insurance", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 176, + 182, + 995, + 530 + ], + "content": "因遭受食物中毒(见释义)在中华人民共和国境内(不包括香港、澳门及台湾地区)医院(见释义)进行门诊、急诊治疗的,对于被保险人在医院实际支出的、合理且必要(见释义)的门诊、急诊医疗费用,保险人在扣除被保险人已经从其他途径获得的补偿或给付部分及本附加险合同约定的免赔额后,在本附加险合同约定的保险金额范围内,按照约定的给付比例,负责给付食物中毒门诊急诊费用保险金。", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 175, + 554, + 999, + 842 + ], + "content": "附加未成年人责任保险条款(互联网A款):在本保险合同保险期间内,被保险人在中华人民共和国境内(不包含港澳台地区)因过失造成第三者人身伤亡或财产直接损失的,对依照中华人民共和国法律(不包括港澳台地区法律)应由被保险人监护人承担的经济赔偿责任,保险人根据本保险合同的约定负责赔偿。", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 175, + 872, + 997, + 1093 + ], + "content": "附加疾病身故保险条款(互联网A款):在本保险合同保险期间内,被保险人自保险期间开始之日起经过保险合同约定的等待期后罹患疾病,并在保险期间内因该疾病身故,保险人按本附加险合同项下的保险金额给付疾病身故保险金,对该被保险人的保险责任终止。", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 175, + 1120, + 1000, + 1408 + ], + "content": "重大疾病保险条款(互联网A款):在本保险合同保险期间内,被保险人经医院的专科医生初次确诊因意外伤害导致罹患本保险合同所定义的重大疾病(无论一种或者多种),或者在等待期后经医院的专科医生初次确诊非因意外伤害导致罹患本保险合同所定义的重大疾病(无论一种或者多种),则保险人按照本合同载明的重大疾病保险金额给付重大疾病保险金,本保险合同终止。", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 193, + 1438, + 413, + 1474 + ], + "content": "# 4、产品责任免除", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 242, + 1503, + 671, + 1537 + ], + "content": "## 个人意外伤害保险条款(互联网A款):", + "order": 9 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/a1d820e1-8f67-41f3-a558-b4fd640f0748.json b/track1_finixdigital_242_insurance_terms/jsons/a1d820e1-8f67-41f3-a558-b4fd640f0748.json new file mode 100644 index 0000000000000000000000000000000000000000..4dcf2be5792e7c6f7f836e795c87298392c7fc8e --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/a1d820e1-8f67-41f3-a558-b4fd640f0748.json @@ -0,0 +1,152 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "figure", + "bbox": [ + 787, + 104, + 862, + 164 + ], + "order": 1 + }, + { + "category": "text", + "bbox": [ + 874, + 108, + 1008, + 143 + ], + "content": "国泰产险", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 875, + 147, + 991, + 165 + ], + "content": "Cathay Insurance", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 176, + 181, + 1011, + 276 + ], + "content": "(4)旅行出发地、途经地或目的地突发暴动、公共交通工具承运人雇员罢工或其他临时性抗议活动、恶劣天气、自然灾害、流行疫病、恐怖主义行为。", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 173, + 303, + 1011, + 468 + ], + "content": "个人行李及随身物品损失:在保险期间内,被保险人在旅行期间,被保险人合法拥有的个人行李、行李中的个人物品及随身物品因遭受抢劫、盗窃或任何第三方的责任而遗失或损坏的,保险人有权选择如下方式进行赔偿:", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 175, + 491, + 1007, + 591 + ], + "content": "(1)货币赔偿:根据受损标的的实际损失,按照保险合同的约定,以支付保险金的方式赔偿;", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 191, + 620, + 851, + 654 + ], + "content": "(2)实物修复:保险人自行或委托他人修理修复受损保险标的;", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 190, + 681, + 709, + 718 + ], + "content": "(3)实物赔偿:保险人以实物替换受损保险标的。", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 172, + 746, + 1014, + 1034 + ], + "content": "银行卡盗刷:在保险期间内,被保险人在旅行期间由于其名下银行卡丢失或失窃而造成非授权人于下列情形非法使用该丢失或失窃的银行卡或该银行卡内的资料,保险人依据本保险合同约定,在扣除本保险合同约定的免赔额后,赔偿被保险人在该银行卡发行机构开立的账户项下直接因该非法使用所发生的如下损失,但最高赔偿金额以本保险合同所载明的保险金额为限:", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 189, + 1061, + 923, + 1095 + ], + "content": "(1)通过发行机构支付款项或从自动柜员机(ATM)提取现金或存款;", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 187, + 1123, + 754, + 1157 + ], + "content": "(2)购买或租用商品或服务,包括但不限于网上购物。", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 173, + 1187, + 1009, + 1284 + ], + "content": "被保险人须在发现银行卡遗失或失窃后立即挂失该银行卡,保险人仅承担被保险人挂失该遗失或失窃银行卡之前的四十八小时内发生的账款损失。", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 172, + 1308, + 1013, + 1539 + ], + "content": "营运交通工具意外身故/伤残:在保险期间内,被保险人乘坐交通工具的过程中,在该交通工具内遭受意外伤害导致身故或伤残,保险人依照约定给付保险金,但保险人对被保险人乘坐同一类别交通工具给付的各项保险金之和,以该类交通工具所对应的保险金额为限,一次或累计给付的保险金达到该类交通工具的保险金", + "order": 13 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/a4f96a6c-6a5c-47b3-8dbc-ed3305e9b0bf.json b/track1_finixdigital_242_insurance_terms/jsons/a4f96a6c-6a5c-47b3-8dbc-ed3305e9b0bf.json new file mode 100644 index 0000000000000000000000000000000000000000..a50769f9ae14166dd4ea72aca0027d15ef8f688f --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/a4f96a6c-6a5c-47b3-8dbc-ed3305e9b0bf.json @@ -0,0 +1,197 @@ +{ + "resized_height": 1408, + "resized_width": 992, + "width": 993, + "height": 1404, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 96, + 146, + 246, + 173 + ], + "content": "## (二) 可选责任", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 88, + 173, + 305, + 225 + ], + "content": "### 1.4.12 身故或全残保险金", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 314, + 173, + 459, + 197 + ], + "content": "(一)身故保险金", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 308, + 199, + 926, + 251 + ], + "content": "在本合同有效期内,如被保险人因意外伤害事故或于等待期后身故,我们将按以下方式给付身故保险金,本合同效力终止。", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 307, + 251, + 926, + 356 + ], + "content": "(1) 如被保险人在年满18周岁之前(不含18周岁生日当天)身故,我们将按本合同实际交纳的保险费(不计息)给付身故保险金。\n(2) 如被保险人在年满18周岁之后(含18周岁生日当天)身故,我们将按本合同基本保险金额的100%给付身故保险金。", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 318, + 381, + 458, + 406 + ], + "content": "(二)全残保险金", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 306, + 407, + 927, + 460 + ], + "content": "在本合同有效期内,如被保险人因意外伤害事故或于等待期后全残,我们将按以下方式给付全残保险金,本合同效力终止。", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 306, + 460, + 927, + 565 + ], + "content": "(1) 如被保险人在年满18周岁之前(不含18周岁生日当天)全残,我们将按本合同实际交纳的保险费(不计息)给付全残保险金。\n(2) 如被保险人在年满18周岁之后(含18周岁生日当天)全残,我们将按本合同基本保险金额的100%给付全残保险金。", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 307, + 587, + 928, + 646 + ], + "content": "本合同中的“首次重大疾病保险金”、“身故保险金”、“全残保险金”三者不可兼得,即若我们给付其中一项保险金,则另两项保险金不再给付。", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 88, + 666, + 298, + 721 + ], + "content": "### 1.4.13 重大疾病多次给付保险金", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 318, + 669, + 553, + 691 + ], + "content": "(一)第二次重大疾病保险金", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 306, + 694, + 927, + 826 + ], + "content": "若您在投保时未选择恶性肿瘤--重度关爱保险金,且我们已按本合同约定给付了首次重大疾病保险金,如被保险人因意外伤害事故或自首次重大疾病确诊之日起满365日后,经本公司指定或认可的医疗机构确诊初次发生首次重大疾病以外的其他重大疾病(无论一种或多种),我们将按本合同基本保险金额的120%给付第二次重大疾病保险金。", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 306, + 848, + 927, + 981 + ], + "content": "若您在投保时选择了恶性肿瘤--重度关爱保险金,且我们已按本合同约定给付了首次重大疾病保险金,如被保险人因意外伤害事故或自首次重大疾病确诊之日起满365日后,经本公司指定或认可的医疗机构确诊初次发生首次重大疾病和“恶性肿瘤--重度”以外的其他重大疾病(无论一种或多种),我们将按本合同基本保险金额的120%给付第二次重大疾病保险金。", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 306, + 1002, + 927, + 1164 + ], + "content": "若您在投保时选择了恶性肿瘤--重度关爱保险金,且我们已按本合同约定给付了首次重大疾病保险金,如被保险人因意外伤害事故或自首次重大疾病确诊之日起满180日后,经本公司指定或认可的医疗机构确诊初次发生本合同所定义的“恶性肿瘤--重度”(无论一种或多种)且首次重大疾病不是“恶性肿瘤--重度”,我们将按本合同基本保险金额的120%给付第二次重大疾病保险金。", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 307, + 1188, + 927, + 1245 + ], + "content": "第二次重大疾病保险金给付以一次为限,给付后第二次重大疾病保险金责任终止。", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 313, + 1264, + 554, + 1295 + ], + "content": "(二)第三次重大疾病保险金", + "order": 16 + }, + { + "category": "page-footer", + "bbox": [ + 490, + 1333, + 509, + 1350 + ], + "content": "12", + "order": 17 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/a54138d2-e8e2-4add-9657-3f37a8d77171.json b/track1_finixdigital_242_insurance_terms/jsons/a54138d2-e8e2-4add-9657-3f37a8d77171.json new file mode 100644 index 0000000000000000000000000000000000000000..71e592bf1d4c5e7e7f9c4cfe8344f1ce09ec935d --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/a54138d2-e8e2-4add-9657-3f37a8d77171.json @@ -0,0 +1,98 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 912, + 144, + 1075, + 168 + ], + "content": "JR/T 0083—2013", + "order": 1 + }, + { + "category": "table", + "bbox": [ + 101, + 168, + 1055, + 350 + ], + "content": "
一侧眼睑外翻9级s2301.861/2
一侧眼睑闭合不全9级s2301.851/2
", + "order": 2 + }, + { + "category": "caption", + "bbox": [ + 108, + 351, + 767, + 390 + ], + "content": "表注:眼睑显著缺损指闭眼时眼睑不能完全覆盖角膜。", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 107, + 423, + 642, + 464 + ], + "content": "### 4.2.5 耳廓结构损伤或听功能障碍", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 147, + 491, + 1121, + 590 + ], + "content": "听功能是指与感受存在的声音和辨别方位、音调、音量和音质有关的感觉功能。", + "order": 5 + }, + { + "category": "caption", + "bbox": [ + 548, + 596, + 608, + 640 + ], + "content": "表9", + "order": 6 + }, + { + "category": "table", + "bbox": [ + 97, + 641, + 1056, + 1561 + ], + "content": "
伤残条目等级伤残代码
双耳听力损失大于等于91dB,且双侧耳廓缺失2级b230.43,s240.413
双耳听力损失大于等于71dB,且双侧耳廓缺失3级b230.33,s240.413
双耳听力损失大于等于91dB,且一侧耳廓缺失3级b230.43,s240.411/2
一耳听力损失大于等于91dB,另一耳听力损失大于等于71dB,且一侧耳廓缺失,另一侧耳廓缺失大于等于50%3级b230.41/2,b230.32/1,s240.411/2,s240.321/2
双耳听力损失大于等于56dB,且双侧耳廓缺失4级b230.2Z3,s240.413
双耳听力损失大于等于71dB,且一侧耳廓缺失4级b230.33,s240.411/2
一耳听力损失大于等于91dB,另一耳听力损失大于等于71dB,且一侧耳廓缺失大于等于50%4级b230.41/2,b230.32/1,s240.321/2
双耳听力损失大于等于71dB,且一侧耳廓缺失大于等于50%5级b230.33,s240.321/2
双耳听力损失大于等于56dB,且一侧耳廓缺失5级b230.2Z3,s240.411/2
双侧耳廓缺失5级s240.413
一侧耳廓缺失,且另一侧耳廓缺失大于等于50%6级s240.411/2,s240.322/1
", + "order": 7 + }, + { + "category": "page-footer", + "bbox": [ + 1029, + 1561, + 1047, + 1582 + ], + "content": "9", + "order": 8 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/a55c7c9b-b15c-46af-ab84-42c1ae9fe869.json b/track1_finixdigital_242_insurance_terms/jsons/a55c7c9b-b15c-46af-ab84-42c1ae9fe869.json new file mode 100644 index 0000000000000000000000000000000000000000..c7eafd2613c2b0d17f79c17628de23445bf4212b --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/a55c7c9b-b15c-46af-ab84-42c1ae9fe869.json @@ -0,0 +1,351 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "title", + "bbox": [ + 260, + 151, + 925, + 189 + ], + "content": "# 人保寿险顶梁柱重大疾病保险(互联网专属)条款", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 116, + 218, + 1062, + 278 + ], + "content": "在本条款中,“您”指投保人,“我们”、“本公司”均指中国人民人寿保险股份有限公司,“本合同”指您与我们之间订立的人保寿险顶梁柱重大疾病保险(互联网专属)合同。", + "order": 2 + }, + { + "category": "section-header", + "bbox": [ + 121, + 307, + 390, + 339 + ], + "content": "# 1 合同的构成与生效", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 190, + 343, + 731, + 368 + ], + "content": "这部分讲的是本合同包括哪些部分,以及在什么时候生效。", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 121, + 379, + 283, + 412 + ], + "content": "## 1.1 合同构成", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 315, + 379, + 1064, + 440 + ], + "content": "人保寿险顶梁柱重大疾病保险(互联网专属)合同由保险条款、保险单、所附的投保单及相关文件、有关的声明、批注单及其他约定书构成。", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 315, + 440, + 1066, + 498 + ], + "content": "若上述构成本合同的文件正本需留本公司存档,则其复印件或电子影印件的效力与正本相同。若复印件或电子影印件的内容与正本不同,则以正本为准。", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 119, + 511, + 301, + 572 + ], + "content": "## 1.2 合同成立与生效", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 315, + 512, + 748, + 540 + ], + "content": "您提出保险申请,我们同意承保,本合同成立。", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 316, + 543, + 1059, + 633 + ], + "content": "本合同成立、我们收取首期保险费并签发保险单为本合同的生效条件,合同生效日期在保险合同上载明。保单生效对应日¹、保单年度²、保险费约定交纳日³均以该日期计算。", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 120, + 661, + 410, + 693 + ], + "content": "# 2 我们保多久、保什么", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 186, + 697, + 705, + 722 + ], + "content": "这部分讲的是我们提供保障的期间以及我们提供的保障。", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 121, + 734, + 278, + 764 + ], + "content": "## 2.1 保险期间", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 313, + 737, + 1065, + 794 + ], + "content": "除本合同另有约定外,本合同的保险期间为终身,自本合同生效日零时起,至被保险人身故时止。", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 312, + 795, + 981, + 825 + ], + "content": "除本合同另有约定外,自本合同生效日零时起,我们开始承担保险责任。", + "order": 15 + }, + { + "category": "section-header", + "bbox": [ + 117, + 837, + 299, + 899 + ], + "content": "## 2.2 基本保险金额", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 312, + 839, + 1064, + 899 + ], + "content": "本合同的基本保险金额由您在投保时与我们约定并在保险合同上载明。若该金额发生变更,则以变更后的金额为准。", + "order": 17 + }, + { + "category": "section-header", + "bbox": [ + 116, + 909, + 260, + 942 + ], + "content": "## 2.3 等待期", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 313, + 908, + 1064, + 1030 + ], + "content": "自本合同生效(或最后复效)之日起90日内,被保险人因意外伤害⁴以外的原因,被确诊患有本合同约定的轻症疾病⁵、中症疾病⁶、重大疾病⁷,达到本合同约定的生命终末期状态⁸,或发生身故的,我们不承担保险责任,这90日的时间称为等待期。被保险人因意外伤害发生上述情形的,无等待期。", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 312, + 1033, + 644, + 1061 + ], + "content": "等待期内,我们的具体做法见下表:", + "order": 20 + }, + { + "category": "table", + "bbox": [ + 310, + 1060, + 1071, + 1264 + ], + "content": "
等待期内发生的情形我们的做法
轻症疾病不承担本合同“2.4保险责任”中约定的保险责任,本合同继续有效
中症疾病
重大疾病不承担本合同“2.4保险责任”中约定的保险责任,退还您已交的本合同保险费⁹(不计利息),本合同终止
生命终末期状态
身故
", + "order": 21 + }, + { + "category": "footnote", + "bbox": [ + 118, + 1283, + 1052, + 1333 + ], + "content": "¹ 保单生效对应日:本合同生效日每年(或半年、季、月)的对应日为保单年(或半年、季、月)生效对应日。若当月无对应的同一日,则以该月最后一日为保单生效对应日。", + "order": 22 + }, + { + "category": "footnote", + "bbox": [ + 119, + 1333, + 902, + 1357 + ], + "content": "² 保单年度:自本合同生效日或年生效对应日零时起至下一个年生效对应日零时止为一个保单年度。", + "order": 23 + }, + { + "category": "footnote", + "bbox": [ + 119, + 1357, + 1054, + 1404 + ], + "content": "³ 保险费约定交纳日:分期交纳保险费的,首期保险费后的年交、半年交、季交或月交保险费约定交纳日分别为本合同的保单年生效对应日、半年生效对应日、季生效对应日或月生效对应日。", + "order": 24 + }, + { + "category": "footnote", + "bbox": [ + 120, + 1404, + 779, + 1428 + ], + "content": "⁴ 意外伤害:指外来的、突发的、非本意的、非疾病的使身体受到伤害的客观事件。", + "order": 25 + }, + { + "category": "footnote", + "bbox": [ + 119, + 1428, + 873, + 1451 + ], + "content": "⁵ 轻症疾病:名称列表见“2.5 我们所保障的轻症疾病列表”,具体定义见“9.1 轻症疾病定义”。", + "order": 26 + }, + { + "category": "footnote", + "bbox": [ + 117, + 1452, + 872, + 1476 + ], + "content": "⁶ 中症疾病:名称列表见“2.6 我们所保障的中症疾病列表”,具体定义见“9.2 中症疾病定义”。", + "order": 27 + }, + { + "category": "footnote", + "bbox": [ + 117, + 1476, + 873, + 1498 + ], + "content": "⁷ 重大疾病:名称列表见“2.7 我们所保障的重大疾病列表”,具体定义见“9.3 重大疾病定义”。", + "order": 28 + }, + { + "category": "footnote", + "bbox": [ + 117, + 1499, + 602, + 1522 + ], + "content": "⁸ 生命终末期状态:具体定义见“9.4 生命终末期状态定义”。", + "order": 29 + }, + { + "category": "footnote", + "bbox": [ + 115, + 1523, + 1055, + 1572 + ], + "content": "⁹ 已交的本合同保险费:按照本合同基本保险金额(若该金额发生变更,则以变更后的金额为准)确定的一次交清保险费或期交保险费和已交纳保险费的期数计算。", + "order": 30 + }, + { + "category": "page-footer", + "bbox": [ + 489, + 1591, + 696, + 1620 + ], + "content": "条款正文第 1 页 /共 38 页", + "order": 31 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/a6104749-2ca6-4fa8-9fe1-7fb4edb8b5ee.json b/track1_finixdigital_242_insurance_terms/jsons/a6104749-2ca6-4fa8-9fe1-7fb4edb8b5ee.json new file mode 100644 index 0000000000000000000000000000000000000000..3b2ec118834e7feac96d1d2519565bfafabad147 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/a6104749-2ca6-4fa8-9fe1-7fb4edb8b5ee.json @@ -0,0 +1,218 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1192, + "height": 1685, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 910, + 145, + 1065, + 168 + ], + "content": "JR/T 0083—2013", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 148, + 191, + 617, + 219 + ], + "content": "例如某人的智力缺损可以编码为 b117 “智力功能”。", + "order": 2 + }, + { + "category": "caption", + "bbox": [ + 571, + 224, + 627, + 249 + ], + "content": "图 A1", + "order": 3 + }, + { + "category": "figure", + "bbox": [ + 203, + 335, + 390, + 448 + ], + "order": 4 + }, + { + "category": "text", + "bbox": [ + 442, + 324, + 632, + 354 + ], + "content": "损伤范围(一级限定值)", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 441, + 364, + 703, + 391 + ], + "content": "损伤的程度或部位(二级限定值)", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 146, + 422, + 193, + 445 + ], + "content": "b117.", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 152, + 522, + 472, + 549 + ], + "content": "身体功能限定值的具体说明如表 A2。", + "order": 8 + }, + { + "category": "caption", + "bbox": [ + 570, + 552, + 626, + 577 + ], + "content": "表A2", + "order": 9 + }, + { + "category": "table", + "bbox": [ + 100, + 579, + 1056, + 1020 + ], + "content": "\n\n\n\n\n\n\n\n\n
一级限定值
损伤的范围
二级限定值
损伤的程度或部位
0 没有损伤(0-4%)
1 轻度损伤(5-24%)
2 中度损伤(25-49%)
3 重度损伤(50-95%)
4 完全损伤(96-100%)
8 未特指
9 不适用
损伤的程度
空位
Z
Y
X
W
....
注:损伤的程度针对同一损伤的范围,按照英文字母倒序,程度逐渐加重。
损伤的部位
1 右侧
2 左侧
3 双侧
1/2 特指一侧(右侧或左侧)
2/1 特指另一侧(右侧或左侧)
", + "order": 10 + }, + { + "category": "caption", + "bbox": [ + 107, + 1037, + 1004, + 1093 + ], + "content": "表注:使用二级限定值,如果同时存在损伤的程度和损伤的部位,先编码损伤的程度,再编码损伤的部位。例如:b210.1X3 双眼低视力大于等于1级(1X- 程度;3- 双侧)。", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 107, + 1114, + 454, + 1145 + ], + "content": "### A. 4. 1. 2 身体功能一级限定值的使用", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 105, + 1160, + 979, + 1222 + ], + "content": "一旦出现损伤,身体功能损伤或障碍的范围或程度,就可以使用通用的限定值进行量化。例如:s76000.250/s76002.250, s76000.240/s76002.240;b710.2", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 105, + 1223, + 1007, + 1284 + ], + "content": "脊柱骨折脱位导致颈椎或腰椎畸形愈合,且颈部或腰部活动度丧失大于等于25%(达到中度障碍 “2”:5-24%)", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 104, + 1287, + 581, + 1314 + ], + "content": "s76000.250/s76002.250, s76000.240/s76002.240;b710.3", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 108, + 1314, + 963, + 1377 + ], + "content": "脊柱骨折脱位导致颈椎或腰椎畸形愈合,且颈部或腰部活动度丧失大于等于50%(达到 重度障碍 “3”:50-95%)", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 105, + 1394, + 456, + 1425 + ], + "content": "### A. 4. 1. 3 身体功能二级限定值的使用", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 105, + 1437, + 1038, + 1503 + ], + "content": "身体功能二级限定值是在 ICF 身体功能一级限定值的基础上,人身保险伤残评定标准自定义扩展的内容。在身体功能一级限定值说明不充分的情况下,用二级限定值进一步细化说明损伤的程度或部位。具体规则和方法如下:", + "order": 18 + }, + { + "category": "page-footer", + "bbox": [ + 589, + 1557, + 615, + 1580 + ], + "content": "27", + "order": 19 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/ab744a3e-4df2-4a3d-bbd2-8c2f054d48b9.json b/track1_finixdigital_242_insurance_terms/jsons/ab744a3e-4df2-4a3d-bbd2-8c2f054d48b9.json new file mode 100644 index 0000000000000000000000000000000000000000..6fec2ac3efcf1e0e7842007450381f65cd959d65 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/ab744a3e-4df2-4a3d-bbd2-8c2f054d48b9.json @@ -0,0 +1,428 @@ +{ + "resized_height": 1408, + "resized_width": 992, + "width": 993, + "height": 1404, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 434, + 155, + 556, + 194 + ], + "content": "# 条款目录", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 83, + 248, + 277, + 278 + ], + "content": "## 1我们保多久、保什么", + "order": 2 + }, + { + "category": "section-header", + "bbox": [ + 106, + 288, + 218, + 315 + ], + "content": "### 1.1保险期间", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 106, + 317, + 254, + 343 + ], + "content": "### 1.2基本保险金额", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 106, + 348, + 217, + 370 + ], + "content": "### 1.3保险责任", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 87, + 453, + 253, + 486 + ], + "content": "## 2什么情况我们不赔", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 100, + 498, + 217, + 523 + ], + "content": "### 2.1责任免除", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 83, + 723, + 237, + 752 + ], + "content": "## 3如何交纳保险费", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 106, + 765, + 253, + 789 + ], + "content": "### 3.1 保险费的交纳", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 106, + 794, + 203, + 817 + ], + "content": "### 3.2宽限期", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 107, + 823, + 218, + 847 + ], + "content": "### 3.3效力中止", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 106, + 850, + 220, + 875 + ], + "content": "### 3.4效力恢复", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 364, + 250, + 513, + 275 + ], + "content": "## 4如何领取保险金", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 382, + 290, + 476, + 316 + ], + "content": "### 4.1受益人", + "order": 14 + }, + { + "category": "section-header", + "bbox": [ + 382, + 319, + 527, + 340 + ], + "content": "### 4.2保险事故通知", + "order": 15 + }, + { + "category": "section-header", + "bbox": [ + 382, + 347, + 601, + 370 + ], + "content": "### 4.3生存类保险金领取方式", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 382, + 374, + 509, + 399 + ], + "content": "### 4.4保险金申请", + "order": 17 + }, + { + "category": "section-header", + "bbox": [ + 382, + 402, + 511, + 429 + ], + "content": "### 4.5保险金给付", + "order": 18 + }, + { + "category": "section-header", + "bbox": [ + 362, + 460, + 460, + 485 + ], + "content": "## 5如何退保", + "order": 19 + }, + { + "category": "section-header", + "bbox": [ + 381, + 497, + 477, + 524 + ], + "content": "### 5.1 犹豫期", + "order": 20 + }, + { + "category": "section-header", + "bbox": [ + 380, + 530, + 615, + 552 + ], + "content": "### 5.2您解除合同的手续及风险", + "order": 21 + }, + { + "category": "section-header", + "bbox": [ + 363, + 727, + 459, + 750 + ], + "content": "## 6其他权益", + "order": 22 + }, + { + "category": "section-header", + "bbox": [ + 382, + 763, + 493, + 789 + ], + "content": "### 6.1现金价值", + "order": 23 + }, + { + "category": "section-header", + "bbox": [ + 380, + 792, + 495, + 817 + ], + "content": "### 6.2保单贷款", + "order": 24 + }, + { + "category": "section-header", + "bbox": [ + 380, + 825, + 544, + 846 + ], + "content": "### 6.3保险费自动垫交", + "order": 25 + }, + { + "category": "section-header", + "bbox": [ + 381, + 853, + 458, + 878 + ], + "content": "### 6.4减保", + "order": 26 + }, + { + "category": "section-header", + "bbox": [ + 639, + 248, + 804, + 274 + ], + "content": "## 7合同的构成与生效", + "order": 27 + }, + { + "category": "section-header", + "bbox": [ + 655, + 286, + 774, + 313 + ], + "content": "### 7.1合同构成", + "order": 28 + }, + { + "category": "section-header", + "bbox": [ + 653, + 317, + 823, + 343 + ], + "content": "### 7.2合同成立及生效", + "order": 29 + }, + { + "category": "section-header", + "bbox": [ + 638, + 458, + 805, + 486 + ], + "content": "## 8需关注的其他事项", + "order": 30 + }, + { + "category": "section-header", + "bbox": [ + 656, + 497, + 857, + 525 + ], + "content": "### 8.1明确说明与如实告知", + "order": 31 + }, + { + "category": "section-header", + "bbox": [ + 655, + 528, + 772, + 552 + ], + "content": "### 8.2投保年龄", + "order": 32 + }, + { + "category": "section-header", + "bbox": [ + 655, + 557, + 807, + 581 + ], + "content": "### 8.3年龄性别错误", + "order": 33 + }, + { + "category": "section-header", + "bbox": [ + 655, + 583, + 770, + 608 + ], + "content": "### 8.4特别约定", + "order": 34 + }, + { + "category": "section-header", + "bbox": [ + 655, + 611, + 770, + 636 + ], + "content": "### 8.5未还款项", + "order": 35 + }, + { + "category": "section-header", + "bbox": [ + 655, + 643, + 803, + 665 + ], + "content": "### 8.6合同内容变更", + "order": 36 + }, + { + "category": "section-header", + "bbox": [ + 656, + 670, + 770, + 693 + ], + "content": "### 8.7争议处理", + "order": 37 + }, + { + "category": "page-footer", + "bbox": [ + 762, + 1314, + 907, + 1338 + ], + "content": "百岁人生2026条款", + "order": 38 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/ad350fee-87a9-4e7e-a72d-c02ebff58ff5.json b/track1_finixdigital_242_insurance_terms/jsons/ad350fee-87a9-4e7e-a72d-c02ebff58ff5.json new file mode 100644 index 0000000000000000000000000000000000000000..72dd8f66fe2c62d1e95636cbb3faee2ebdfca8fa --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/ad350fee-87a9-4e7e-a72d-c02ebff58ff5.json @@ -0,0 +1,98 @@ +{ + "resized_height": 1184, + "resized_width": 1696, + "width": 1684, + "height": 1191, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 745, + 85, + 951, + 107 + ], + "content": "太平人寿产品说明书文稿", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 143, + 200, + 425, + 230 + ], + "content": "# 投保示例及保单利益测算:", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 144, + 259, + 1543, + 317 + ], + "content": "王女士,30 周岁,为自己投保太平福满 e 生年金保险(互联网专属),8 年交费,年交保险费 10000 元,基本保险金额 8489 元,并选择在 66 周岁领取祝寿金。她可获得的主要保单利益包括:", + "order": 3 + }, + { + "category": "caption", + "bbox": [ + 1211, + 322, + 1364, + 349 + ], + "content": "单位:人民币元", + "order": 4 + }, + { + "category": "table", + "bbox": [ + 142, + 358, + 1363, + 928 + ], + "content": "
保单年度被保险人年龄年度保险费累计保险费生存保险金养老金祝寿金身故保险金现金价值
1311000010000000100003857
2321000020000000200008574
33310000300000003000013934
43410000400000004000019987
5351000050000849005000026521
6361000060000849006000032621
7371000070000849007000039158
8381000080000849008000046159
939080000849008000047564
1040080000849008000049039
2050080000849008000068497
306008000084916980100296100296
3666080000849169880000116163116163
4070080000849169803241332413
5080080000849169801907119071
58880800008491698025472547
", + "order": 5 + }, + { + "category": "caption", + "bbox": [ + 140, + 942, + 922, + 967 + ], + "content": "注:1、上述利益演示中,各保单年度除年度保险费及累计保险费外,其他均为保单年度末数值。", + "order": 6 + }, + { + "category": "caption", + "bbox": [ + 178, + 974, + 1101, + 997 + ], + "content": "2、上述利益演示中,当年度生存保险金、养老金、祝寿金为该保单年度末翌日之周年日应给付的各类生存保险金。", + "order": 7 + }, + { + "category": "page-footer", + "bbox": [ + 785, + 1062, + 909, + 1085 + ], + "content": "第4页,共5页", + "order": 8 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/b7dcadd1-2111-4ab4-9355-2778b336100c.json b/track1_finixdigital_242_insurance_terms/jsons/b7dcadd1-2111-4ab4-9355-2778b336100c.json new file mode 100644 index 0000000000000000000000000000000000000000..d568f031e2898eafd8232633ac0bfa1b65692738 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/b7dcadd1-2111-4ab4-9355-2778b336100c.json @@ -0,0 +1,273 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 717, + 81, + 1025, + 107 + ], + "content": "中国人寿〔2025〕两全保险63号", + "order": 1 + }, + { + "category": "figure", + "bbox": [ + 818, + 113, + 933, + 231 + ], + "order": 2 + }, + { + "category": "text", + "bbox": [ + 768, + 237, + 986, + 265 + ], + "content": "请扫描以查询验证条款", + "order": 3 + }, + { + "category": "title", + "bbox": [ + 488, + 251, + 699, + 293 + ], + "content": "# 阅读指引", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 159, + 295, + 1024, + 324 + ], + "content": "本阅读指引旨在帮助您(投保人,以下含义相同)理解条款,本合同内容以条款具体约定为准。", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 232, + 334, + 871, + 364 + ], + "content": "# 我们提供的保障(本阅读指引中,“我们”指中国人寿保险股份有限公司)", + "order": 6 + }, + { + "category": "table", + "bbox": [ + 132, + 375, + 1050, + 555 + ], + "content": "
投保年龄18周岁至70周岁
我们保多久11年、12年、13年、14年、15年
我们保什么满期保险金
若被保险人生存,按照本合同约定,保险期间届满给付满期保险金
身故保险金
按照本合同约定,提供身故保障
", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 232, + 564, + 429, + 594 + ], + "content": "# 您可选择的交费方式", + "order": 8 + }, + { + "category": "table", + "bbox": [ + 134, + 610, + 1051, + 698 + ], + "content": "
交费方式交费期间(分期交费)
一次性交费、分期交费3年、5年
(每年或每月交一次)
", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 233, + 710, + 407, + 739 + ], + "content": "# 您拥有的重要权益", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 253, + 755, + 1023, + 783 + ], + "content": "## 被保险人可以享受本合同提供的保障....第四条", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 253, + 782, + 1023, + 810 + ], + "content": "## 签收保险单后15日内您可以按约定要求退还保险费....第十条", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 252, + 810, + 1023, + 837 + ], + "content": "## 您有按约定退保的权利....第十条", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 253, + 837, + 1023, + 863 + ], + "content": "## 您可以向我们申请借款....第八条", + "order": 14 + }, + { + "category": "section-header", + "bbox": [ + 233, + 876, + 449, + 903 + ], + "content": "# 您应当特别注意的事项", + "order": 15 + }, + { + "category": "section-header", + "bbox": [ + 253, + 918, + 1023, + 948 + ], + "content": "## 本合同中还有一些免除或者减轻本公司责任的内容....第五条", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 253, + 948, + 1023, + 976 + ], + "content": "## 您应当如何交纳保险费....第六条", + "order": 17 + }, + { + "category": "section-header", + "bbox": [ + 253, + 976, + 1023, + 1001 + ], + "content": "## 您有如实告知的义务....第四条", + "order": 18 + }, + { + "category": "section-header", + "bbox": [ + 253, + 1001, + 1023, + 1029 + ], + "content": "## 您有及时向我们通知保险事故的责任....第六条", + "order": 19 + }, + { + "category": "section-header", + "bbox": [ + 253, + 1029, + 1022, + 1057 + ], + "content": "## 退保会给您造成一定损失,请您慎重决策....第十条", + "order": 20 + }, + { + "category": "section-header", + "bbox": [ + 253, + 1057, + 1022, + 1084 + ], + "content": "## 我们对一些重要术语进行了解释,请您注意释义....第十二条、第十六条", + "order": 21 + }, + { + "category": "section-header", + "bbox": [ + 253, + 1084, + 991, + 1112 + ], + "content": "## 本合同利益条款和个人保险基本条款中加粗部分属于与您有重大利害关系的条款", + "order": 22 + }, + { + "category": "text", + "bbox": [ + 158, + 1127, + 1030, + 1182 + ], + "content": "说明:标注下划波浪线的条目为本合同利益条款对应条目;未标注下划波浪线的条目为本合同个人保险基本条款对应条目。", + "order": 23 + }, + { + "category": "section-header", + "bbox": [ + 225, + 1198, + 1027, + 1279 + ], + "content": "# 条款是保险合同的重要内容,为充分保障您的权益,请您仔细阅读本条款。条款包含利益条款和个人保险基本条款,本合同利益条款与本合同个人保险基本条款相抵触的,以本合同利益条款为准。", + "order": 24 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/b9dd1531-280b-4af3-9926-eb086841067f.json b/track1_finixdigital_242_insurance_terms/jsons/b9dd1531-280b-4af3-9926-eb086841067f.json new file mode 100644 index 0000000000000000000000000000000000000000..68e96932d1337b08f1492b20b279df639cd384f9 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/b9dd1531-280b-4af3-9926-eb086841067f.json @@ -0,0 +1,558 @@ +{ + "resized_height": 3872, + "resized_width": 736, + "width": 750, + "height": 3880, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 37, + 75, + 482, + 129 + ], + "content": "# 为什么要买癌症特药险", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 39, + 152, + 432, + 187 + ], + "content": "癌症发病率高,药品费用负担重", + "order": 2 + }, + { + "category": "figure", + "bbox": [ + 38, + 213, + 199, + 330 + ], + "order": 3 + }, + { + "category": "text", + "bbox": [ + 245, + 239, + 446, + 278 + ], + "content": "癌症发病率高", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 245, + 289, + 542, + 322 + ], + "content": "人一生中癌症的发病率22%", + "order": 5 + }, + { + "category": "figure", + "bbox": [ + 38, + 356, + 198, + 477 + ], + "order": 6 + }, + { + "category": "text", + "bbox": [ + 247, + 369, + 418, + 409 + ], + "content": "药品费用高", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 244, + 420, + 551, + 451 + ], + "content": "癌症平均治疗费用15-50万+", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 246, + 452, + 446, + 486 + ], + "content": "大部分是药品支出", + "order": 9 + }, + { + "category": "figure", + "bbox": [ + 38, + 530, + 199, + 638 + ], + "order": 10 + }, + { + "category": "text", + "bbox": [ + 245, + 528, + 507, + 571 + ], + "content": "抗癌特药药源紧张", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 246, + 577, + 539, + 611 + ], + "content": "大部分用药费用发生在院外", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 246, + 611, + 565, + 647 + ], + "content": "部分高效药品不在医保范围内", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 77, + 699, + 663, + 747 + ], + "content": "不再担心特药价格高 癌症特药险全面保障", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 88, + 793, + 318, + 832 + ], + "content": "传统癌症治疗方式", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 69, + 845, + 186, + 884 + ], + "content": "手术治疗", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 69, + 884, + 133, + 924 + ], + "content": "化疗", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 68, + 924, + 133, + 963 + ], + "content": "放疗", + "order": 18 + }, + { + "category": "figure", + "bbox": [ + 246, + 755, + 369, + 1064 + ], + "order": 19 + }, + { + "category": "text", + "bbox": [ + 406, + 794, + 578, + 831 + ], + "content": "癌症特药治疗", + "order": 20 + }, + { + "category": "text", + "bbox": [ + 382, + 844, + 533, + 881 + ], + "content": "靶向药疗法", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 382, + 886, + 559, + 924 + ], + "content": "细胞免疫疗法", + "order": 22 + }, + { + "category": "figure", + "bbox": [ + 417, + 906, + 701, + 1073 + ], + "order": 23 + }, + { + "category": "footnote", + "bbox": [ + 42, + 1085, + 291, + 1119 + ], + "content": "*数据来源《国家癌症中心》", + "order": 24 + }, + { + "category": "section-header", + "bbox": [ + 32, + 1170, + 607, + 1228 + ], + "content": "# 300万先进治疗提供全面保障", + "order": 25 + }, + { + "category": "text", + "bbox": [ + 53, + 1275, + 239, + 1308 + ], + "content": "10种罕见病特定药品", + "order": 26 + }, + { + "category": "figure", + "bbox": [ + 65, + 1341, + 229, + 1461 + ], + "order": 27 + }, + { + "category": "text", + "bbox": [ + 52, + 1470, + 239, + 1516 + ], + "content": "含唯铭赞、麟平、法布赞、艾满欣、安家因等", + "order": 28 + }, + { + "category": "text", + "bbox": [ + 273, + 1273, + 463, + 1307 + ], + "content": "60种临床急需进口药", + "order": 29 + }, + { + "category": "figure", + "bbox": [ + 288, + 1326, + 460, + 1455 + ], + "order": 30 + }, + { + "category": "text", + "bbox": [ + 272, + 1469, + 471, + 1516 + ], + "content": "含阿司尼布、特泊替尼、托法替布、替吉奥胶囊等", + "order": 31 + }, + { + "category": "text", + "bbox": [ + 488, + 1277, + 692, + 1306 + ], + "content": "10种海外高价值医疗器械", + "order": 32 + }, + { + "category": "figure", + "bbox": [ + 508, + 1337, + 676, + 1455 + ], + "order": 33 + }, + { + "category": "text", + "bbox": [ + 492, + 1455, + 685, + 1526 + ], + "content": "含人工耳蜗声音处理器、经导管主动脉瓣膜系统、OSIA 2骨传导系统等", + "order": 34 + }, + { + "category": "section-header", + "bbox": [ + 34, + 1634, + 526, + 1691 + ], + "content": "# 为什么选阳光癌症特药险", + "order": 35 + }, + { + "category": "figure", + "bbox": [ + 37, + 1747, + 249, + 2364 + ], + "order": 36 + }, + { + "category": "figure", + "bbox": [ + 258, + 1789, + 309, + 1846 + ], + "order": 37 + }, + { + "category": "text", + "bbox": [ + 309, + 1794, + 657, + 1885 + ], + "content": "300万抗癌免费用药、300万先进治疗", + "order": 38 + }, + { + "category": "text", + "bbox": [ + 310, + 1894, + 573, + 1928 + ], + "content": "保障额度高 治疗无负担", + "order": 39 + }, + { + "category": "figure", + "bbox": [ + 255, + 1956, + 311, + 2008 + ], + "order": 40 + }, + { + "category": "text", + "bbox": [ + 309, + 1959, + 479, + 2004 + ], + "content": "药品覆盖全", + "order": 41 + }, + { + "category": "text", + "bbox": [ + 309, + 2016, + 678, + 2118 + ], + "content": "覆盖122种上市抗癌药物、60种临床急需进口药品、10种罕见病特药保障确诊后3年用药", + "order": 42 + }, + { + "category": "figure", + "bbox": [ + 257, + 2145, + 313, + 2193 + ], + "order": 43 + }, + { + "category": "text", + "bbox": [ + 312, + 2147, + 511, + 2191 + ], + "content": "专属就医服务", + "order": 44 + }, + { + "category": "text", + "bbox": [ + 310, + 2203, + 672, + 2243 + ], + "content": "癌症绿通、癌症国内多学科会诊等", + "order": 45 + }, + { + "category": "figure", + "bbox": [ + 253, + 2266, + 313, + 2315 + ], + "order": 46 + }, + { + "category": "text", + "bbox": [ + 312, + 2271, + 480, + 2314 + ], + "content": "供药有保障", + "order": 47 + }, + { + "category": "text", + "bbox": [ + 310, + 2322, + 666, + 2390 + ], + "content": "供药网络全国覆盖 知名药企送药上门", + "order": 48 + }, + { + "category": "text", + "bbox": [ + 309, + 2390, + 489, + 2430 + ], + "content": "外购药直付服务", + "order": 49 + }, + { + "category": "section-header", + "bbox": [ + 37, + 2563, + 223, + 2623 + ], + "content": "# 保障计划", + "order": 50 + }, + { + "category": "table", + "bbox": [ + 42, + 2671, + 693, + 3795 + ], + "content": "
保障责任癌症特种药品费用保险金 300万
特种进口药品费用保险金 100万
罕见病特定药品费用保险金 100万
特定进口医疗器械费用保险金 100万
用药范围122种国内上市抗癌特药(包括2种CART药物)、10种罕见病特药、60种海外特药、10种海外器械
用药期限药品限疾病确诊之日起最长不超过3年;海外器械限保险期间内使用
报销比例1、社保目录外药品:报销比例100%
2、社保目录内药品:已从社会基本医疗保险、公费医疗获得补偿的报销比例100%,未从社会基本医疗保险、公费医疗获得补偿的报销比例90%
3、特种进口药、罕见病特药、进口医疗器械:报销比例100%
等待期30天
医院范围国内抗癌特药、罕见病特药:中国大陆二级或二级以上公立医院普通部;
海外特药及海外医疗器械:乐成国际医疗先行区部分医院
理赔方式在线便捷理赔
续保不保证续保
退保保单生效15天内全额退款
", + "order": 51 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/c25683ac-166a-4686-9404-8610235e7061.json b/track1_finixdigital_242_insurance_terms/jsons/c25683ac-166a-4686-9404-8610235e7061.json new file mode 100644 index 0000000000000000000000000000000000000000..eb3f6e5beba96e9cf341bf003ea064c833285a63 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/c25683ac-166a-4686-9404-8610235e7061.json @@ -0,0 +1,175 @@ +{ + "resized_height": 1408, + "resized_width": 992, + "width": 993, + "height": 1404, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 216, + 118, + 831, + 143 + ], + "content": "为准,被保险人未参加社会基本医疗保险的,以本附加险合同签发地政策为准。", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 258, + 143, + 655, + 165 + ], + "content": "(2) 非医保药品目录内药品费用保险金的计算方法", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 216, + 166, + 846, + 212 + ], + "content": "非医保药品目录内药品费用保险金=(发生的非基本医疗保险药品目录外药品的费用-从其他途径已获得的补偿金额)×给付比例", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 216, + 213, + 850, + 257 + ], + "content": "基本医疗保险药品目录以处方开具时被保险人社会基本医疗保险参加地政策为准,被保险人未参加社会基本医疗保险的,以本附加险合同签发地政策为准。", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 258, + 257, + 370, + 280 + ], + "content": "(3) 给付比例", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 216, + 280, + 849, + 326 + ], + "content": "前述保险金计算公式中的给付比例由投保人和保险人按照以下情况分别约定,并在保险单中载明:", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 215, + 326, + 851, + 544 + ], + "content": "①若被保险人以参加社会基本医疗保险身份投保:\na. 如药品为基本医疗保险药品目录内且已经过社会基本医疗保险报销,给付比例为 100%;\nb. 如药品为基本医疗保险药品目录内但未经过社会基本医疗保险报销,给付比例为 60%;\nc. 如药品为基本医疗保险药品目录外,给付比例为 100%。\n被保险人参加公费医疗的,视同参加社会基本医疗保险。\n②若被保险人以未参加社会基本医疗保险身份投保,则基本医疗保险药品目录内药品和基本医疗保险药品目录外药品给付比例均为 100%。", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 145, + 545, + 294, + 567 + ], + "content": "### 2.1.3 补偿原则", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 213, + 567, + 849, + 680 + ], + "content": "本附加险合同适用补偿原则。被保险人通过任何途径所获得的医疗费用补偿金额总和以其实际支出的金额为限。被保险人已经从社会基本医疗保险、公费医疗和任何第三方(包括任何商业医疗保险)获得相关医疗费用补偿的,保险人仅对扣除已获得补偿后的剩余部分医疗费用,按照本附加险合同的约定承担给付保险金的责任。", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 146, + 681, + 293, + 704 + ], + "content": "## 2.2 责任免除", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 146, + 705, + 196, + 726 + ], + "content": "### 2.2.1", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 212, + 704, + 853, + 1183 + ], + "content": "因下列情形或原因之一,导致被保险人支出恶性肿瘤特种药品费用的,保险人不 承担给付保险金责任: \n(1)主险合同责任免除中的各项情形或原因; \n(2)在中华人民共和国领土之外的国家或地区,以及香港特别行政区、澳门 特别行政区和台湾地区接受治疗; \n(3)药品处方的开具与国家食品药品监督管理总局批准的该药品说明书中所 列明的适应症和用法用量不符; \n(4)非保险人指定或认可的药店购买的药品; \n(5)未按本合同“3.1恶性肿瘤特种药品院外药房直付用药流程”约定进行 购药的; \n(6) 先天性癌症(BRCA 1/BRCA 2基因突变家族性乳腺癌, 遗传性非息肉病性 结直肠癌, 肾母细胞瘤即Wilms瘤, 李-佛美尼综合症即Li-Fraumeni综合症) ; \n(7)被保险人接种预防癌症的疫苗,进行基因测试以鉴定癌症的遗传性,未 经科学或者医学认可的试验性或者研究性治疗及其产生的后果; \n(8)被保险人曾经或正在使用大剂量的镇静安眠药、迷幻剂、毒品或其他违 禁药物,有麻醉剂成瘾、酒精或药物滥用成瘾; \n(9)使用未获得国家药品监督管理局批准的药品,进行未被国家药品审评中 心批准的适应症用药治疗; \n(10)被保险人购买的药品不符合“2.1.1恶性肿瘤特种药品使用条件”要求; \n(11)相关医学材料不能证明药品对被保险人所罹患的恶性肿瘤——重度有效。", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 146, + 1185, + 196, + 1206 + ], + "content": "### 2.2.2", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 212, + 1183, + 853, + 1289 + ], + "content": "被保险人的疾病状况,经保险人或经保险人授权指定的第三方服务商(见释义) 审核,确定对申领药品已经耐药后产生的费用,保险人不承担给付保险金责任。(耐药指以下两种情况之一:实体肿瘤病灶按照RECIST(实体瘤治疗疗效评价标准) 出现疾病进展,即定义为耐药;非实体肿瘤(包含白血病、多发性骨髓瘤、骨髓", + "order": 14 + }, + { + "category": "page-footer", + "bbox": [ + 482, + 1306, + 516, + 1325 + ], + "content": "2/7", + "order": 15 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/c3e97144-d5b3-4e88-87bd-1c64d123965d.json b/track1_finixdigital_242_insurance_terms/jsons/c3e97144-d5b3-4e88-87bd-1c64d123965d.json new file mode 100644 index 0000000000000000000000000000000000000000..9821b0b87f9f795efda067e31b7164f6fd655311 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/c3e97144-d5b3-4e88-87bd-1c64d123965d.json @@ -0,0 +1,284 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 791, + 60, + 1129, + 89 + ], + "content": "泰康人寿[2024]养老年金保险 066 号", + "order": 1 + }, + { + "category": "figure", + "bbox": [ + 960, + 100, + 1082, + 223 + ], + "order": 2 + }, + { + "category": "text", + "bbox": [ + 914, + 234, + 1130, + 261 + ], + "content": "请扫描以查询验证条款", + "order": 3 + }, + { + "category": "title", + "bbox": [ + 234, + 161, + 951, + 204 + ], + "content": "# 泰康瑞享一生 PLUS 养老年金保险(互联网)条款", + "order": 4 + }, + { + "category": "title", + "bbox": [ + 527, + 227, + 656, + 266 + ], + "content": "# 阅读指引", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 115, + 315, + 284, + 352 + ], + "content": "# 1 我们的保障", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 108, + 360, + 1081, + 419 + ], + "content": "泰康瑞享一生 PLUS 养老年金保险(互联网)(以下简称“瑞享一生 PLUS(互联网)”)产品提供生存及身故保障。", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 112, + 440, + 257, + 477 + ], + "content": "# 2 名词解释", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 151, + 491, + 500, + 521 + ], + "content": "投保人:购买保险并交纳保险费的人。", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 150, + 531, + 459, + 561 + ], + "content": "被保险人:受保险合同保障的人。", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 150, + 572, + 987, + 601 + ], + "content": "生存类保险金受益人:被保险人生存期间领取生存类保险金¹的人,本产品中默认为投保人。", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 148, + 612, + 691, + 640 + ], + "content": "身故保险金受益人:被保险人身故后领取身故保险金的人。", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 113, + 670, + 255, + 707 + ], + "content": "# 3 案例说明", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 109, + 717, + 1083, + 780 + ], + "content": "例:泰先生(40 周岁)为自己投保瑞享一生 PLUS(互联网),泰先生为投保人、被保险人及生存类保险金受益人,儿子泰宝贝为身故保险金受益人。", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 149, + 797, + 349, + 824 + ], + "content": "年交保险费:5000 元", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 149, + 834, + 306, + 862 + ], + "content": "交费期间:10 年", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 148, + 872, + 370, + 899 + ], + "content": "基本保险金额:2830 元", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 148, + 908, + 468, + 935 + ], + "content": "养老保险金的领取频次:按年领取", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 150, + 945, + 790, + 972 + ], + "content": "首个养老保险金领取日:被保险人年满 60 周岁后的首个年生效对应日", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 146, + 981, + 433, + 1009 + ], + "content": "养老保险金保证给付期:25 年", + "order": 20 + }, + { + "category": "table", + "bbox": [ + 107, + 1020, + 1083, + 1373 + ], + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
保障内容领取人保障金额给付条件2
养老保险金泰先生2830 元/年
自首个养老保险金领取日起,保证给付 25 个保单年度,保证领取养老保险金共 70750 元
自泰先生年满 60 周岁起,在每个年生效对应日生存,直至年满 106 岁时所在保单年度结束时止
特别祝寿保险金泰先生5000 元×100% = 5000 元泰先生在年满 80 周岁后的首个年生效对应日生存
身故保险金泰宝贝累计已交保险费与身故时现金价值较大者如果泰先生在年满 60 周岁后的首个年生效对应日之前身故
", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 111, + 1398, + 1066, + 1428 + ], + "content": "以上举例仅供您更好地理解产品之用,您所购买产品的具体保险责任及责任免除情形在保险合同中载明。", + "order": 22 + }, + { + "category": "footnote", + "bbox": [ + 110, + 1532, + 752, + 1558 + ], + "content": "¹生存类保险金指本合同“1.3 保险责任”所约定的养老保险金和特别祝寿保险金。", + "order": 23 + }, + { + "category": "footnote", + "bbox": [ + 110, + 1559, + 421, + 1583 + ], + "content": "²给付条件:具体请见“1.3 保险责任”。", + "order": 24 + }, + { + "category": "page-footer", + "bbox": [ + 753, + 1614, + 1074, + 1639 + ], + "content": "瑞享一生 PLUS 养老年金(互联网)条款", + "order": 25 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/c8ad7ffd-54f5-41b6-954a-ce8d23f30d03.json b/track1_finixdigital_242_insurance_terms/jsons/c8ad7ffd-54f5-41b6-954a-ce8d23f30d03.json new file mode 100644 index 0000000000000000000000000000000000000000..8b9452be155cb7d35a7b997662fbba6712810009 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/c8ad7ffd-54f5-41b6-954a-ce8d23f30d03.json @@ -0,0 +1,120 @@ +{ + "resized_height": 2208, + "resized_width": 1248, + "width": 1250, + "height": 2224, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 87, + 81, + 1173, + 224 + ], + "content": "(4) 被保险人非因职业原因或器官移植原因感染艾滋病病毒(见 8.23)期间罹患癌症;", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 87, + 262, + 1173, + 477 + ], + "content": "(5) 滋补类中草药(见 8.24)及其泡制的各类酒制剂、未经医生处方自行购买的药品、医生开具的超过 30 天部分的药品费用;", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 87, + 517, + 1173, + 802 + ], + "content": "(6) 除心脏瓣膜、人工晶体、人工关节之外的其它人工器官材料费、安装和置换等费用;各种康复治疗器械、假体、义肢、自用的按摩保健和治疗用品、所有非处方医疗器械。", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 91, + 916, + 599, + 1008 + ], + "content": "# 4 如何领取保险金", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 87, + 1082, + 318, + 1154 + ], + "content": "## 4.1 受益人", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 87, + 1196, + 1116, + 1266 + ], + "content": "除另有约定外,本合同的受益人为被保险人本人。", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 87, + 1335, + 462, + 1404 + ], + "content": "## 4.2 保险事故通知", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 87, + 1465, + 1173, + 1604 + ], + "content": "您、被保险人或受益人在知道保险事故发生后,应当及时通知我们。", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 87, + 1644, + 1173, + 1996 + ], + "content": "如果您、被保险人或受益人故意或者因重大过失未及时通知,致使保险事故的性质、原因、损失程度等难以确定的,我们对无法确定的部分,不承担赔偿保险金责任,但我们通过其他途径已经及时知道或者应当及时知道保险事故发生的除外。", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 87, + 2032, + 1152, + 2110 + ], + "content": "上述约定,不包括因不可抗力(见 8.25)而导致的", + "order": 10 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/c8e2a8e3-7b4f-481a-af40-50c1ca60f75e.json b/track1_finixdigital_242_insurance_terms/jsons/c8e2a8e3-7b4f-481a-af40-50c1ca60f75e.json new file mode 100644 index 0000000000000000000000000000000000000000..f39696211f5f786b9d8d94c4e381cdd9ca9bbde4 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/c8e2a8e3-7b4f-481a-af40-50c1ca60f75e.json @@ -0,0 +1,854 @@ +{ + "resized_height": 4928, + "resized_width": 736, + "width": 750, + "height": 4920, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "title", + "bbox": [ + 14, + 44, + 679, + 96 + ], + "content": "# 好医保·长期医疗(0免赔)体验版升级", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 23, + 116, + 438, + 155 + ], + "content": "0免赔额 1元起赔最高赔付400万", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 39, + 212, + 427, + 252 + ], + "content": "一般医疗(含意外伤害)保险金", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 145, + 277, + 267, + 311 + ], + "content": "1万及以下", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 131, + 316, + 317, + 355 + ], + "content": "赔付比例30%", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 490, + 277, + 612, + 314 + ], + "content": "1万元以上", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 468, + 315, + 671, + 356 + ], + "content": "赔付比例100%", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 53, + 414, + 255, + 453 + ], + "content": "重疾医疗保险金", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 129, + 486, + 246, + 532 + ], + "content": "0免赔额", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 463, + 482, + 672, + 530 + ], + "content": "赔付比例100%", + "order": 10 + }, + { + "category": "footnote", + "bbox": [ + 21, + 581, + 521, + 615 + ], + "content": "*1万元为同一保证续保期间内累计,且为自付部分金额", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 22, + 711, + 392, + 765 + ], + "content": "# 疾病覆盖广 1元起赔", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 182, + 833, + 251, + 871 + ], + "content": "小病", + "order": 13 + }, + { + "category": "figure", + "bbox": [ + 147, + 887, + 186, + 930 + ], + "order": 14 + }, + { + "category": "text", + "bbox": [ + 193, + 894, + 271, + 925 + ], + "content": "阑尾炎", + "order": 15 + }, + { + "category": "figure", + "bbox": [ + 144, + 946, + 186, + 991 + ], + "order": 16 + }, + { + "category": "text", + "bbox": [ + 192, + 954, + 273, + 984 + ], + "content": "肠胃炎", + "order": 17 + }, + { + "category": "figure", + "bbox": [ + 147, + 1006, + 187, + 1048 + ], + "order": 18 + }, + { + "category": "text", + "bbox": [ + 192, + 1014, + 272, + 1046 + ], + "content": "冠心病", + "order": 19 + }, + { + "category": "figure", + "bbox": [ + 326, + 799, + 647, + 1060 + ], + "order": 20 + }, + { + "category": "text", + "bbox": [ + 162, + 1091, + 572, + 1129 + ], + "content": "0免赔,1万以内赔付比例30%", + "order": 21 + }, + { + "category": "figure", + "bbox": [ + 28, + 1213, + 353, + 1468 + ], + "order": 22 + }, + { + "category": "text", + "bbox": [ + 362, + 1233, + 480, + 1268 + ], + "content": "重大疾病", + "order": 23 + }, + { + "category": "figure", + "bbox": [ + 540, + 1230, + 575, + 1271 + ], + "order": 24 + }, + { + "category": "text", + "bbox": [ + 578, + 1231, + 640, + 1267 + ], + "content": "瘫痪", + "order": 25 + }, + { + "category": "figure", + "bbox": [ + 367, + 1290, + 408, + 1331 + ], + "order": 26 + }, + { + "category": "text", + "bbox": [ + 413, + 1293, + 474, + 1329 + ], + "content": "胃癌", + "order": 27 + }, + { + "category": "figure", + "bbox": [ + 539, + 1290, + 576, + 1331 + ], + "order": 28 + }, + { + "category": "text", + "bbox": [ + 582, + 1295, + 662, + 1327 + ], + "content": "乳腺癌", + "order": 29 + }, + { + "category": "figure", + "bbox": [ + 362, + 1352, + 412, + 1391 + ], + "order": 30 + }, + { + "category": "text", + "bbox": [ + 414, + 1357, + 471, + 1388 + ], + "content": "肺癌", + "order": 31 + }, + { + "category": "figure", + "bbox": [ + 539, + 1358, + 579, + 1390 + ], + "order": 32 + }, + { + "category": "text", + "bbox": [ + 583, + 1357, + 684, + 1388 + ], + "content": "双目失明", + "order": 33 + }, + { + "category": "figure", + "bbox": [ + 366, + 1418, + 412, + 1452 + ], + "order": 34 + }, + { + "category": "text", + "bbox": [ + 417, + 1420, + 475, + 1452 + ], + "content": "肝癌", + "order": 35 + }, + { + "category": "figure", + "bbox": [ + 539, + 1412, + 580, + 1455 + ], + "order": 36 + }, + { + "category": "text", + "bbox": [ + 582, + 1419, + 664, + 1452 + ], + "content": "淋巴癌", + "order": 37 + }, + { + "category": "text", + "bbox": [ + 210, + 1494, + 525, + 1534 + ], + "content": "0免赔,赔付比例100%", + "order": 38 + }, + { + "category": "footnote", + "bbox": [ + 22, + 1576, + 407, + 1609 + ], + "content": "*具体报销比例和疾病诊断标准见保险条款", + "order": 39 + }, + { + "category": "section-header", + "bbox": [ + 14, + 1701, + 584, + 1759 + ], + "content": "# 好医保超过3000万家庭的选择", + "order": 40 + }, + { + "category": "text", + "bbox": [ + 18, + 1776, + 310, + 1818 + ], + "content": "百万保障,看病不愁钱", + "order": 41 + }, + { + "category": "figure", + "bbox": [ + 319, + 1855, + 418, + 1953 + ], + "order": 42 + }, + { + "category": "text", + "bbox": [ + 313, + 1957, + 423, + 1993 + ], + "content": "恶性肿瘤", + "order": 43 + }, + { + "category": "figure", + "bbox": [ + 120, + 1923, + 220, + 2024 + ], + "order": 44 + }, + { + "category": "text", + "bbox": [ + 120, + 2025, + 219, + 2057 + ], + "content": "意外伤害", + "order": 45 + }, + { + "category": "figure", + "bbox": [ + 510, + 1925, + 609, + 2026 + ], + "order": 46 + }, + { + "category": "text", + "bbox": [ + 522, + 2026, + 598, + 2056 + ], + "content": "白血病", + "order": 47 + }, + { + "category": "figure", + "bbox": [ + 57, + 2107, + 156, + 2209 + ], + "order": 48 + }, + { + "category": "text", + "bbox": [ + 69, + 2212, + 144, + 2242 + ], + "content": "肾衰竭", + "order": 49 + }, + { + "category": "figure", + "bbox": [ + 197, + 2013, + 538, + 2325 + ], + "order": 50 + }, + { + "category": "figure", + "bbox": [ + 574, + 2108, + 675, + 2209 + ], + "order": 51 + }, + { + "category": "text", + "bbox": [ + 595, + 2209, + 656, + 2240 + ], + "content": "瘫痪", + "order": 52 + }, + { + "category": "figure", + "bbox": [ + 118, + 2293, + 220, + 2396 + ], + "order": 53 + }, + { + "category": "text", + "bbox": [ + 130, + 2402, + 208, + 2430 + ], + "content": "脑中风", + "order": 54 + }, + { + "category": "figure", + "bbox": [ + 509, + 2289, + 610, + 2391 + ], + "order": 55 + }, + { + "category": "text", + "bbox": [ + 519, + 2391, + 596, + 2424 + ], + "content": "脑肿瘤", + "order": 56 + }, + { + "category": "figure", + "bbox": [ + 318, + 2371, + 416, + 2470 + ], + "order": 57 + }, + { + "category": "text", + "bbox": [ + 321, + 2490, + 417, + 2520 + ], + "content": "心肌梗塞", + "order": 58 + }, + { + "category": "section-header", + "bbox": [ + 23, + 2634, + 522, + 2687 + ], + "content": "# 理赔速度快, 消除资金压力", + "order": 59 + }, + { + "category": "figure", + "bbox": [ + 24, + 2741, + 247, + 2906 + ], + "order": 60 + }, + { + "category": "text", + "bbox": [ + 59, + 2917, + 206, + 2963 + ], + "content": "24h客服", + "order": 61 + }, + { + "category": "text", + "bbox": [ + 47, + 2986, + 220, + 3025 + ], + "content": "随时为您服务", + "order": 62 + }, + { + "category": "figure", + "bbox": [ + 258, + 2741, + 475, + 2907 + ], + "order": 63 + }, + { + "category": "text", + "bbox": [ + 288, + 2915, + 446, + 2964 + ], + "content": "理赔专家", + "order": 64 + }, + { + "category": "text", + "bbox": [ + 283, + 2987, + 457, + 3026 + ], + "content": "处理理赔材料", + "order": 65 + }, + { + "category": "figure", + "bbox": [ + 488, + 2740, + 707, + 2904 + ], + "order": 66 + }, + { + "category": "text", + "bbox": [ + 519, + 2912, + 676, + 2967 + ], + "content": "极速打款", + "order": 67 + }, + { + "category": "text", + "bbox": [ + 507, + 2987, + 689, + 3025 + ], + "content": "最快3个工作日", + "order": 68 + }, + { + "category": "section-header", + "bbox": [ + 20, + 3173, + 198, + 3229 + ], + "content": "# 保障计划", + "order": 69 + }, + { + "category": "table", + "bbox": [ + 22, + 3263, + 712, + 4161 + ], + "content": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
保障范围特殊门诊、门诊手术、住院相关的手术费和药品费、住院(含出入院当天)前7天后30天门诊
免赔额0免赔
赔付比例一般医疗:1万及以内,赔付30%;1万以上,赔付100%
其他责任赔付比例100%
投保时选择有医保,但实际无医保或未用医保报销的,按照应赔付金额的60%进行赔付
等待期30天(意外0等待期)
医院范围中国大陆二级及以上公立医院普通部/上海市质子重离子医院
退保本产品为赠送保险,取消领取的无保费退还
到期后延续保障可享受1万元重度疾病津贴;特药服务;垫付服务;绿通服务:专家门诊、专家病房、专家手术、专家远程问诊、中医调理、营养方案制定等。
6年保证续保,可逐年续保、最高到100岁,免等待期、免健康告知、不因理赔或身体健康状况变化单独调整保费
", + "order": 70 + }, + { + "category": "section-header", + "bbox": [ + 24, + 4288, + 432, + 4351 + ], + "content": "# 品牌保障,放心之选", + "order": 71 + }, + { + "category": "figure", + "bbox": [ + 33, + 4394, + 89, + 4453 + ], + "order": 72 + }, + { + "category": "text", + "bbox": [ + 92, + 4401, + 159, + 4424 + ], + "content": "PICC", + "order": 73 + }, + { + "category": "text", + "bbox": [ + 92, + 4424, + 231, + 4445 + ], + "content": "中国人民保险", + "order": 74 + }, + { + "category": "text", + "bbox": [ + 26, + 4508, + 656, + 4544 + ], + "content": "中国银保监会批准设立的国内第一家专业健康保险公司", + "order": 75 + }, + { + "category": "text", + "bbox": [ + 54, + 4658, + 208, + 4747 + ], + "content": "85.68亿元\n注册资金", + "order": 76 + }, + { + "category": "text", + "bbox": [ + 275, + 4665, + 454, + 4744 + ], + "content": "AAA\n主体信用登记", + "order": 77 + }, + { + "category": "text", + "bbox": [ + 508, + 4663, + 680, + 4745 + ], + "content": "219.27%\n综合偿付能力", + "order": 78 + }, + { + "category": "footnote", + "bbox": [ + 509, + 4844, + 699, + 4872 + ], + "content": "※2022年2季度披露", + "order": 79 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/cd280be7-40ef-5704-a85a-0f7362baff11.json b/track1_finixdigital_242_insurance_terms/jsons/cd280be7-40ef-5704-a85a-0f7362baff11.json new file mode 100644 index 0000000000000000000000000000000000000000..d1a37105a027d522fc382d8167539988fdd70875 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/cd280be7-40ef-5704-a85a-0f7362baff11.json @@ -0,0 +1,175 @@ +{ + "resized_height": 2048, + "resized_width": 1440, + "width": 1448, + "height": 2048, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 234, + 102, + 507, + 134 + ], + "order": 1, + "content": "天安财产保险股份有限公司" + }, + { + "category": "page-header", + "bbox": [ + 971, + 102, + 1247, + 133 + ], + "order": 2, + "content": "学生平安意外伤害保险条款" + }, + { + "category": "table", + "bbox": [ + 218, + 174, + 1297, + 238 + ], + "order": 3, + "content": "
一侧眼睑外翻9级
一侧眼睑闭合不全9级
" + }, + { + "category": "caption", + "bbox": [ + 236, + 237, + 819, + 270 + ], + "order": 4, + "content": "注:眼睑显著缺损指闭眼时眼睑不能完全覆盖角膜。,Caption" + }, + { + "category": "section-header", + "bbox": [ + 285, + 298, + 672, + 332 + ], + "order": 5, + "content": "## 2.5 耳廓结构损伤或听功能障碍" + }, + { + "category": "text", + "bbox": [ + 285, + 332, + 1174, + 366 + ], + "order": 6, + "content": "听功能是指与感受存在的声音和辨别方位、音调、音量和音质有关的感觉功能。" + }, + { + "category": "table", + "bbox": [ + 219, + 394, + 1292, + 853 + ], + "order": 7, + "content": "
双耳听力损失大于等于91dB,且双侧耳廓缺失2级
双耳听力损失大于等于91dB,且一侧耳廓缺失3级
一耳听力损失大于等于91dB,另一耳听力损失大于等于71dB,且一侧耳廓缺失,另一侧耳廓缺失大于等于50%3级
双耳听力损失大于等于71dB,且双侧耳廓缺失3级
双耳听力损失大于等于71dB,且一侧耳廓缺失4级
双耳听力损失大于等于56dB,且双侧耳廓缺失4级
一耳听力损失大于等于91dB,另一耳听力损失大于等于71dB,且一侧耳廓缺失大于等于50%4级
双耳听力损失大于等于71dB,且一侧耳廓缺失大于等于50%5级
双耳听力损失大于等于56dB,且一侧耳廓缺失5级
双侧耳廓缺失5级
一侧耳廓缺失,且另一侧耳廓缺失大于等于50%6级
一侧耳廓缺失8级
一侧耳廓缺失大于等于50%9级
" + }, + { + "category": "section-header", + "bbox": [ + 287, + 877, + 494, + 913 + ], + "order": 8, + "content": "## 2.6 听功能障碍" + }, + { + "category": "table", + "bbox": [ + 216, + 939, + 1297, + 1348 + ], + "order": 9, + "content": "
双耳听力损失大于等于91dB4级
双耳听力损失大于等于81dB5级
一耳听力损失大于等于91dB,且另一耳听力损失大于等于71dB5级
双耳听力损失大于等于71dB6级
一耳听力损失大于等于91dB,且另一耳听力损失大于等于56dB6级
一耳听力损失大于等于91dB,且另一耳听力损失大于等于41dB7级
一耳听力损失大于等于71dB,且另一耳听力损失大于等于56dB7级
一耳听力损失大于等于71dB,且另一耳听力损失大于等于41dB8级
一耳听力损失大于等于91dB8级
一耳听力损失大于等于56dB,且另一耳听力损失大于等于41dB9级
一耳听力损失大于等于71dB9级
双耳听力损失大于等于26dB10级
一耳听力损失大于等于56dB10级
" + }, + { + "category": "section-header", + "bbox": [ + 235, + 1371, + 583, + 1408 + ], + "order": 10, + "content": "# 3 发声和言语的结构和功能" + }, + { + "category": "section-header", + "bbox": [ + 287, + 1409, + 520, + 1442 + ], + "order": 11, + "content": "## 3.1 鼻的结构损伤" + }, + { + "category": "table", + "bbox": [ + 238, + 1492, + 1306, + 1684 + ], + "order": 12, + "content": "
外鼻部完全缺失5级
外鼻部大部分缺损7级
鼻尖及一侧鼻翼缺损8级
双侧鼻腔或鼻咽部闭锁8级
一侧鼻翼缺损9级
单侧鼻腔或鼻孔闭锁10级
,Table" + }, + { + "category": "section-header", + "bbox": [ + 281, + 1709, + 545, + 1749 + ], + "order": 13, + "content": "## 3.2 口腔的结构损伤" + }, + { + "category": "table", + "bbox": [ + 236, + 1774, + 1294, + 1807 + ], + "order": 14, + "content": "
舌缺损大于全舌的2/33级
" + }, + { + "category": "page-footer", + "bbox": [ + 740, + 1899, + 772, + 1928 + ], + "order": 15, + "content": "15" + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/d05e29f3-29f7-40bb-bd5f-662115e647f1.json b/track1_finixdigital_242_insurance_terms/jsons/d05e29f3-29f7-40bb-bd5f-662115e647f1.json new file mode 100644 index 0000000000000000000000000000000000000000..fa53fe1162798f13a7bd2e7e9e228ac0bd53912d --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/d05e29f3-29f7-40bb-bd5f-662115e647f1.json @@ -0,0 +1,474 @@ +{ + "resized_height": 2784, + "resized_width": 704, + "width": 702, + "height": 2778, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "title", + "bbox": [ + 95, + 43, + 629, + 154 + ], + "content": "# 为什么要买 泰惠保·百万医疗险(免健告)?", + "order": 1 + }, + { + "category": "figure", + "bbox": [ + 133, + 184, + 561, + 477 + ], + "order": 2 + }, + { + "category": "figure", + "bbox": [ + 41, + 316, + 145, + 430 + ], + "order": 3 + }, + { + "category": "text", + "bbox": [ + 9, + 440, + 189, + 478 + ], + "content": "亚健康/慢性病", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 16, + 488, + 187, + 530 + ], + "content": "买不了医疗险", + "order": 5 + }, + { + "category": "figure", + "bbox": [ + 546, + 302, + 667, + 430 + ], + "order": 6 + }, + { + "category": "text", + "bbox": [ + 522, + 435, + 685, + 478 + ], + "content": "花费10~50万", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 511, + 489, + 700, + 527 + ], + "content": "普通家庭难承受", + "order": 8 + }, + { + "category": "figure", + "bbox": [ + 285, + 478, + 420, + 590 + ], + "order": 9 + }, + { + "category": "text", + "bbox": [ + 309, + 600, + 396, + 634 + ], + "content": "年龄大", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 256, + 651, + 447, + 686 + ], + "content": "保费太贵负担重", + "order": 11 + }, + { + "category": "caption", + "bbox": [ + 140, + 709, + 555, + 741 + ], + "content": "*数据来源《国民防范重大疾病健康教育读本》", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 88, + 838, + 617, + 892 + ], + "content": "# 泰惠保·百万医疗险(免健告)", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 60, + 896, + 645, + 945 + ], + "content": "提供亚健康人群医疗保障解决方案", + "order": 14 + }, + { + "category": "section-header", + "bbox": [ + 85, + 1006, + 635, + 1049 + ], + "content": "## 免健告 三高/肺结节/脂肪肝等可投保", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 215, + 1064, + 489, + 1104 + ], + "content": "满28天-105岁可投保", + "order": 16 + }, + { + "category": "figure", + "bbox": [ + 1, + 1140, + 222, + 1309 + ], + "order": 17 + }, + { + "category": "text", + "bbox": [ + 11, + 1316, + 215, + 1361 + ], + "content": "不限健康状况", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 48, + 1367, + 180, + 1401 + ], + "content": "免健康告知", + "order": 19 + }, + { + "category": "figure", + "bbox": [ + 240, + 1141, + 466, + 1309 + ], + "order": 20 + }, + { + "category": "text", + "bbox": [ + 251, + 1318, + 454, + 1360 + ], + "content": "不限职业类别", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 265, + 1367, + 444, + 1401 + ], + "content": "高危职业也可保", + "order": 22 + }, + { + "category": "figure", + "bbox": [ + 476, + 1141, + 702, + 1308 + ], + "order": 23 + }, + { + "category": "text", + "bbox": [ + 492, + 1317, + 693, + 1361 + ], + "content": "安心版价格低", + "order": 24 + }, + { + "category": "text", + "bbox": [ + 479, + 1366, + 702, + 1399 + ], + "content": "有社保50岁仅35.9元/月", + "order": 25 + }, + { + "category": "section-header", + "bbox": [ + 150, + 1478, + 557, + 1521 + ], + "content": "## 约定情形的重大既往症 不保障", + "order": 26 + }, + { + "category": "figure", + "bbox": [ + 3, + 1604, + 127, + 1695 + ], + "order": 27 + }, + { + "category": "text", + "bbox": [ + 139, + 1591, + 574, + 1671 + ], + "content": "初次投保(包括保险期间中断后重新投保)合同生效前已患的、或生效前已经开始住院并延续至生效后确诊的、或等待期内确诊的下列疾病/意外及其并发症", + "order": 28 + }, + { + "category": "figure", + "bbox": [ + 585, + 1584, + 699, + 1702 + ], + "order": 29 + }, + { + "category": "section-header", + "bbox": [ + 25, + 1703, + 161, + 1744 + ], + "content": "### ① 肿瘤类", + "order": 30 + }, + { + "category": "text", + "bbox": [ + 22, + 1743, + 641, + 1779 + ], + "content": "恶性肿瘤*、颅内肿瘤或占位、脊髓肿瘤或占位、肝占位*;", + "order": 31 + }, + { + "category": "section-header", + "bbox": [ + 22, + 1812, + 218, + 1852 + ], + "content": "### ② 肝肾疾病类", + "order": 32 + }, + { + "category": "text", + "bbox": [ + 26, + 1852, + 552, + 1890 + ], + "content": "慢性肾病(CKD4 期及以上)、肝硬化、肝衰竭;", + "order": 33 + }, + { + "category": "section-header", + "bbox": [ + 24, + 1920, + 413, + 1959 + ], + "content": "### ③ 心脑血管及糖脂代谢疾病类", + "order": 34 + }, + { + "category": "text", + "bbox": [ + 24, + 1961, + 678, + 2062 + ], + "content": "冠心病、心肌梗死、心功能不全(心功能Ⅲ级及以上)、主动脉夹层、心肌病、房颤/房扑、肺动脉高压、脑梗死、脑出血、心瓣膜病、高血压伴并发症、糖尿病伴并发症;", + "order": 35 + }, + { + "category": "section-header", + "bbox": [ + 25, + 2094, + 219, + 2131 + ], + "content": "### ④ 肺部疾病类", + "order": 36 + }, + { + "category": "text", + "bbox": [ + 24, + 2135, + 483, + 2169 + ], + "content": "慢性阻塞性肺病、呼吸衰竭、间质性肺病;", + "order": 37 + }, + { + "category": "section-header", + "bbox": [ + 23, + 2203, + 216, + 2244 + ], + "content": "### ⑤ 其他疾病类", + "order": 38 + }, + { + "category": "text", + "bbox": [ + 26, + 2244, + 681, + 2380 + ], + "content": "帕金森病,动脉瘤,系统性红斑狼疮,再生障碍性贫血、骨髓增生异常综合征,嗜(噬)血细胞综合征,胰腺炎,溃疡性结肠炎,克罗恩病,骨坏死,脊椎/脊柱/胸廓疾病*,癫痫,瘫痪,单/双侧耳聋;", + "order": 39 + }, + { + "category": "section-header", + "bbox": [ + 26, + 2415, + 94, + 2452 + ], + "content": "### 意外", + "order": 40 + }, + { + "category": "text", + "bbox": [ + 25, + 2454, + 457, + 2491 + ], + "content": "初次投保合同生效前已发生的意外事故。", + "order": 41 + }, + { + "category": "footnote", + "bbox": [ + 12, + 2532, + 690, + 2728 + ], + "content": "*释义:(1)恶性肿瘤:包括癌、肉瘤,含白血病、淋巴瘤。指初次投保合同生效前已罹患恶性肿瘤的持续、复发、转移。明确为合同生效后新发的恶性肿瘤不在此范围内,可正常赔付;(2)肝占位:指肝脏恶性肿瘤、肝脏性质不明的占位性病变,不包含投保前已明确为肝肿瘤、肝血管瘤、肝内胆管结石、肝内钙化灶的情况;(3)脊椎/脊柱/胸廓疾病:包括脊柱侧弯、胸廓畸形、椎间盘疾患、椎骨滑脱、椎管狭窄、脊髓型颈椎病。", + "order": 42 + }, + { + "category": "footnote", + "bbox": [ + 99, + 2738, + 606, + 2771 + ], + "content": "本产品不承担保险条款责任免除中列明的疾病/情况", + "order": 43 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/d08bddc4-ad93-4da2-988e-b9da222c75e5.json b/track1_finixdigital_242_insurance_terms/jsons/d08bddc4-ad93-4da2-988e-b9da222c75e5.json new file mode 100644 index 0000000000000000000000000000000000000000..0babdb038ac40535d4f97f774d44ec14548b6231 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/d08bddc4-ad93-4da2-988e-b9da222c75e5.json @@ -0,0 +1,43 @@ +{ + "resized_height": 2208, + "resized_width": 1248, + "width": 1250, + "height": 2224, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 87, + 81, + 1174, + 791 + ], + "content": "性增长和扩散,浸润和破坏周围正常组织,可以经血管、淋巴管和体腔扩散转移到身体其他部位,病灶经组织病理学检查(涵盖骨髓病理学检查)结果明确诊断,临床诊断属于世界卫生组织(WHO, WorldHealthOrganization)《疾病和有关健康问题的国际统计分类》第十次修订版(ICD-10)的恶性肿瘤类别及《国际疾病分类肿瘤学专辑》第三版(ICD-O-3)的肿瘤形态学编码属于 3、6、9(恶性肿瘤)范畴,但不在“恶性肿瘤——重度”保障范围的疾病。且特指下列六项之一:", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 90, + 829, + 1174, + 1805 + ], + "content": "(1) TNM 分期为Ⅰ期的甲状腺癌;\n(2) TNM 分期为 ${T}_{1}{N}_{0}{M}_{0}$ 期的前列腺癌;\n(3) 黑色素瘤以外的未发生淋巴结和远处转移的皮肤恶性肿瘤;\n(4) 相当于 Binet 分期方案 A 期程度的慢性淋巴细胞白血病;\n(5) 相当于 Ann Arbor 分期方案Ⅰ期程度的何杰金氏病;\n(6) 未发生淋巴结和远处转移且 WHO 分级为 G1 级别(核分裂像 <10/50 HPF 和 ki-67 ≤ 2%)的神经内分泌肿瘤。", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 87, + 1844, + 1174, + 2132 + ], + "content": "下列疾病不属于“恶性肿瘤——轻度”,不在保障范围内: ICD-O-3 肿瘤形态学编码属于 0(良性肿瘤)、1(动态未定性肿瘤)、2(原位癌和非侵袭性癌)范畴的疾病,如:", + "order": 3 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/d0f566c1-cd38-4cec-bd05-0775440629e9.json b/track1_finixdigital_242_insurance_terms/jsons/d0f566c1-cd38-4cec-bd05-0775440629e9.json new file mode 100644 index 0000000000000000000000000000000000000000..bb4190de3c9a710a0f8783db4ba22f75613e1801 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/d0f566c1-cd38-4cec-bd05-0775440629e9.json @@ -0,0 +1,909 @@ +{ + "resized_height": 7232, + "resized_width": 736, + "width": 750, + "height": 7240, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "figure", + "bbox": [ + 2, + 2, + 736, + 755 + ], + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 235, + 784, + 499, + 845 + ], + "content": "# 好天气去露营", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 237, + 849, + 502, + 896 + ], + "content": "意外风险不容忽视", + "order": 3 + }, + { + "category": "figure", + "bbox": [ + 84, + 952, + 228, + 1105 + ], + "order": 4 + }, + { + "category": "text", + "bbox": [ + 98, + 1120, + 226, + 1163 + ], + "content": "搭建划伤", + "order": 5 + }, + { + "category": "figure", + "bbox": [ + 288, + 950, + 446, + 1114 + ], + "order": 6 + }, + { + "category": "text", + "bbox": [ + 306, + 1121, + 429, + 1163 + ], + "content": "运动摔伤", + "order": 7 + }, + { + "category": "figure", + "bbox": [ + 500, + 956, + 661, + 1114 + ], + "order": 8 + }, + { + "category": "text", + "bbox": [ + 513, + 1123, + 635, + 1162 + ], + "content": "户外低温", + "order": 9 + }, + { + "category": "figure", + "bbox": [ + 85, + 1200, + 244, + 1360 + ], + "order": 10 + }, + { + "category": "text", + "bbox": [ + 100, + 1368, + 225, + 1409 + ], + "content": "暴雨意外", + "order": 11 + }, + { + "category": "figure", + "bbox": [ + 293, + 1198, + 451, + 1356 + ], + "order": 12 + }, + { + "category": "text", + "bbox": [ + 310, + 1367, + 430, + 1412 + ], + "content": "毒虫叮咬", + "order": 13 + }, + { + "category": "figure", + "bbox": [ + 490, + 1199, + 653, + 1353 + ], + "order": 14 + }, + { + "category": "text", + "bbox": [ + 485, + 1368, + 659, + 1408 + ], + "content": "遭遇猛兽毒蛇", + "order": 15 + }, + { + "category": "section-header", + "bbox": [ + 240, + 1470, + 496, + 1524 + ], + "content": "# 宠物特别保障", + "order": 16 + }, + { + "category": "figure", + "bbox": [ + 161, + 1548, + 562, + 1891 + ], + "order": 17 + }, + { + "category": "figure", + "bbox": [ + 220, + 1913, + 278, + 1972 + ], + "order": 18 + }, + { + "category": "text", + "bbox": [ + 279, + 1919, + 478, + 1966 + ], + "content": "宠物意外保障", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 173, + 1987, + 563, + 2034 + ], + "content": "爱宠意外受伤 医疗费用可赔付", + "order": 20 + }, + { + "category": "figure", + "bbox": [ + 240, + 2090, + 296, + 2147 + ], + "order": 21 + }, + { + "category": "text", + "bbox": [ + 297, + 2092, + 477, + 2142 + ], + "content": "第三者责任", + "order": 22 + }, + { + "category": "text", + "bbox": [ + 158, + 2158, + 576, + 2202 + ], + "content": "爱宠误伤他人 产生医药费可赔付", + "order": 23 + }, + { + "category": "text", + "bbox": [ + 151, + 2209, + 584, + 2248 + ], + "content": "爱宠意外导致他人身故伤残可赔付", + "order": 24 + }, + { + "category": "section-header", + "bbox": [ + 137, + 2375, + 600, + 2436 + ], + "content": "# 随心畅玩高风险运动保障", + "order": 25 + }, + { + "category": "figure", + "bbox": [ + 219, + 2502, + 298, + 2567 + ], + "order": 26 + }, + { + "category": "text", + "bbox": [ + 228, + 2568, + 294, + 2605 + ], + "content": "潜水", + "order": 27 + }, + { + "category": "figure", + "bbox": [ + 430, + 2505, + 508, + 2567 + ], + "order": 28 + }, + { + "category": "text", + "bbox": [ + 442, + 2566, + 501, + 2602 + ], + "content": "滑雪", + "order": 29 + }, + { + "category": "figure", + "bbox": [ + 96, + 2648, + 174, + 2722 + ], + "order": 30 + }, + { + "category": "text", + "bbox": [ + 106, + 2722, + 166, + 2756 + ], + "content": "跳伞", + "order": 31 + }, + { + "category": "figure", + "bbox": [ + 201, + 2635, + 528, + 2908 + ], + "order": 32 + }, + { + "category": "figure", + "bbox": [ + 549, + 2657, + 640, + 2723 + ], + "order": 33 + }, + { + "category": "text", + "bbox": [ + 555, + 2722, + 636, + 2758 + ], + "content": "皮划艇", + "order": 34 + }, + { + "category": "caption", + "bbox": [ + 51, + 2928, + 680, + 3040 + ], + "content": "本保险产品承保高风险运动,包括但不限于潜水、滑水、滑雪、滑冰、驾驶或乘坐滑翔翼、滑翔伞、跳伞、攀岩运动、探险活动、武术比赛、摔跤比赛、柔道、空手道、跆拳道、马术、拳击、特技表演、驾驶卡丁车、赛马、赛车、各种车辆表演、蹦极。", + "order": 35 + }, + { + "category": "section-header", + "bbox": [ + 187, + 3114, + 534, + 3171 + ], + "content": "# 意外发生医疗守护", + "order": 36 + }, + { + "category": "text", + "bbox": [ + 115, + 3224, + 304, + 3267 + ], + "content": "意外医疗费用", + "order": 37 + }, + { + "category": "text", + "bbox": [ + 150, + 3283, + 272, + 3319 + ], + "content": "最高5万元", + "order": 38 + }, + { + "category": "figure", + "bbox": [ + 86, + 3337, + 357, + 3521 + ], + "order": 39 + }, + { + "category": "text", + "bbox": [ + 460, + 3223, + 619, + 3268 + ], + "content": "含猝死保障", + "order": 40 + }, + { + "category": "text", + "bbox": [ + 461, + 3281, + 596, + 3322 + ], + "content": "最高0.5万元", + "order": 41 + }, + { + "category": "figure", + "bbox": [ + 416, + 3339, + 675, + 3517 + ], + "order": 42 + }, + { + "category": "section-header", + "bbox": [ + 196, + 3597, + 528, + 3653 + ], + "content": "# 拒绝囧途特色保险", + "order": 43 + }, + { + "category": "text", + "bbox": [ + 113, + 3703, + 303, + 3788 + ], + "content": "个人随身物品损失", + "order": 44 + }, + { + "category": "text", + "bbox": [ + 143, + 3812, + 273, + 3850 + ], + "content": "最高1000元", + "order": 45 + }, + { + "category": "figure", + "bbox": [ + 93, + 3850, + 340, + 4042 + ], + "order": 46 + }, + { + "category": "text", + "bbox": [ + 407, + 3703, + 653, + 3789 + ], + "content": "意外导致他人伤亡或财产损失", + "order": 47 + }, + { + "category": "text", + "bbox": [ + 474, + 3812, + 584, + 3850 + ], + "content": "最高2万元", + "order": 48 + }, + { + "category": "figure", + "bbox": [ + 407, + 3861, + 636, + 4041 + ], + "order": 49 + }, + { + "category": "section-header", + "bbox": [ + 277, + 4115, + 446, + 4173 + ], + "content": "# 保障方案", + "order": 50 + }, + { + "category": "table", + "bbox": [ + 34, + 4210, + 702, + 5205 + ], + "content": "
保障责任保额
计划一计划二计划三
旅行意外身故/残疾
(含高风险运动意外)
10万元20万元30万元
旅行意外医疗补偿2万元3万元5万元
旅行个人责任/1万元2万元
个人随身物品损失
(每件行李限额500元)
/500元1000元
突发急性病身故/2500元5000元
宠物意外医疗责任
(扣除次免赔额200元后,定点医院按60%赔付,非定点医院按40%赔付)
500元
宠物第三者人身伤亡损失
(单次事故赔偿限额1000元)
10000元
保费(元)
3-7天223868
8-15天4063116
16-30天69116218
", + "order": 51 + }, + { + "category": "section-header", + "bbox": [ + 177, + 5280, + 543, + 5341 + ], + "content": "# 【宠物保障激活流程】", + "order": 52 + }, + { + "category": "text", + "bbox": [ + 51, + 5421, + 272, + 5465 + ], + "content": "① 宠物建档:", + "order": 53 + }, + { + "category": "text", + "bbox": [ + 124, + 5466, + 679, + 5592 + ], + "content": "投保成功后需在3天内前往“云宠宝支付宝小程序”进行宠物建档,建档后方可进行宠物意外医疗和宠物第三者人身伤亡两项责任的理赔。", + "order": 54 + }, + { + "category": "text", + "bbox": [ + 124, + 5619, + 674, + 5706 + ], + "content": "打开支付宝APP-搜索云宠宝-点击进入-在爱宠小档案中点击添加爱宠-填写宠物信息。", + "order": 55 + }, + { + "category": "figure", + "bbox": [ + 135, + 5736, + 206, + 5817 + ], + "order": 56 + }, + { + "category": "text", + "bbox": [ + 207, + 5744, + 307, + 5785 + ], + "content": "云宠宝", + "order": 57 + }, + { + "category": "text", + "bbox": [ + 307, + 5744, + 354, + 5784 + ], + "content": "品牌", + "order": 58 + }, + { + "category": "text", + "bbox": [ + 356, + 5744, + 423, + 5779 + ], + "content": "小程序", + "order": 59 + }, + { + "category": "text", + "bbox": [ + 204, + 5784, + 441, + 5818 + ], + "content": "云宠生活·宠物生活更美好", + "order": 60 + }, + { + "category": "text", + "bbox": [ + 158, + 5842, + 495, + 5876 + ], + "content": "券 大宠爱猫咪驱虫联名卡满259减50", + "order": 61 + }, + { + "category": "text", + "bbox": [ + 597, + 5838, + 650, + 5877 + ], + "content": "领取", + "order": 62 + }, + { + "category": "text", + "bbox": [ + 50, + 5903, + 395, + 5951 + ], + "content": "② 宠物录入信息包括:", + "order": 63 + }, + { + "category": "text", + "bbox": [ + 125, + 5951, + 681, + 6037 + ], + "content": "昵称、品种、出生日期、性别、是否绝育、3张照片(全身照、正脸照、人宠合照)", + "order": 64 + }, + { + "category": "text", + "bbox": [ + 54, + 6059, + 306, + 6110 + ], + "content": "③ 被保险宠物:", + "order": 65 + }, + { + "category": "text", + "bbox": [ + 124, + 6111, + 681, + 6234 + ], + "content": "年龄为出生满90天-10周岁,身体健康且为被保险人(个人)以玩赏、陪伴为目的而饲养的犬类宠物或猫类宠物。", + "order": 66 + }, + { + "category": "caption", + "bbox": [ + 72, + 6263, + 668, + 6359 + ], + "content": "*藏獒、阿富汗猎犬、苏俄牧羊犬等类似大型或烈性犬只以及相关法律法规禁止普通市民饲养的犬类宠物或猫类宠物不在承保范围内。同一宠物限投一份,多投无效", + "order": 67 + }, + { + "category": "text", + "bbox": [ + 146, + 6457, + 584, + 6510 + ], + "content": "关注众安保险官方营业厅", + "order": 68 + }, + { + "category": "text", + "bbox": [ + 144, + 6514, + 606, + 6558 + ], + "content": "可在线自助理赔获取最新产品动态", + "order": 69 + }, + { + "category": "figure", + "bbox": [ + 127, + 6598, + 186, + 6663 + ], + "order": 70 + }, + { + "category": "text", + "bbox": [ + 97, + 6663, + 227, + 6700 + ], + "content": "支付宝APP", + "order": 71 + }, + { + "category": "figure", + "bbox": [ + 258, + 6601, + 324, + 6663 + ], + "order": 72 + }, + { + "category": "text", + "bbox": [ + 249, + 6663, + 336, + 6700 + ], + "content": "蚂蚁保", + "order": 73 + }, + { + "category": "figure", + "bbox": [ + 412, + 6599, + 475, + 6665 + ], + "order": 74 + }, + { + "category": "text", + "bbox": [ + 358, + 6663, + 534, + 6700 + ], + "content": "品牌官方营业厅", + "order": 75 + }, + { + "category": "figure", + "bbox": [ + 556, + 6595, + 624, + 6664 + ], + "order": 76 + }, + { + "category": "text", + "bbox": [ + 539, + 6663, + 646, + 6701 + ], + "content": "众安保险", + "order": 77 + }, + { + "category": "figure", + "bbox": [ + 137, + 6766, + 190, + 6819 + ], + "order": 78 + }, + { + "category": "text", + "bbox": [ + 198, + 6762, + 300, + 6798 + ], + "content": "众安保险", + "order": 79 + }, + { + "category": "text", + "bbox": [ + 192, + 6797, + 432, + 6829 + ], + "content": "中国第一家互联网保险公司", + "order": 80 + }, + { + "category": "text", + "bbox": [ + 165, + 6845, + 231, + 6881 + ], + "content": "★特色产品", + "order": 81 + }, + { + "category": "text", + "bbox": [ + 231, + 6846, + 400, + 6882 + ], + "content": "无忧保综合意外险", + "order": 82 + }, + { + "category": "text", + "bbox": [ + 138, + 6881, + 414, + 6913 + ], + "content": "支持家庭投保 | 含猝死 去看看>", + "order": 83 + }, + { + "category": "footnote", + "bbox": [ + 28, + 7008, + 709, + 7172 + ], + "content": "本产品适用条款《众安在线财产保险股份有限公司旅行意外伤害保险条款(互联网)注册号:C00017932312021120404613》等(其余条款名称及注册号详见投保须知),具体保障责任以您购买时选择的产品方案及电子保单为准,如您对本产品有疑义,请拨打952299或1010-9955咨询。", + "order": 84 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/d66346ba-7db4-4659-b102-d503596fe778.json b/track1_finixdigital_242_insurance_terms/jsons/d66346ba-7db4-4659-b102-d503596fe778.json new file mode 100644 index 0000000000000000000000000000000000000000..d1f54bc84d4f19a6ec9947cb4e77b27aa758f41f --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/d66346ba-7db4-4659-b102-d503596fe778.json @@ -0,0 +1,349 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1190, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 107, + 127, + 350, + 160 + ], + "content": "# 3. 如何交纳保险费", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 106, + 191, + 307, + 219 + ], + "content": "## 3.1 保险费的交纳", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 329, + 190, + 1041, + 217 + ], + "content": "本合同的交费方式和交费期间由您在投保时与我们约定,并在保险单上载明。", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 328, + 226, + 1078, + 280 + ], + "content": "分期支付保险费的,在交纳首期保险费后,您应当在每个保险费约定交纳日交纳其余各期的保险费。", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 105, + 304, + 245, + 333 + ], + "content": "## 3.2 宽限期", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 330, + 304, + 1081, + 389 + ], + "content": "如果您到期未交纳保险费,自保险费约定交纳日的次日零时起 60 日为保险费交纳的宽限期。宽限期内发生的保险事故,我们仍承担保险责任,但在给付保险金时会扣除您欠交的保险费。", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 331, + 393, + 1084, + 451 + ], + "content": "如果您在宽限期内未交纳保险费,则本合同自宽限期满日的 24 时起效力中止,但本合同另有约定的除外。", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 105, + 475, + 266, + 503 + ], + "content": "## 3.3 效力中止", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 330, + 473, + 764, + 505 + ], + "content": "在本合同效力中止期间,我们不承担保险责任。", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 103, + 529, + 266, + 556 + ], + "content": "## 3.4 效力恢复", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 326, + 525, + 1082, + 586 + ], + "content": "本合同效力中止之日起 2 年内,您可以申请恢复合同效力。经您与我们协商并达成协议,自您补交保险费之日起,本合同效力恢复。", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 326, + 591, + 1082, + 647 + ], + "content": "自本合同效力中止之日起满 2 年您和我们未达成协议的,我们有权解除本合同。我们解除本合同的,我们向您退还本合同中止之日的现金价值。", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 106, + 678, + 350, + 708 + ], + "content": "# 4. 如何领取保险金", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 106, + 740, + 244, + 766 + ], + "content": "## 4.1 受益人", + "order": 14 + }, + { + "category": "figure", + "bbox": [ + 180, + 768, + 259, + 849 + ], + "order": 15 + }, + { + "category": "text", + "bbox": [ + 330, + 739, + 810, + 766 + ], + "content": "请您或者被保险人慎重选择指定身故保险金受益人。", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 330, + 771, + 872, + 805 + ], + "content": "除另有指定外,养老保险金受益人为本合同的投保人本人。", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 329, + 811, + 1081, + 868 + ], + "content": "关于受益人的其他规定详见《中华人民共和国保险法》(请扫描二维码查看相关内容)。", + "order": 18 + }, + { + "category": "section-header", + "bbox": [ + 107, + 891, + 306, + 917 + ], + "content": "## 4.2 保险事故通知", + "order": 19 + }, + { + "category": "figure", + "bbox": [ + 180, + 919, + 261, + 998 + ], + "order": 20 + }, + { + "category": "text", + "bbox": [ + 329, + 891, + 883, + 918 + ], + "content": "您或者受益人知道保险事故发生后应当在 10 日内通知我们。", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 329, + 923, + 1080, + 986 + ], + "content": "关于保险事故通知的其他规定详见《中华人民共和国保险法》(请扫描二维码查看相关内容)。", + "order": 22 + }, + { + "category": "section-header", + "bbox": [ + 106, + 1019, + 286, + 1047 + ], + "content": "## 4.3 保险金申请", + "order": 23 + }, + { + "category": "text", + "bbox": [ + 329, + 1020, + 990, + 1047 + ], + "content": "在申请领取保险金时,申请人¹⁴须填写申请书,并提供下列证明和资料:", + "order": 24 + }, + { + "category": "text", + "bbox": [ + 338, + 1053, + 642, + 1084 + ], + "content": "(1) 申请人的有效身份证件¹⁵;", + "order": 25 + }, + { + "category": "text", + "bbox": [ + 338, + 1090, + 921, + 1118 + ], + "content": "(2) 下表所示的申请各类保险金时须提供的特殊证明和资料;", + "order": 26 + }, + { + "category": "table", + "bbox": [ + 322, + 1125, + 1081, + 1411 + ], + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
申请类别申请人须提供的特殊证明和资料
养老保险金被保险人的有效身份证件
被保险人在保证给付期内身故,一次性申领保证给付期内我们尚未给付的养老保险金国务院卫生行政部门规定的医疗机构、公安部门或者其他有权机构出具的被保险人的死亡证明
身故保险金国务院卫生行政部门规定的医疗机构、公安部门或者其他有权机构出具的被保险人的死亡证明
", + "order": 27 + }, + { + "category": "text", + "bbox": [ + 341, + 1427, + 1082, + 1487 + ], + "content": "(3) 所能提供的与确认保险事故的性质、原因、伤害程度等有关的其他证明和资料。", + "order": 28 + }, + { + "category": "footnote", + "bbox": [ + 109, + 1531, + 838, + 1558 + ], + "content": "¹⁴申请人:养老保险金及身故保险金的申请人分别为养老保险金受益人及身故保险金受益人。", + "order": 29 + }, + { + "category": "footnote", + "bbox": [ + 108, + 1559, + 1018, + 1584 + ], + "content": "¹⁵有效身份证件指由政府主管部门规定的证明个人身份的证件,如:居民身份证、按规定可使用的有效护照等证件。", + "order": 30 + }, + { + "category": "page-footer", + "bbox": [ + 795, + 1613, + 1078, + 1642 + ], + "content": "乐享一生养老年金(互联网)条款", + "order": 31 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/da77ee12-d6be-4841-8ca8-8d1e79ffc4d2.json b/track1_finixdigital_242_insurance_terms/jsons/da77ee12-d6be-4841-8ca8-8d1e79ffc4d2.json new file mode 100644 index 0000000000000000000000000000000000000000..978b4509d53de69fbc09cab57e16fb4fcb13c00a --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/da77ee12-d6be-4841-8ca8-8d1e79ffc4d2.json @@ -0,0 +1,519 @@ +{ + "resized_height": 8480, + "resized_width": 736, + "width": 750, + "height": 8493, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 150, + 83, + 586, + 129 + ], + "content": "# 为什么要提早储备养老资金?", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 71, + 221, + 194, + 262 + ], + "content": "现实问题", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 77, + 296, + 226, + 334 + ], + "content": "养老成本高", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 76, + 334, + 281, + 388 + ], + "content": "生活照料、医疗费用、品质养老", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 75, + 423, + 255, + 462 + ], + "content": "养老储备不足", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 75, + 463, + 291, + 519 + ], + "content": "晚年收入骤降、应急资金短缺、社保支撑不足", + "order": 6 + }, + { + "category": "figure", + "bbox": [ + 310, + 344, + 373, + 408 + ], + "order": 7 + }, + { + "category": "text", + "bbox": [ + 364, + 186, + 658, + 258 + ], + "content": "选择泰康瑞享一生PLUS养老年金保险(互联网)", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 385, + 289, + 511, + 328 + ], + "content": "安全安心", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 384, + 329, + 612, + 367 + ], + "content": "写入合同,不惧波动", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 358, + 429, + 486, + 469 + ], + "content": "补充养老", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 357, + 469, + 651, + 507 + ], + "content": "保至106岁,有效补充养老", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 194, + 615, + 543, + 663 + ], + "content": "# 领取金额明确写进合同", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 241, + 671, + 495, + 712 + ], + "content": "保证确定 养老无忧", + "order": 14 + }, + { + "category": "figure", + "bbox": [ + 36, + 747, + 699, + 1153 + ], + "order": 15 + }, + { + "category": "section-header", + "bbox": [ + 194, + 1212, + 543, + 1258 + ], + "content": "# 与“生命等长”的现金流", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 70, + 1265, + 392, + 1306 + ], + "content": "合同生效日——106周岁", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 70, + 1307, + 679, + 1397 + ], + "content": "保险期间:自合同生效日零时起,至被保险人年满106周岁时所在的保单年度结束时止", + "order": 18 + }, + { + "category": "figure", + "bbox": [ + 38, + 1419, + 696, + 1804 + ], + "order": 19 + }, + { + "category": "figure", + "bbox": [ + 150, + 1858, + 581, + 1906 + ], + "order": 20 + }, + { + "category": "text", + "bbox": [ + 83, + 1917, + 658, + 1999 + ], + "content": "保证领取30年,养老保险金每年或每月领取金额固定", + "order": 21 + }, + { + "category": "figure", + "bbox": [ + 37, + 2015, + 699, + 2426 + ], + "order": 22 + }, + { + "category": "section-header", + "bbox": [ + 143, + 2477, + 599, + 2534 + ], + "content": "# 特别祝寿金加持,领取有惊喜", + "order": 23 + }, + { + "category": "text", + "bbox": [ + 66, + 2534, + 680, + 2618 + ], + "content": "被保险人年满80周岁后的首个年生效对应日生存,可获特别祝寿保险金,领取更多!", + "order": 24 + }, + { + "category": "figure", + "bbox": [ + 33, + 2635, + 695, + 3091 + ], + "order": 25 + }, + { + "category": "section-header", + "bbox": [ + 143, + 3125, + 594, + 3174 + ], + "content": "# 起领年龄灵活,自主规划养老", + "order": 26 + }, + { + "category": "text", + "bbox": [ + 124, + 3179, + 614, + 3221 + ], + "content": "女性:可选55、60、65、70周岁领取", + "order": 27 + }, + { + "category": "text", + "bbox": [ + 124, + 3222, + 618, + 3266 + ], + "content": "男性:可选60、65、70、75周岁领取", + "order": 28 + }, + { + "category": "figure", + "bbox": [ + 33, + 3281, + 698, + 3713 + ], + "order": 29 + }, + { + "category": "section-header", + "bbox": [ + 59, + 3751, + 249, + 3796 + ], + "content": "# 大家怎么买?", + "order": 30 + }, + { + "category": "figure", + "bbox": [ + 58, + 3802, + 197, + 3982 + ], + "order": 31 + }, + { + "category": "text", + "bbox": [ + 209, + 3854, + 427, + 3899 + ], + "content": "康女士 | 30周岁", + "order": 32 + }, + { + "category": "text", + "bbox": [ + 209, + 3914, + 650, + 3984 + ], + "content": "为自己投保泰康瑞享一生PLUS养老年金保险(互联网)", + "order": 33 + }, + { + "category": "text", + "bbox": [ + 61, + 4015, + 197, + 4095 + ], + "content": "10万元/年保费", + "order": 34 + }, + { + "category": "text", + "bbox": [ + 222, + 4016, + 328, + 4095 + ], + "content": "10年缴费期限", + "order": 35 + }, + { + "category": "text", + "bbox": [ + 342, + 4014, + 628, + 4093 + ], + "content": "60周岁起领30年养老保险金保证给付期", + "order": 36 + }, + { + "category": "text", + "bbox": [ + 39, + 4135, + 352, + 4179 + ], + "content": "可获得的保单利益如下:", + "order": 37 + }, + { + "category": "table", + "bbox": [ + 31, + 4182, + 716, + 5084 + ], + "content": "
被保险人年度末年龄当年度保险费累计保险费当年度初养老保险金金额当年度初特别祝寿保险金金额当年度未生存给付保证给付期内身故一次性给付金额当年度末身故给付当年度末现金价值(不含当年度末生存给付)
31100000100000000010000027400
32100000200000000020000063600
331000003000000000300000106900
341000004000000000400000155400
351000005000000000500000207100
361000006000000000600000262000
371000007000000000700000320400
381000008000000000800000382500
391000009000000000900000448400
40100000100000000001000000518400
500100000000001000000802500
60010000000065900011923001126400
70010000006590006590013180000914700
80010000006590001659006590000490000
810100000065900100000659005931000443600
900100000065900065900000
1000100000065900065900000
1050100000065900065900000
106010000006590000000
", + "order": 38 + }, + { + "category": "section-header", + "bbox": [ + 61, + 5132, + 206, + 5179 + ], + "content": "# 保险责任", + "order": 39 + }, + { + "category": "table", + "bbox": [ + 31, + 5186, + 707, + 6715 + ], + "content": "
养老保险金被保险人自首个养老保险金领取日起,在每个养老保险金领取日零时生存,我们按本合同约定的养老保险金领取频次和领取数额向生存类保险金受益人给付养老保险金。其中,自本合同首个养老保险金领取日零时起的30个保单年度为养老保险金保证给付期,并在保险单上载明。如果被保险人在保证给付期内身故,我们将向生存类保险金受益人一次性给付在该期间内尚未领取的养老保险金总额,其数额为:在保证给付期内应给付的养老保险金总额扣除累计已给付的养老保险金后的余额(不计息),本合同终止。
特别祝寿保险金被保险人在年满80周岁后首个本合同的年生效对应日生存,我们向生存类保险金受益人给付特别祝寿保险金。特别祝寿保险金金额为本合同年交保险费乘以特别祝寿保险金给付比例。“特别祝寿保险金给付比例”的取值如下:
交费期间3年交5年交10年交15年交20年交
特别祝寿保险金给付比例(%)3050100150200
身故保险金被保险人身故,我们向身故保险金受益人给付身故保险金,本合同终止。身故保险金的金额为:
被保险人身故时间身故保险金金额
首个养老保险金领取日前已交纳的保险费总额与被保险人身故之日本合同现金价值的较大者
首个养老保险金领取日及以后
", + "order": 40 + }, + { + "category": "section-header", + "bbox": [ + 60, + 6761, + 202, + 6808 + ], + "content": "# 投保须知", + "order": 41 + }, + { + "category": "table", + "bbox": [ + 34, + 6825, + 702, + 7988 + ], + "content": "
被保险人投保年龄最低投保年龄0周岁(出生满30天且出院),最高投保年龄(周岁)见下表:
首个养老保险金领取日(性别)3年交5年交10年交15年交20年交
55周岁后的首个年生效对应日(女)5250454035
60周岁后的首个年生效对应日(男/女)5755504540
65周岁后的首个年生效对应日(男/女)6060555045
70周岁后的首个年生效对应日(男/女)6060605550
75周岁后的首个年生效对应日(男)6060605550
保险期间本合同生效日零时——被保险人年满106周岁时所在保单年度结束。
交费期间3年交、5年交、10年交、15年交、20年交。
", + "order": 42 + }, + { + "category": "footnote", + "bbox": [ + 44, + 7998, + 92, + 8032 + ], + "content": "注:", + "order": 43 + }, + { + "category": "footnote", + "bbox": [ + 43, + 8033, + 693, + 8097 + ], + "content": "1、本资料仅供参考,具体内容以《泰康瑞享一生PLUS养老年金保险(互联网)条款》为准。", + "order": 44 + }, + { + "category": "footnote", + "bbox": [ + 45, + 8097, + 694, + 8225 + ], + "content": "2、生存给付指本合同保险责任中的养老保险金及特别祝寿保险金;身故给付指本合同保险责任中的身故保险金;保证给付期内身故一次性给付指在保证给付期内尚未领取的养老保险金总额。", + "order": 45 + }, + { + "category": "footnote", + "bbox": [ + 43, + 8225, + 687, + 8289 + ], + "content": "3、为了便于理解和演示,“第N保单年度末”视同为“第(N+1)保单年度初”。", + "order": 46 + }, + { + "category": "footnote", + "bbox": [ + 44, + 8289, + 691, + 8419 + ], + "content": "4、保证给付期内最后一个保单年度之前,当年度末退保金为当年度末现金价值(不含当年度末生存给付)加当年度末生存给付;保证给付期内最后一个保单年度及之后,当年度末退保金为当年度末现金价值(不含当年度末生存给付)。", + "order": 47 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/dd9a84ec-370a-4f2a-81dc-b9a6e33b3b47.json b/track1_finixdigital_242_insurance_terms/jsons/dd9a84ec-370a-4f2a-81dc-b9a6e33b3b47.json new file mode 100644 index 0000000000000000000000000000000000000000..1ed58f09ae3ea9c32876930d780b7c91b452b610 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/dd9a84ec-370a-4f2a-81dc-b9a6e33b3b47.json @@ -0,0 +1,724 @@ +{ + "resized_height": 5536, + "resized_width": 736, + "width": 750, + "height": 5540, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "title", + "bbox": [ + 140, + 69, + 573, + 134 + ], + "content": "# 平安个人综合意外险", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 247, + 133, + 476, + 169 + ], + "content": "一 互联网专属 一", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 149, + 169, + 562, + 226 + ], + "content": "保障生活、工作、出行等", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 139, + 226, + 583, + 275 + ], + "content": "多场景可能出现的意外风险", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 182, + 275, + 541, + 319 + ], + "content": "11-60周岁人群均可投保", + "order": 5 + }, + { + "category": "figure", + "bbox": [ + 15, + 100, + 127, + 273 + ], + "order": 6 + }, + { + "category": "figure", + "bbox": [ + 594, + 104, + 702, + 278 + ], + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 203, + 446, + 520, + 505 + ], + "content": "# 为什么要买意外险?", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 55, + 589, + 251, + 636 + ], + "content": "意外防不胜防", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 65, + 673, + 362, + 761 + ], + "content": "我国仅交通意外就导致 平均每分钟有1人死亡", + "order": 10 + }, + { + "category": "figure", + "bbox": [ + 424, + 616, + 630, + 781 + ], + "order": 11 + }, + { + "category": "text", + "bbox": [ + 398, + 840, + 674, + 887 + ], + "content": "意外成死亡主要原因", + "order": 12 + }, + { + "category": "figure", + "bbox": [ + 71, + 894, + 335, + 1034 + ], + "order": 13 + }, + { + "category": "text", + "bbox": [ + 346, + 914, + 669, + 1049 + ], + "content": "我国每年因意外 死亡人数约70万~75万人 是第五位死亡原因", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 57, + 1091, + 220, + 1137 + ], + "content": "治疗负担重", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 61, + 1160, + 472, + 1299 + ], + "content": "发生严重意外事故,伤残或高昂治疗费及后续休养,会对家庭经济状况带来巨大长期影响", + "order": 16 + }, + { + "category": "figure", + "bbox": [ + 486, + 1118, + 638, + 1298 + ], + "order": 17 + }, + { + "category": "text", + "bbox": [ + 540, + 1337, + 677, + 1389 + ], + "content": "关爱家人", + "order": 18 + }, + { + "category": "figure", + "bbox": [ + 92, + 1361, + 257, + 1546 + ], + "order": 19 + }, + { + "category": "text", + "bbox": [ + 317, + 1422, + 667, + 1519 + ], + "content": "正视意外给家庭带来的风险 做到真正为家人负责", + "order": 20 + }, + { + "category": "caption", + "bbox": [ + 78, + 1579, + 656, + 1620 + ], + "content": "*数据来源:国家统计局-年度数据2017国家卫计委《中国伤害预防报告》", + "order": 21 + }, + { + "category": "section-header", + "bbox": [ + 100, + 1714, + 635, + 1782 + ], + "content": "# 谁都不知道明天和意外哪个先来", + "order": 22 + }, + { + "category": "figure", + "bbox": [ + 209, + 1882, + 320, + 1969 + ], + "order": 23 + }, + { + "category": "text", + "bbox": [ + 202, + 1993, + 320, + 2039 + ], + "content": "出行事故", + "order": 24 + }, + { + "category": "figure", + "bbox": [ + 423, + 1874, + 520, + 1975 + ], + "order": 25 + }, + { + "category": "text", + "bbox": [ + 411, + 1992, + 535, + 2042 + ], + "content": "宠物抓咬", + "order": 26 + }, + { + "category": "figure", + "bbox": [ + 51, + 2019, + 154, + 2125 + ], + "order": 27 + }, + { + "category": "text", + "bbox": [ + 49, + 2146, + 166, + 2193 + ], + "content": "跌倒骨折", + "order": 28 + }, + { + "category": "figure", + "bbox": [ + 253, + 2069, + 478, + 2361 + ], + "order": 29 + }, + { + "category": "figure", + "bbox": [ + 568, + 2028, + 690, + 2129 + ], + "order": 30 + }, + { + "category": "text", + "bbox": [ + 571, + 2143, + 685, + 2194 + ], + "content": "意外溺水", + "order": 31 + }, + { + "category": "figure", + "bbox": [ + 83, + 2237, + 172, + 2334 + ], + "order": 32 + }, + { + "category": "text", + "bbox": [ + 72, + 2359, + 183, + 2401 + ], + "content": "高空坠物", + "order": 33 + }, + { + "category": "figure", + "bbox": [ + 562, + 2243, + 648, + 2335 + ], + "order": 34 + }, + { + "category": "text", + "bbox": [ + 557, + 2360, + 661, + 2394 + ], + "content": "自然灾害", + "order": 35 + }, + { + "category": "figure", + "bbox": [ + 206, + 2397, + 306, + 2488 + ], + "order": 36 + }, + { + "category": "text", + "bbox": [ + 208, + 2504, + 328, + 2550 + ], + "content": "爬楼摔伤", + "order": 37 + }, + { + "category": "figure", + "bbox": [ + 431, + 2392, + 507, + 2482 + ], + "order": 38 + }, + { + "category": "text", + "bbox": [ + 417, + 2508, + 528, + 2546 + ], + "content": "做饭烫伤", + "order": 39 + }, + { + "category": "text", + "bbox": [ + 130, + 2714, + 302, + 2767 + ], + "content": "现实情况:", + "order": 40 + }, + { + "category": "text", + "bbox": [ + 77, + 2776, + 463, + 2872 + ], + "content": "担心生活中隐藏风险多,大小意外频频发生?", + "order": 41 + }, + { + "category": "figure", + "bbox": [ + 465, + 2701, + 678, + 2924 + ], + "order": 42 + }, + { + "category": "text", + "bbox": [ + 126, + 2975, + 339, + 3038 + ], + "content": "我们的优势:", + "order": 43 + }, + { + "category": "text", + "bbox": [ + 191, + 3060, + 544, + 3182 + ], + "content": "大小意外都能保保障额度随心选", + "order": 44 + }, + { + "category": "text", + "bbox": [ + 556, + 3071, + 644, + 3113 + ], + "content": "责任内", + "order": 45 + }, + { + "category": "figure", + "bbox": [ + 40, + 3230, + 349, + 3498 + ], + "order": 46 + }, + { + "category": "text", + "bbox": [ + 57, + 3514, + 340, + 3565 + ], + "content": "意外身故最高50万元", + "order": 47 + }, + { + "category": "figure", + "bbox": [ + 385, + 3234, + 694, + 3497 + ], + "order": 48 + }, + { + "category": "text", + "bbox": [ + 395, + 3512, + 680, + 3565 + ], + "content": "意外伤残最高50万元", + "order": 49 + }, + { + "category": "text", + "bbox": [ + 132, + 3731, + 302, + 3784 + ], + "content": "现实情况:", + "order": 50 + }, + { + "category": "text", + "bbox": [ + 81, + 3791, + 432, + 3896 + ], + "content": "沉浸在运动中,却提心吊胆害怕出意外?", + "order": 51 + }, + { + "category": "figure", + "bbox": [ + 471, + 3730, + 677, + 3945 + ], + "order": 52 + }, + { + "category": "text", + "bbox": [ + 130, + 3999, + 336, + 4058 + ], + "content": "我们的优势:", + "order": 53 + }, + { + "category": "text", + "bbox": [ + 192, + 4081, + 548, + 4147 + ], + "content": "大小意外都涵盖", + "order": 54 + }, + { + "category": "text", + "bbox": [ + 143, + 4148, + 596, + 4202 + ], + "content": "常见运动意外保障放心运动", + "order": 55 + }, + { + "category": "figure", + "bbox": [ + 215, + 4224, + 491, + 4638 + ], + "order": 56 + }, + { + "category": "figure", + "bbox": [ + 155, + 4285, + 220, + 4349 + ], + "order": 57 + }, + { + "category": "text", + "bbox": [ + 147, + 4353, + 227, + 4406 + ], + "content": "跳高", + "order": 58 + }, + { + "category": "figure", + "bbox": [ + 495, + 4259, + 565, + 4334 + ], + "order": 59 + }, + { + "category": "text", + "bbox": [ + 495, + 4340, + 565, + 4379 + ], + "content": "跑步", + "order": 60 + }, + { + "category": "figure", + "bbox": [ + 82, + 4463, + 154, + 4536 + ], + "order": 61 + }, + { + "category": "text", + "bbox": [ + 79, + 4533, + 154, + 4592 + ], + "content": "...", + "order": 62 + }, + { + "category": "text", + "bbox": [ + 563, + 4465, + 623, + 4510 + ], + "content": "打球", + "order": 63 + }, + { + "category": "section-header", + "bbox": [ + 255, + 4735, + 483, + 4813 + ], + "content": "# 产品计划", + "order": 64 + }, + { + "category": "table", + "bbox": [ + 35, + 4871, + 708, + 5189 + ], + "content": "
保障责任基本款优享款尊贵款
意外身故10万30万50万
意外伤残10万30万50万
保障期间1年
投保年龄11-60周岁
", + "order": 65 + }, + { + "category": "caption", + "bbox": [ + 37, + 5195, + 287, + 5246 + ], + "content": "*具体以产品条款为准", + "order": 66 + }, + { + "category": "footnote", + "bbox": [ + 34, + 5268, + 713, + 5470 + ], + "content": "注:本产品适用条款为“平安互联网意外伤害保险(报备文号平保健发[2021]342号,条款编码平安健康[2021]意外伤害保险112号)”,具体保障责任根据您购买时选择的产品计划为准,如您对本产品有疑义,请联系我司在线客服或拨打95511-7咨询。", + "order": 67 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/e1cadfdd-46df-412b-bff0-510486e7842b.json b/track1_finixdigital_242_insurance_terms/jsons/e1cadfdd-46df-412b-bff0-510486e7842b.json new file mode 100644 index 0000000000000000000000000000000000000000..146039d43508610f71dcf54436d5eaa71fe34db5 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/e1cadfdd-46df-412b-bff0-510486e7842b.json @@ -0,0 +1,615 @@ +{ + "resized_height": 1408, + "resized_width": 992, + "width": 993, + "height": 1404, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 409, + 118, + 582, + 161 + ], + "content": "# 【条款目录】", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 134, + 188, + 196, + 211 + ], + "content": "## 1. 释义", + "order": 2 + }, + { + "category": "section-header", + "bbox": [ + 151, + 214, + 230, + 239 + ], + "content": "### 1.1 释义", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 133, + 266, + 322, + 293 + ], + "content": "## 2. 您与我们订立的合同", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 151, + 296, + 268, + 321 + ], + "content": "### 2.1 合同构成", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 151, + 324, + 322, + 349 + ], + "content": "### 2.2 合同成立与生效", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 151, + 353, + 267, + 375 + ], + "content": "### 2.3 投保范围", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 151, + 379, + 250, + 403 + ], + "content": "### 2.4 犹豫期", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 132, + 431, + 285, + 456 + ], + "content": "## 3. 我们提供的保障", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 151, + 459, + 394, + 483 + ], + "content": "### 3.1 保险金额和基本保险金额", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 151, + 485, + 267, + 506 + ], + "content": "### 3.2 保险期间", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 151, + 511, + 267, + 535 + ], + "content": "### 3.3 保险责任", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 187, + 538, + 341, + 563 + ], + "content": "#### 3.3.1 身故保险金", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 132, + 590, + 228, + 615 + ], + "content": "## 4. 保单红利", + "order": 14 + }, + { + "category": "section-header", + "bbox": [ + 151, + 618, + 268, + 645 + ], + "content": "### 4.1 保单红利", + "order": 15 + }, + { + "category": "section-header", + "bbox": [ + 132, + 672, + 228, + 697 + ], + "content": "## 5. 责任免除", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 149, + 698, + 261, + 724 + ], + "content": "### 5.1 责任免除", + "order": 17 + }, + { + "category": "section-header", + "bbox": [ + 132, + 752, + 320, + 776 + ], + "content": "## 6. 如实告知及年龄错误", + "order": 18 + }, + { + "category": "section-header", + "bbox": [ + 151, + 779, + 356, + 801 + ], + "content": "### 6.1 明确说明与如实告知", + "order": 19 + }, + { + "category": "section-header", + "bbox": [ + 151, + 805, + 356, + 829 + ], + "content": "### 6.2 年龄性别错误的处理", + "order": 20 + }, + { + "category": "section-header", + "bbox": [ + 151, + 832, + 395, + 857 + ], + "content": "### 6.3 本公司合同解除权的限制", + "order": 21 + }, + { + "category": "section-header", + "bbox": [ + 133, + 890, + 211, + 914 + ], + "content": "## 7. 保险费", + "order": 22 + }, + { + "category": "section-header", + "bbox": [ + 151, + 921, + 304, + 943 + ], + "content": "### 7.1 保险费的支付", + "order": 23 + }, + { + "category": "section-header", + "bbox": [ + 151, + 948, + 250, + 972 + ], + "content": "### 7.2 宽限期", + "order": 24 + }, + { + "category": "section-header", + "bbox": [ + 151, + 976, + 341, + 1002 + ], + "content": "### 7.3 保险费的自动垫交", + "order": 25 + }, + { + "category": "section-header", + "bbox": [ + 132, + 1032, + 285, + 1054 + ], + "content": "## 8. 效力中止与恢复", + "order": 26 + }, + { + "category": "section-header", + "bbox": [ + 150, + 1058, + 321, + 1082 + ], + "content": "### 8.1 效力中止与恢复", + "order": 27 + }, + { + "category": "section-header", + "bbox": [ + 498, + 187, + 616, + 210 + ], + "content": "## 9. 保险金申请", + "order": 28 + }, + { + "category": "section-header", + "bbox": [ + 514, + 214, + 673, + 239 + ], + "content": "### 9.1 保险事故通知", + "order": 29 + }, + { + "category": "section-header", + "bbox": [ + 514, + 239, + 655, + 266 + ], + "content": "### 9.2 保险金申请", + "order": 30 + }, + { + "category": "section-header", + "bbox": [ + 514, + 268, + 635, + 293 + ], + "content": "### 9.3 诉讼时效", + "order": 31 + }, + { + "category": "section-header", + "bbox": [ + 514, + 296, + 655, + 321 + ], + "content": "### 9.4 保险金给付", + "order": 32 + }, + { + "category": "section-header", + "bbox": [ + 514, + 324, + 673, + 349 + ], + "content": "### 9.5 宣告死亡处理", + "order": 33 + }, + { + "category": "section-header", + "bbox": [ + 497, + 377, + 700, + 403 + ], + "content": "## 10. 保单第二投保人权益", + "order": 34 + }, + { + "category": "section-header", + "bbox": [ + 513, + 403, + 661, + 427 + ], + "content": "### 10.1 第二投保人", + "order": 35 + }, + { + "category": "section-header", + "bbox": [ + 516, + 432, + 755, + 456 + ], + "content": "### 10.2 指定第二投保人的方式", + "order": 36 + }, + { + "category": "section-header", + "bbox": [ + 514, + 458, + 828, + 509 + ], + "content": "### 10.3 第二投保人申请变更投保人时间要求及变更时的限制", + "order": 37 + }, + { + "category": "section-header", + "bbox": [ + 514, + 509, + 773, + 534 + ], + "content": "### 10.4 撤销已指定的第二投保人", + "order": 38 + }, + { + "category": "section-header", + "bbox": [ + 497, + 565, + 589, + 590 + ], + "content": "## 11. 受益人", + "order": 39 + }, + { + "category": "section-header", + "bbox": [ + 514, + 591, + 624, + 617 + ], + "content": "### 11.1 受益人", + "order": 40 + }, + { + "category": "section-header", + "bbox": [ + 497, + 646, + 646, + 670 + ], + "content": "## 12. 保险合同变更", + "order": 41 + }, + { + "category": "section-header", + "bbox": [ + 515, + 672, + 683, + 698 + ], + "content": "### 12.1 减额交清保险", + "order": 42 + }, + { + "category": "section-header", + "bbox": [ + 515, + 698, + 722, + 725 + ], + "content": "### 12.2 减少基本保险金额", + "order": 43 + }, + { + "category": "section-header", + "bbox": [ + 496, + 752, + 645, + 776 + ], + "content": "## 13. 保险合同借款", + "order": 44 + }, + { + "category": "section-header", + "bbox": [ + 512, + 779, + 681, + 804 + ], + "content": "### 13.1 保险合同借款", + "order": 45 + }, + { + "category": "section-header", + "bbox": [ + 497, + 832, + 606, + 857 + ], + "content": "## 14. 转换年金", + "order": 46 + }, + { + "category": "section-header", + "bbox": [ + 515, + 860, + 647, + 886 + ], + "content": "### 14.1 转换年金", + "order": 47 + }, + { + "category": "section-header", + "bbox": [ + 497, + 921, + 605, + 943 + ], + "content": "## 15. 合同解除", + "order": 48 + }, + { + "category": "section-header", + "bbox": [ + 515, + 948, + 774, + 974 + ], + "content": "### 15.1 您解除合同的手续及风险", + "order": 49 + }, + { + "category": "section-header", + "bbox": [ + 497, + 1004, + 700, + 1029 + ], + "content": "## 16. 其他您应注意的事项", + "order": 50 + }, + { + "category": "section-header", + "bbox": [ + 516, + 1032, + 774, + 1056 + ], + "content": "### 16.1 未成年人身故保险金限制", + "order": 51 + }, + { + "category": "section-header", + "bbox": [ + 515, + 1058, + 646, + 1081 + ], + "content": "### 16.2 未还款项", + "order": 52 + }, + { + "category": "section-header", + "bbox": [ + 516, + 1084, + 684, + 1110 + ], + "content": "### 16.3 联系方式变更", + "order": 53 + }, + { + "category": "section-header", + "bbox": [ + 516, + 1111, + 647, + 1136 + ], + "content": "### 16.4 争议处理", + "order": 54 + }, + { + "category": "section-header", + "bbox": [ + 516, + 1138, + 684, + 1164 + ], + "content": "### 16.5 合同内容变更", + "order": 55 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/e2cd85f0-c306-46c1-b3bc-252e0b4891fc.json b/track1_finixdigital_242_insurance_terms/jsons/e2cd85f0-c306-46c1-b3bc-252e0b4891fc.json new file mode 100644 index 0000000000000000000000000000000000000000..2d142fe9402dd626f84d0f10697aa7871cbc4859 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/e2cd85f0-c306-46c1-b3bc-252e0b4891fc.json @@ -0,0 +1,186 @@ +{ + "resized_height": 1408, + "resized_width": 992, + "width": 993, + "height": 1404, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "title", + "bbox": [ + 347, + 104, + 644, + 138 + ], + "content": "# 国华永享福终身寿险条款", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 80, + 144, + 945, + 200 + ], + "content": "在本条款中,“您”指投保人,“我们”“本公司”均指国华人寿保险股份有限公司,“本合同”“本保险合同”均指您与我们之间订立的“国华永享福终身寿险合同”。", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 82, + 206, + 890, + 242 + ], + "content": "以下内容是本条款的核心内容,描述了您所能获得的保障内容,请您认真阅读", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 82, + 259, + 648, + 293 + ], + "content": "# 1 我们保什么:这部分主要讲我们提供的保障以及保障时间", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 82, + 327, + 220, + 362 + ], + "content": "## 1.1 保险期间", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 281, + 325, + 912, + 387 + ], + "content": "本合同的保险期间为终身,自本合同生效日起至被保险人身故或全残?时止,保险期间在保险单上载明。", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 82, + 405, + 254, + 439 + ], + "content": "## 1.2 基本保险金额", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 280, + 403, + 913, + 488 + ], + "content": "本合同的基本保险金额由您在投保时与我们约定并在保险单或批单、批注上载明,投保时的基本保险金额须符合我们当时的投保规定。若该金额发生变更,则以最后一次变更后的金额为基本保险金额。", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 78, + 506, + 271, + 570 + ], + "content": "## 1.3 年度基本保险金额", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 280, + 509, + 914, + 592 + ], + "content": "本合同第一个保单年度²的年度基本保险金额等于基本保险金额。自第二个保单年度起,每一保单年度的年度基本保险金额为上一保单年度对应的年度基本保险金额的103%。", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 81, + 612, + 272, + 673 + ], + "content": "## 1.4 减少年度基本保险金额", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 280, + 614, + 915, + 725 + ], + "content": "本合同生效满五年后且在本合同有效期内,您可以申请并经我们审核同意后减少本合同的年度基本保险金额(也称“减保”)。同一保单年度内您累计申请减少的基本保险金额之和不得超过本合同生效时基本保险金额的20%,减保后的本合同保险费不得低于我们规定的最低限额。", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 277, + 736, + 911, + 828 + ], + "content": "减少年度基本保险金额后,我们将退还减少部分所对应的保单价值³,同时,本合同的基本保险金额、各保单年度的年度基本保险金额、剩余期交保险费、保单价值均按减保比例减少。", + "order": 13 + }, + { + "category": "footnote", + "bbox": [ + 81, + 857, + 910, + 1234 + ], + "content": "¹全残:指下列情形之一:\n(1)双目永久完全(注1)失明的(注2);\n(2)两上肢腕关节以上或两下肢踝关节以上缺失的;\n(3)一上肢腕关节以上及一下肢踝关节以上缺失的;\n(4)一目永久完全失明及一上肢腕关节以上缺失的;\n(5)一目永久完全失明及一下肢踝关节以上缺失的;\n(6)四肢关节机能永久完全丧失的(注3);\n(7)咀嚼、吞咽机能永久完全丧失的(注4);\n(8)中枢神经系统机能或胸、腹部脏器机能极度障碍,终身不能从事任何工作,为维持生命必要的日常生活活动,全需他人扶助的(注5)\n(注1):永久完全:指自意外伤害之日起经过一百八十天的治疗,机能仍然完全丧失,但眼球摘除等明显无法复原之情况,不在此限。\n(注2):失明:包括眼球缺失或摘除、或不能辨别明暗、或仅能辨别眼前手动者,最佳矫正视力低于国际标准视力表0.02,或视野半径小于5度,并由我们指定有资格的眼科医师出具医疗诊断证明。\n(注3):关节机能的丧失:指关节永久完全僵硬、或麻痹、或关节不能随意识活动。\n(注4):咀嚼、吞咽机能的丧失:指由于牙齿以外的原因引起器质障碍或机能障碍,以致不能作咀嚼、吞咽运动,除流质食物外不能摄取或吞咽的状态。\n(注5):为维持生命必要之日常生活活动,全需他人扶助:指食物摄取、大小便始末、穿脱衣服、起居、步行、入浴等,皆不能自理,需要他人帮助。", + "order": 14 + }, + { + "category": "footnote", + "bbox": [ + 81, + 1234, + 909, + 1272 + ], + "content": "²保单年度:指在本合同有效期内,从本合同生效日或保单周年日零时起至下一年度的保单周年日零时(不含)止为一个保单年度。", + "order": 15 + }, + { + "category": "footnote", + "bbox": [ + 81, + 1272, + 909, + 1313 + ], + "content": "³保单价值:也称现金价值,指本合同所具有的价值,通常体现为解除合同时,根据精算原理计算的,由我们退还的那部分金额。", + "order": 16 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/e3e50b03-e3e8-41e9-bc8c-992ff52bfb44.json b/track1_finixdigital_242_insurance_terms/jsons/e3e50b03-e3e8-41e9-bc8c-992ff52bfb44.json new file mode 100644 index 0000000000000000000000000000000000000000..2c2b2850d35c16a46563be634ee8a1ae63d2002e --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/e3e50b03-e3e8-41e9-bc8c-992ff52bfb44.json @@ -0,0 +1,329 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 104, + 143, + 379, + 177 + ], + "content": "# 2. 什么情况我们不赔", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 104, + 208, + 269, + 236 + ], + "content": "## 2.1 责任免除", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 327, + 208, + 888, + 235 + ], + "content": "因下列情形之一导致被保险人身故的,我们不承担保险责任:", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 339, + 242, + 799, + 269 + ], + "content": "(1) 投保人对被保险人的故意杀害、故意伤害;", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 339, + 275, + 878, + 306 + ], + "content": "(2) 被保险人故意犯罪或抗拒依法采取的刑事强制措施;", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 338, + 314, + 1082, + 368 + ], + "content": "(3) 被保险人在本合同成立(或最后复效)之日起 2 年内自杀,但被保险人自杀时为无民事行为能力人的除外;", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 338, + 377, + 721, + 404 + ], + "content": "(4) 被保险人服用、吸食或注射毒品⁸;", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 339, + 411, + 1077, + 470 + ], + "content": "(5) 被保险人酒后驾驶⁹、无合法有效驾驶证驾驶¹⁰,或驾驶无合法有效行驶证¹¹的机动车¹²;", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 339, + 474, + 730, + 502 + ], + "content": "(6) 战争、军事冲突、暴乱或武装叛乱;", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 339, + 509, + 646, + 537 + ], + "content": "(7) 核爆炸、核辐射或核污染。", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 502, + 558, + 908, + 583 + ], + "content": "被保险人因下列责任免除事项身故后的处理", + "order": 11 + }, + { + "category": "table", + "bbox": [ + 320, + 583, + 1093, + 745 + ], + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
责任免除事项合同效力我们的做法
(1)终止向投保人之外的其他权利人¹³给付本合同终止时的现金价值
(2)–(7)终止向您退还本合同终止时的现金价值
", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 330, + 762, + 1081, + 820 + ], + "content": "除上述“责任免除”外,本合同中还有一些免除本公司责任的条款,如“3.3 效力中止”、“8.3 年龄性别错误”及其他以黑体字体显示的内容。", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 106, + 848, + 350, + 880 + ], + "content": "# 3. 如何交纳保险费", + "order": 14 + }, + { + "category": "section-header", + "bbox": [ + 109, + 908, + 309, + 939 + ], + "content": "## 3.1 保险费的交纳", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 331, + 911, + 1039, + 939 + ], + "content": "本合同的交费方式和交费期间由您在投保时与我们约定,并在保险单上载明。", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 332, + 945, + 1080, + 1001 + ], + "content": "分期支付保险费的,在交纳首期保险费后,您应当在每个保险费约定交纳日交纳其余各期的保险费。", + "order": 17 + }, + { + "category": "section-header", + "bbox": [ + 107, + 1025, + 244, + 1054 + ], + "content": "## 3.2 宽限期", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 328, + 1025, + 1080, + 1108 + ], + "content": "如果您到期未交纳保险费,自保险费约定交纳日的次日零时起 60 日为保险费交纳的宽限期。宽限期内发生的保险事故,我们仍承担保险责任,但在给付保险金时会扣除您欠交的保险费。", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 326, + 1117, + 1080, + 1171 + ], + "content": "如果您在宽限期内未交纳保险费,则本合同自宽限期满日的 24 时起效力中止,但本合同另有约定的除外。", + "order": 20 + }, + { + "category": "section-header", + "bbox": [ + 110, + 1194, + 266, + 1224 + ], + "content": "## 3.3 效力中止", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 329, + 1193, + 764, + 1225 + ], + "content": "在本合同效力中止期间,我们不承担保险责任。", + "order": 22 + }, + { + "category": "footnote", + "bbox": [ + 109, + 1298, + 1073, + 1344 + ], + "content": "⁸毒品指《中华人民共和国刑法》规定的鸦片、海洛因、甲基苯丙胺(冰毒)、吗啡、大麻、可卡因以及国家规定管制的其他能够使人形成瘾癖的麻醉药品和精神药品,但不包括由医生开具并遵医嘱使用的用于治疗疾病但含有毒品成分的处方药品。", + "order": 23 + }, + { + "category": "footnote", + "bbox": [ + 109, + 1345, + 1073, + 1392 + ], + "content": "⁹酒后驾驶指经检测或者鉴定,发生保险事故时每百毫升血液中的酒精含量达到或者超过一定的标准,公安机关交通管理部门依据《道路交通安全法》的规定认定为饮酒后驾驶或醉酒后驾驶。", + "order": 24 + }, + { + "category": "footnote", + "bbox": [ + 109, + 1392, + 1073, + 1464 + ], + "content": "¹⁰无合法有效驾驶证驾驶指下列情形之一:(1)没有取得中华人民共和国有关主管部门颁发或者认可的驾驶资格证书;(2)驾驶与合法有效驾驶证准驾车型不相符合的车辆;(3)持审验不合格的驾驶证驾驶;(4)在驾驶证有效期内未按照中华人民共和国法律、行政法规的规定,定期对机动车驾驶证实施审验的;(5)驾驶证已过有效期的。", + "order": 25 + }, + { + "category": "footnote", + "bbox": [ + 111, + 1464, + 1073, + 1534 + ], + "content": "¹¹无合法有效行驶证指发生保险事故时没有按照公安机关交通管理部门机动车登记制度的规定进行登记并领取机动车行驶证或者临时通行牌证等法定证件。包括下列情形之一:(1)未办理行驶证或者行驶证在申办过程中的;(2)机动车行驶证被依法注销登记的;(3)未在行驶证检验有效期内依法按时进行或者未通过机动车安全技术检验的。", + "order": 26 + }, + { + "category": "footnote", + "bbox": [ + 111, + 1535, + 1033, + 1557 + ], + "content": "¹²机动车指以动力装置驱动或者牵引,上道路行驶的供人员乘用或者用于运送物品以及进行工程专项作业的轮式车辆。", + "order": 27 + }, + { + "category": "footnote", + "bbox": [ + 111, + 1557, + 887, + 1582 + ], + "content": "¹³投保人之外的其他权利人:按照被保险人第一顺序法定继承人、第二顺序法定继承人的顺序确定。", + "order": 28 + }, + { + "category": "page-footer", + "bbox": [ + 746, + 1585, + 1075, + 1611 + ], + "content": "瑞享一生庆典版养老年金(互联网)条款", + "order": 29 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/e480f21e-1a03-47ee-abc5-b08e8ead28a6.json b/track1_finixdigital_242_insurance_terms/jsons/e480f21e-1a03-47ee-abc5-b08e8ead28a6.json new file mode 100644 index 0000000000000000000000000000000000000000..3129672b792e93c04b1478d78c4b5046c2e989c9 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/e480f21e-1a03-47ee-abc5-b08e8ead28a6.json @@ -0,0 +1,142 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 109, + 115, + 1075, + 238 + ], + "content": "标准人寿保险有限公司官方网站公布一次最低保证利率及其适用期间,自保险单签发之日起至保险期间结束,最低保证利率不变。最低保证利率不低于零,不高于国务院保险监督管理机构规定的最高限额,超过最低保证利率部分的收益是不确定的。若我们在某一会计年度末未公布新的最低保证利率,则上一期已公布的最低保证利率继续适用。", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 150, + 241, + 299, + 269 + ], + "content": "## 3.账户价值结算", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 109, + 271, + 1075, + 364 + ], + "content": "保单账户价值在结算利率公布日结算。保单账户价值按照我们进行结算时账户上月的实际经过天数和我们公布的上月结算利率进行计算。目前我们的结算频率为每月结算,即每个自然月为一个结算期间,但我们有权根据监管规定调整结算频率。", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 151, + 367, + 1006, + 395 + ], + "content": "我们每次结算账户价值时,先计算该结算期间的账户价值,再从账户价值中收取保单管理费。", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 108, + 399, + 1075, + 457 + ], + "content": "对于发生部分领取的账户的对应账户价值,我们按照距离部分领取申请日最近一次的结算利率公布日至申请日的实际经过天数,对该部分领取的账户价值进行结算。", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 109, + 460, + 1076, + 521 + ], + "content": "因保险责任终止或合同解除等原因,导致账户价值需要在非结算利率公布日结算的,我们按照距离账户注销申请日最近一次的结算利率公布日至注销时的实际经过天数,对该账户进行结算。", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 151, + 553, + 278, + 585 + ], + "content": "# 费用的收取", + "order": 7 + }, + { + "category": "table", + "bbox": [ + 106, + 580, + 1024, + 1363 + ], + "content": "
类型额度收取时间收取方式计算公式说明
初始费用初始费用的比例 5%每次保险费成功收取日保险费的约定百分比该比例×保险费收取初始费用后,我们将保险费的剩余部分记入相应的账户。
保单管理费5 元/月每月结算后及账户注销时收取,初次建立的账户将在满一月后开始收取.以固定金额方式按月向个人账户、团体账户及保留账户分别收取--您若选择从团体账户中扣除用于交纳被保险人个人账户的保单管理费的费用,则我们将于每月结算后及账户注销时从团体账户中扣除与被保险人个人保单管理费等额的费用;否则我们按照个人账户中团体交费部分与个人交费部分价值所占比例从个人账户中扣除该账户应缴的保单管理费。
手续费保单年度手续费比例发生合同规定的解除情况、部分领取团体账户价值个人账户价值或被保险人离职时该部分账户价值的约定百分比该手续费比例x该部分账户价值--
第一年5%
第二年4%
第三年3%
第四年2%
第五年1%
第六年及以后0%
", + "order": 8 + }, + { + "category": "caption", + "bbox": [ + 109, + 1362, + 1076, + 1419 + ], + "content": "注:我们保留在不超过上表列明的范围内调整初始费用比例和手续费比例的权利,具体按照保险单或批注上载明的比例为准。", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 109, + 1453, + 283, + 1485 + ], + "content": "# 我们的投资策略", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 109, + 1488, + 1076, + 1548 + ], + "content": "我们建立以投资委员会为主体的投资决策机制,根据长期投资、稳定增长的理念,在有效控制风险的前提下,进行高比例的债券资产配置,以获取低风险水平下稳定的收益,保证本金的长期安全。", + "order": 11 + }, + { + "category": "page-footer", + "bbox": [ + 576, + 1560, + 616, + 1585 + ], + "content": "4/6", + "order": 12 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/e4c389a4-f1ad-4c8c-85de-f88ec6f7522c.json b/track1_finixdigital_242_insurance_terms/jsons/e4c389a4-f1ad-4c8c-85de-f88ec6f7522c.json new file mode 100644 index 0000000000000000000000000000000000000000..c7521b4545ac302f28fdf8cf22d8d4b719c6a892 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/e4c389a4-f1ad-4c8c-85de-f88ec6f7522c.json @@ -0,0 +1,757 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "title", + "bbox": [ + 253, + 163, + 835, + 205 + ], + "content": "# 长城青山关养老年金保险(互联网)条款", + "order": 1 + }, + { + "category": "title", + "bbox": [ + 515, + 229, + 694, + 268 + ], + "content": "# 阅读指引", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 739, + 118, + 1078, + 146 + ], + "content": "长城人寿[2022]养老年金保险 012 号", + "order": 3 + }, + { + "category": "figure", + "bbox": [ + 847, + 149, + 969, + 273 + ], + "order": 4 + }, + { + "category": "text", + "bbox": [ + 801, + 277, + 1017, + 303 + ], + "content": "请扫描以查询验证条款", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 275, + 317, + 919, + 350 + ], + "content": "本阅读指引有助于您理解条款,对本主险合同内容的解释以条款为准。", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 186, + 365, + 360, + 394 + ], + "content": "# 您拥有的重要权益", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 220, + 397, + 1066, + 424 + ], + "content": "## 犹豫期内您可以要求退还保险费....1.4", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 219, + 428, + 1065, + 456 + ], + "content": "## 被保险人可以享受本主险合同提供的保障....2.4", + "order": 9 + }, + { + "category": "section-header", + "bbox": [ + 220, + 460, + 1065, + 487 + ], + "content": "## 您有保险单借款的权利....5.2", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 220, + 491, + 1065, + 517 + ], + "content": "## 您有退保的权利....7.1", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 186, + 528, + 401, + 555 + ], + "content": "# 您应当特别注意的事项", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 221, + 558, + 1064, + 585 + ], + "content": "## 在某些情况下,我们不承担保险责任....2.5", + "order": 13 + }, + { + "category": "section-header", + "bbox": [ + 221, + 589, + 1065, + 617 + ], + "content": "## 您有及时向我们通知保险事故的责任....3.2", + "order": 14 + }, + { + "category": "section-header", + "bbox": [ + 221, + 621, + 1066, + 648 + ], + "content": "## 您应当按时交纳保险费....4.1", + "order": 15 + }, + { + "category": "section-header", + "bbox": [ + 221, + 653, + 1066, + 679 + ], + "content": "## 退保会给您造成一定的损失,请您慎重决策....7.1", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 222, + 684, + 1066, + 712 + ], + "content": "## 您有如实告知的义务....8.1", + "order": 17 + }, + { + "category": "section-header", + "bbox": [ + 222, + 716, + 1044, + 743 + ], + "content": "## 我们对一些重要术语进行了解释,并作了显著标识,请您注意....9", + "order": 18 + }, + { + "category": "section-header", + "bbox": [ + 183, + 752, + 873, + 780 + ], + "content": "# 条款是保险合同的重要内容,为了充分保障您的权益,请您仔细阅读本条款。", + "order": 19 + }, + { + "category": "section-header", + "bbox": [ + 185, + 788, + 278, + 816 + ], + "content": "# 条款目录", + "order": 20 + }, + { + "category": "section-header", + "bbox": [ + 144, + 845, + 330, + 873 + ], + "content": "## 1. 您与我们的合同", + "order": 21 + }, + { + "category": "section-header", + "bbox": [ + 165, + 877, + 293, + 903 + ], + "content": "### 1.1 合同构成", + "order": 22 + }, + { + "category": "section-header", + "bbox": [ + 165, + 909, + 354, + 935 + ], + "content": "### 1.2 合同成立与生效", + "order": 23 + }, + { + "category": "section-header", + "bbox": [ + 165, + 940, + 290, + 967 + ], + "content": "### 1.3 投保年龄", + "order": 24 + }, + { + "category": "section-header", + "bbox": [ + 165, + 972, + 270, + 997 + ], + "content": "### 1.4 犹豫期", + "order": 25 + }, + { + "category": "section-header", + "bbox": [ + 165, + 1002, + 415, + 1092 + ], + "content": "### 1.5 养老年金领取方式、首期养老年金领取年龄及首期养老年金领取日", + "order": 26 + }, + { + "category": "section-header", + "bbox": [ + 165, + 1097, + 291, + 1123 + ], + "content": "### 1.6 保险期间", + "order": 27 + }, + { + "category": "section-header", + "bbox": [ + 141, + 1127, + 331, + 1156 + ], + "content": "## 2. 我们提供的保障", + "order": 28 + }, + { + "category": "section-header", + "bbox": [ + 165, + 1160, + 333, + 1186 + ], + "content": "### 2.1 基本保险金额", + "order": 29 + }, + { + "category": "section-header", + "bbox": [ + 165, + 1191, + 437, + 1217 + ], + "content": "### 2.2 未成年人身故保险金限制", + "order": 30 + }, + { + "category": "section-header", + "bbox": [ + 165, + 1223, + 376, + 1249 + ], + "content": "### 2.3 保证领取期与期数", + "order": 31 + }, + { + "category": "section-header", + "bbox": [ + 165, + 1255, + 291, + 1281 + ], + "content": "### 2.4 保险责任", + "order": 32 + }, + { + "category": "section-header", + "bbox": [ + 164, + 1286, + 291, + 1312 + ], + "content": "### 2.5 责任免除", + "order": 33 + }, + { + "category": "section-header", + "bbox": [ + 143, + 1317, + 371, + 1344 + ], + "content": "## 3. 如何申请领取保险金", + "order": 34 + }, + { + "category": "section-header", + "bbox": [ + 163, + 1348, + 271, + 1376 + ], + "content": "### 3.1 受益人", + "order": 35 + }, + { + "category": "section-header", + "bbox": [ + 165, + 1380, + 332, + 1406 + ], + "content": "### 3.2 保险事故通知", + "order": 36 + }, + { + "category": "section-header", + "bbox": [ + 165, + 1411, + 312, + 1438 + ], + "content": "### 3.3 保险金申请", + "order": 37 + }, + { + "category": "section-header", + "bbox": [ + 165, + 1443, + 292, + 1469 + ], + "content": "### 3.4 失踪处理", + "order": 38 + }, + { + "category": "section-header", + "bbox": [ + 165, + 1474, + 332, + 1500 + ], + "content": "### 3.5 保险金的给付", + "order": 39 + }, + { + "category": "section-header", + "bbox": [ + 165, + 1506, + 292, + 1532 + ], + "content": "### 3.6 诉讼时效", + "order": 40 + }, + { + "category": "section-header", + "bbox": [ + 480, + 845, + 610, + 871 + ], + "content": "### 3.7 司法鉴定", + "order": 41 + }, + { + "category": "section-header", + "bbox": [ + 459, + 877, + 646, + 904 + ], + "content": "## 4. 如何交纳保险费", + "order": 42 + }, + { + "category": "section-header", + "bbox": [ + 480, + 909, + 651, + 935 + ], + "content": "### 4.1 保险费的交纳", + "order": 43 + }, + { + "category": "section-header", + "bbox": [ + 480, + 941, + 588, + 967 + ], + "content": "### 4.2 宽限期", + "order": 44 + }, + { + "category": "section-header", + "bbox": [ + 460, + 971, + 626, + 999 + ], + "content": "## 5. 现金价值权益", + "order": 45 + }, + { + "category": "section-header", + "bbox": [ + 481, + 1002, + 609, + 1030 + ], + "content": "### 5.1 现金价值", + "order": 46 + }, + { + "category": "section-header", + "bbox": [ + 481, + 1034, + 630, + 1061 + ], + "content": "### 5.2 保险单借款", + "order": 47 + }, + { + "category": "section-header", + "bbox": [ + 481, + 1066, + 609, + 1092 + ], + "content": "### 5.3 减额交清", + "order": 48 + }, + { + "category": "section-header", + "bbox": [ + 459, + 1097, + 709, + 1125 + ], + "content": "## 6. 合同效力的中止及恢复", + "order": 49 + }, + { + "category": "section-header", + "bbox": [ + 480, + 1127, + 610, + 1157 + ], + "content": "### 6.1 效力中止", + "order": 50 + }, + { + "category": "section-header", + "bbox": [ + 480, + 1160, + 610, + 1187 + ], + "content": "### 6.2 效力恢复", + "order": 51 + }, + { + "category": "section-header", + "bbox": [ + 461, + 1191, + 666, + 1218 + ], + "content": "## 7. 如何解除保险合同", + "order": 52 + }, + { + "category": "section-header", + "bbox": [ + 480, + 1222, + 755, + 1251 + ], + "content": "### 7.1 您解除合同的手续及风险", + "order": 53 + }, + { + "category": "section-header", + "bbox": [ + 460, + 1254, + 688, + 1281 + ], + "content": "## 8.其他需要关注的事项", + "order": 54 + }, + { + "category": "section-header", + "bbox": [ + 480, + 1285, + 714, + 1312 + ], + "content": "### 8.1 明确说明与如实告知", + "order": 55 + }, + { + "category": "section-header", + "bbox": [ + 479, + 1316, + 735, + 1343 + ], + "content": "### 8.2我们合同解除权的限制", + "order": 56 + }, + { + "category": "section-header", + "bbox": [ + 480, + 1349, + 609, + 1375 + ], + "content": "### 8.3 年龄错误", + "order": 57 + }, + { + "category": "section-header", + "bbox": [ + 480, + 1380, + 609, + 1406 + ], + "content": "### 8.4 未还款项", + "order": 58 + }, + { + "category": "section-header", + "bbox": [ + 481, + 1412, + 650, + 1438 + ], + "content": "### 8.5 合同内容变更", + "order": 59 + }, + { + "category": "section-header", + "bbox": [ + 481, + 1442, + 713, + 1469 + ], + "content": "### 8.6 基本保险金额的变更", + "order": 60 + }, + { + "category": "section-header", + "bbox": [ + 481, + 1474, + 651, + 1500 + ], + "content": "### 8.7 联系方式变更", + "order": 61 + }, + { + "category": "section-header", + "bbox": [ + 481, + 1506, + 610, + 1532 + ], + "content": "### 8.8 效力终止", + "order": 62 + }, + { + "category": "section-header", + "bbox": [ + 819, + 845, + 948, + 873 + ], + "content": "### 8.9 争议处理", + "order": 63 + }, + { + "category": "section-header", + "bbox": [ + 799, + 877, + 880, + 905 + ], + "content": "## 9. 释义", + "order": 64 + }, + { + "category": "section-header", + "bbox": [ + 819, + 908, + 904, + 936 + ], + "content": "### 9.1 周岁", + "order": 65 + }, + { + "category": "section-header", + "bbox": [ + 819, + 940, + 990, + 967 + ], + "content": "### 9.2 有效身份证件", + "order": 66 + }, + { + "category": "section-header", + "bbox": [ + 819, + 971, + 946, + 998 + ], + "content": "### 9.3 现金价值", + "order": 67 + }, + { + "category": "section-header", + "bbox": [ + 820, + 1002, + 1028, + 1030 + ], + "content": "### 9.4 保险费约定交纳日", + "order": 68 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/e82c9047-d8f0-4c6e-83df-f07591978134.json b/track1_finixdigital_242_insurance_terms/jsons/e82c9047-d8f0-4c6e-83df-f07591978134.json new file mode 100644 index 0000000000000000000000000000000000000000..645d54db9fff47e27fe1a85ead1302aaf6f12a85 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/e82c9047-d8f0-4c6e-83df-f07591978134.json @@ -0,0 +1,262 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 907, + 141, + 1076, + 169 + ], + "content": "JR/T 0083-2013", + "order": 1 + }, + { + "category": "caption", + "bbox": [ + 542, + 192, + 609, + 220 + ], + "content": "表 A5", + "order": 2 + }, + { + "category": "table", + "bbox": [ + 97, + 232, + 1058, + 374 + ], + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n
肌力
肌力 2 级—功能限定值为 3
肌力 3 级—功能限定值为 2
肌力 4 级—功能限定值为 1
", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 108, + 385, + 334, + 417 + ], + "content": "## 1. 身体结构的编码", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 148, + 431, + 672, + 466 + ], + "content": "身体结构是身体解剖部位,如器官、肢体及其组成成份。", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 106, + 481, + 385, + 511 + ], + "content": "## 1. 身体结构的扩展规则", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 147, + 528, + 882, + 559 + ], + "content": "根据人身保险伤残评定标准中的具体情况,对涉及的身体结构编码进行了扩展。", + "order": 7 + }, + { + "category": "table", + "bbox": [ + 134, + 567, + 783, + 935 + ], + "content": "
s3100A-鼻翼s3108A-鼻孔s3108B-鼻腔
s41008-特指心肌s43018A-肺叶s4302A-肋骨
s5400A-十二指肠s5400C-回肠s5401A-结肠
s5401B-直肠s5408A-盲肠s598A-肛门
s6100A-孤肾s6308-特指输精管s7101A-上颌骨
s7101B-下颌骨s7103A-颞下颌关节s7108-特指面部软组织
s73008A-肱骨骺板s73008B-尺骨骺板s73008C-桡骨骺板
s75008A-股骨骺板s75008B-胫骨骺板s75008C-腓骨骺板
s75020A-全部足趾s75021A-跗跖关节s75028A—足弓
s7701A-髋臼s8100A-头皮s8100B-面部皮肤
", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 105, + 951, + 375, + 986 + ], + "content": "## 2. 身体结构的限定值", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 108, + 997, + 1051, + 1093 + ], + "content": "身体结构使用四级限定值进行编码。一级限定值描述损伤的范围和程度,二级限定值用于显示改变的性质,三级限定值说明损伤的部位,自定义的四级限定值细化说明损伤的程度或其他说明。身体结构的限定值并不全是四位全部使用,编码形式有且只有下列四种:", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 151, + 1100, + 463, + 1130 + ], + "content": "身体结构的类目编码+一级限定值", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 153, + 1136, + 575, + 1169 + ], + "content": "身体结构的类目编码+一级限定值+二级限定值", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 149, + 1175, + 692, + 1207 + ], + "content": "身体结构的类目编码+一级限定值+二级限定值+三级限定值", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 150, + 1214, + 807, + 1242 + ], + "content": "身体结构的类目编码+一级限定值+二级限定值+三级限定值+四级限定值", + "order": 14 + }, + { + "category": "caption", + "bbox": [ + 547, + 1249, + 611, + 1278 + ], + "content": "图 A2", + "order": 15 + }, + { + "category": "figure", + "bbox": [ + 196, + 1329, + 390, + 1509 + ], + "order": 16 + }, + { + "category": "text", + "bbox": [ + 434, + 1320, + 635, + 1350 + ], + "content": "损伤范围(一级限定值)", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 433, + 1356, + 636, + 1387 + ], + "content": "损伤性质(二级限定值)", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 434, + 1393, + 629, + 1423 + ], + "content": "损伤部位(三级限定值)", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 438, + 1430, + 742, + 1461 + ], + "content": "损伤程度或其他(自定义四级限定值)", + "order": 20 + }, + { + "category": "other", + "bbox": [ + 147, + 1486, + 199, + 1508 + ], + "content": "s7300.", + "order": 21 + }, + { + "category": "caption", + "bbox": [ + 153, + 1517, + 553, + 1546 + ], + "content": "身体结构的各级限定值的具体说明如表A6。", + "order": 22 + }, + { + "category": "page-footer", + "bbox": [ + 1026, + 1559, + 1055, + 1581 + ], + "content": "20", + "order": 23 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/ea26cc0a-3f85-4497-9b60-ada940775412.json b/track1_finixdigital_242_insurance_terms/jsons/ea26cc0a-3f85-4497-9b60-ada940775412.json new file mode 100644 index 0000000000000000000000000000000000000000..d5281acfc0bf28bca330087cdfedc4f4a2cf8919 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/ea26cc0a-3f85-4497-9b60-ada940775412.json @@ -0,0 +1,351 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 139, + 84, + 544, + 108 + ], + "content": "华贵大麦正青春 2022 定期寿险(互联网专属)条款", + "order": 1 + }, + { + "category": "page-header", + "bbox": [ + 819, + 83, + 1046, + 110 + ], + "content": "华贵人寿保险股份有限公司", + "order": 2 + }, + { + "category": "section-header", + "bbox": [ + 145, + 143, + 313, + 177 + ], + "content": "## 1.3 保险期间", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 329, + 143, + 1035, + 238 + ], + "content": "本合同的保险期间由您和本公司约定,但须符合本公司当时的投保规定,约定的保险期间将在保险单上载明。保险期间自本合同生效日的零时开始,至期满日的二十四时终止。", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 145, + 272, + 379, + 303 + ], + "content": "# 2. 我们不保什么", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 219, + 304, + 682, + 332 + ], + "content": "这部分讲的是我们不承担给付保险金责任的情况。", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 148, + 365, + 316, + 399 + ], + "content": "## 2.1 责任免除", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 327, + 368, + 1038, + 428 + ], + "content": "因下列 1-3 项情形之一导致被保险人身故或身体全残的,本公司不承担给付保险金的责任:", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 366, + 431, + 797, + 459 + ], + "content": "1. 投保人对被保险人的故意杀害、故意伤害;", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 365, + 462, + 878, + 492 + ], + "content": "2. 被保险人故意犯罪或抗拒依法采取的刑事强制措施;", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 326, + 495, + 1035, + 549 + ], + "content": "3. 被保险人自本合同成立或者合同效力恢复之日起二年内自杀,但自杀时为无民事行为能力人的除外。", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 327, + 554, + 1040, + 616 + ], + "content": "发生上述第 1 项情形导致被保险人身故的,本合同终止,本公司向被保险人继承人退还本合同的现金价值⁴。", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 325, + 619, + 1035, + 681 + ], + "content": "发生上述第 1 项情形导致被保险人身体全残的,本合同终止,本公司向被保险人退还本合同的现金价值。", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 325, + 684, + 1037, + 748 + ], + "content": "因上述第 2-3 项情形导致被保险人身故或身体全残的,本合同终止,本公司向您退还本合同的现金价值。", + "order": 14 + }, + { + "category": "section-header", + "bbox": [ + 149, + 774, + 317, + 838 + ], + "content": "## 2.2 其他免责条款", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 330, + 769, + 1038, + 876 + ], + "content": "除“2.1 责任免除”外,本合同中还有一些免除本公司责任的条款,详见“3.4 合同效力中止”“4.2 保险事故通知”“5.1 犹豫期”“6.4 明确说明与如实告知”“6.5 年龄确定与错误处理”等条款中加粗的内容。", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 150, + 896, + 397, + 936 + ], + "content": "# 3. 如何交纳保险费", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 221, + 934, + 1038, + 992 + ], + "content": "这部分讲的是保险费的计算方式及您如何交纳保险费,如果不及时交费可能会导致合同效力中止。", + "order": 18 + }, + { + "category": "section-header", + "bbox": [ + 146, + 1026, + 299, + 1059 + ], + "content": "## 3.1 保险费", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 327, + 1027, + 1038, + 1090 + ], + "content": "本合同的首期保险费将在保险单上载明,后续各期的保险费按以下公式计算:", + "order": 20 + }, + { + "category": "text", + "bbox": [ + 364, + 1102, + 959, + 1139 + ], + "content": "$续期保险费=首期保险费\\times \\left(1+3\\%\\right)^{t-1}$,t 为对应的保单年度数。", + "order": 21 + }, + { + "category": "section-header", + "bbox": [ + 147, + 1186, + 321, + 1250 + ], + "content": "## 3.2 保险费的交纳", + "order": 22 + }, + { + "category": "text", + "bbox": [ + 329, + 1183, + 1033, + 1251 + ], + "content": "本合同的交费方式和交费期间由您和本公司约定,但须符合本公司当时的投保规定,约定的交费方式和交费期间将在保险单上载明。", + "order": 23 + }, + { + "category": "section-header", + "bbox": [ + 147, + 1278, + 326, + 1375 + ], + "content": "## 3.3 续期保险费的交纳、宽限", + "order": 24 + }, + { + "category": "text", + "bbox": [ + 328, + 1280, + 1040, + 1374 + ], + "content": "在支付首期保险费后,您应当在保险费约定支付日⁵交纳其余各期的保险费。如到期未交纳,自保险费约定支付日的次日零时起 60 日为宽限期。宽限期内发生保险事故的,本公司承担保险责任,但在给付保险金时将扣减您欠", + "order": 25 + }, + { + "category": "footnote", + "bbox": [ + 137, + 1404, + 1047, + 1455 + ], + "content": "⁴现金价值指保险单所具有的价值,通常体现为解除合同时,根据精算原理计算的,由本公司退还的那部分金额。保单年度末的现金价值金额在现金价值表上载明,保单年度之内的现金价值金额您可以向我们查询。", + "order": 26 + }, + { + "category": "footnote", + "bbox": [ + 182, + 1456, + 988, + 1480 + ], + "content": "保单年度:从保单生效日或保单生效对应日零时起至下一年度保单生效对应日零时止为一个保单年度。", + "order": 27 + }, + { + "category": "footnote", + "bbox": [ + 180, + 1480, + 970, + 1504 + ], + "content": "保单生效对应日指保单生效日每年的对应日。如当月无对应的同一日,则以当月最后一日为对应日。", + "order": 28 + }, + { + "category": "footnote", + "bbox": [ + 135, + 1503, + 1044, + 1553 + ], + "content": "⁵保险费约定支付日指保单生效日在每月、每季、每半年或每年(根据交费方式确定)的对应日。如果当月无对应的同一日,则以该月最后一日为对应日。", + "order": 29 + }, + { + "category": "page-footer", + "bbox": [ + 141, + 1568, + 240, + 1597 + ], + "content": "12B3220221", + "order": 30 + }, + { + "category": "page-footer", + "bbox": [ + 908, + 1572, + 1039, + 1596 + ], + "content": "第 3 页 [共 8 页]", + "order": 31 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/ecfed2b1-dcf3-45c8-9e6c-90b953b22353.json b/track1_finixdigital_242_insurance_terms/jsons/ecfed2b1-dcf3-45c8-9e6c-90b953b22353.json new file mode 100644 index 0000000000000000000000000000000000000000..541b0980cc1bb066a5d990b1f80ad2fb29d47830 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/ecfed2b1-dcf3-45c8-9e6c-90b953b22353.json @@ -0,0 +1,520 @@ +{ + "resized_height": 17216, + "resized_width": 1504, + "width": 1500, + "height": 17216, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "title", + "bbox": [ + 244, + 126, + 940, + 220 + ], + "content": "# 为什么要提早储备养老资金?", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 120, + 354, + 312, + 422 + ], + "content": "现实问题", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 114, + 466, + 388, + 535 + ], + "content": "养老成本高", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 113, + 536, + 458, + 636 + ], + "content": "生活照料、医疗费用、品质养老", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 106, + 681, + 409, + 744 + ], + "content": "养老储备不足", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 107, + 743, + 479, + 841 + ], + "content": "晚年收入骤降、应急资金短缺、社保支撑不足", + "order": 6 + }, + { + "category": "figure", + "bbox": [ + 478, + 517, + 622, + 671 + ], + "order": 7 + }, + { + "category": "text", + "bbox": [ + 582, + 298, + 1062, + 414 + ], + "content": "选择泰康瑞享一生庆典版养老年金保险(互联网)", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 605, + 466, + 821, + 530 + ], + "content": "安全安心", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 606, + 528, + 993, + 585 + ], + "content": "写入合同,不惧波动", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 572, + 694, + 782, + 753 + ], + "content": "补充养老", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 571, + 753, + 1040, + 822 + ], + "content": "保至106岁,有效补充养老", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 306, + 988, + 882, + 1064 + ], + "content": "# 领取金额明确写进合同", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 387, + 1080, + 799, + 1148 + ], + "content": "保证确定 养老无忧", + "order": 14 + }, + { + "category": "figure", + "bbox": [ + 18, + 1179, + 1137, + 1864 + ], + "order": 15 + }, + { + "category": "section-header", + "bbox": [ + 333, + 1954, + 846, + 2031 + ], + "content": "# 与生命等长的现金流", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 116, + 2035, + 603, + 2104 + ], + "content": "合同生效日——106周岁", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 116, + 2104, + 1084, + 2234 + ], + "content": "保险期间:自合同生效日零时起,至被保险人年满106周岁时所在的保单年度结束时止", + "order": 18 + }, + { + "category": "figure", + "bbox": [ + 25, + 2282, + 1146, + 2901 + ], + "order": 19 + }, + { + "category": "section-header", + "bbox": [ + 246, + 2993, + 937, + 3068 + ], + "content": "# 保单利益好,保证领取25年", + "order": 20 + }, + { + "category": "text", + "bbox": [ + 122, + 3080, + 1058, + 3224 + ], + "content": "保证领取25年,养老保险金每年或每月领取金额固定", + "order": 21 + }, + { + "category": "figure", + "bbox": [ + 28, + 3242, + 1163, + 3890 + ], + "order": 22 + }, + { + "category": "section-header", + "bbox": [ + 59, + 4009, + 1117, + 4083 + ], + "content": "# 养老金可选择一次性领取,您的养老您做主", + "order": 23 + }, + { + "category": "text", + "bbox": [ + 66, + 4103, + 1124, + 4234 + ], + "content": "首次养老金领取日前30天内可行使一次性领取选择权对养老资金自主安排,养老生活,由您定义", + "order": 24 + }, + { + "category": "figure", + "bbox": [ + 45, + 4255, + 1162, + 5051 + ], + "order": 25 + }, + { + "category": "section-header", + "bbox": [ + 226, + 5123, + 963, + 5200 + ], + "content": "# 起领年龄灵活,自主规划养老", + "order": 26 + }, + { + "category": "text", + "bbox": [ + 211, + 5213, + 984, + 5280 + ], + "content": "女性:可选55、60、65、70周岁领取", + "order": 27 + }, + { + "category": "text", + "bbox": [ + 203, + 5280, + 887, + 5340 + ], + "content": "男性:可选60、65、70周岁领取", + "order": 28 + }, + { + "category": "figure", + "bbox": [ + 0, + 5366, + 1111, + 6038 + ], + "order": 29 + }, + { + "category": "section-header", + "bbox": [ + 93, + 6123, + 408, + 6195 + ], + "content": "# 大家怎么买?", + "order": 30 + }, + { + "category": "figure", + "bbox": [ + 86, + 6208, + 325, + 6504 + ], + "order": 31 + }, + { + "category": "text", + "bbox": [ + 340, + 6286, + 696, + 6360 + ], + "content": "康女士 | 30周岁", + "order": 32 + }, + { + "category": "text", + "bbox": [ + 344, + 6383, + 1052, + 6495 + ], + "content": "为自己投保泰康瑞享一生庆典版养老年金保险(互联网)", + "order": 33 + }, + { + "category": "text", + "bbox": [ + 100, + 6545, + 330, + 6687 + ], + "content": "10万元/年\n保费", + "order": 34 + }, + { + "category": "text", + "bbox": [ + 370, + 6550, + 532, + 6675 + ], + "content": "10年\n缴费期限", + "order": 35 + }, + { + "category": "text", + "bbox": [ + 558, + 6546, + 1023, + 6675 + ], + "content": "60周岁起领 | 月领\n25年养老保险金保证给付期", + "order": 36 + }, + { + "category": "text", + "bbox": [ + 69, + 6748, + 559, + 6818 + ], + "content": "可获得的保单利益如下:", + "order": 37 + }, + { + "category": "table", + "bbox": [ + 83, + 6854, + 1117, + 8261 + ], + "content": "
被保险人年度末年龄当年度保险费累计保险费当年度末生存给付保证给付期内当年度末身故给付当年度末身故给付当年度末现金价值(不含当年度末生存给付)当年度未退保金
31100000100000001000002730027300
32100000200000002000006330063300
3310000030000000300000106100106100
3410000040000000400000153900153900
3510000050000000500000204500204500
3610000060000000600000258100258100
3710000070000000700000314900314900
3810000080000000800000374900374900
3910000090000000900000438400438400
401000001000000001000000505400505400
500100000000115200011520001152000
6001000000595730118730011282001187300
7001000000595738865000720700779800
8001000000595732955000225500284600
9001000000595730000
10001000000595730000
10501000000595730000
10601000000-0000
", + "order": 38 + }, + { + "category": "section-header", + "bbox": [ + 102, + 8354, + 330, + 8424 + ], + "content": "# 保险责任", + "order": 39 + }, + { + "category": "table", + "bbox": [ + 74, + 8455, + 1117, + 11184 + ], + "content": "
养老
保险金
被保险人自首个养老保险金领取日起,在每个养老保险金领取日零时生存,我们按本合同约定的养老保险金领取频次和领取数额向生存类保险金受益人给付养老保险金。其中,自本合同首个养老保险金领取日零时起的25个保单年度为养老保险金保证给付期,并在保险单上载明。如果被保险人在保证给付期内身故,我们将向生存类保险金受益人一次性给付在该期间内尚未领取的养老保险金总额,其数额为:在保证给付期内应给付的养老保险金总额扣除累计已给付的养老保险金后的余额(不计息),本合同终止。
一次性领取
选择权
一次性领取日为投保时约定的首个养老保险金领取日。养老保险金受益人可以选择在一次性领取日前30日内行使一次性领取选择权,具体的交费期间、被保险人投保年龄范围均在《一次性领取倍数表》中列明。如果养老保险金受益人在上述约定的期限内行使一次性领取选择权,且被保险人在一次性领取日生存,我们按基本保险金额的一定倍数向养老保险金受益人一次性给付养老保险金,该倍数的取值见《一次性领取倍数表》。给付后,我们将不再按本合同关于养老保险金及身故保险金的约定履行保险责任,本合同终止。如果养老保险金受益人未在上述约定的期限内行使一次性领取选择权,则视为放弃选择权,我们继续按合同关于养老保险金及身故保险金的约定履行保险责任。若发生减保,计算年交保险费及已交纳的保险费总额时,减保前的部分将按减保比例相应减少。
身故
保险金
被保险人身故,我们向身故保险金受益人给付身故保险金,本合同终止。身故保险金的金额为:
被保险人身故时间身故保险金金额
首个养老保险金领取日前已交纳的保险费总额与被保险人身故之日本合同现金价值的较大者
首个养老保险金领取日及以后
", + "order": 40 + }, + { + "category": "section-header", + "bbox": [ + 101, + 11281, + 327, + 11367 + ], + "content": "# 投保须知", + "order": 41 + }, + { + "category": "table", + "bbox": [ + 72, + 11397, + 1117, + 13065 + ], + "content": "
被保险人
投保年龄
最低投保年龄0周岁(出生满30天且出院),最高投保年龄(周岁)见下表:
首个养老保险金领取日(性别)3年交5年交10年交15年交20年交
55周岁后的首个年生效对应日(女)5250454035
60周岁后的首个年生效对应日(男/女)5755504540
65周岁后的首个年生效对应日(男/女)6060555045
70周岁后的首个年生效对应日(男/女)6060605550
保险期间本合同生效日零时——被保险人年满106周岁时所在保单年度结束。
交费期间 趸交、3年交、5年交、10年交、15年交、20年交。
", + "order": 42 + }, + { + "category": "footnote", + "bbox": [ + 76, + 13114, + 156, + 13174 + ], + "content": "注:", + "order": 43 + }, + { + "category": "footnote", + "bbox": [ + 74, + 13174, + 1117, + 13278 + ], + "content": "1、本资料仅供参考,具体内容以《泰康瑞享一生庆典版养老年金保险(互联网)条款》为准。", + "order": 44 + }, + { + "category": "footnote", + "bbox": [ + 74, + 13278, + 1119, + 13431 + ], + "content": "2、生存给付指本合同保险责任中的养老保险金;身故给付指本合同保险责任中的身故保险金;保证给付期内身故一次性给付指在保证给付期内尚未领取的养老保险金总额。", + "order": 45 + }, + { + "category": "footnote", + "bbox": [ + 73, + 13432, + 1122, + 13534 + ], + "content": "3、为了便于理解和演示,“第N保单年度末”视同为“第(N+1)保单年度初”。", + "order": 46 + }, + { + "category": "footnote", + "bbox": [ + 73, + 13534, + 1120, + 13748 + ], + "content": "4、保证给付期内最后一个保单年度之前,当年度末退保金为当年度末现金价值(不含当年度末生存给付)加当年度末生存给付;保证给付期内最后一个保单年度及之后,当年度末退保金为当年度末现金价值(不含当年度末生存给付)。", + "order": 47 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/f0fffdfa-6dbe-4687-99d2-4f9fb8cfd5e8.json b/track1_finixdigital_242_insurance_terms/jsons/f0fffdfa-6dbe-4687-99d2-4f9fb8cfd5e8.json new file mode 100644 index 0000000000000000000000000000000000000000..2327170cd6d412fa73f2b2cefce8a5f3318ba105 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/f0fffdfa-6dbe-4687-99d2-4f9fb8cfd5e8.json @@ -0,0 +1,251 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1190, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "text", + "bbox": [ + 834, + 56, + 1139, + 87 + ], + "content": "泰康人寿[2021]年金保险080号", + "order": 1 + }, + { + "category": "figure", + "bbox": [ + 930, + 91, + 1052, + 214 + ], + "order": 2 + }, + { + "category": "text", + "bbox": [ + 876, + 219, + 1104, + 246 + ], + "content": "请扫描以查询验证条款", + "order": 3 + }, + { + "category": "title", + "bbox": [ + 313, + 164, + 871, + 204 + ], + "content": "# 泰康乐鑫年年年金保险(分红型)条款", + "order": 4 + }, + { + "category": "title", + "bbox": [ + 520, + 227, + 666, + 267 + ], + "content": "# 阅读指引", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 115, + 317, + 288, + 351 + ], + "content": "# 1 我们的保障", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 104, + 362, + 1008, + 393 + ], + "content": "泰康乐鑫年年年金保险(分红型)(以下简称“乐鑫年年”)产品提供生存、身故保障及保单红利。", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 114, + 414, + 258, + 449 + ], + "content": "# 2 名词解释", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 148, + 462, + 499, + 491 + ], + "content": "投保人:购买保险并交纳保险费的人。", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 149, + 496, + 458, + 522 + ], + "content": "被保险人:受保险合同保障的人。", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 146, + 529, + 980, + 559 + ], + "content": "生存类保险金受益人:被保险人生存期间领取生存类保险金的人,本产品中默认为投保人。", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 146, + 562, + 684, + 592 + ], + "content": "身故保险金受益人:被保险人身故后领取身故保险金的人。", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 110, + 618, + 260, + 654 + ], + "content": "# 3 案例说明", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 106, + 667, + 1084, + 726 + ], + "content": "例:康女士为丈夫泰先生(30岁)投保乐鑫年年,康女士为投保人及生存类保险金受益人,泰先生为被保险人,儿子泰宝贝为身故保险金受益人。", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 147, + 726, + 369, + 753 + ], + "content": "年交保险费:10000 元", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 147, + 760, + 307, + 787 + ], + "content": "交费期间:10 年", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 149, + 794, + 372, + 822 + ], + "content": "基本保险金额:5780 元", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 147, + 827, + 598, + 857 + ], + "content": "生存保险金和祝寿保险金的领取频次:按年领取", + "order": 18 + }, + { + "category": "table", + "bbox": [ + 101, + 871, + 1090, + 1332 + ], + "content": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
保障内容领取人保障金额给付条件¹
特别保险金康女士10000 元泰先生在本合同第 6 个保单年度的年生效对应日生存
生存保险金康女士自本合同第 7 个保单年度起,至泰先生年满 59 周岁后首个本合同的年生效对应日:
5780 元 × 20% = 1156 元
自泰先生年满 60 岁起,至年满 105 周岁后首个本合同的年生效对应日:
5780 元 × 30% = 1734 元
自第 7 个保单年度起,泰先生在每个年生效对应日生存,直至 105 岁
祝寿保险金康女士自泰先生年满 80 周岁后首个本合同的年生效对应日起,至泰先生年满 89 周岁后首个本合同的年生效对应日:
10000 元 × 10 × 10% = 10000 元
自泰先生年满 80 岁起,在每个年生效对应日生存,直至 89 岁
身故保险金泰宝贝累计已交保险费(扣除累计已给付祝寿保险金)与身故时现金价值较大者如果泰先生身故
", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 108, + 1340, + 1077, + 1400 + ], + "content": "以上举例不包括分红产生的相关利益,且仅供您更好地理解产品之用,您所购买产品的具体保险责任及责任免除情形在保险合同中载明。", + "order": 20 + }, + { + "category": "footnote", + "bbox": [ + 108, + 1556, + 418, + 1584 + ], + "content": "¹给付条件:具体请见“1.3保险责任”。", + "order": 21 + }, + { + "category": "page-footer", + "bbox": [ + 927, + 1615, + 1075, + 1639 + ], + "content": "乐鑫年年年金条款", + "order": 22 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/f132c43a-32fe-4050-9ec6-2a7a1ed6b6bc.json b/track1_finixdigital_242_insurance_terms/jsons/f132c43a-32fe-4050-9ec6-2a7a1ed6b6bc.json new file mode 100644 index 0000000000000000000000000000000000000000..dd381ffcfdb1559f1d6763340426dacc85ed2127 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/f132c43a-32fe-4050-9ec6-2a7a1ed6b6bc.json @@ -0,0 +1,241 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 909, + 144, + 1074, + 168 + ], + "content": "JR/T 0083-2013", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 553, + 196, + 660, + 222 + ], + "content": "# 附 录 A", + "order": 2 + }, + { + "category": "section-header", + "bbox": [ + 546, + 230, + 677, + 256 + ], + "content": "# (规范性附录)", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 476, + 266, + 779, + 295 + ], + "content": "# 人身保险伤残评定标准编码规则", + "order": 4 + }, + { + "category": "section-header", + "bbox": [ + 158, + 341, + 249, + 366 + ], + "content": "## 6. 概述", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 137, + 401, + 1079, + 544 + ], + "content": "人身保险伤残评定标准采用世界卫生组织《国际功能、残疾和健康分类》(以下简称 “ICF”)的有关功能和残疾的分类理论与方法,建立编码原则,对“神经系统的结构和精神功能”、“眼,耳和有关的结构和功能”、“发声和言语的结构和功能”、“心血管,免疫和呼吸系统的结构和功能”、“消化、代谢和内分泌系统有关的结构和功能”、“泌尿和生殖系统有关的结构和功能”、神经肌肉骨骼和运动有关的结构和功能”和“皮肤和有关的结构和功能”8 大类 281 项人身保险伤残条目进行编码。", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 156, + 569, + 371, + 595 + ], + "content": "## 7. 字母和数字的含义", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 178, + 630, + 1075, + 658 + ], + "content": "人身保险伤残评定标准主要包括两个成份:身体功能和身体结构,在每种成份的编码前均指定一个首字母。", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 230, + 661, + 464, + 685 + ], + "content": "1. b 用于身体功能", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 230, + 690, + 464, + 716 + ], + "content": "2. s 用于身体结构", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 137, + 720, + 1107, + 785 + ], + "content": "紧跟字母 b 和 s 是编码数字,开始是章数(1 位数字),接着是二级水平(2 位数字)、第三和四级水平(各为 1 位数字)。如下例所示:", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 176, + 792, + 686, + 820 + ], + "content": "s7 与运动相关的结构(1级水平类目)", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 176, + 830, + 686, + 856 + ], + "content": "s730 上肢的结构(2级水平类目)", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 176, + 867, + 686, + 893 + ], + "content": "s7302 手的结构(3级水平类目)", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 176, + 906, + 686, + 934 + ], + "content": "s73001 上臂的关节(4级水平类目)", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 138, + 937, + 1078, + 991 + ], + "content": "根据人身保险伤残评定标准中伤残条目的需要,可以应用任何级别的编码数字。任何个体在每一水平上可以有不止一种编码,它们可以是相互独立的或是彼此间相互联系的。", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 159, + 1019, + 339, + 1050 + ], + "content": "## 8. 分类级别的含义", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 134, + 1081, + 1080, + 1168 + ], + "content": "人身保险伤残评定标准按照 ICF 分为 8 个大类,每个大类分为身体结构一级分类和身体功能一级分类,在身体结构或身体功能的一级分类下又分为二级或三级或四级小类。人身保险伤残评定标准中涉及ICF 的具体内容如表A1。", + "order": 18 + }, + { + "category": "caption", + "bbox": [ + 596, + 1193, + 656, + 1220 + ], + "content": "表 A1", + "order": 19 + }, + { + "category": "table", + "bbox": [ + 130, + 1223, + 1082, + 1378 + ], + "content": "\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
身体结构身体功能
大类一级分类二级或三级或四级分类一级分类二级或三级或四级分类
神经系统的结构和精神功能s1 神经系统的结构s110 脑的结构b1 精神功能b110 意识功能
\n b117 智力功能
\n b167 语言精神功能
\n b198 其他特指的精神功能
", + "order": 20 + }, + { + "category": "page-footer", + "bbox": [ + 1031, + 1560, + 1056, + 1579 + ], + "content": "15", + "order": 21 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/f5af45ad-04ef-43f0-a048-0fca8cdc4ed2.json b/track1_finixdigital_242_insurance_terms/jsons/f5af45ad-04ef-43f0-a048-0fca8cdc4ed2.json new file mode 100644 index 0000000000000000000000000000000000000000..2be73c5df4fa78920e58b632003d04ca6747cdc6 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/f5af45ad-04ef-43f0-a048-0fca8cdc4ed2.json @@ -0,0 +1,283 @@ +{ + "resized_height": 1728, + "resized_width": 1184, + "width": 1191, + "height": 1734, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 570, + 116, + 615, + 138 + ], + "content": "4-4", + "order": 1 + }, + { + "category": "section-header", + "bbox": [ + 173, + 177, + 439, + 203 + ], + "content": "## 1. 您解除合同的手续及风险", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 170, + 221, + 1011, + 298 + ], + "content": "保险合同成立后,您可以解除保险合同,请填写解除合同通知书并向我们提供下列证明和资料:", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 183, + 317, + 329, + 348 + ], + "content": "(1)保险合同;", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 184, + 362, + 411, + 394 + ], + "content": "(2)您的有效身份证件。", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 173, + 408, + 633, + 441 + ], + "content": "自我们收到解除合同通知书时起,保险合同终止。", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 172, + 454, + 1011, + 533 + ], + "content": "我们自收到解除合同通知书时起,在 1 个工作日内核定并通知您;情形复杂的,在 3 个工作日内核定并通知您。", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 175, + 549, + 851, + 577 + ], + "content": "我们自收到解除合同通知书之日起 30 日内向您退还保险合同的现金价值。", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 175, + 596, + 901, + 624 + ], + "content": "保险合同保险期间内如已发生过保险金给付,我们不退还保险合同的现金价值。", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 177, + 645, + 489, + 672 + ], + "content": "您解除合同可能会遭受一定损失。", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 176, + 736, + 288, + 765 + ], + "content": "## 2. 现金价值", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 174, + 783, + 1007, + 863 + ], + "content": "现金价值 =保险费×(1-25%)× (1 - 保险期间已经过日数/保险期间日数),经过日数不足一日的按一日计算。", + "order": 12 + }, + { + "category": "section-header", + "bbox": [ + 177, + 922, + 301, + 950 + ], + "content": "# 【公司简介】", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 173, + 971, + 474, + 997 + ], + "content": "阳光人寿保险股份有限公司简介", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 165, + 1014, + 1016, + 1231 + ], + "content": "阳光人寿保险股份有限公司(简称“阳光人寿”)成立于 2007 年 12 月 17 日,注册资本金 210.452 亿元人民币,是阳光保险集团股份有限公司旗下的全国性专业寿险公司。阳光人寿自成立以来发展势头良好,价值不断提升。截至目前,阳光人寿已开设 32 家二级机构、近 1000 家三四级分支机构,以专业服务为客户提供人寿、养老、医疗、健康、意外等保险保障。", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 174, + 1296, + 701, + 1322 + ], + "content": "本资料仅供了解产品之用,具体内容应以保险合同为准。", + "order": 16 + }, + { + "category": "figure", + "bbox": [ + 183, + 1425, + 239, + 1471 + ], + "order": 17 + }, + { + "category": "text", + "bbox": [ + 242, + 1429, + 377, + 1454 + ], + "content": "阳光保险集团", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 241, + 1459, + 375, + 1472 + ], + "content": "SUNSHINE INSURANCE GROUP", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 385, + 1431, + 459, + 1455 + ], + "content": "人寿保险", + "order": 20 + }, + { + "category": "text", + "bbox": [ + 382, + 1458, + 460, + 1472 + ], + "content": "LIFE INSURANCE", + "order": 21 + }, + { + "category": "figure", + "bbox": [ + 676, + 1355, + 764, + 1467 + ], + "order": 22 + }, + { + "category": "text", + "bbox": [ + 766, + 1407, + 1008, + 1424 + ], + "content": "全国统一客户服务和客户维权电话:95510", + "order": 23 + }, + { + "category": "text", + "bbox": [ + 766, + 1425, + 888, + 1441 + ], + "content": "网址: www.sinosig.com", + "order": 24 + }, + { + "category": "text", + "bbox": [ + 766, + 1443, + 905, + 1461 + ], + "content": "公司地址可通过官网查询", + "order": 25 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/f7ff9036-22ff-4b82-9ca3-9089fc96dab7.json b/track1_finixdigital_242_insurance_terms/jsons/f7ff9036-22ff-4b82-9ca3-9089fc96dab7.json new file mode 100644 index 0000000000000000000000000000000000000000..0f0e9422708af99e17b3b2186f32c6da2c96d4bc --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/f7ff9036-22ff-4b82-9ca3-9089fc96dab7.json @@ -0,0 +1,611 @@ +{ + "resized_height": 3840, + "resized_width": 736, + "width": 750, + "height": 3826, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 41, + 40, + 618, + 99 + ], + "content": "# 当代年轻人关于钱的种种焦虑", + "order": 1 + }, + { + "category": "figure", + "bbox": [ + 73, + 159, + 221, + 320 + ], + "order": 2 + }, + { + "category": "text", + "bbox": [ + 50, + 321, + 241, + 360 + ], + "content": "赵小姐(月光族)", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 302, + 209, + 674, + 287 + ], + "content": "总忍不住买买买,月月光,担心未来没钱可用。", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 54, + 432, + 448, + 508 + ], + "content": "不懂理财,害怕投资有亏损,放银行又担心利率下行。", + "order": 5 + }, + { + "category": "figure", + "bbox": [ + 511, + 378, + 656, + 530 + ], + "order": 6 + }, + { + "category": "text", + "bbox": [ + 469, + 533, + 680, + 572 + ], + "content": "王先生(金融小白)", + "order": 7 + }, + { + "category": "figure", + "bbox": [ + 70, + 593, + 218, + 747 + ], + "order": 8 + }, + { + "category": "text", + "bbox": [ + 60, + 750, + 229, + 791 + ], + "content": "张女士(宝妈)", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 263, + 647, + 682, + 724 + ], + "content": "养老、孩子教育婚嫁都要钱,想找一个能稳健增值、专款专用的产品。", + "order": 10 + }, + { + "category": "section-header", + "bbox": [ + 39, + 879, + 629, + 940 + ], + "content": "# 安心小金库 帮你应对种种焦虑", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 84, + 1008, + 289, + 1047 + ], + "content": "国小姐 | 25周岁", + "order": 12 + }, + { + "category": "figure", + "bbox": [ + 533, + 950, + 675, + 1075 + ], + "order": 13 + }, + { + "category": "text", + "bbox": [ + 58, + 1090, + 675, + 1188 + ], + "content": "希望手里资金稳定增值,为自己投保安心小金库(两全险),每年交费20000元,交费10年,保障30年;55周岁到期仍生存,则:", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 92, + 1221, + 260, + 1314 + ], + "content": "总投入保费200000元", + "order": 15 + }, + { + "category": "figure", + "bbox": [ + 289, + 1236, + 353, + 1300 + ], + "order": 16 + }, + { + "category": "text", + "bbox": [ + 405, + 1226, + 617, + 1309 + ], + "content": "30年后一次性领取437810元", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 108, + 1373, + 605, + 1451 + ], + "content": "包含总投入保费200000元+增值部分237810元是总投入保费的2.18倍", + "order": 18 + }, + { + "category": "footnote", + "bbox": [ + 93, + 1482, + 633, + 1516 + ], + "content": "*安心小金库(两全险)为国华互联网真爱保两全保险。", + "order": 19 + }, + { + "category": "section-header", + "bbox": [ + 40, + 1604, + 572, + 1667 + ], + "content": "# 复杂市场环境下的明智选择", + "order": 20 + }, + { + "category": "figure", + "bbox": [ + 67, + 1715, + 267, + 1859 + ], + "order": 21 + }, + { + "category": "text", + "bbox": [ + 70, + 1865, + 126, + 1896 + ], + "content": "1990", + "order": 22 + }, + { + "category": "text", + "bbox": [ + 139, + 1864, + 192, + 1897 + ], + "content": "2021", + "order": 23 + }, + { + "category": "text", + "bbox": [ + 211, + 1865, + 260, + 1898 + ], + "content": "未来", + "order": 24 + }, + { + "category": "text", + "bbox": [ + 53, + 1927, + 284, + 1970 + ], + "content": "利率下行压力巨大", + "order": 25 + }, + { + "category": "text", + "bbox": [ + 280, + 1742, + 406, + 1812 + ], + "content": "安心小金库(两全险)", + "order": 26 + }, + { + "category": "figure", + "bbox": [ + 295, + 1814, + 390, + 1843 + ], + "order": 27 + }, + { + "category": "text", + "bbox": [ + 453, + 1709, + 631, + 1736 + ], + "content": "25周岁女性 交10年", + "order": 28 + }, + { + "category": "figure", + "bbox": [ + 514, + 1732, + 635, + 1780 + ], + "order": 29 + }, + { + "category": "text", + "bbox": [ + 436, + 1778, + 534, + 1803 + ], + "content": "年均+3.55% ", + "order": 30 + }, + { + "category": "figure", + "bbox": [ + 462, + 1803, + 507, + 1855 + ], + "order": 31 + }, + { + "category": "text", + "bbox": [ + 450, + 1855, + 519, + 1881 + ], + "content": "保20年", + "order": 32 + }, + { + "category": "text", + "bbox": [ + 566, + 1757, + 664, + 1782 + ], + "content": "年均+4.66%", + "order": 33 + }, + { + "category": "figure", + "bbox": [ + 594, + 1782, + 639, + 1855 + ], + "order": 34 + }, + { + "category": "text", + "bbox": [ + 580, + 1855, + 649, + 1881 + ], + "content": "保30年", + "order": 35 + }, + { + "category": "text", + "bbox": [ + 417, + 1882, + 668, + 1926 + ], + "content": "*年均增值=(总领取-总保费)/(每期保费在合同内总时长*期交保费)", + "order": 36 + }, + { + "category": "text", + "bbox": [ + 387, + 1928, + 701, + 1973 + ], + "content": "锁定利益 不惧利率波动", + "order": 37 + }, + { + "category": "section-header", + "bbox": [ + 40, + 2065, + 313, + 2119 + ], + "content": "# 产品优势如何", + "order": 38 + }, + { + "category": "figure", + "bbox": [ + 141, + 2182, + 255, + 2292 + ], + "order": 39 + }, + { + "category": "text", + "bbox": [ + 66, + 2301, + 327, + 2350 + ], + "content": "稳定增值 保证领取", + "order": 40 + }, + { + "category": "text", + "bbox": [ + 86, + 2355, + 308, + 2437 + ], + "content": "到期最高一次领取投入金额的256%", + "order": 41 + }, + { + "category": "figure", + "bbox": [ + 470, + 2185, + 585, + 2291 + ], + "order": 42 + }, + { + "category": "text", + "bbox": [ + 384, + 2302, + 672, + 2346 + ], + "content": "身故保障 保费不白交", + "order": 43 + }, + { + "category": "text", + "bbox": [ + 413, + 2356, + 647, + 2431 + ], + "content": "身故至少返还120%已交保费", + "order": 44 + }, + { + "category": "figure", + "bbox": [ + 134, + 2532, + 259, + 2656 + ], + "order": 45 + }, + { + "category": "text", + "bbox": [ + 144, + 2660, + 252, + 2701 + ], + "content": "急用钱", + "order": 46 + }, + { + "category": "text", + "bbox": [ + 86, + 2705, + 306, + 2745 + ], + "content": "可灵活调配资金", + "order": 47 + }, + { + "category": "text", + "bbox": [ + 78, + 2754, + 320, + 2830 + ], + "content": "支持保单贷款,最高可贷保单价值80%", + "order": 48 + }, + { + "category": "footnote", + "bbox": [ + 69, + 2836, + 334, + 2880 + ], + "content": "*保单贷款需计算利息,具体以产品条款和保险公司审核为准。", + "order": 49 + }, + { + "category": "figure", + "bbox": [ + 469, + 2539, + 593, + 2640 + ], + "order": 50 + }, + { + "category": "figure", + "bbox": [ + 446, + 2661, + 609, + 2747 + ], + "order": 51 + }, + { + "category": "text", + "bbox": [ + 408, + 2756, + 650, + 2827 + ], + "content": "3年/5年/10年/20年交费期灵活选", + "order": 52 + }, + { + "category": "text", + "bbox": [ + 379, + 2827, + 677, + 2868 + ], + "content": "100元/月起投,多投多领", + "order": 53 + }, + { + "category": "section-header", + "bbox": [ + 36, + 2997, + 231, + 3056 + ], + "content": "# 保障计划", + "order": 54 + }, + { + "category": "table", + "bbox": [ + 46, + 3087, + 689, + 3713 + ], + "content": "
条款名称国华互联网真爱保两全保险
报备文号国华寿〔2022〕158号
承保公司国华人寿保险股份有限公司
投保年龄18-55周岁(含)
交费期间3年/5年/10年/20年交
保障期间20年/30年
犹豫期15天,犹豫期内退保退还已交保费,犹豫期后退保会遭受一定损失。
等待期90天
保障责任身故保险金、满期保险金
*身故保险金、满期保险金两项保险金,我们仅给付其中一项,给付后本合同终止。
", + "order": 55 + }, + { + "category": "caption", + "bbox": [ + 35, + 3741, + 697, + 3824 + ], + "content": "*具体等待期、保险责任、责任免除及如实告知义务等内容以保险条款《国华互联网真爱保两全保险》为准。", + "order": 56 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/fbeefe69-4553-461f-97ca-26b928d01da7.json b/track1_finixdigital_242_insurance_terms/jsons/fbeefe69-4553-461f-97ca-26b928d01da7.json new file mode 100644 index 0000000000000000000000000000000000000000..5bc7c94577b6dc524513aa06e6a48f3618c18b27 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/fbeefe69-4553-461f-97ca-26b928d01da7.json @@ -0,0 +1,284 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "title", + "bbox": [ + 329, + 125, + 857, + 170 + ], + "content": "# 泰康乐增寿终身寿险(互联网)条款", + "order": 1 + }, + { + "category": "title", + "bbox": [ + 526, + 191, + 658, + 230 + ], + "content": "# 阅读指引", + "order": 2 + }, + { + "category": "text", + "bbox": [ + 839, + 58, + 1137, + 87 + ], + "content": "泰康人寿[2022]终身寿险 002 号", + "order": 3 + }, + { + "category": "figure", + "bbox": [ + 933, + 94, + 1048, + 214 + ], + "order": 4 + }, + { + "category": "text", + "bbox": [ + 883, + 218, + 1101, + 247 + ], + "content": "请扫描以查询验证条款", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 111, + 273, + 285, + 309 + ], + "content": "# 1 我们的保障", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 110, + 315, + 1084, + 373 + ], + "content": "泰康乐增寿终身寿险(互联网)(以下简称“乐增寿(互联网)”)产品提供身故及航空意外身故、高铁意外身故保障。", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 110, + 399, + 254, + 435 + ], + "content": "# 2 名词解释", + "order": 8 + }, + { + "category": "text", + "bbox": [ + 148, + 449, + 505, + 482 + ], + "content": "投保人:购买保险并交纳保险费的人。", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 146, + 497, + 461, + 528 + ], + "content": "被保险人:受保险合同保障的人。", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 147, + 543, + 547, + 578 + ], + "content": "受益人:发生保险事故后领取保险金的人。", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 111, + 602, + 255, + 636 + ], + "content": "# 3 案例说明", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 104, + 653, + 1083, + 713 + ], + "content": "例:泰先生(40岁)为自己投保“乐增寿(互联网)”,泰先生为投保人、被保险人,指定儿子泰宝贝为身故保险金受益人。", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 149, + 723, + 372, + 749 + ], + "content": "基本保险金额:10 万元", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 150, + 763, + 300, + 791 + ], + "content": "保险期间:终身", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 150, + 802, + 307, + 830 + ], + "content": "交费期间:10年", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 150, + 842, + 340, + 869 + ], + "content": "年交保费:16163 元", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 107, + 885, + 456, + 916 + ], + "content": "等待期¹后,泰先生享有的保障如下:", + "order": 18 + }, + { + "category": "table", + "bbox": [ + 110, + 935, + 1077, + 1250 + ], + "content": "
保障内容保障金额给付条件²
身故保险金下列三者的最大值:
1)身故时的有效保险金额³
2)身故时的现金价值
3)累计已交保险费的一定比例⁴
泰先生身故
航空意外身故保险金额外1倍身故保险金泰先生在80周岁前遭受本合同约定的航空意外伤害并导致身故
高铁意外身故保险金额外1倍身故保险金泰先生在80周岁前遭受本合同约定的高铁意外伤害并导致身故
", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 109, + 1261, + 1069, + 1293 + ], + "content": "以上举例仅供您更好地理解产品之用,您所购买产品的具体保险责任及责任免除情形在保险合同中载明。", + "order": 20 + }, + { + "category": "footnote", + "bbox": [ + 108, + 1486, + 609, + 1510 + ], + "content": "¹等待期指本产品有180天的等待期,具体请见“1.4 等待期”。", + "order": 21 + }, + { + "category": "footnote", + "bbox": [ + 108, + 1510, + 412, + 1533 + ], + "content": "²给付条件具体请见“1.5 保险责任”。", + "order": 22 + }, + { + "category": "footnote", + "bbox": [ + 107, + 1533, + 1037, + 1557 + ], + "content": "³有效保险金额具体请见“1.3 有效保险金额”,案例中的有效保险金额=10万元×1.035^(身故时的保单年度数-1)。", + "order": 23 + }, + { + "category": "footnote", + "bbox": [ + 108, + 1558, + 690, + 1583 + ], + "content": "⁴一定比例具体请见“1.5 保险责任”中关于“身故保险金”的相关约定。", + "order": 24 + }, + { + "category": "page-footer", + "bbox": [ + 886, + 1591, + 1074, + 1615 + ], + "content": "乐增寿(互联网)条款", + "order": 25 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/fd0521de-438a-4c04-848d-760c227b48ed.json b/track1_finixdigital_242_insurance_terms/jsons/fd0521de-438a-4c04-848d-760c227b48ed.json new file mode 100644 index 0000000000000000000000000000000000000000..e6265dcc8858a121e51abe53c5808deadb89864f --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/fd0521de-438a-4c04-848d-760c227b48ed.json @@ -0,0 +1,262 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 908, + 142, + 1079, + 168 + ], + "content": "JR/T 0083-2013", + "order": 1 + }, + { + "category": "caption", + "bbox": [ + 548, + 193, + 608, + 220 + ], + "content": "表 A5", + "order": 2 + }, + { + "category": "table", + "bbox": [ + 98, + 236, + 1057, + 373 + ], + "content": "
肌力
肌力 2 级—功能限定值为 3
肌力 3 级—功能限定值为 2
肌力 4 级—功能限定值为 1
", + "order": 3 + }, + { + "category": "section-header", + "bbox": [ + 110, + 387, + 332, + 415 + ], + "content": "## 1. 身体结构的编码", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 151, + 432, + 667, + 462 + ], + "content": "身体结构是身体解剖部位,如器官、肢体及其组成成份。", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 109, + 481, + 383, + 511 + ], + "content": "## 1. 身体结构的扩展规则", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 150, + 528, + 880, + 557 + ], + "content": "根据人身保险伤残评定标准中的具体情况,对涉及的身体结构编码进行了扩展。", + "order": 7 + }, + { + "category": "table", + "bbox": [ + 142, + 568, + 781, + 930 + ], + "content": "
s3100A-鼻翼s3108A-鼻孔s3108B-鼻腔
s41008-特指心肌s43018A-肺叶s4302A-肋骨
s5400A-十二指肠s5400C-回肠s5401A-结肠
s5401B-直肠s5408A-盲肠s598A-肛门
s6100A-孤肾s6308-特指输精管s7101A-上颌骨
s7101B-下颌骨s7103A-颞下颌关节s7108-特指面部软组织
s73008A-肱骨骺板s73008B-尺骨骺板s73008C-桡骨骺板
s75008A-股骨骺板s75008B-胫骨骺板s75008C-腓骨骺板
s75020A-全部足趾s75021A-跗跖关节s75028A-足弓
s7701A-髋臼s8100A-头皮s8100B-面部皮肤
", + "order": 8 + }, + { + "category": "section-header", + "bbox": [ + 108, + 951, + 372, + 982 + ], + "content": "## 2. 身体结构的限定值", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 108, + 999, + 1049, + 1091 + ], + "content": "身体结构使用四级限定值进行编码。一级限定值描述损伤的范围和程度,二级限定值用于显示改变的性质,三级限定值说明损伤的部位,自定义的四级限定值细化说明损伤的程度或其他说明。身体结构的限定值并不全是四位全部使用,编码形式有且只有下列四种:", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 152, + 1100, + 458, + 1129 + ], + "content": "身体结构的类目编码+一级限定值", + "order": 11 + }, + { + "category": "text", + "bbox": [ + 151, + 1139, + 574, + 1167 + ], + "content": "身体结构的类目编码+一级限定值+二级限定值", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 151, + 1176, + 689, + 1207 + ], + "content": "身体结构的类目编码+一级限定值+二级限定值+三级限定值", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 151, + 1213, + 805, + 1244 + ], + "content": "身体结构的类目编码+一级限定值+二级限定值+三级限定值+四级限定值", + "order": 14 + }, + { + "category": "caption", + "bbox": [ + 546, + 1252, + 608, + 1276 + ], + "content": "图 A2", + "order": 15 + }, + { + "category": "figure", + "bbox": [ + 198, + 1330, + 391, + 1509 + ], + "order": 16 + }, + { + "category": "text", + "bbox": [ + 438, + 1322, + 634, + 1348 + ], + "content": "损伤范围(一级限定值)", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 439, + 1358, + 634, + 1385 + ], + "content": "损伤范围(二级限定值)", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 438, + 1397, + 630, + 1421 + ], + "content": "损伤范围(三级限定值)", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 439, + 1430, + 741, + 1460 + ], + "content": "损伤程度或其他(自定义四级限定值)", + "order": 20 + }, + { + "category": "text", + "bbox": [ + 145, + 1486, + 198, + 1508 + ], + "content": "s7300.", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 151, + 1516, + 545, + 1547 + ], + "content": "身体结构的各级限定值的具体说明如表A6。", + "order": 22 + }, + { + "category": "page-footer", + "bbox": [ + 1030, + 1559, + 1053, + 1580 + ], + "content": "23", + "order": 23 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/fe58a07b-b43e-405b-93ec-fdf67129f1e3.json b/track1_finixdigital_242_insurance_terms/jsons/fe58a07b-b43e-405b-93ec-fdf67129f1e3.json new file mode 100644 index 0000000000000000000000000000000000000000..972004eef625c33267f8c439e26c68f1aa6f547f --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/fe58a07b-b43e-405b-93ec-fdf67129f1e3.json @@ -0,0 +1,536 @@ +{ + "resized_height": 4896, + "resized_width": 736, + "width": 750, + "height": 4911, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 182, + 51, + 552, + 148 + ], + "content": "# 若营业中断 小店可能遭受这些压力", + "order": 1 + }, + { + "category": "figure", + "bbox": [ + 51, + 182, + 229, + 340 + ], + "order": 2 + }, + { + "category": "text", + "bbox": [ + 76, + 340, + 196, + 380 + ], + "content": "高昂房租", + "order": 3 + }, + { + "category": "figure", + "bbox": [ + 263, + 184, + 442, + 337 + ], + "order": 4 + }, + { + "category": "text", + "bbox": [ + 295, + 339, + 415, + 379 + ], + "content": "员工工资", + "order": 5 + }, + { + "category": "figure", + "bbox": [ + 495, + 182, + 668, + 333 + ], + "order": 6 + }, + { + "category": "text", + "bbox": [ + 519, + 340, + 642, + 380 + ], + "content": "货品积压", + "order": 7 + }, + { + "category": "section-header", + "bbox": [ + 203, + 468, + 538, + 560 + ], + "content": "# 小商户营业中断险 为小微商户提供保障", + "order": 8 + }, + { + "category": "figure", + "bbox": [ + 66, + 603, + 604, + 868 + ], + "order": 9 + }, + { + "category": "text", + "bbox": [ + 141, + 889, + 596, + 929 + ], + "content": "以下原因导致店铺营业中断,可获赔付", + "order": 10 + }, + { + "category": "figure", + "bbox": [ + 149, + 952, + 202, + 1026 + ], + "order": 11 + }, + { + "category": "text", + "bbox": [ + 232, + 936, + 500, + 989 + ], + "content": "最高1000元", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 236, + 989, + 501, + 1026 + ], + "content": "(100元/天,最高赔付10天)", + "order": 13 + }, + { + "category": "figure", + "bbox": [ + 545, + 952, + 596, + 1026 + ], + "order": 14 + }, + { + "category": "figure", + "bbox": [ + 136, + 1049, + 325, + 1193 + ], + "order": 15 + }, + { + "category": "text", + "bbox": [ + 201, + 1212, + 256, + 1242 + ], + "content": "火灾", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 169, + 1279, + 286, + 1309 + ], + "content": "因店铺火灾", + "order": 17 + }, + { + "category": "figure", + "bbox": [ + 424, + 1051, + 585, + 1208 + ], + "order": 18 + }, + { + "category": "text", + "bbox": [ + 457, + 1209, + 564, + 1245 + ], + "content": "患病意外", + "order": 19 + }, + { + "category": "text", + "bbox": [ + 411, + 1265, + 608, + 1319 + ], + "content": "因店主或配偶因患病或意外事故住院", + "order": 20 + }, + { + "category": "figure", + "bbox": [ + 139, + 1352, + 334, + 1513 + ], + "order": 21 + }, + { + "category": "text", + "bbox": [ + 177, + 1528, + 282, + 1559 + ], + "content": "自然灾害", + "order": 22 + }, + { + "category": "text", + "bbox": [ + 128, + 1580, + 330, + 1637 + ], + "content": "因自然灾害导致店铺财产受损", + "order": 23 + }, + { + "category": "figure", + "bbox": [ + 416, + 1371, + 609, + 1522 + ], + "order": 24 + }, + { + "category": "text", + "bbox": [ + 457, + 1526, + 561, + 1562 + ], + "content": "场所意外", + "order": 25 + }, + { + "category": "text", + "bbox": [ + 409, + 1580, + 612, + 1636 + ], + "content": "因经营场所内,他人发生意外事故", + "order": 26 + }, + { + "category": "footnote", + "bbox": [ + 77, + 1696, + 648, + 1754 + ], + "content": "计划一仅承保因火灾、自然灾害导致店铺财产受损而致使营业中断的损失。", + "order": 27 + }, + { + "category": "section-header", + "bbox": [ + 293, + 1855, + 444, + 1896 + ], + "content": "# 保障计划", + "order": 28 + }, + { + "category": "table", + "bbox": [ + 60, + 1925, + 677, + 2497 + ], + "content": "
计划一
保障责任保障额度
房屋主体财产损失
因火灾、爆炸、台风、洪水等导致
100元
营业中断损失
火灾、自然灾害导致店铺财产受损致使商户营业中断
100元/天
最高赔付10天
保费
保障1年6元
保障30天0.5元
", + "order": 29 + }, + { + "category": "table", + "bbox": [ + 60, + 2503, + 685, + 3321 + ], + "content": "\n\n\n\n\n\n\n\n
计划二
保障责任保障额度
房屋主体财产损失
因火灾、爆炸、台风、洪水等导致
100元
营业中断损失100元/天
最高赔付10天
店主或配偶因初次罹患疾病或意外事故住院治疗导致商户营业中断
自然灾害导致店铺财产受损致使商户营业中断
店铺火灾导致商户营业中断
因经营场所内,第三者发生意外事故,导致营业中断
保费
保障1年17元
保障30天1.5元
", + "order": 30 + }, + { + "category": "section-header", + "bbox": [ + 39, + 3369, + 174, + 3410 + ], + "content": "# 理赔流程", + "order": 31 + }, + { + "category": "text", + "bbox": [ + 77, + 3440, + 238, + 3475 + ], + "content": "第1步:报案", + "order": 32 + }, + { + "category": "text", + "bbox": [ + 76, + 3488, + 656, + 3590 + ], + "content": "发生事故后48小时内拨打众安客服热线952299电话报案,客服人员将告知理赔所需材料,并提供指引和帮助。", + "order": 33 + }, + { + "category": "text", + "bbox": [ + 75, + 3613, + 244, + 3658 + ], + "content": "第2步:申请", + "order": 34 + }, + { + "category": "text", + "bbox": [ + 76, + 3666, + 587, + 3701 + ], + "content": "理赔材料齐全后,请将材料快递至保险公司。", + "order": 35 + }, + { + "category": "text", + "bbox": [ + 75, + 3727, + 245, + 3770 + ], + "content": "第3步:审核", + "order": 36 + }, + { + "category": "text", + "bbox": [ + 77, + 3779, + 664, + 3817 + ], + "content": "收到完整理赔材料后,保险公司会及时审核和调查。", + "order": 37 + }, + { + "category": "text", + "bbox": [ + 75, + 3842, + 243, + 3886 + ], + "content": "第4步:结案", + "order": 38 + }, + { + "category": "text", + "bbox": [ + 79, + 3893, + 657, + 3962 + ], + "content": "根据审核结果进行理赔并将理赔款支付至被保险人的指定账户。", + "order": 39 + }, + { + "category": "section-header", + "bbox": [ + 41, + 4022, + 176, + 4066 + ], + "content": "# 理赔案例", + "order": 40 + }, + { + "category": "figure", + "bbox": [ + 46, + 4093, + 397, + 4364 + ], + "order": 41 + }, + { + "category": "text", + "bbox": [ + 416, + 4142, + 515, + 4181 + ], + "content": "张先生", + "order": 42 + }, + { + "category": "text", + "bbox": [ + 416, + 4184, + 569, + 4221 + ], + "content": "46岁 长沙市", + "order": 43 + }, + { + "category": "text", + "bbox": [ + 416, + 4241, + 606, + 4317 + ], + "content": "在临街商铺经营早餐店", + "order": 44 + }, + { + "category": "figure", + "bbox": [ + 568, + 4245, + 669, + 4325 + ], + "order": 45 + }, + { + "category": "figure", + "bbox": [ + 71, + 4375, + 123, + 4432 + ], + "order": 46 + }, + { + "category": "text", + "bbox": [ + 164, + 4381, + 679, + 4519 + ], + "content": "2022年2月,张先生在支付宝上投保了小商户营业中断险。2022年5月10日,张先生的妻子王女士因罹患急性阑尾炎住院治疗,住院期间张先生全程陪护,早餐店不得不暂停营业7天。", + "order": 47 + }, + { + "category": "text", + "bbox": [ + 165, + 4549, + 684, + 4687 + ], + "content": "王女士出院后,张先生向保险公司递交了理赔材料,保险公司根据保单约定,对张先生停业7天进行了保险金给付,总计700元(100元/天×7天) 。", + "order": 48 + }, + { + "category": "footnote", + "bbox": [ + 16, + 4755, + 721, + 4828 + ], + "content": "本产品适用条款《众安在线财产保险股份有限公司财产综合险条款(众安备-企财【2015】主 19 号)》等,条款内容详见《保险条款》", + "order": 49 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/ff181c5f-0e73-41d8-a0b2-b22c065f660f.json b/track1_finixdigital_242_insurance_terms/jsons/ff181c5f-0e73-41d8-a0b2-b22c065f660f.json new file mode 100644 index 0000000000000000000000000000000000000000..f255a2c09e77b3a3624f42c2e7dd8dd033bc42d7 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/ff181c5f-0e73-41d8-a0b2-b22c065f660f.json @@ -0,0 +1,218 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1191, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "page-header", + "bbox": [ + 911, + 141, + 1076, + 170 + ], + "content": "JR/T 0083—2013", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 150, + 190, + 637, + 220 + ], + "content": "例如某人的智力缺损可以编码为 b117 “智力功能”。", + "order": 2 + }, + { + "category": "caption", + "bbox": [ + 572, + 225, + 631, + 251 + ], + "content": "图 A1", + "order": 3 + }, + { + "category": "figure", + "bbox": [ + 196, + 335, + 416, + 449 + ], + "order": 4 + }, + { + "category": "text", + "bbox": [ + 442, + 330, + 633, + 359 + ], + "content": "损伤范围(一级限定值)", + "order": 5 + }, + { + "category": "text", + "bbox": [ + 443, + 366, + 702, + 392 + ], + "content": "损伤的程度或部位(二级限定值)", + "order": 6 + }, + { + "category": "text", + "bbox": [ + 149, + 427, + 192, + 449 + ], + "content": "b117.", + "order": 7 + }, + { + "category": "text", + "bbox": [ + 153, + 524, + 488, + 554 + ], + "content": "身体功能限定值的具体说明如表 A2。", + "order": 8 + }, + { + "category": "caption", + "bbox": [ + 568, + 557, + 634, + 583 + ], + "content": "表A2", + "order": 9 + }, + { + "category": "table", + "bbox": [ + 99, + 585, + 1056, + 1028 + ], + "content": "\n\n\n\n\n\n\n\n\n
一级限定值
损伤的范围
二级限定值
损伤的程度或部位
0 没有损伤(0-4%)
1 轻度损伤(5-24%)
2 中度损伤(25-49%)
3 重度损伤(50-95%)
4 完全损伤(96-100%)
8 未特指
9 不适用
损伤的程度
空位
Z
Y
X
W
....
注:损伤的程度针对同一损伤的范围,按照英文字母倒序,程度逐渐加重。
损伤的部位
1 右侧
2 左侧
3 双侧
1/2 特指一侧(右侧或左侧)
2/1 特指另一侧(右侧或左侧)
", + "order": 10 + }, + { + "category": "caption", + "bbox": [ + 106, + 1043, + 1003, + 1105 + ], + "content": "表注:使用二级限定值,如果同时存在损伤的程度和损伤的部位,先编码损伤的程度,再编码损伤的部位。例如:b210.1X3 双眼低视力大于等于 1 级(1X- 程度;3-双侧)。", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 106, + 1117, + 460, + 1153 + ], + "content": "### A. 4. 1. 2 身体功能一级限定值的使用", + "order": 12 + }, + { + "category": "text", + "bbox": [ + 104, + 1168, + 1022, + 1230 + ], + "content": "一旦出现损伤,身体功能损伤或障碍的范围或程度,就可以使用通用的限定值进行量化。例如:s76000.250/ s76002.250, s76000.240/ s76002.240;b710.2", + "order": 13 + }, + { + "category": "text", + "bbox": [ + 102, + 1235, + 1051, + 1295 + ], + "content": "脊柱骨折脱位导致颈椎或腰椎畸形愈合,且颈部或腰部活动度丧失大于等于 25%(达到中度障碍“2”:5-24%)", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 107, + 1297, + 582, + 1322 + ], + "content": "s76000.250/ s76002.250, s76000.240/ s76002.240;b710.3", + "order": 15 + }, + { + "category": "text", + "bbox": [ + 107, + 1326, + 1002, + 1391 + ], + "content": "脊柱骨折脱位导致颈椎或腰椎畸形愈合,且颈部或腰部活动度丧失大于等于 50%(达到 重度障碍“3”:50-95%)", + "order": 16 + }, + { + "category": "section-header", + "bbox": [ + 110, + 1404, + 453, + 1439 + ], + "content": "### A. 4. 1.3 身体功能二级限定值的使用", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 109, + 1453, + 1059, + 1546 + ], + "content": "身体功能二级限定值是在 ICF 身体功能一级限定值的基础上,人身保险伤残评定标准自定义扩展的内容。在身体功能一级限定值说明不充分的情况下,用二级限定值进一步细化说明损伤的程度或部位。具体规则和方法如下:", + "order": 18 + }, + { + "category": "page-footer", + "bbox": [ + 1031, + 1560, + 1054, + 1579 + ], + "content": "18", + "order": 19 + } + ] +} diff --git a/track1_finixdigital_242_insurance_terms/jsons/ffc43d4c-ada7-421d-88c3-6b56439a9f1a.json b/track1_finixdigital_242_insurance_terms/jsons/ffc43d4c-ada7-421d-88c3-6b56439a9f1a.json new file mode 100644 index 0000000000000000000000000000000000000000..5d9a28b37152b3c421bcf2c740465db5b3becbc3 --- /dev/null +++ b/track1_finixdigital_242_insurance_terms/jsons/ffc43d4c-ada7-421d-88c3-6b56439a9f1a.json @@ -0,0 +1,349 @@ +{ + "resized_height": 1696, + "resized_width": 1184, + "width": 1190, + "height": 1684, + "max_pixels": 16777216, + "min_pixels": 4096, + "layout": [ + { + "category": "section-header", + "bbox": [ + 119, + 121, + 279, + 150 + ], + "content": "## 3. 3 效力中止", + "order": 1 + }, + { + "category": "text", + "bbox": [ + 340, + 123, + 776, + 149 + ], + "content": "在本合同效力中止期间,我们不承担保险责任。", + "order": 2 + }, + { + "category": "section-header", + "bbox": [ + 119, + 175, + 279, + 204 + ], + "content": "## 3. 4 效力恢复", + "order": 3 + }, + { + "category": "text", + "bbox": [ + 340, + 170, + 1099, + 230 + ], + "content": "本合同效力中止之日起 2 年内,您可以申请恢复合同效力。经您与我们协商并达成协议,自您补交保险费之日起,本合同效力恢复。", + "order": 4 + }, + { + "category": "text", + "bbox": [ + 340, + 237, + 1098, + 293 + ], + "content": "自本合同效力中止之日起满 2 年您和我们未达成协议的,我们有权解除本合同。我们解除本合同的,我们向您退还本合同中止之日的现金价值。", + "order": 5 + }, + { + "category": "section-header", + "bbox": [ + 117, + 323, + 360, + 354 + ], + "content": "# 4. 如何领取保险金", + "order": 6 + }, + { + "category": "section-header", + "bbox": [ + 116, + 385, + 256, + 413 + ], + "content": "## 4. 1 受益人", + "order": 7 + }, + { + "category": "figure", + "bbox": [ + 193, + 424, + 276, + 507 + ], + "order": 8 + }, + { + "category": "text", + "bbox": [ + 341, + 381, + 815, + 411 + ], + "content": "请您或者被保险人慎重选择指定身故保险金受益人。", + "order": 9 + }, + { + "category": "text", + "bbox": [ + 341, + 419, + 880, + 448 + ], + "content": "除另有指定外,生存保险金受益人为本合同的投保人本人。", + "order": 10 + }, + { + "category": "text", + "bbox": [ + 341, + 453, + 1096, + 512 + ], + "content": "关于受益人的其他规定详见《中华人民共和国保险法》(请扫描二维码查看相关内容)。", + "order": 11 + }, + { + "category": "section-header", + "bbox": [ + 116, + 535, + 319, + 566 + ], + "content": "## 4. 2 保险事故通知", + "order": 12 + }, + { + "category": "figure", + "bbox": [ + 192, + 572, + 278, + 658 + ], + "order": 13 + }, + { + "category": "text", + "bbox": [ + 340, + 536, + 892, + 562 + ], + "content": "您或者受益人知道保险事故发生后应当在10 日内通知我们。", + "order": 14 + }, + { + "category": "text", + "bbox": [ + 341, + 569, + 1094, + 625 + ], + "content": "关于保险事故通知的其他规定详见《中华人民共和国保险法》(请扫描二维码查看相关内容)。", + "order": 15 + }, + { + "category": "section-header", + "bbox": [ + 114, + 682, + 302, + 715 + ], + "content": "## 4. 3 保险金申请", + "order": 16 + }, + { + "category": "text", + "bbox": [ + 340, + 686, + 981, + 713 + ], + "content": "在申请保险金时,申请人¹²须填写申请书,并须提供下列证明和资料:", + "order": 17 + }, + { + "category": "text", + "bbox": [ + 352, + 721, + 650, + 749 + ], + "content": "(1)申请人的有效身份证件¹³;", + "order": 18 + }, + { + "category": "text", + "bbox": [ + 352, + 754, + 929, + 785 + ], + "content": "(2)下表所示的申请各类保险金时须提供的特殊证明和资料;", + "order": 19 + }, + { + "category": "table", + "bbox": [ + 340, + 794, + 1091, + 956 + ], + "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n
申请类别申请人须提供的特殊证明和资料
生存保险金被保险人的有效身份证件
身故保险金国务院卫生行政部门规定的医疗机构、公安部门或者其他有权机构出具的被保险人的死亡证明
", + "order": 20 + }, + { + "category": "text", + "bbox": [ + 351, + 970, + 1035, + 1002 + ], + "content": "(3)所能提供的与确认保险事故的性质、原因等有关的其他证明和资料。", + "order": 21 + }, + { + "category": "text", + "bbox": [ + 338, + 1007, + 1098, + 1063 + ], + "content": "以上证明和资料不完整的,我们将及时一次性通知受益人补充提供有关的证明和资料。", + "order": 22 + }, + { + "category": "text", + "bbox": [ + 338, + 1069, + 1097, + 1130 + ], + "content": "保险金作为被保险人遗产时,继承人还须提供可证明其合法继承权的相关权利文件。", + "order": 23 + }, + { + "category": "section-header", + "bbox": [ + 114, + 1151, + 297, + 1179 + ], + "content": "## 4. 4 保险金给付", + "order": 24 + }, + { + "category": "text", + "bbox": [ + 336, + 1148, + 1097, + 1211 + ], + "content": "我们在收到领取保险金申请书及本合同约定的证明和资料后,将在 5 日内作出核定,并于作出核定后 1 个工作日内通知受益人;情形复杂的,在 30 日内作出核定。", + "order": 25 + }, + { + "category": "text", + "bbox": [ + 335, + 1213, + 1096, + 1325 + ], + "content": "对属于保险责任的,我们在与受益人达成给付保险金的协议后 10 日内,履行给付保险金义务。我们未及时履行前款约定义务的,对属于保险责任的,除支付保险金外,应当赔偿受益人因此受到的利息损失。利息按照我们确定的利率按单利计算,且我们确定的利率不低于中国人民银行公布的金融机构人民币活期存款基准利率。", + "order": 26 + }, + { + "category": "text", + "bbox": [ + 336, + 1327, + 1100, + 1390 + ], + "content": "对不属于保险责任的,我们将在作出核定后 1 个工作日内向受益人发出拒绝给付保险金通知书并说明理由。", + "order": 27 + }, + { + "category": "other", + "bbox": [ + 343, + 1411, + 487, + 1445 + ], + "content": "(此页正文完)", + "order": 28 + }, + { + "category": "footnote", + "bbox": [ + 105, + 1530, + 867, + 1558 + ], + "content": "¹²申请人: 生存保险金的申请人为生存保险金受益人,身故保险金的申请人为身故保险金受益人。", + "order": 29 + }, + { + "category": "footnote", + "bbox": [ + 105, + 1557, + 1013, + 1584 + ], + "content": "¹³有效身份证件指由政府主管部门规定的证明个人身份的证件,如:居民身份证、按规定可使用的有效护照等证件。", + "order": 30 + }, + { + "category": "page-footer", + "bbox": [ + 872, + 1614, + 1075, + 1641 + ], + "content": "乐利两全(互联网)条款", + "order": 31 + } + ] +}