diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 00000000..930ad4b7 Binary files /dev/null and b/.DS_Store differ diff --git a/README.md b/README.md index 458aac6e..561a2128 100644 --- a/README.md +++ b/README.md @@ -6,15 +6,30 @@ An AMP that provides a no-code tool to build RAG applications ### Pre-requisites -RAG Studio requires AWS for access to both LLM and embedding models. Please complete the following steps before using the RAG Studio: - -- A S3 bucket to store the documents -- The following models configured and accessible via AWS Bedrock. Any of the models not enabled will not function in the UI. - - Llama3.1 8b Instruct v1 (`meta.llama3-1-8b-instruct-v1:0`) - This model is required for the RAG Studio to function - - Llama3.1 70b Instruct v1 (`meta.llama3-1-70b-instruct-v1:0`) - - Cohere Command R+ v1 (`cohere.command-r-plus-v1:0`) -- For Embedding, you will need to enable the following model in AWS Bedrock: - - Cohere English Embedding v3 (`meta.cohere-english-embedding-v3:0`) +RAG Studio can be used with both Cloudera Inference (CAII) or AWS Bedrock for selecting LLM and embedding models. + +#### Cloudera Inference (CAII) Setup: + +To use CAII, you must provide the following environment variables: + +- `CAII_DOMAIN` - The domain of the CAII instance + +#### AWS Bedrock Setup: + +To use AWS Bedrock, you must provide the following environment variables: + +- `AWS_DEFAULT_REGION` - defaults to `us-west-2` +- `AWS_ACCESS_KEY_ID` +- `AWS_SECRET_ACCESS_KEY` + +#### Document Storage: + +RAG Studio can utilize the local file system or an S3 bucket for storing documents. If you are using an S3 bucket, you will need to provide the following environment variables: + +- `S3_RAG_BUCKET_PREFIX` - A prefix added to all S3 paths used by Rag Studio +- `S3_RAG_DOCUMENT_BUCKET` - The S3 bucket where uploaded documents are stored + +S3 will also require providing the AWS credentials for the bucket. ### Cloudera DataFlow (Nifi) Setup: diff --git a/backend/src/main/java/com/cloudera/cai/rag/configuration/AppConfiguration.java b/backend/src/main/java/com/cloudera/cai/rag/configuration/AppConfiguration.java index 4e86dea6..20a02d74 100644 --- a/backend/src/main/java/com/cloudera/cai/rag/configuration/AppConfiguration.java +++ b/backend/src/main/java/com/cloudera/cai/rag/configuration/AppConfiguration.java @@ -99,7 +99,7 @@ public ReconcilerConfig reconcilerConfig(@Qualifier("testEnvironment") boolean t public HttpClient httpClient(OpenTelemetry openTelemetry) { return JavaHttpClientTelemetry.builder(openTelemetry) .build() - .newHttpClient(HttpClient.newHttpClient()); + .newHttpClient(HttpClient.newBuilder().followRedirects(HttpClient.Redirect.NORMAL).build()); } @Bean diff --git a/backend/src/main/java/com/cloudera/cai/rag/files/RagFileService.java b/backend/src/main/java/com/cloudera/cai/rag/files/RagFileService.java index a769b812..feccbd68 100644 --- a/backend/src/main/java/com/cloudera/cai/rag/files/RagFileService.java +++ b/backend/src/main/java/com/cloudera/cai/rag/files/RagFileService.java @@ -61,6 +61,7 @@ public class RagFileService { private final RagFileIndexReconciler ragFileIndexReconciler; private final String s3PathPrefix; private final RagDataSourceRepository ragDataSourceRepository; + private final RagFileDeleteReconciler ragFileDeleteReconciler; @Autowired public RagFileService( @@ -69,13 +70,15 @@ public RagFileService( RagFileUploader ragFileUploader, RagFileIndexReconciler ragFileIndexReconciler, @Qualifier("s3BucketPrefix") String s3PathPrefix, - RagDataSourceRepository ragDataSourceRepository) { + RagDataSourceRepository ragDataSourceRepository, + RagFileDeleteReconciler ragFileDeleteReconciler) { this.idGenerator = idGenerator; this.ragFileRepository = ragFileRepository; this.ragFileUploader = ragFileUploader; this.ragFileIndexReconciler = ragFileIndexReconciler; this.s3PathPrefix = s3PathPrefix; this.ragDataSourceRepository = ragDataSourceRepository; + this.ragFileDeleteReconciler = ragFileDeleteReconciler; } public RagDocumentMetadata saveRagFile(MultipartFile file, Long dataSourceId, String actorCrn) { @@ -144,6 +147,7 @@ public void deleteRagFile(Long id, Long dataSourceId) { throw new NotFound("Document with id " + id + " not found for dataSourceId: " + dataSourceId); } ragFileRepository.deleteById(id); + ragFileDeleteReconciler.submit(document); } // Nullables stuff down here @@ -155,7 +159,8 @@ public static RagFileService createNull(String... dummyIds) { RagFileUploader.createNull(), RagFileIndexReconciler.createNull(), "prefix", - RagDataSourceRepository.createNull()); + RagDataSourceRepository.createNull(), + RagFileDeleteReconciler.createNull()); } public List getRagDocuments(Long dataSourceId) { diff --git a/backend/src/test/java/com/cloudera/cai/rag/files/RagFileServiceTest.java b/backend/src/test/java/com/cloudera/cai/rag/files/RagFileServiceTest.java index d94a6d1c..a085f200 100644 --- a/backend/src/test/java/com/cloudera/cai/rag/files/RagFileServiceTest.java +++ b/backend/src/test/java/com/cloudera/cai/rag/files/RagFileServiceTest.java @@ -215,7 +215,8 @@ private RagFileService createRagFileService( tracker == null ? RagFileUploader.createNull() : RagFileUploader.createNull(tracker), RagFileIndexReconciler.createNull(), prefix, - dataSourceRepository); + dataSourceRepository, + RagFileDeleteReconciler.createNull()); } private long newDataSourceId() { diff --git a/llm-service/.DS_Store b/llm-service/.DS_Store new file mode 100644 index 00000000..8b481327 Binary files /dev/null and b/llm-service/.DS_Store differ diff --git a/llm-service/JJL4WAJY5A3L4SVYJHLWTYK7OA4IFJ5A.json b/llm-service/JJL4WAJY5A3L4SVYJHLWTYK7OA4IFJ5A.json new file mode 100644 index 00000000..3cc0e9ee --- /dev/null +++ b/llm-service/JJL4WAJY5A3L4SVYJHLWTYK7OA4IFJ5A.json @@ -0,0 +1,96832 @@ +{ + "schema_name": "DoclingDocument", + "version": "1.0.0", + "name": "JJL4WAJY5A3L4SVYJHLWTYK7OA4IFJ5A", + "origin": { + "mimetype": "application/pdf", + "binary_hash": 5441016674447402932, + "filename": "JJL4WAJY5A3L4SVYJHLWTYK7OA4IFJ5A.pdf" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/4" + }, + { + "$ref": "#/texts/5" + }, + { + "$ref": "#/texts/6" + }, + { + "$ref": "#/texts/7" + }, + { + "$ref": "#/texts/8" + }, + { + "$ref": "#/texts/9" + }, + { + "$ref": "#/texts/10" + }, + { + "$ref": "#/texts/11" + }, + { + "$ref": "#/texts/12" + }, + { + "$ref": "#/texts/13" + }, + { + "$ref": "#/texts/14" + }, + { + "$ref": "#/texts/15" + }, + { + "$ref": "#/texts/16" + }, + { + "$ref": "#/texts/17" + }, + { + "$ref": "#/texts/18" + }, + { + "$ref": "#/pictures/0" + }, + { + "$ref": "#/texts/19" + }, + { + "$ref": "#/texts/20" + }, + { + "$ref": "#/pictures/1" + }, + { + "$ref": "#/texts/21" + }, + { + "$ref": "#/texts/22" + }, + { + "$ref": "#/texts/23" + }, + { + "$ref": "#/pictures/2" + }, + { + "$ref": "#/texts/24" + }, + { + "$ref": "#/texts/25" + }, + { + "$ref": "#/pictures/3" + }, + { + "$ref": "#/texts/26" + }, + { + "$ref": "#/tables/0" + }, + { + "$ref": "#/texts/27" + }, + { + "$ref": "#/tables/1" + }, + { + "$ref": "#/texts/28" + }, + { + "$ref": "#/tables/2" + }, + { + "$ref": "#/texts/29" + }, + { + "$ref": "#/tables/3" + }, + { + "$ref": "#/texts/30" + }, + { + "$ref": "#/texts/31" + }, + { + "$ref": "#/tables/4" + }, + { + "$ref": "#/texts/32" + }, + { + "$ref": "#/texts/33" + }, + { + "$ref": "#/tables/5" + }, + { + "$ref": "#/texts/34" + }, + { + "$ref": "#/texts/35" + }, + { + "$ref": "#/tables/6" + }, + { + "$ref": "#/texts/36" + }, + { + "$ref": "#/texts/37" + }, + { + "$ref": "#/tables/7" + }, + { + "$ref": "#/texts/38" + }, + { + "$ref": "#/texts/39" + }, + { + "$ref": "#/tables/8" + }, + { + "$ref": "#/texts/40" + }, + { + "$ref": "#/texts/41" + }, + { + "$ref": "#/texts/42" + }, + { + "$ref": "#/texts/43" + }, + { + "$ref": "#/texts/44" + }, + { + "$ref": "#/texts/45" + }, + { + "$ref": "#/texts/46" + }, + { + "$ref": "#/texts/47" + }, + { + "$ref": "#/texts/48" + }, + { + "$ref": "#/texts/49" + }, + { + "$ref": "#/texts/50" + }, + { + "$ref": "#/pictures/4" + }, + { + "$ref": "#/texts/51" + }, + { + "$ref": "#/texts/52" + }, + { + "$ref": "#/tables/9" + }, + { + "$ref": "#/texts/53" + }, + { + "$ref": "#/texts/54" + }, + { + "$ref": "#/pictures/5" + }, + { + "$ref": "#/texts/55" + }, + { + "$ref": "#/texts/56" + }, + { + "$ref": "#/tables/10" + }, + { + "$ref": "#/texts/57" + }, + { + "$ref": "#/texts/58" + }, + { + "$ref": "#/pictures/6" + }, + { + "$ref": "#/texts/59" + }, + { + "$ref": "#/texts/60" + }, + { + "$ref": "#/tables/11" + }, + { + "$ref": "#/texts/61" + }, + { + "$ref": "#/texts/62" + }, + { + "$ref": "#/pictures/7" + }, + { + "$ref": "#/texts/63" + }, + { + "$ref": "#/texts/64" + }, + { + "$ref": "#/tables/12" + }, + { + "$ref": "#/texts/65" + }, + { + "$ref": "#/texts/66" + }, + { + "$ref": "#/pictures/8" + }, + { + "$ref": "#/texts/67" + }, + { + "$ref": "#/texts/68" + }, + { + "$ref": "#/tables/13" + }, + { + "$ref": "#/texts/69" + }, + { + "$ref": "#/texts/70" + }, + { + "$ref": "#/texts/71" + }, + { + "$ref": "#/texts/72" + }, + { + "$ref": "#/texts/73" + }, + { + "$ref": "#/texts/74" + }, + { + "$ref": "#/texts/75" + }, + { + "$ref": "#/texts/76" + }, + { + "$ref": "#/texts/77" + }, + { + "$ref": "#/texts/78" + }, + { + "$ref": "#/texts/79" + }, + { + "$ref": "#/pictures/9" + }, + { + "$ref": "#/texts/80" + }, + { + "$ref": "#/texts/81" + }, + { + "$ref": "#/texts/82" + }, + { + "$ref": "#/pictures/10" + }, + { + "$ref": "#/texts/83" + }, + { + "$ref": "#/texts/84" + }, + { + "$ref": "#/texts/85" + }, + { + "$ref": "#/pictures/11" + }, + { + "$ref": "#/groups/0" + }, + { + "$ref": "#/texts/89" + }, + { + "$ref": "#/texts/90" + }, + { + "$ref": "#/tables/14" + }, + { + "$ref": "#/texts/91" + }, + { + "$ref": "#/groups/1" + }, + { + "$ref": "#/texts/94" + }, + { + "$ref": "#/groups/2" + }, + { + "$ref": "#/texts/96" + }, + { + "$ref": "#/pictures/12" + }, + { + "$ref": "#/groups/3" + }, + { + "$ref": "#/texts/98" + }, + { + "$ref": "#/texts/99" + }, + { + "$ref": "#/texts/100" + }, + { + "$ref": "#/pictures/13" + }, + { + "$ref": "#/texts/101" + }, + { + "$ref": "#/texts/102" + }, + { + "$ref": "#/texts/103" + }, + { + "$ref": "#/pictures/14" + }, + { + "$ref": "#/texts/104" + }, + { + "$ref": "#/texts/105" + }, + { + "$ref": "#/texts/106" + }, + { + "$ref": "#/pictures/15" + }, + { + "$ref": "#/texts/107" + }, + { + "$ref": "#/texts/108" + }, + { + "$ref": "#/texts/109" + }, + { + "$ref": "#/pictures/16" + }, + { + "$ref": "#/texts/110" + }, + { + "$ref": "#/texts/111" + }, + { + "$ref": "#/texts/112" + }, + { + "$ref": "#/pictures/17" + }, + { + "$ref": "#/texts/113" + }, + { + "$ref": "#/texts/114" + }, + { + "$ref": "#/texts/115" + }, + { + "$ref": "#/pictures/18" + }, + { + "$ref": "#/texts/116" + }, + { + "$ref": "#/texts/117" + }, + { + "$ref": "#/texts/118" + }, + { + "$ref": "#/texts/119" + }, + { + "$ref": "#/texts/120" + }, + { + "$ref": "#/pictures/19" + }, + { + "$ref": "#/texts/121" + }, + { + "$ref": "#/texts/122" + }, + { + "$ref": "#/texts/123" + }, + { + "$ref": "#/texts/124" + }, + { + "$ref": "#/texts/125" + }, + { + "$ref": "#/texts/126" + }, + { + "$ref": "#/texts/127" + }, + { + "$ref": "#/texts/128" + }, + { + "$ref": "#/texts/129" + }, + { + "$ref": "#/texts/130" + }, + { + "$ref": "#/texts/131" + }, + { + "$ref": "#/texts/132" + }, + { + "$ref": "#/tables/15" + }, + { + "$ref": "#/texts/133" + }, + { + "$ref": "#/groups/4" + } + ], + "name": "_root_", + "label": "unspecified" + }, + "groups": [ + { + "self_ref": "#/groups/0", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/86" + }, + { + "$ref": "#/texts/87" + }, + { + "$ref": "#/texts/88" + } + ], + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/1", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/92" + }, + { + "$ref": "#/texts/93" + } + ], + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/2", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/95" + } + ], + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/3", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/97" + } + ], + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/4", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/134" + }, + { + "$ref": "#/texts/135" + }, + { + "$ref": "#/texts/136" + }, + { + "$ref": "#/texts/137" + }, + { + "$ref": "#/texts/138" + } + ], + "name": "list", + "label": "list" + } + ], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 384.0, + "t": 707.3999633789062, + "r": 491.3333435058594, + "b": 661.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 36 + ] + } + ], + "orig": "BNL_47931 AD/RHC-113 Informal Report", + "text": "BNL_47931 AD/RHC-113 Informal Report" + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 98.24836730957031, + "t": 562.3999633789062, + "r": 495.6666564941406, + "b": 527.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 90 + ] + } + ], + "orig": "A Review of the Saturation Induced Harmonics in the 80 mm Aperture RHIC Arc Dipole Magnets", + "text": "A Review of the Saturation Induced Harmonics in the 80 mm Aperture RHIC Arc Dipole Magnets", + "level": 1 + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 161.6666717529297, + "t": 500.7333068847656, + "r": 428.0, + "b": 479.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 37 + ] + } + ], + "orig": "R. Gupta, P. Thompson and P. Wanderer", + "text": "R. Gupta, P. Thompson and P. Wanderer" + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 253.6666717529297, + "t": 414.0666198730469, + "r": 335.3333435058594, + "b": 396.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 11 + ] + } + ], + "orig": "August 1992", + "text": "August 1992" + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 197.3333282470703, + "t": 215.06663513183594, + "r": 388.0, + "b": 197.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 20 + ] + } + ], + "orig": "R HI C P R 0 J E C T", + "text": "R HI C P R 0 J E C T" + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 185.3333282470703, + "t": 167.73329162597656, + "r": 398.6666564941406, + "b": 121.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 76 + ] + } + ], + "orig": "Brookhaven National Laboratory Associated Universities, Inc. Upton, NY 11973", + "text": "Brookhaven National Laboratory Associated Universities, Inc. Upton, NY 11973" + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 165.0, + "t": 88.7332992553711, + "r": 419.0, + "b": 62.73329544067383, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 80 + ] + } + ], + "orig": "Under Contract No. DE-AC02-76CHOO016 with the UNITED STATES DEPARTMENT OF ENERGY", + "text": "Under Contract No. DE-AC02-76CHOO016 with the UNITED STATES DEPARTMENT OF ENERGY" + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 62.0, + "t": 677.066650390625, + "r": 512.0, + "b": 621.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 90 + ] + } + ], + "orig": "A Review of the Saturation Induced Harmonics in the 80 mm Aperture RHIC Arc Dipole Magnets", + "text": "A Review of the Saturation Induced Harmonics in the 80 mm Aperture RHIC Arc Dipole Magnets", + "level": 1 + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "paragraph", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 159.3333282470703, + "t": 592.7332763671875, + "r": 414.3333435058594, + "b": 575.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 37 + ] + } + ], + "orig": "R. Gupta, P. Thompson and P. Wanderer", + "text": "R. Gupta, P. Thompson and P. Wanderer" + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 51.07881164550781, + "t": 438.7333068847656, + "r": 146.3333282470703, + "b": 426.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 15 + ] + } + ], + "orig": "1. Introduction", + "text": "1. Introduction", + "level": 1 + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 48.66666793823242, + "t": 415.0666198730469, + "r": 522.3333129882812, + "b": 153.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 1302 + ] + } + ], + "orig": "In this note we shall review, at times with a sense of history, the measured and computed saturation induced harmonics in the cross section of all and short 80 mm aperture RHIC dipole magnets built so far. A somewhat similar study for a fewer magnets has been presented earlier in reference 1 . With the help of several iterations in the crOSS section, we have been able to reduce the saturation induced b2 and b4 harmonics by more then an order of magnitude. We shall briefly describe those iterations. The calculations described in this note have generally been done with the computer program POISSON. However, while comparing the calculations and measurements, we have included the results of field calculations with the code PEZD and MDP as well. The measurements are the average of up and down ramps. A small difference between the calculations and measurements has been observed consistently in the saturation induced b2 and b4 harmonics in all magnets DRAOO1 through DRA0O9. More work is still needed to the current dependence of skew quadrupole harmonic (a1) We refer to current dependence of harmonics loosely as the saturation induced harmonics; but in an actual magnet it includes other effects like the harmonics induced by the coil deformation due to lorentz forces, etc. long yoke explain", + "text": "In this note we shall review, at times with a sense of history, the measured and computed saturation induced harmonics in the cross section of all and short 80 mm aperture RHIC dipole magnets built so far. A somewhat similar study for a fewer magnets has been presented earlier in reference 1 . With the help of several iterations in the crOSS section, we have been able to reduce the saturation induced b2 and b4 harmonics by more then an order of magnitude. We shall briefly describe those iterations. The calculations described in this note have generally been done with the computer program POISSON. However, while comparing the calculations and measurements, we have included the results of field calculations with the code PEZD and MDP as well. The measurements are the average of up and down ramps. A small difference between the calculations and measurements has been observed consistently in the saturation induced b2 and b4 harmonics in all magnets DRAOO1 through DRA0O9. More work is still needed to the current dependence of skew quadrupole harmonic (a1) We refer to current dependence of harmonics loosely as the saturation induced harmonics; but in an actual magnet it includes other effects like the harmonics induced by the coil deformation due to lorentz forces, etc. long yoke explain" + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 515.5457153320312, + "t": 743.49365234375, + "r": 521.0, + "b": 735.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 1 + ] + } + ], + "orig": "2", + "text": "2" + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 53.33333206176758, + "t": 703.3999633789062, + "r": 159.0, + "b": 691.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 16 + ] + } + ], + "orig": "2 . Measurements", + "text": "2 . Measurements", + "level": 1 + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 52.0, + "t": 681.7332763671875, + "r": 524.0, + "b": 558.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 570 + ] + } + ], + "orig": "In Fig. 2.1 through 2.4, we have summarized the measured current dependence of b2, b4, b6 and a1 harmonics in the 80 mm aperture RHIC dipoles built and tested to date. We present measurements only after 2 kAmp and are the results of the averaging the up and down ramp. In order to make it easier to compare, we have shifted all harmonics to start them from a zero value at 2 kAmp. These measurements have been presented and discussed in detail earlier in various Testing and Measuring Group Notes by Wanderer? et.al. and in Magnet Division Notes by Thompson? . Fig; they", + "text": "In Fig. 2.1 through 2.4, we have summarized the measured current dependence of b2, b4, b6 and a1 harmonics in the 80 mm aperture RHIC dipoles built and tested to date. We present measurements only after 2 kAmp and are the results of the averaging the up and down ramp. In order to make it easier to compare, we have shifted all harmonics to start them from a zero value at 2 kAmp. These measurements have been presented and discussed in detail earlier in various Testing and Measuring Group Notes by Wanderer? et.al. and in Magnet Division Notes by Thompson? . Fig; they" + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 52.33333206176758, + "t": 557.7332763671875, + "r": 524.3333129882812, + "b": 417.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 681 + ] + } + ], + "orig": "One can note in Fig. 2.1 and Fig. 2.2 that the b2 and b4 saturation in the most recent dipole DRSGR (DRSOOG Rebuilt with saturation suppressor hole) is signifcantly lower4 then in the earliest dipole DRAI through DRA4. In DRAl the maximum measured b2 saturation till the design current of 5 kAmp was 43 unit; in contrast to that in DRSOOGR it is under 2 unit. Similarly; in DRAI the maximum measured b4 saturation till 5 kAmp current was 8.5 unit; in contrast in DRSGRit is under 0.5 unit. The b6 saturation (Fig. 2.3) had a large fluctuations in the measurements in the earlier RHIC dipoles. It may have been -1 unit in DRAl; in magnet DRSGR, it is observed to be 1.2 unit maximum", + "text": "One can note in Fig. 2.1 and Fig. 2.2 that the b2 and b4 saturation in the most recent dipole DRSGR (DRSOOG Rebuilt with saturation suppressor hole) is signifcantly lower4 then in the earliest dipole DRAI through DRA4. In DRAl the maximum measured b2 saturation till the design current of 5 kAmp was 43 unit; in contrast to that in DRSOOGR it is under 2 unit. Similarly; in DRAI the maximum measured b4 saturation till 5 kAmp current was 8.5 unit; in contrast in DRSGRit is under 0.5 unit. The b6 saturation (Fig. 2.3) had a large fluctuations in the measurements in the earlier RHIC dipoles. It may have been -1 unit in DRAl; in magnet DRSGR, it is observed to be 1.2 unit maximum" + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 53.0, + "t": 418.39996337890625, + "r": 524.6666870117188, + "b": 276.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 655 + ] + } + ], + "orig": "In 2.4, we have plotted the a1 saturation in the and short dipoles. It is clear that a large magnet to magnet variation has been observed both in the and in the short dipoles. A current dependence is to be expected in the skew quadrupole harmonics (a1) at high current when the fux lines can not be contained in the iron and start going through the low carbon steel cryostat which is asymmetrically located with respect to the magnet center. However, n0 current dependence was to be expected in the earlier magnets which were located symmetrically in the cryostat and in the short dipoles which are not inside a cryostat. long Fig: long yoke they long put", + "text": "In 2.4, we have plotted the a1 saturation in the and short dipoles. It is clear that a large magnet to magnet variation has been observed both in the and in the short dipoles. A current dependence is to be expected in the skew quadrupole harmonics (a1) at high current when the fux lines can not be contained in the iron and start going through the low carbon steel cryostat which is asymmetrically located with respect to the magnet center. However, n0 current dependence was to be expected in the earlier magnets which were located symmetrically in the cryostat and in the short dipoles which are not inside a cryostat. long Fig: long yoke they long put" + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 54.0, + "t": 275.7333068847656, + "r": 526.0, + "b": 136.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 647 + ] + } + ], + "orig": "In Table 2.1 through Table 2.9, we have presented the numerical values of the harmonics plotted in 2.1 through Fig. 2.4 for each magnet DRAOOI through DRDOO9. We have not presented the short magnets as most of them were measured with a 30' coil. The 30 coil measurements in the short magnets not only reflect the measured harmonics in the straight section but also include the effects of the ends (coil length 36.9\" ), particularly in the iron saturation at high current where field lines tend to move more toward the two ends. The measurements with the 9\" coils in magnets DRSOO6 and DRSOO8 have been described in detail in reference 4. long Fig:", + "text": "In Table 2.1 through Table 2.9, we have presented the numerical values of the harmonics plotted in 2.1 through Fig. 2.4 for each magnet DRAOOI through DRDOO9. We have not presented the short magnets as most of them were measured with a 30' coil. The 30 coil measurements in the short magnets not only reflect the measured harmonics in the straight section but also include the effects of the ends (coil length 36.9\" ), particularly in the iron saturation at high current where field lines tend to move more toward the two ends. The measurements with the 9\" coils in magnets DRSOO6 and DRSOO8 have been described in detail in reference 4. long Fig:" + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 102.66666412353516, + "t": 665.3999633789062, + "r": 427.3333435058594, + "b": 641.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 40 + ] + } + ], + "orig": "History of 62 Saturation in RHIC Dipoles", + "text": "History of 62 Saturation in RHIC Dipoles", + "level": 1 + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 91.33333587646484, + "t": 129.39996337890625, + "r": 485.3333435058594, + "b": 67.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 246 + ] + } + ], + "orig": "Figure 2.1: Measured current dependence of b2 in various 80 mm aperture and short dipoles for RHIC. The curves are the average of the up and down ramp and for each magnets they are shifted by an amount so that start from zero at 2 kAmp. long they", + "text": "Figure 2.1: Measured current dependence of b2 in various 80 mm aperture and short dipoles for RHIC. The curves are the average of the up and down ramp and for each magnets they are shifted by an amount so that start from zero at 2 kAmp. long they" + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 108.33333587646484, + "t": 648.3999633789062, + "r": 432.0, + "b": 623.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 40 + ] + } + ], + "orig": "History of b4 Saturation in RHIC Dipoles", + "text": "History of b4 Saturation in RHIC Dipoles" + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 99.33333587646484, + "t": 131.73329162597656, + "r": 494.6666564941406, + "b": 70.43621826171875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 246 + ] + } + ], + "orig": "Figure 2.2: Measured current dependence of b4 in various 80 mm aperture and short dipoles for RHIC. The curves are the average of the up and down ramp and for each magnets are shifted by an amount 80 that start from zero at 2 kAmp. long they they", + "text": "Figure 2.2: Measured current dependence of b4 in various 80 mm aperture and short dipoles for RHIC. The curves are the average of the up and down ramp and for each magnets are shifted by an amount 80 that start from zero at 2 kAmp. long they they" + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 520.0730590820312, + "t": 746.27099609375, + "r": 525.6666870117188, + "b": 738.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 1 + ] + } + ], + "orig": "5", + "text": "5" + }, + { + "self_ref": "#/texts/22", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 103.66666412353516, + "t": 627.066650390625, + "r": 427.3333435058594, + "b": 600.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 40 + ] + } + ], + "orig": "History of b6 Saturation in RHIC Dipoles", + "text": "History of b6 Saturation in RHIC Dipoles", + "level": 1 + }, + { + "self_ref": "#/texts/23", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 98.46123504638672, + "t": 132.39996337890625, + "r": 493.0, + "b": 71.10643768310547, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 246 + ] + } + ], + "orig": "Figure 2.3: Measured current dependence of b6 in various 80 mm aperture and short dipoles for RHIC. The curves are the average of the up and down ramp and for each magnets they are shifted by an amount s0 that start from zero at 2 kAmp. long they", + "text": "Figure 2.3: Measured current dependence of b6 in various 80 mm aperture and short dipoles for RHIC. The curves are the average of the up and down ramp and for each magnets they are shifted by an amount s0 that start from zero at 2 kAmp. long they" + }, + { + "self_ref": "#/texts/24", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 106.0, + "t": 637.3999633789062, + "r": 427.0, + "b": 612.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 40 + ] + } + ], + "orig": "History of al Saturation in RHIC Dipoles", + "text": "History of al Saturation in RHIC Dipoles", + "level": 1 + }, + { + "self_ref": "#/texts/25", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 100.33333587646484, + "t": 132.06663513183594, + "r": 495.3333435058594, + "b": 68.43461608886719, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 246 + ] + } + ], + "orig": "Figure 2.4: Measured current dependence of 01 in various 80 mm aperture and short dipoles for RHIC. The curves are the average of the up and ramp and for each magnets are shifted by an amount so that start from zero at 2 kAmp. long they down they", + "text": "Figure 2.4: Measured current dependence of 01 in various 80 mm aperture and short dipoles for RHIC. The curves are the average of the up and ramp and for each magnets are shifted by an amount so that start from zero at 2 kAmp. long they down they" + }, + { + "self_ref": "#/texts/26", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 93.0, + "t": 707.066650390625, + "r": 487.0, + "b": 650.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 266 + ] + } + ], + "orig": "Table 2.1: Average of the up and down ramp in the magnet DRAOOI. Moreover the harmonics are subtracted by the value of this average at 2 kAmp s0 that have a zero value at 2kAmp. Please see the following processing for the details DRAOO1.24023 27-APR-92 12.22.20 they", + "text": "Table 2.1: Average of the up and down ramp in the magnet DRAOOI. Moreover the harmonics are subtracted by the value of this average at 2 kAmp s0 that have a zero value at 2kAmp. Please see the following processing for the details DRAOO1.24023 27-APR-92 12.22.20 they" + }, + { + "self_ref": "#/texts/27", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 98.66666412353516, + "t": 706.7332763671875, + "r": 491.3333435058594, + "b": 649.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 266 + ] + } + ], + "orig": "Table 2.2: Average of the up and down ramp in the magnet DRAOO2. Moreover the harmonics are subtracted by the value of this average at 2 s0 that have a zero value at 2kAmp. Please see the following processing for the details DRA002.23583 28-APR-92 09.25.43 kAmp they", + "text": "Table 2.2: Average of the up and down ramp in the magnet DRAOO2. Moreover the harmonics are subtracted by the value of this average at 2 s0 that have a zero value at 2kAmp. Please see the following processing for the details DRA002.23583 28-APR-92 09.25.43 kAmp they" + }, + { + "self_ref": "#/texts/28", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 95.66666412353516, + "t": 705.7332763671875, + "r": 489.6666564941406, + "b": 648.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 266 + ] + } + ], + "orig": "Table 2.3: Average of the up and down ramp in the magnet DRA003. Moreover the harmonics are subtracted by the value of this average at 2 kAmp so that have a zero value at 2kAmp. Please see the following processing for the details DRAO03.22993 28-APR-92 09.36.51 they", + "text": "Table 2.3: Average of the up and down ramp in the magnet DRA003. Moreover the harmonics are subtracted by the value of this average at 2 kAmp so that have a zero value at 2kAmp. Please see the following processing for the details DRAO03.22993 28-APR-92 09.36.51 they" + }, + { + "self_ref": "#/texts/29", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 93.66666412353516, + "t": 708.3999633789062, + "r": 487.6666564941406, + "b": 648.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 266 + ] + } + ], + "orig": "Table 2.4: Average of the up and down ramp in the magnet DRAOO4. Moreover the harmonics are subtracted by the value of this average at 2 kAmp so that have a zero value at 2kAmp. Please see the following processing for the details DRAOO4.24344 28-APR-92 09.42.54 they", + "text": "Table 2.4: Average of the up and down ramp in the magnet DRAOO4. Moreover the harmonics are subtracted by the value of this average at 2 kAmp so that have a zero value at 2kAmp. Please see the following processing for the details DRAOO4.24344 28-APR-92 09.42.54 they" + }, + { + "self_ref": "#/texts/30", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 513.3333129882812, + "t": 746.3999633789062, + "r": 525.3333129882812, + "b": 736.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "10", + "text": "10" + }, + { + "self_ref": "#/texts/31", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 90.33333587646484, + "t": 717.3999633789062, + "r": 485.0, + "b": 659.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 266 + ] + } + ], + "orig": "Table 2.5: Average of the up and down ramp in the magnet DRBOO5. Moreover the harmonics are subtracted by the value of this average at 2 kAmp s0 that have a zero value at 2kAmp. Please see the following processing for the details DRBOO5.25013 27-APR-92 11.13.36 they", + "text": "Table 2.5: Average of the up and down ramp in the magnet DRBOO5. Moreover the harmonics are subtracted by the value of this average at 2 kAmp s0 that have a zero value at 2kAmp. Please see the following processing for the details DRBOO5.25013 27-APR-92 11.13.36 they" + }, + { + "self_ref": "#/texts/32", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 512.0, + "t": 753.2371826171875, + "r": 522.6666870117188, + "b": 744.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "1l", + "text": "1l" + }, + { + "self_ref": "#/texts/33", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 97.0, + "t": 705.066650390625, + "r": 491.6666564941406, + "b": 648.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 267 + ] + } + ], + "orig": "Table 2.6: Average of the up and down ramp in the magnet DRBOO6 . Moreover the harmonics are subtracted by the value of this average at 2 kAmp so that have a zerO value at 2kAmp. Please see the following processing for the details DRBOO6.22743 27-APR-92 14.09,46 they", + "text": "Table 2.6: Average of the up and down ramp in the magnet DRBOO6 . Moreover the harmonics are subtracted by the value of this average at 2 kAmp so that have a zerO value at 2kAmp. Please see the following processing for the details DRBOO6.22743 27-APR-92 14.09,46 they" + }, + { + "self_ref": "#/texts/34", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 518.6666870117188, + "t": 740.3999633789062, + "r": 530.6666870117188, + "b": 730.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "12", + "text": "12" + }, + { + "self_ref": "#/texts/35", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 96.66666412353516, + "t": 705.066650390625, + "r": 491.0, + "b": 647.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 266 + ] + } + ], + "orig": "Table 2.7: Average of the up and down ramp in the magnet DRCOO7. Moreover the harmonics are subtracted by the value of this average at 2 kAmp so that have a Zero value at 2kAmp. Please see the following processing for the details DRCOO7.23553 27-APR-92 14.36.35 they", + "text": "Table 2.7: Average of the up and down ramp in the magnet DRCOO7. Moreover the harmonics are subtracted by the value of this average at 2 kAmp so that have a Zero value at 2kAmp. Please see the following processing for the details DRCOO7.23553 27-APR-92 14.36.35 they" + }, + { + "self_ref": "#/texts/36", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 517.3333129882812, + "t": 742.3999633789062, + "r": 529.3333129882812, + "b": 732.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "13", + "text": "13" + }, + { + "self_ref": "#/texts/37", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 96.33333587646484, + "t": 705.7332763671875, + "r": 490.3333435058594, + "b": 648.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 266 + ] + } + ], + "orig": "Table 2.8: Average of the up and down ramp in the magnet DRCO08. Moreover the harmonics are subtracted by the value of this average at 2 kAmp S0 that have a ZeIO value at 2kAmp. Please see the following processing for the details DRCOO8.25463 27-APR-92 14.57.02 they", + "text": "Table 2.8: Average of the up and down ramp in the magnet DRCO08. Moreover the harmonics are subtracted by the value of this average at 2 kAmp S0 that have a ZeIO value at 2kAmp. Please see the following processing for the details DRCOO8.25463 27-APR-92 14.57.02 they" + }, + { + "self_ref": "#/texts/38", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 517.3333129882812, + "t": 741.066650390625, + "r": 529.3333129882812, + "b": 731.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "14", + "text": "14" + }, + { + "self_ref": "#/texts/39", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 93.33333587646484, + "t": 705.3999633789062, + "r": 488.0, + "b": 647.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 266 + ] + } + ], + "orig": "Table 2.9: Average of the up and down ramp in the magnet DRDOO9. Moreover the harmonics are subtracted by the value of this average at 2 kAmp so that have a Zero value at 2kAmp. Please see the following processing for the details DRDOO9.101L4 30-APR-92 14.08.26 they", + "text": "Table 2.9: Average of the up and down ramp in the magnet DRDOO9. Moreover the harmonics are subtracted by the value of this average at 2 kAmp so that have a Zero value at 2kAmp. Please see the following processing for the details DRDOO9.101L4 30-APR-92 14.08.26 they" + }, + { + "self_ref": "#/texts/40", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 514.6666870117188, + "t": 741.066650390625, + "r": 526.0, + "b": 731.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "15", + "text": "15" + }, + { + "self_ref": "#/texts/41", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 516.0, + "t": 742.3999633789062, + "r": 528.0, + "b": 732.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "16", + "text": "16" + }, + { + "self_ref": "#/texts/42", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 57.33333206176758, + "t": 705.3999633789062, + "r": 150.3333282470703, + "b": 692.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 15 + ] + } + ], + "orig": "3. Calculations", + "text": "3. Calculations", + "level": 1 + }, + { + "self_ref": "#/texts/43", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 55.66666793823242, + "t": 682.3999633789062, + "r": 529.0, + "b": 579.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 511 + ] + } + ], + "orig": "In this section we present the results of the POISSON calculations for all magnets built and tested 50 namely DRAOOI through DRDOO9. We have ignored the effect of cryostat wall on field harmonics, which is present in all magnets. The most recent short magnets are discussed in reference 4 Just as in the case of measurements, we have shifted the harmonics to start them from zero, however, in the case of calculations are made zero at zero current (i.e., for %u calculations) instead of 2 kAlong far , long they", + "text": "In this section we present the results of the POISSON calculations for all magnets built and tested 50 namely DRAOOI through DRDOO9. We have ignored the effect of cryostat wall on field harmonics, which is present in all magnets. The most recent short magnets are discussed in reference 4 Just as in the case of measurements, we have shifted the harmonics to start them from zero, however, in the case of calculations are made zero at zero current (i.e., for %u calculations) instead of 2 kAlong far , long they" + }, + { + "self_ref": "#/texts/44", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 55.33333206176758, + "t": 578.066650390625, + "r": 528.3333129882812, + "b": 508.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 317 + ] + } + ], + "orig": "The magnets DRAOOI, DRAOO2 and DRAOO3 were built at BBC with an identical iron Cross section. A POISSON model for them is shown in 3.1 and the results of calculations are given in Table 3.1. These magnets have a 5 mm gap between the coil and yoke. The POISSON model is made as per the drawings obtained from BBC. Fig;", + "text": "The magnets DRAOOI, DRAOO2 and DRAOO3 were built at BBC with an identical iron Cross section. A POISSON model for them is shown in 3.1 and the results of calculations are given in Table 3.1. These magnets have a 5 mm gap between the coil and yoke. The POISSON model is made as per the drawings obtained from BBC. Fig;" + }, + { + "self_ref": "#/texts/45", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 55.33333206176758, + "t": 507.0666198730469, + "r": 528.3333129882812, + "b": 438.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 324 + ] + } + ], + "orig": "The magnet DRAOO4 was built at BNL with some modifications in the the DRA0O3 CrOSS sectionA POISSON model for DRAOO4 is shown in 3.2 and the results of calculations are given in Table 3.2. This magnet also has a 5 mm gap between the coil and yoke. The iron yoke model is based on the drawing No. 22-242.04-4 Revision B. Fig:", + "text": "The magnet DRAOO4 was built at BNL with some modifications in the the DRA0O3 CrOSS sectionA POISSON model for DRAOO4 is shown in 3.2 and the results of calculations are given in Table 3.2. This magnet also has a 5 mm gap between the coil and yoke. The iron yoke model is based on the drawing No. 22-242.04-4 Revision B. Fig:" + }, + { + "self_ref": "#/texts/46", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 55.46836471557617, + "t": 437.7333068847656, + "r": 529.0, + "b": 354.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 350 + ] + } + ], + "orig": "The magnets DRBOO5 and DRBOO6 were built at BNL with an identical iron crOSS section. A POISSON model for them is shown in 3.3 and the results of calculations are given in Table 3.3. These magnets have a 10 mm gap between the coil and The model is based on the drawing No. 22-398.05-5. The is made of non-magnetic stainless steel. Fig; yoke. yoke key", + "text": "The magnets DRBOO5 and DRBOO6 were built at BNL with an identical iron crOSS section. A POISSON model for them is shown in 3.3 and the results of calculations are given in Table 3.3. These magnets have a 10 mm gap between the coil and The model is based on the drawing No. 22-398.05-5. The is made of non-magnetic stainless steel. Fig; yoke. yoke key" + }, + { + "self_ref": "#/texts/47", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 55.33333206176758, + "t": 350.39996337890625, + "r": 528.6666870117188, + "b": 245.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 499 + ] + } + ], + "orig": "The magnets DRCOO7 and DRCOO8 were built at BNL with an identical iron cross section. A POISSON model for them is shown in Fig. 3.4 and the results of calculations are given in Table 3.4. These magnets have \u00e0 10 mm gap between the coil and As in the case of DRBOO5, the iron model is based on the drawing No. 22-398.05-5. The only difference between the DRBOO5 (or DRBOO6) and DRCOO7 (or DRCOO8) is that the material is changed from non-magnetic stainless steel to low carbon magnet steel. yoke. key", + "text": "The magnets DRCOO7 and DRCOO8 were built at BNL with an identical iron cross section. A POISSON model for them is shown in Fig. 3.4 and the results of calculations are given in Table 3.4. These magnets have \u00e0 10 mm gap between the coil and As in the case of DRBOO5, the iron model is based on the drawing No. 22-398.05-5. The only difference between the DRBOO5 (or DRBOO6) and DRCOO7 (or DRCOO8) is that the material is changed from non-magnetic stainless steel to low carbon magnet steel. yoke. key" + }, + { + "self_ref": "#/texts/48", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 55.66666793823242, + "t": 245.39996337890625, + "r": 528.3333129882812, + "b": 161.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 352 + ] + } + ], + "orig": "The magnet DRDOO9 was built at BNL with a new iron Cross section. A POISSON model for it is shown in 3.5 and the results of calculations are given in Table 3.5. This magnet, like all other dipoles starting from DRBOO5, has a 10 mm gap between the coil and the The POISSON model for the is based on the drawing No. 22-714.02-5 Revision A Fig; yoke. yoke", + "text": "The magnet DRDOO9 was built at BNL with a new iron Cross section. A POISSON model for it is shown in 3.5 and the results of calculations are given in Table 3.5. This magnet, like all other dipoles starting from DRBOO5, has a 10 mm gap between the coil and the The POISSON model for the is based on the drawing No. 22-714.02-5 Revision A Fig; yoke. yoke" + }, + { + "self_ref": "#/texts/49", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 512.6666870117188, + "t": 743.066650390625, + "r": 524.0, + "b": 734.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "17", + "text": "17" + }, + { + "self_ref": "#/texts/50", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 88.33333587646484, + "t": 117.0666275024414, + "r": 482.3333435058594, + "b": 71.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 157 + ] + } + ], + "orig": "Figure 3.1: POISSON model for the 80 mm aperture RHIC arc dipole magnets DRAOOI_ DRAOO2 and DRAOU3 . The model is made as per the drawings obtained from BBC.", + "text": "Figure 3.1: POISSON model for the 80 mm aperture RHIC arc dipole magnets DRAOOI_ DRAOO2 and DRAOU3 . The model is made as per the drawings obtained from BBC." + }, + { + "self_ref": "#/texts/51", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 19, + "bbox": { + "l": 511.3333435058594, + "t": 743.7332763671875, + "r": 523.3333129882812, + "b": 734.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "18", + "text": "18" + }, + { + "self_ref": "#/texts/52", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 19, + "bbox": { + "l": 91.66666412353516, + "t": 708.066650390625, + "r": 484.3333435058594, + "b": 678.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 114 + ] + } + ], + "orig": "Table 3.1: Results of POISSON calculations for magnets DRAOOI, DRAOO2 DRAOO3. The result file is DRA123.LOG;4. and", + "text": "Table 3.1: Results of POISSON calculations for magnets DRAOOI, DRAOO2 DRAOO3. The result file is DRA123.LOG;4. and" + }, + { + "self_ref": "#/texts/53", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 512.0, + "t": 742.3999633789062, + "r": 523.3333129882812, + "b": 732.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "19", + "text": "19" + }, + { + "self_ref": "#/texts/54", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 87.33333587646484, + "t": 113.7332992553711, + "r": 480.3333435058594, + "b": 72.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 151 + ] + } + ], + "orig": "Figure 3.2: POISSON model for the 80 mm aperture RHIC arc dipole magnet DRAOO4. The iron model is based on the drawing No. 22 242.04-4 Revision B. yoke", + "text": "Figure 3.2: POISSON model for the 80 mm aperture RHIC arc dipole magnet DRAOO4. The iron model is based on the drawing No. 22 242.04-4 Revision B. yoke" + }, + { + "self_ref": "#/texts/55", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 512.0, + "t": 743.066650390625, + "r": 524.6666870117188, + "b": 733.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "20", + "text": "20" + }, + { + "self_ref": "#/texts/56", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 91.33333587646484, + "t": 707.7332763671875, + "r": 485.0, + "b": 678.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 92 + ] + } + ], + "orig": "Table 3.2: Results of POISSON calculations for magnet DRAOO4. The result file is DRA4.LOG;5.", + "text": "Table 3.2: Results of POISSON calculations for magnet DRAOO4. The result file is DRA4.LOG;5." + }, + { + "self_ref": "#/texts/57", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 512.6666870117188, + "t": 744.3999633789062, + "r": 524.6666870117188, + "b": 734.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "21", + "text": "21" + }, + { + "self_ref": "#/texts/58", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 90.0, + "t": 117.0666275024414, + "r": 484.3333435058594, + "b": 69.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 197 + ] + } + ], + "orig": "Figure 3.3: POISSON model for the 80 mm aperture RHIC arc dipole magnets DRBOO5 and DRBOO6 . The model is based on the drawing No. 22-398.05-5. The is made of non-magnetic stainless steel. yoke key", + "text": "Figure 3.3: POISSON model for the 80 mm aperture RHIC arc dipole magnets DRBOO5 and DRBOO6 . The model is based on the drawing No. 22-398.05-5. The is made of non-magnetic stainless steel. yoke key" + }, + { + "self_ref": "#/texts/59", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 510.6666564941406, + "t": 743.7332763671875, + "r": 522.6666870117188, + "b": 733.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "22", + "text": "22" + }, + { + "self_ref": "#/texts/60", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 91.66666412353516, + "t": 708.3999633789062, + "r": 483.3333435058594, + "b": 678.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 104 + ] + } + ], + "orig": "Table 3.3: Results of POISSON calculations for magnets DRBOO5 and DRBOO6. The result file is DRB5.LOG;1.", + "text": "Table 3.3: Results of POISSON calculations for magnets DRBOO5 and DRBOO6. The result file is DRB5.LOG;1." + }, + { + "self_ref": "#/texts/61", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 24, + "bbox": { + "l": 513.3333129882812, + "t": 743.7332763671875, + "r": 525.3333129882812, + "b": 734.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "23", + "text": "23" + }, + { + "self_ref": "#/texts/62", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 24, + "bbox": { + "l": 90.0, + "t": 116.7332992553711, + "r": 484.3333435058594, + "b": 70.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 197 + ] + } + ], + "orig": "Figure 3.4: POISSON model for the 80 mm aperture RHIC arc dipole magnets DRCOO7 and DRCOO8. The iron model is based on the drawing No 22-398.05-5. The is made of low carbon magnetic steel. yoke key", + "text": "Figure 3.4: POISSON model for the 80 mm aperture RHIC arc dipole magnets DRCOO7 and DRCOO8. The iron model is based on the drawing No 22-398.05-5. The is made of low carbon magnetic steel. yoke key" + }, + { + "self_ref": "#/texts/63", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 510.6666564941406, + "t": 744.3999633789062, + "r": 522.6666870117188, + "b": 734.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "24", + "text": "24" + }, + { + "self_ref": "#/texts/64", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 91.66666412353516, + "t": 709.3999633789062, + "r": 483.3333435058594, + "b": 677.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 105 + ] + } + ], + "orig": "Table 3.4: Results of POISSON calculations for magnets DRCOO7 and DRCOO8 . The result file is DRC7.log;2.", + "text": "Table 3.4: Results of POISSON calculations for magnets DRCOO7 and DRCOO8 . The result file is DRC7.log;2." + }, + { + "self_ref": "#/texts/65", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 26, + "bbox": { + "l": 512.0, + "t": 745.066650390625, + "r": 524.0, + "b": 736.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "25", + "text": "25" + }, + { + "self_ref": "#/texts/66", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 26, + "bbox": { + "l": 88.66666412353516, + "t": 115.7332992553711, + "r": 483.3333435058594, + "b": 72.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 145 + ] + } + ], + "orig": "Figure 3.5: POISSON model for the 80 mm aperture RHIC arc dipole magnet DRDOO9. The model is based on the drawing No. 22-714.02-5 Revision A yoke", + "text": "Figure 3.5: POISSON model for the 80 mm aperture RHIC arc dipole magnet DRDOO9. The model is based on the drawing No. 22-714.02-5 Revision A yoke" + }, + { + "self_ref": "#/texts/67", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 27, + "bbox": { + "l": 512.6666870117188, + "t": 746.3999633789062, + "r": 524.6666870117188, + "b": 736.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "26", + "text": "26" + }, + { + "self_ref": "#/texts/68", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 27, + "bbox": { + "l": 93.0, + "t": 711.3999633789062, + "r": 485.6666564941406, + "b": 680.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 118 + ] + } + ], + "orig": "Table 3.5: The results of POISSON calculations for the RHIC magnet DRDOO9 . The results are stored on file DRD9.LOG;2.", + "text": "Table 3.5: The results of POISSON calculations for the RHIC magnet DRDOO9 . The results are stored on file DRD9.LOG;2." + }, + { + "self_ref": "#/texts/69", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 56.20182418823242, + "t": 711.7332763671875, + "r": 281.6666564941406, + "b": 697.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 35 + ] + } + ], + "orig": "4. Calculations versus Measurements", + "text": "4. Calculations versus Measurements", + "level": 1 + }, + { + "self_ref": "#/texts/70", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 54.0, + "t": 688.3999633789062, + "r": 527.6666870117188, + "b": 531.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 734 + ] + } + ], + "orig": "In this section we compare measurements and the calculations for the current dependence of the field harmonics (b2 and b4 only) in all magnets . The calculations are done for the saturation induced harmonics with the computer codes POISSON, PEZD and MDP. Tle current dependence on the feld harmonics maj also come due to a small coil deformation as a result of the Lorentz force on the coil. This has not been included in the calculations. The b6 harmonic could not be obtained to the desired accuracy in the earlier magnets (DRAOOI through DRCO08) to make any meaningful comparison. In the latest magnet DRDO09, the agreement between the calculations and measurements for the current dependence of b6 is better than 4 unit. long long", + "text": "In this section we compare measurements and the calculations for the current dependence of the field harmonics (b2 and b4 only) in all magnets . The calculations are done for the saturation induced harmonics with the computer codes POISSON, PEZD and MDP. Tle current dependence on the feld harmonics maj also come due to a small coil deformation as a result of the Lorentz force on the coil. This has not been included in the calculations. The b6 harmonic could not be obtained to the desired accuracy in the earlier magnets (DRAOOI through DRCO08) to make any meaningful comparison. In the latest magnet DRDO09, the agreement between the calculations and measurements for the current dependence of b6 is better than 4 unit. long long" + }, + { + "self_ref": "#/texts/71", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 54.66666793823242, + "t": 532.3634643554688, + "r": 526.6666870117188, + "b": 480.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 247 + ] + } + ], + "orig": "In Fig. 4.1 and 4.2 we have plotted computed and measured b2 and b4 as a function of current for the three magnets DRAOOI, DRAO02 and DRA003, made with the same iron cross-section. Tle calculations are made with the code POISSON, PEZD and MDP. Fig", + "text": "In Fig. 4.1 and 4.2 we have plotted computed and measured b2 and b4 as a function of current for the three magnets DRAOOI, DRAO02 and DRA003, made with the same iron cross-section. Tle calculations are made with the code POISSON, PEZD and MDP. Fig" + }, + { + "self_ref": "#/texts/72", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 54.0, + "t": 479.7041015625, + "r": 527.3333129882812, + "b": 428.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 183 + ] + } + ], + "orig": "In 4.3 and 4.4 we have done the same comparison between the calculations and measurements for the magnet DRAOO4. The calculations are made with the code POISSON, PEZD and MDP. FigFig;", + "text": "In 4.3 and 4.4 we have done the same comparison between the calculations and measurements for the magnet DRAOO4. The calculations are made with the code POISSON, PEZD and MDP. FigFig;" + }, + { + "self_ref": "#/texts/73", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 53.66666793823242, + "t": 427.6968078613281, + "r": 527.6666870117188, + "b": 378.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 178 + ] + } + ], + "orig": "In 4.5 and 4.6 b2 and b4 are plotted for magnets DRBOO5 and DRBOO6 for the calculations and measurements. The calculations are made with the code POISSON, PEZD and MDP. Fig; Fig.", + "text": "In 4.5 and 4.6 b2 and b4 are plotted for magnets DRBOO5 and DRBOO6 for the calculations and measurements. The calculations are made with the code POISSON, PEZD and MDP. Fig; Fig." + }, + { + "self_ref": "#/texts/74", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 54.33333206176758, + "t": 373.7333068847656, + "r": 526.0, + "b": 338.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 162 + ] + } + ], + "orig": "In the case of magnets DRCOO7 and DRCO08 the calculations are made with POISSON and PEZD The computed and measured b2 and b4 are plotted in Fig. 4.7 and Fig. 4.8.", + "text": "In the case of magnets DRCOO7 and DRCO08 the calculations are made with POISSON and PEZD The computed and measured b2 and b4 are plotted in Fig. 4.7 and Fig. 4.8." + }, + { + "self_ref": "#/texts/75", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 53.33333206176758, + "t": 339.70635986328125, + "r": 526.6666870117188, + "b": 290.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 179 + ] + } + ], + "orig": "In 4.9 and Fig- 4.10 we have done the same comparison between the calculations and measurements for the magnet DRDOO9. The calculations are made with the code POISSON and PEZD Fig", + "text": "In 4.9 and Fig- 4.10 we have done the same comparison between the calculations and measurements for the magnet DRDOO9. The calculations are made with the code POISSON and PEZD Fig" + }, + { + "self_ref": "#/texts/76", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 514.6666870117188, + "t": 747.066650390625, + "r": 526.6666870117188, + "b": 737.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "27", + "text": "27" + }, + { + "self_ref": "#/texts/77", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 511.3333435058594, + "t": 753.7332763671875, + "r": 523.3333129882812, + "b": 743.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "28", + "text": "28" + }, + { + "self_ref": "#/texts/78", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 76.0, + "t": 671.7332763671875, + "r": 441.6666564941406, + "b": 649.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 54 + ] + } + ], + "orig": "Computed and measured b2 in DRAOOI , DRAOO2 and DRAOO3", + "text": "Computed and measured b2 in DRAOOI , DRAOO2 and DRAOO3", + "level": 1 + }, + { + "self_ref": "#/texts/79", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 89.33333587646484, + "t": 140.39996337890625, + "r": 483.3333435058594, + "b": 81.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 271 + ] + } + ], + "orig": "Figure 4.1: Computed and measured b2 variation as a function of current in the 80 mm aperture RHIC afC dipole magnets DRA0OI, DRAOO2 and DRAOO3. These three magnets are made with the same iron cross section. The calculations are made with the codes POISSON, PEZD and MDP.", + "text": "Figure 4.1: Computed and measured b2 variation as a function of current in the 80 mm aperture RHIC afC dipole magnets DRA0OI, DRAOO2 and DRAOO3. These three magnets are made with the same iron cross section. The calculations are made with the codes POISSON, PEZD and MDP." + }, + { + "self_ref": "#/texts/80", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 510.0, + "t": 753.7332763671875, + "r": 522.0, + "b": 744.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "29", + "text": "29" + }, + { + "self_ref": "#/texts/81", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 84.66666412353516, + "t": 658.7332763671875, + "r": 449.0, + "b": 641.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 53 + ] + } + ], + "orig": "Computed and measured b4 in DRAOOI, DRAOO2 and DRAOO3", + "text": "Computed and measured b4 in DRAOOI, DRAOO2 and DRAOO3", + "level": 1 + }, + { + "self_ref": "#/texts/82", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 85.66666412353516, + "t": 141.06663513183594, + "r": 480.3333435058594, + "b": 81.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 272 + ] + } + ], + "orig": "Figure 4.2: Computed and measured b4 variation as a function of current in the 80 mm aperture RHIC arc dipole magnets DRA0OI, DRAOO2 and DRAOO3 . These three magnets are made with the same iron cross section. The calculations are made with the codes POISSON, PEZD and MDP.", + "text": "Figure 4.2: Computed and measured b4 variation as a function of current in the 80 mm aperture RHIC arc dipole magnets DRA0OI, DRAOO2 and DRAOO3 . These three magnets are made with the same iron cross section. The calculations are made with the codes POISSON, PEZD and MDP." + }, + { + "self_ref": "#/texts/83", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 86.66666412353516, + "t": 634.7332763671875, + "r": 441.0, + "b": 605.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 34 + ] + } + ], + "orig": "Computed and measured b2 in DRAOO4", + "text": "Computed and measured b2 in DRAOO4", + "level": 1 + }, + { + "self_ref": "#/texts/84", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 62.0, + "t": 214.39996337890625, + "r": 185.3333282470703, + "b": 191.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 51 + ] + } + ], + "orig": "[GUPTARHICDIPIDRA4 RESO;5 2 0PARHI81PPRA88 2E2,5592", + "text": "[GUPTARHICDIPIDRA4 RESO;5 2 0PARHI81PPRA88 2E2,5592" + }, + { + "self_ref": "#/texts/85", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 87.33333587646484, + "t": 126.39996337890625, + "r": 481.0, + "b": 83.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 188 + ] + } + ], + "orig": "Figure 4.3: Computed and measured b2 variation as a function of current in the 80 mm aperture RHIC arc dipole magnet DRAOO4. The calculations are made with the codes POISSON, PEZD and MDP.", + "text": "Figure 4.3: Computed and measured b2 variation as a function of current in the 80 mm aperture RHIC arc dipole magnet DRAOO4. The calculations are made with the codes POISSON, PEZD and MDP." + }, + { + "self_ref": "#/texts/86", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 56.0, + "t": 214.06663513183594, + "r": 198.6666717529297, + "b": 185.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 36 + ] + } + ], + "orig": "4 IGUPTAMEASURE RHICIDRAOO4A4 HARM:2", + "text": "4 IGUPTAMEASURE RHICIDRAOO4A4 HARM:2", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/87", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 56.0, + "t": 214.06663513183594, + "r": 182.027099609375, + "b": 185.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 1 + ] + } + ], + "orig": "4", + "text": "4", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/88", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 56.0, + "t": 214.06663513183594, + "r": 183.2177734375, + "b": 185.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 1 + ] + } + ], + "orig": "4", + "text": "4", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/89", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 510.0, + "t": 755.7332763671875, + "r": 522.0, + "b": 745.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "30", + "text": "30" + }, + { + "self_ref": "#/texts/90", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 94.33333587646484, + "t": 705.7332763671875, + "r": 488.3333435058594, + "b": 647.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 266 + ] + } + ], + "orig": "Table 2.5: Average of the up and down ramp in the magnet DRBOO5. Moreover the harmonics are subtracted by the value of this average at 2 s0 that have a zero value at 2kAmp. Please see the following processing for the details DRBOO5.25013 27-APR-92 11.13.36 kAmp they", + "text": "Table 2.5: Average of the up and down ramp in the magnet DRBOO5. Moreover the harmonics are subtracted by the value of this average at 2 s0 that have a zero value at 2kAmp. Please see the following processing for the details DRBOO5.25013 27-APR-92 11.13.36 kAmp they" + }, + { + "self_ref": "#/texts/91", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 514.6666870117188, + "t": 741.1729736328125, + "r": 525.3333129882812, + "b": 732.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "11", + "text": "11" + }, + { + "self_ref": "#/texts/92", + "parent": { + "$ref": "#/groups/1" + }, + "children": [], + "label": "list_item", + "prov": [ + { + "page_no": 33, + "bbox": { + "l": 58.0, + "t": 231.73329162597656, + "r": 68.66666412353516, + "b": 205.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 3 + ] + } + ], + "orig": "8 2", + "text": "8 2", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/93", + "parent": { + "$ref": "#/groups/1" + }, + "children": [], + "label": "list_item", + "prov": [ + { + "page_no": 33, + "bbox": { + "l": 58.0, + "t": 231.73329162597656, + "r": 68.66666412353516, + "b": 205.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 3 + ] + } + ], + "orig": "8 2", + "text": "8 2", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/94", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 33, + "bbox": { + "l": 92.0, + "t": 648.3999633789062, + "r": 446.0, + "b": 624.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 34 + ] + } + ], + "orig": "Computed and measured 64 in DRAOO4", + "text": "Computed and measured 64 in DRAOO4", + "level": 1 + }, + { + "self_ref": "#/texts/95", + "parent": { + "$ref": "#/groups/2" + }, + "children": [], + "label": "list_item", + "prov": [ + { + "page_no": 33, + "bbox": { + "l": 67.33333587646484, + "t": 226.39996337890625, + "r": 184.6666717529297, + "b": 210.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 27 + ] + } + ], + "orig": "EGUPTSRHICDIPBRA884PEPRES:2", + "text": "EGUPTSRHICDIPBRA884PEPRES:2", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/96", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 33, + "bbox": { + "l": 85.0, + "t": 127.39996337890625, + "r": 480.0, + "b": 82.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 188 + ] + } + ], + "orig": "Figure 4.4: Computed and measured b4 variation as a function of current in the 80 mm aperture RHIC arc dipole magnet DRAOO4. The calculations are made with the codes POISSON, PE2D and MDP.", + "text": "Figure 4.4: Computed and measured b4 variation as a function of current in the 80 mm aperture RHIC arc dipole magnet DRAOO4. The calculations are made with the codes POISSON, PE2D and MDP." + }, + { + "self_ref": "#/texts/97", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "label": "list_item", + "prov": [ + { + "page_no": 33, + "bbox": { + "l": 58.0, + "t": 231.73329162597656, + "r": 198.3830108642578, + "b": 205.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 36 + ] + } + ], + "orig": "8 [GUPTAMEASURE RHICIDRAOOZA4 HARM:2", + "text": "8 [GUPTAMEASURE RHICIDRAOOZA4 HARM:2", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/98", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 33, + "bbox": { + "l": 508.6666564941406, + "t": 753.7332763671875, + "r": 520.0, + "b": 744.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "31", + "text": "31" + }, + { + "self_ref": "#/texts/99", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 34, + "bbox": { + "l": 82.33333587646484, + "t": 663.3999633789062, + "r": 449.6666564941406, + "b": 642.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 45 + ] + } + ], + "orig": "Computed and measured b2 in DRBOO5 and DRBOO6", + "text": "Computed and measured b2 in DRBOO5 and DRBOO6", + "level": 1 + }, + { + "self_ref": "#/texts/100", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 34, + "bbox": { + "l": 90.33333587646484, + "t": 141.06663513183594, + "r": 484.0, + "b": 82.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 262 + ] + } + ], + "orig": "Figure 4.5: Computed and measured b2 variation as a function of current in the 80 mm aperture RHIC arc dipole magnets DRBOO5 and DRBOO6. These two magnets are made with the same iron cross section. The calculations are made with the codes POISSON, PE2D and MDP .", + "text": "Figure 4.5: Computed and measured b2 variation as a function of current in the 80 mm aperture RHIC arc dipole magnets DRBOO5 and DRBOO6. These two magnets are made with the same iron cross section. The calculations are made with the codes POISSON, PE2D and MDP ." + }, + { + "self_ref": "#/texts/101", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 34, + "bbox": { + "l": 513.3333129882812, + "t": 754.3999633789062, + "r": 525.3333129882812, + "b": 744.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "32", + "text": "32" + }, + { + "self_ref": "#/texts/102", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 35, + "bbox": { + "l": 82.33333587646484, + "t": 646.7332763671875, + "r": 449.3333435058594, + "b": 628.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 45 + ] + } + ], + "orig": "Computed and measured b4 in DRBOO5 and DRBOO6", + "text": "Computed and measured b4 in DRBOO5 and DRBOO6", + "level": 1 + }, + { + "self_ref": "#/texts/103", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 35, + "bbox": { + "l": 83.0, + "t": 143.06663513183594, + "r": 476.6666564941406, + "b": 84.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 263 + ] + } + ], + "orig": "Figure 4.6: Computed and measured b4 variation as a function of current in the 80 mm aperture RHIC arc dipole magnets DRBOO5 and DRBOO6 . These two magnets are made with the same iron cross section. The calcu lations are made with the codes POISSON, PEZD and MDP.", + "text": "Figure 4.6: Computed and measured b4 variation as a function of current in the 80 mm aperture RHIC arc dipole magnets DRBOO5 and DRBOO6 . These two magnets are made with the same iron cross section. The calcu lations are made with the codes POISSON, PEZD and MDP." + }, + { + "self_ref": "#/texts/104", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 35, + "bbox": { + "l": 508.6666564941406, + "t": 753.066650390625, + "r": 520.0, + "b": 743.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "33", + "text": "33" + }, + { + "self_ref": "#/texts/105", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 36, + "bbox": { + "l": 86.33333587646484, + "t": 655.3999633789062, + "r": 450.0, + "b": 637.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 45 + ] + } + ], + "orig": "Computed and measured b2 in DRCOO7 and DRCOO8", + "text": "Computed and measured b2 in DRCOO7 and DRCOO8", + "level": 1 + }, + { + "self_ref": "#/texts/106", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 36, + "bbox": { + "l": 88.33333587646484, + "t": 137.06663513183594, + "r": 482.6666564941406, + "b": 80.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 257 + ] + } + ], + "orig": "Figure 4.7: Computed and measured b2 variation as a function of current in the 80 mm aperture RHIC afC dipole magnets DRCOO7 and DRCOO8. These two magnets are made with the same iron cross section. The calcu lations are made with the codes POISSON and PEZD.", + "text": "Figure 4.7: Computed and measured b2 variation as a function of current in the 80 mm aperture RHIC afC dipole magnets DRCOO7 and DRCOO8. These two magnets are made with the same iron cross section. The calcu lations are made with the codes POISSON and PEZD." + }, + { + "self_ref": "#/texts/107", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 36, + "bbox": { + "l": 511.3333435058594, + "t": 753.7332763671875, + "r": 523.3333129882812, + "b": 743.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "34", + "text": "34" + }, + { + "self_ref": "#/texts/108", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 37, + "bbox": { + "l": 86.0, + "t": 655.066650390625, + "r": 449.0, + "b": 637.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 45 + ] + } + ], + "orig": "Computed and measured b4 in DRCOO7 and DRCOO8", + "text": "Computed and measured b4 in DRCOO7 and DRCOO8", + "level": 1 + }, + { + "self_ref": "#/texts/109", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 37, + "bbox": { + "l": 87.66666412353516, + "t": 139.39996337890625, + "r": 481.6666564941406, + "b": 82.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 257 + ] + } + ], + "orig": "Figure 4.8: Computed and measured b4 variation as a function of current in the 80 mm aperture RHIC arc dipole magnets DRCOO7 and DRCO08. These magnets are made with the same iron cross section. The calcu lations are made with the codes POISSON and PE2D_ two", + "text": "Figure 4.8: Computed and measured b4 variation as a function of current in the 80 mm aperture RHIC arc dipole magnets DRCOO7 and DRCO08. These magnets are made with the same iron cross section. The calcu lations are made with the codes POISSON and PE2D_ two" + }, + { + "self_ref": "#/texts/110", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 37, + "bbox": { + "l": 509.3333435058594, + "t": 757.066650390625, + "r": 521.3333129882812, + "b": 747.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "35", + "text": "35" + }, + { + "self_ref": "#/texts/111", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 38, + "bbox": { + "l": 91.0, + "t": 636.066650390625, + "r": 445.3333435058594, + "b": 612.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 34 + ] + } + ], + "orig": "Computed and measured 62 in DRDOO9", + "text": "Computed and measured 62 in DRDOO9", + "level": 1 + }, + { + "self_ref": "#/texts/112", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 38, + "bbox": { + "l": 87.0, + "t": 125.0666275024414, + "r": 481.6666564941406, + "b": 82.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 183 + ] + } + ], + "orig": "Figure 4.9: Computed and measured b2 variation as a function of current in the 80 mm aperture RHIC arc dipole magnet DRDOO9. The calculations are made with the codes POISSON and PE2D-", + "text": "Figure 4.9: Computed and measured b2 variation as a function of current in the 80 mm aperture RHIC arc dipole magnet DRDOO9. The calculations are made with the codes POISSON and PE2D-" + }, + { + "self_ref": "#/texts/113", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 38, + "bbox": { + "l": 512.0, + "t": 754.3999633789062, + "r": 524.0, + "b": 745.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "36", + "text": "36" + }, + { + "self_ref": "#/texts/114", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 39, + "bbox": { + "l": 93.0, + "t": 664.7332763671875, + "r": 447.0, + "b": 643.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 34 + ] + } + ], + "orig": "Computed and measured b4 in DRDOO9", + "text": "Computed and measured b4 in DRDOO9" + }, + { + "self_ref": "#/texts/115", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 39, + "bbox": { + "l": 87.33333587646484, + "t": 125.0666275024414, + "r": 481.6666564941406, + "b": 82.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 183 + ] + } + ], + "orig": "Figure 4.10: Computed and measured b4 variation as a function of current in the 80 mm aperture RHIC arc dipole magnet DRDOO9. The calculations are made with the codes POISSON and PEZD", + "text": "Figure 4.10: Computed and measured b4 variation as a function of current in the 80 mm aperture RHIC arc dipole magnet DRDOO9. The calculations are made with the codes POISSON and PEZD" + }, + { + "self_ref": "#/texts/116", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 39, + "bbox": { + "l": 512.0, + "t": 753.7332763671875, + "r": 523.3333129882812, + "b": 744.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "37", + "text": "37" + }, + { + "self_ref": "#/texts/117", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 40, + "bbox": { + "l": 510.6666564941406, + "t": 755.7332763671875, + "r": 522.6666870117188, + "b": 745.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "38", + "text": "38" + }, + { + "self_ref": "#/texts/118", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 40, + "bbox": { + "l": 52.0, + "t": 719.3999633789062, + "r": 179.6666717529297, + "b": 706.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 20 + ] + } + ], + "orig": "5. DRE cross section", + "text": "5. DRE cross section", + "level": 1 + }, + { + "self_ref": "#/texts/119", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 40, + "bbox": { + "l": 49.33333206176758, + "t": 695.066650390625, + "r": 524.0, + "b": 555.0970458984375, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 658 + ] + } + ], + "orig": "For the sake of completeness we present the expected and computed harmonics in the next series of magnets DREOIl and DREO12. The only difference in the yoke design between DRDOO9 and DREOIl is the presence of a : diameter saturation suppressor hole at a radius of 7.5 cm and at an angle of 330 degree. It has been described in detail in reference 5. Computed harmonics are obtained from the POISSON calculations and the expected harmonics are obtained by first taking the measured harmonics in the magnet DRDOO9, and then empirically adding to them the differences between the calculations and measurements in DRDO09. The results are given in 5.1. long Fig;", + "text": "For the sake of completeness we present the expected and computed harmonics in the next series of magnets DREOIl and DREO12. The only difference in the yoke design between DRDOO9 and DREOIl is the presence of a : diameter saturation suppressor hole at a radius of 7.5 cm and at an angle of 330 degree. It has been described in detail in reference 5. Computed harmonics are obtained from the POISSON calculations and the expected harmonics are obtained by first taking the measured harmonics in the magnet DRDOO9, and then empirically adding to them the differences between the calculations and measurements in DRDO09. The results are given in 5.1. long Fig;" + }, + { + "self_ref": "#/texts/120", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 40, + "bbox": { + "l": 89.33333587646484, + "t": 175.06663513183594, + "r": 483.6666564941406, + "b": 90.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 389 + ] + } + ], + "orig": "Figure 5.1: Expected and computed saturation induced harmonics in the dipole DRFOII with saturation suppressor hole. Computed harmonics are obtained from the POISSON calculations and the expected harmonics are obtained by first taking the measured harmonics in the magnet DRDO09, and then empirically adding to them the differences between the calculations and measurements in DRDOO9. long", + "text": "Figure 5.1: Expected and computed saturation induced harmonics in the dipole DRFOII with saturation suppressor hole. Computed harmonics are obtained from the POISSON calculations and the expected harmonics are obtained by first taking the measured harmonics in the magnet DRDO09, and then empirically adding to them the differences between the calculations and measurements in DRDOO9. long" + }, + { + "self_ref": "#/texts/121", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 41, + "bbox": { + "l": 510.6666564941406, + "t": 757.066650390625, + "r": 522.6666870117188, + "b": 747.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "39", + "text": "39" + }, + { + "self_ref": "#/texts/122", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 41, + "bbox": { + "l": 52.66666793823242, + "t": 719.3999633789062, + "r": 134.3333282470703, + "b": 706.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 14 + ] + } + ], + "orig": "6 . Discussion", + "text": "6 . Discussion", + "level": 1 + }, + { + "self_ref": "#/texts/123", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 41, + "bbox": { + "l": 50.33333206176758, + "t": 691.3999633789062, + "r": 524.3333129882812, + "b": 432.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 1215 + ] + } + ], + "orig": "One can see from Fig. 2.1 that we have been able t0 reduce the current dependence of the sextupole harmonic (b2) by over an order of magnitude between 2 kA and 5 kA. The value of design current in the arc dipole for RHIC operation is ~5 kA. In the first magnet DRAOO1, the maximum variation in the b2 harmonic between the 2 kA and 5 kA current was over 42 unit and in the most recent short magnet this variation is reduced to under 2 unit. In the dipole magnet DREOll, we expect this to be under 2 unit as well. Similarly one can see from 2.2 that b4 variation has also been reduced by over an order of magnitude between 2 kA and 5 kA. In the first magnet DRAOOI, the maximum variation in the b4 harmonic between the 2 kA and 5 kA current was over 8 unit and in the most recent short magnet this variation is reduced to under 1/2 unit. In the dipole magnet DREOll, we expect the current dependent variation in the b4 harmonic to be under 1/2 unit as well. In the following paragraph we shall discuss what has been done to achieve this. We shall only discuss the features which were important from the iron saturation of view only and mechanical changes in the would be ignored. long long Fig; long long design point", + "text": "One can see from Fig. 2.1 that we have been able t0 reduce the current dependence of the sextupole harmonic (b2) by over an order of magnitude between 2 kA and 5 kA. The value of design current in the arc dipole for RHIC operation is ~5 kA. In the first magnet DRAOO1, the maximum variation in the b2 harmonic between the 2 kA and 5 kA current was over 42 unit and in the most recent short magnet this variation is reduced to under 2 unit. In the dipole magnet DREOll, we expect this to be under 2 unit as well. Similarly one can see from 2.2 that b4 variation has also been reduced by over an order of magnitude between 2 kA and 5 kA. In the first magnet DRAOOI, the maximum variation in the b4 harmonic between the 2 kA and 5 kA current was over 8 unit and in the most recent short magnet this variation is reduced to under 1/2 unit. In the dipole magnet DREOll, we expect the current dependent variation in the b4 harmonic to be under 1/2 unit as well. In the following paragraph we shall discuss what has been done to achieve this. We shall only discuss the features which were important from the iron saturation of view only and mechanical changes in the would be ignored. long long Fig; long long design point" + }, + { + "self_ref": "#/texts/124", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 41, + "bbox": { + "l": 50.487178802490234, + "t": 427.0666198730469, + "r": 524.0, + "b": 339.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 428 + ] + } + ], + "orig": "DRAOOI, DRAOO2 and DRA0O3 dipoles were constructed by BBC. They had a 5mm radial gap between coil and and had a notch at the location. A small gap and a notch both give a large iron saturation and hence we had over 42 unit of b2 harmonic and -8 unit of b4 DRAOO4 had the same basic feature except for some small changes near the outer surface of iron. These changes do not alter the iron saturation significantly. pole yoke pole", + "text": "DRAOOI, DRAOO2 and DRA0O3 dipoles were constructed by BBC. They had a 5mm radial gap between coil and and had a notch at the location. A small gap and a notch both give a large iron saturation and hence we had over 42 unit of b2 harmonic and -8 unit of b4 DRAOO4 had the same basic feature except for some small changes near the outer surface of iron. These changes do not alter the iron saturation significantly. pole yoke pole" + }, + { + "self_ref": "#/texts/125", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 41, + "bbox": { + "l": 51.33333206176758, + "t": 334.39996337890625, + "r": 524.3333129882812, + "b": 142.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 904 + ] + } + ], + "orig": "To reduce iron saturation; the radial gap between the coil and was increased from 5mm to lOmm and the coil-yoke locating notch was moved from to midplane in the magnets DRBOO5 and DRBOO6. This brought b2 saturation down from +42 unit to -6 unit and b4 saturation from -8.5 unit to -3.6 unit. As before, these are the maximum deviation between 2 kA and 5 kA. This magnet had a non-magnetic stainless steel midplane In the magnets DRCOO7 and DRCO08, the material of this was changed from non-magnetic stainless steel to magnetic low carbon steel This change reduced b2 saturation to -2.5 unit and b4 saturation to -2.4 unit. In between a short magnet was built where the 5 mm midplane notch was modified to a 5mm iron tooth That reduced b2 saturation to +8 unit and b4 to -1.1 unit. However, the tooth idea was not adopted in DRCOO7 because of its mechanical complications. yoke pole yoke key. key key key.", + "text": "To reduce iron saturation; the radial gap between the coil and was increased from 5mm to lOmm and the coil-yoke locating notch was moved from to midplane in the magnets DRBOO5 and DRBOO6. This brought b2 saturation down from +42 unit to -6 unit and b4 saturation from -8.5 unit to -3.6 unit. As before, these are the maximum deviation between 2 kA and 5 kA. This magnet had a non-magnetic stainless steel midplane In the magnets DRCOO7 and DRCO08, the material of this was changed from non-magnetic stainless steel to magnetic low carbon steel This change reduced b2 saturation to -2.5 unit and b4 saturation to -2.4 unit. In between a short magnet was built where the 5 mm midplane notch was modified to a 5mm iron tooth That reduced b2 saturation to +8 unit and b4 to -1.1 unit. However, the tooth idea was not adopted in DRCOO7 because of its mechanical complications. yoke pole yoke key. key key key." + }, + { + "self_ref": "#/texts/126", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 41, + "bbox": { + "l": 52.33333206176758, + "t": 139.73329162597656, + "r": 524.3333129882812, + "b": 68.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 353 + ] + } + ], + "orig": "Neither the midplane notch nor the tooth (better magnetically but worse mechanically) was preferred for the production magnets. It is believed that a locating notch would be better able to define the location of the coil. As mentioned earlier, notch is bad magnetically. That in itself would make an already unacceptable saturation worse_ pole pole pole", + "text": "Neither the midplane notch nor the tooth (better magnetically but worse mechanically) was preferred for the production magnets. It is believed that a locating notch would be better able to define the location of the coil. As mentioned earlier, notch is bad magnetically. That in itself would make an already unacceptable saturation worse_ pole pole pole" + }, + { + "self_ref": "#/texts/127", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 42, + "bbox": { + "l": 514.0, + "t": 757.066650390625, + "r": 526.0, + "b": 747.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "40", + "text": "40" + }, + { + "self_ref": "#/texts/128", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 42, + "bbox": { + "l": 53.0, + "t": 719.7332763671875, + "r": 527.6666870117188, + "b": 616.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 501 + ] + } + ], + "orig": "Therefore, a detailed study was undertaken to modify the cross section to significanty change the magnetics of the with the desired mechanical properties. After considering a large number of variations, the one chosen for DRDOO9 was the one in which the location of the bypass hole was changed. This, with a notch and stainless steel actually improved the iron saturation (in b4 harmonic) relative to DRBOO5 instead of making it worse. The b2 saturation became +7 unit and b4 -1.3 unit. yoke pole key,", + "text": "Therefore, a detailed study was undertaken to modify the cross section to significanty change the magnetics of the with the desired mechanical properties. After considering a large number of variations, the one chosen for DRDOO9 was the one in which the location of the bypass hole was changed. This, with a notch and stainless steel actually improved the iron saturation (in b4 harmonic) relative to DRBOO5 instead of making it worse. The b2 saturation became +7 unit and b4 -1.3 unit. yoke pole key," + }, + { + "self_ref": "#/texts/129", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 42, + "bbox": { + "l": 53.33333206176758, + "t": 613.066650390625, + "r": 527.6666870117188, + "b": 441.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 807 + ] + } + ], + "orig": "Finally a small saturation suppressor hole was added to practically eliminate all b2 and b4 saturation in DREOII cross section Before we discuss that, let uS examine the differences between the calculations and measurements as are given in Table 6.1. These calculations are done with the code POISSON and ignore cryostat. Typically, at 5 kA cryostat induced b2 is ~+1.5 unit and b4 is ~-0.1 unit. Moreover, as mentioned earlier; the calculations are done only for the saturation induced harmonics and the harmonics due to coil deformation as a result of the Lorentz force on the coil are ignored. We have also ignored a small gap (of the order of 10 mil) between the and bottom halves of the yokes. Some calculations show that this maj give as much of 2 units of b2 and 0.2 units of b4 at 5 kA they they top", + "text": "Finally a small saturation suppressor hole was added to practically eliminate all b2 and b4 saturation in DREOII cross section Before we discuss that, let uS examine the differences between the calculations and measurements as are given in Table 6.1. These calculations are done with the code POISSON and ignore cryostat. Typically, at 5 kA cryostat induced b2 is ~+1.5 unit and b4 is ~-0.1 unit. Moreover, as mentioned earlier; the calculations are done only for the saturation induced harmonics and the harmonics due to coil deformation as a result of the Lorentz force on the coil are ignored. We have also ignored a small gap (of the order of 10 mil) between the and bottom halves of the yokes. Some calculations show that this maj give as much of 2 units of b2 and 0.2 units of b4 at 5 kA they they top" + }, + { + "self_ref": "#/texts/130", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [ + { + "page_no": 42, + "bbox": { + "l": 53.66666793823242, + "t": 439.39996337890625, + "r": 527.3333129882812, + "b": 247.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 961 + ] + } + ], + "orig": "In Table 6.1, we have also given the maximum change in the measured values of b2 and b4 harmonics till 5 kA. The diference between the calculations and measurements did not bother much when the actual value of the saturation induced harmonic was However, at this stage did matter as the target to make those harmonic becamne so small. The target was to make b2 saturation less then 2 unit and b4 saturation less then ! unit. This is within the difference between the calculations and measurements Therefore, we empirically cancel out these small unexplained differences between the calculations and measurements (in this particular cross section) in arriving to an optimized location of the hole. The approach indeed worked as can be seen in Fig. 2.1 and 2.2 and described in detail in reference 4. In these figures please see curves marked for DRSGR where DRSGR represents the short dipole \"DRSOO6 rebuilt with the saturation suppressor holes\" large. they Fig.", + "text": "In Table 6.1, we have also given the maximum change in the measured values of b2 and b4 harmonics till 5 kA. The diference between the calculations and measurements did not bother much when the actual value of the saturation induced harmonic was However, at this stage did matter as the target to make those harmonic becamne so small. The target was to make b2 saturation less then 2 unit and b4 saturation less then ! unit. This is within the difference between the calculations and measurements Therefore, we empirically cancel out these small unexplained differences between the calculations and measurements (in this particular cross section) in arriving to an optimized location of the hole. The approach indeed worked as can be seen in Fig. 2.1 and 2.2 and described in detail in reference 4. In these figures please see curves marked for DRSGR where DRSGR represents the short dipole \"DRSOO6 rebuilt with the saturation suppressor holes\" large. they Fig." + }, + { + "self_ref": "#/texts/131", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "page_header", + "prov": [ + { + "page_no": 43, + "bbox": { + "l": 507.3333435058594, + "t": 756.6774291992188, + "r": 518.6666870117188, + "b": 747.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "41", + "text": "41" + }, + { + "self_ref": "#/texts/132", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [ + { + "page_no": 43, + "bbox": { + "l": 86.66666412353516, + "t": 719.066650390625, + "r": 481.0, + "b": 645.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 358 + ] + } + ], + "orig": "Table 6.1: The measured, computed and the difference between the two in the values of b2 and b4 harmonics at 5 kA relative to 2 kA value (i.e, value at 5 kA value at 2 kA) in RHIC magnets built to date. These calculations are done with the code POISSON and ignore cryostat. Typically, at 5 kA cryostat induced b2 is ~+1.5 unit and 64 is ~-0.1 unit. long they", + "text": "Table 6.1: The measured, computed and the difference between the two in the values of b2 and b4 harmonics at 5 kA relative to 2 kA value (i.e, value at 5 kA value at 2 kA) in RHIC magnets built to date. These calculations are done with the code POISSON and ignore cryostat. Typically, at 5 kA cryostat induced b2 is ~+1.5 unit and 64 is ~-0.1 unit. long they" + }, + { + "self_ref": "#/texts/133", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [ + { + "page_no": 43, + "bbox": { + "l": 50.19023895263672, + "t": 366.39996337890625, + "r": 133.6666717529297, + "b": 354.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "7 References", + "text": "7 References", + "level": 1 + }, + { + "self_ref": "#/texts/134", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "label": "list_item", + "prov": [ + { + "page_no": 43, + "bbox": { + "l": 49.66666793823242, + "t": 346.7333068847656, + "r": 521.6666870117188, + "b": 313.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 124 + ] + } + ], + "orig": "1. P.A. Thompson; et.al., \"Iron saturation control in RHIC dipole magnets\" Presented at 1991 Particle Accelerator Conference", + "text": "1. P.A. Thompson; et.al., \"Iron saturation control in RHIC dipole magnets\" Presented at 1991 Particle Accelerator Conference", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/135", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "label": "list_item", + "prov": [ + { + "page_no": 43, + "bbox": { + "l": 50.38667297363281, + "t": 311.39996337890625, + "r": 520.6666870117188, + "b": 292.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 88 + ] + } + ], + "orig": "2 . Testing and Measurement Group Notes describing the results of magnetic measurements.", + "text": "2 . Testing and Measurement Group Notes describing the results of magnetic measurements.", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/136", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "label": "list_item", + "prov": [ + { + "page_no": 43, + "bbox": { + "l": 50.33333206176758, + "t": 294.0666198730469, + "r": 523.0, + "b": 260.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 104 + ] + } + ], + "orig": "3 . P.A. Thompson, Magnet Division Notes describing design and comparing calculations with measurements.", + "text": "3 . P.A. Thompson, Magnet Division Notes describing design and comparing calculations with measurements.", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/137", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "label": "list_item", + "prov": [ + { + "page_no": 43, + "bbox": { + "l": 50.0, + "t": 258.39996337890625, + "r": 522.6666870117188, + "b": 223.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 117 + ] + } + ], + "orig": "4 R. Gupta, \"DRSOO6 with Saturation Suppressor Holes\" = Magnet Division Note No. 457-16 (RHIC-MD-165), July 28, 1992.", + "text": "4 R. Gupta, \"DRSOO6 with Saturation Suppressor Holes\" = Magnet Division Note No. 457-16 (RHIC-MD-165), July 28, 1992.", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/138", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "label": "list_item", + "prov": [ + { + "page_no": 43, + "bbox": { + "l": 50.33333206176758, + "t": 223.73329162597656, + "r": 521.3698120117188, + "b": 187.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 149 + ] + } + ], + "orig": "5. R. Gupta, \"Reducing iron saturation in arc dipoles with a saturation suppressor hole\" Magnet Division Note No. 447-16 (RHIC-MD-158) June 10, 1992.", + "text": "5. R. Gupta, \"Reducing iron saturation in arc dipoles with a saturation suppressor hole\" Magnet Division Note No. 447-16 (RHIC-MD-158) June 10, 1992.", + "enumerated": false, + "marker": "-" + } + ], + "pictures": [ + { + "self_ref": "#/pictures/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 13.0, + "t": 632.0610961914062, + "r": 562.3333129882812, + "b": 213.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 246 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/18" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 22.0, + "t": 617.0979614257812, + "r": 574.6666870117188, + "b": 197.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 246 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/20" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 18.33333396911621, + "t": 593.066650390625, + "r": 567.3333129882812, + "b": 175.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 246 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/23" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/3", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 20.0, + "t": 605.9466552734375, + "r": 564.0, + "b": 183.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 246 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/25" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/4", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 99.32010650634766, + "t": 644.2005004882812, + "r": 520.937744140625, + "b": 190.09475708007812, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 157 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/50" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/5", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 94.44575500488281, + "t": 668.835693359375, + "r": 513.937744140625, + "b": 209.0913543701172, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 151 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/54" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/6", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 100.72899627685547, + "t": 658.8843994140625, + "r": 526.3409423828125, + "b": 207.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 197 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/58" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/7", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 24, + "bbox": { + "l": 98.2974624633789, + "t": 671.398681640625, + "r": 521.17626953125, + "b": 218.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 197 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/62" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/8", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 26, + "bbox": { + "l": 98.19375610351562, + "t": 648.6259155273438, + "r": 524.4227294921875, + "b": 197.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 145 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/66" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/9", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 12.666666984558105, + "t": 638.4986572265625, + "r": 564.5162963867188, + "b": 218.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 271 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/79" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/10", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 18.33333396911621, + "t": 623.7494506835938, + "r": 569.36083984375, + "b": 211.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 272 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/82" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/11", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 16.33333396911621, + "t": 604.4967041015625, + "r": 485.3333435058594, + "b": 185.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 188 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/85" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/12", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 33, + "bbox": { + "l": 20.0, + "t": 617.554931640625, + "r": 486.9580993652344, + "b": 205.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 188 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/96" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/13", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 34, + "bbox": { + "l": 18.66666603088379, + "t": 629.346923828125, + "r": 485.3504333496094, + "b": 215.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 262 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/100" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/14", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 35, + "bbox": { + "l": 14.0, + "t": 612.5773315429688, + "r": 482.99853515625, + "b": 201.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 263 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/103" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/15", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 36, + "bbox": { + "l": 18.0, + "t": 630.066650390625, + "r": 485.6365051269531, + "b": 209.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 257 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/106" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/16", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 37, + "bbox": { + "l": 16.0, + "t": 621.3004760742188, + "r": 484.2684020996094, + "b": 208.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 257 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/109" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/17", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 38, + "bbox": { + "l": 15.0, + "t": 605.975830078125, + "r": 484.00750732421875, + "b": 197.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 183 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/112" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/18", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 39, + "bbox": { + "l": 19.33333396911621, + "t": 647.7520751953125, + "r": 486.58013916015625, + "b": 227.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 183 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/115" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/19", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [ + { + "page_no": 40, + "bbox": { + "l": 42.66666793823242, + "t": 549.722900390625, + "r": 565.6863403320312, + "b": 177.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 389 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/120" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + } + ], + "tables": [ + { + "self_ref": "#/tables/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 87.03877258300781, + "t": 629.6614990234375, + "r": 492.9809265136719, + "b": 98.09698486328125, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/26" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 163.6666717529297, + "t": 624.7332763671875, + "r": 186.3333282470703, + "b": 612.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "IF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 223.6666717529297, + "t": 624.7332763671875, + "r": 249.6666717529297, + "b": 612.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "STF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 290.0, + "t": 623.7332763671875, + "r": 300.6666564941406, + "b": 610.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 342.41876220703125, + "t": 619.5470581054688, + "r": 359.58123779296875, + "b": 613.2528686523438, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 400.0, + "t": 623.066650390625, + "r": 410.6666564941406, + "b": 609.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 457.0, + "t": 621.3999633789062, + "r": 469.6666564941406, + "b": 608.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "@1", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.0440902709961, + "t": 608.0348510742188, + "r": 132.62257385253906, + "b": 590.4317016601562, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.6666717529297, + "t": 606.7332763671875, + "r": 191.0, + "b": 592.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 230.3333282470703, + "t": 606.7332763671875, + "r": 243.6666717529297, + "b": 593.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.80169677734375, + "t": 604.9560546875, + "r": 309.19830322265625, + "b": 594.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.4683532714844, + "t": 604.9560546875, + "r": 365.8649597167969, + "b": 594.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.80169677734375, + "t": 604.9560546875, + "r": 419.8649597167969, + "b": 594.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.4267578125, + "t": 604.2704467773438, + "r": 477.5732421875, + "b": 594.86279296875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.33333587646484, + "t": 584.7332763671875, + "r": 130.3333282470703, + "b": 572.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 585.066650390625, + "r": 192.3333282470703, + "b": 573.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7702", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 584.7332763671875, + "r": 249.6666717529297, + "b": 572.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 584.7332763671875, + "r": 312.3333435058594, + "b": 572.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.395", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 583.7332763671875, + "r": 366.6666564941406, + "b": 573.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.450", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 584.066650390625, + "r": 425.0, + "b": 572.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.300", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 584.066650390625, + "r": 479.0, + "b": 572.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 565.3999633789062, + "r": 130.3333282470703, + "b": 553.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 565.7332763671875, + "r": 192.3333282470703, + "b": 553.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7700", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 565.3999633789062, + "r": 249.6666717529297, + "b": 553.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.049", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.6666564941406, + "t": 564.3999633789062, + "r": 312.0, + "b": 553.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.270", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 564.7332763671875, + "r": 367.0, + "b": 552.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 564.7332763671875, + "r": 425.0, + "b": 552.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.175", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 564.7332763671875, + "r": 479.0, + "b": 552.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 546.066650390625, + "r": 130.3333282470703, + "b": 534.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 546.066650390625, + "r": 192.3333282470703, + "b": 534.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7700", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 546.066650390625, + "r": 249.6666717529297, + "b": 534.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.047", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 545.3999633789062, + "r": 312.3333435058594, + "b": 533.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.135", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 545.066650390625, + "r": 366.6666564941406, + "b": 534.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.445", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.0, + "t": 545.3999633789062, + "r": 425.0, + "b": 533.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 545.3999633789062, + "r": 479.0, + "b": 533.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 526.7332763671875, + "r": 130.3333282470703, + "b": 514.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.0, + "t": 527.3999633789062, + "r": 192.3333282470703, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7699", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 526.066650390625, + "r": 249.6666717529297, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.033", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 526.066650390625, + "r": 312.3333435058594, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.905", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 526.066650390625, + "r": 367.0, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.345", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 526.066650390625, + "r": 425.0, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 526.066650390625, + "r": 479.0, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 506.7333068847656, + "r": 130.3333282470703, + "b": 494.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 506.7333068847656, + "r": 192.3333282470703, + "b": 494.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7698", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 506.7333068847656, + "r": 250.3333282470703, + "b": 494.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 506.7333068847656, + "r": 313.0, + "b": 494.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.570", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 506.7333068847656, + "r": 367.0, + "b": 494.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.250", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 506.7333068847656, + "r": 425.6666564941406, + "b": 494.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.285", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 506.7333068847656, + "r": 479.0, + "b": 494.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 487.39996337890625, + "r": 130.3333282470703, + "b": 475.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 487.39996337890625, + "r": 192.3333282470703, + "b": 475.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7696", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.0, + "t": 486.39996337890625, + "r": 249.3333282470703, + "b": 475.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 486.39996337890625, + "r": 310.0, + "b": 475.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 486.39996337890625, + "r": 366.6666564941406, + "b": 475.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 486.7333068847656, + "r": 423.0, + "b": 474.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 486.7333068847656, + "r": 479.0, + "b": 474.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.0, + "t": 467.0666198730469, + "r": 130.0, + "b": 456.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 467.39996337890625, + "r": 192.3333282470703, + "b": 455.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7694", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 467.39996337890625, + "r": 251.6666717529297, + "b": 455.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 467.39996337890625, + "r": 310.3333435058594, + "b": 455.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.860", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 467.39996337890625, + "r": 369.0, + "b": 455.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.220", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 467.39996337890625, + "r": 425.0, + "b": 455.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.3333435058594, + "t": 467.39996337890625, + "r": 481.0, + "b": 455.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 448.0666198730469, + "r": 130.3333282470703, + "b": 436.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 448.0666198730469, + "r": 192.3333282470703, + "b": 436.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7695", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 448.0666198730469, + "r": 252.3333282470703, + "b": 436.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.023", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 448.0666198730469, + "r": 310.3333435058594, + "b": 436.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "2.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 448.0666198730469, + "r": 369.0, + "b": 436.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.610", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 448.0666198730469, + "r": 425.0, + "b": 436.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.3333435058594, + "t": 448.0666198730469, + "r": 481.0, + "b": 436.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 428.7333068847656, + "r": 130.3333282470703, + "b": 416.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 429.0666198730469, + "r": 192.3333282470703, + "b": 417.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7690", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 428.7333068847656, + "r": 252.3333282470703, + "b": 416.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 428.7333068847656, + "r": 310.3333435058594, + "b": 416.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3.770", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 428.7333068847656, + "r": 369.0, + "b": 416.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.0, + "t": 429.0666198730469, + "r": 425.0, + "b": 415.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.915", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.3333435058594, + "t": 428.7333068847656, + "r": 481.0, + "b": 416.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.0, + "t": 408.39996337890625, + "r": 130.0, + "b": 397.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.6666717529297, + "t": 408.39996337890625, + "r": 192.0, + "b": 397.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7687", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 408.7333068847656, + "r": 252.3333282470703, + "b": 396.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.124", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 408.7333068847656, + "r": 310.3333435058594, + "b": 396.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "6.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 408.7333068847656, + "r": 369.0, + "b": 396.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.830", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 408.7333068847656, + "r": 423.0, + "b": 396.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.3333435058594, + "t": 408.7333068847656, + "r": 481.0, + "b": 396.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.155", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.0, + "t": 389.0666198730469, + "r": 130.0, + "b": 378.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.6666717529297, + "t": 389.0666198730469, + "r": 192.0, + "b": 378.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7680", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 389.39996337890625, + "r": 251.6666717529297, + "b": 377.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.217", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 389.39996337890625, + "r": 310.3333435058594, + "b": 377.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "9.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 389.0666198730469, + "r": 368.6666564941406, + "b": 378.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.810", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.3333435058594, + "t": 389.0666198730469, + "r": 422.6666564941406, + "b": 378.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.250", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.6666564941406, + "t": 389.0666198730469, + "r": 480.6666564941406, + "b": 378.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 370.0666198730469, + "r": 130.3333282470703, + "b": 358.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 370.0666198730469, + "r": 192.3333282470703, + "b": 358.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7674", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 370.0666198730469, + "r": 252.3333282470703, + "b": 358.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.290", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 370.0666198730469, + "r": 313.6666564941406, + "b": 358.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "12.725", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 370.0666198730469, + "r": 369.0, + "b": 358.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~3.710", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 370.0666198730469, + "r": 423.0, + "b": 358.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.155", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.3333435058594, + "t": 370.0666198730469, + "r": 481.0, + "b": 358.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.325", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 350.0666198730469, + "r": 130.3333282470703, + "b": 338.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 350.0666198730469, + "r": 192.3333282470703, + "b": 338.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7665", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 350.0666198730469, + "r": 251.0, + "b": 338.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.401", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 350.0666198730469, + "r": 313.6666564941406, + "b": 338.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "17.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 350.0666198730469, + "r": 369.0, + "b": 338.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.815", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 350.0666198730469, + "r": 423.0, + "b": 338.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.3333435058594, + "t": 350.0666198730469, + "r": 481.0, + "b": 338.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.410", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.0, + "t": 329.7333068847656, + "r": 130.0, + "b": 319.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.0, + "t": 331.39996337890625, + "r": 192.3333282470703, + "b": 318.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7652", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.0, + "t": 329.7333068847656, + "r": 251.3333282470703, + "b": 319.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.582", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.0, + "t": 329.7333068847656, + "r": 313.3333435058594, + "b": 319.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "21.605", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 330.7333068847656, + "r": 369.0, + "b": 318.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-5.985", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 330.7333068847656, + "r": 423.0, + "b": 318.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.240", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.0, + "t": 330.7333068847656, + "r": 481.0, + "b": 318.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.495", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 310.7333068847656, + "r": 130.3333282470703, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 310.7333068847656, + "r": 192.3333282470703, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7633", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 310.7333068847656, + "r": 252.3333282470703, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.825", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 310.7333068847656, + "r": 313.6666564941406, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "26.095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 310.7333068847656, + "r": 369.0, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 310.7333068847656, + "r": 423.0, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.515", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.6666564941406, + "t": 310.39996337890625, + "r": 480.6666564941406, + "b": 299.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.580", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.0, + "t": 290.39996337890625, + "r": 130.0, + "b": 279.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.6666717529297, + "t": 290.7333068847656, + "r": 192.0, + "b": 280.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7609", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.0, + "t": 290.39996337890625, + "r": 251.3333282470703, + "b": 279.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~1.129", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.0, + "t": 290.7333068847656, + "r": 313.3333435058594, + "b": 280.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "30.430", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 291.39996337890625, + "r": 369.0, + "b": 279.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.795", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 291.39996337890625, + "r": 423.0, + "b": 279.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.320", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.3333435058594, + "t": 291.39996337890625, + "r": 481.0, + "b": 279.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.610", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 272.0666198730469, + "r": 130.3333282470703, + "b": 260.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 272.39996337890625, + "r": 192.3333282470703, + "b": 260.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7583", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 272.0666198730469, + "r": 251.6666717529297, + "b": 260.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.477", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 272.0666198730469, + "r": 313.6666564941406, + "b": 260.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "34.425", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 272.0666198730469, + "r": 369.0, + "b": 260.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-8.265", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.3333435058594, + "t": 271.7333068847656, + "r": 422.6666564941406, + "b": 261.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.325", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.3333435058594, + "t": 271.7333068847656, + "r": 480.6666564941406, + "b": 261.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.615", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.0, + "t": 251.73329162597656, + "r": 130.0, + "b": 241.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.6666717529297, + "t": 251.73329162597656, + "r": 192.0, + "b": 241.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7549", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 252.73329162597656, + "r": 252.3333282470703, + "b": 240.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.910", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 252.73329162597656, + "r": 313.6666564941406, + "b": 240.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "37.920", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 252.73329162597656, + "r": 369.0, + "b": 240.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-8.430", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 252.73329162597656, + "r": 425.0, + "b": 240.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.335", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.3333435058594, + "t": 252.39996337890625, + "r": 480.6666564941406, + "b": 241.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.615", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.0, + "t": 231.73329162597656, + "r": 130.0, + "b": 221.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.3333282470703, + "t": 233.06663513183594, + "r": 192.3333282470703, + "b": 220.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7517", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 232.73329162597656, + "r": 252.3333282470703, + "b": 220.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.336", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 232.73329162597656, + "r": 313.6666564941406, + "b": 220.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "40.730", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 232.39996337890625, + "r": 368.6666564941406, + "b": 221.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-8.545", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 232.73329162597656, + "r": 425.0, + "b": 220.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.195", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.0, + "t": 233.39996337890625, + "r": 481.0, + "b": 221.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.585", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.0, + "t": 212.39996337890625, + "r": 130.0, + "b": 201.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 213.39996337890625, + "r": 192.3333282470703, + "b": 201.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7476", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 213.39996337890625, + "r": 252.3333282470703, + "b": 201.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.862", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 213.39996337890625, + "r": 313.6666564941406, + "b": 201.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "42.470", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 213.39996337890625, + "r": 369.0, + "b": 201.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-8.360", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.6666564941406, + "t": 213.06663513183594, + "r": 424.6666564941406, + "b": 202.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.890", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.3333435058594, + "t": 214.06663513183594, + "r": 481.0, + "b": 202.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.33333587646484, + "t": 193.39996337890625, + "r": 130.3333282470703, + "b": 181.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 193.39996337890625, + "r": 192.3333282470703, + "b": 181.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7433", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 193.39996337890625, + "r": 251.0, + "b": 181.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.421", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.0, + "t": 193.06663513183594, + "r": 313.3333435058594, + "b": 182.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "42.840", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 194.06663513183594, + "r": 369.0, + "b": 182.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-8.120", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 194.06663513183594, + "r": 425.6666564941406, + "b": 182.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.575", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.3333435058594, + "t": 193.73329162597656, + "r": 480.6666564941406, + "b": 183.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.355", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.66666412353516, + "t": 173.06663513183594, + "r": 130.0, + "b": 162.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.6666717529297, + "t": 173.06663513183594, + "r": 192.0, + "b": 162.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7383", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 174.06663513183594, + "r": 252.3333282470703, + "b": 162.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-4.072", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 174.06663513183594, + "r": 313.6666564941406, + "b": 162.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "41.855", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 174.73329162597656, + "r": 369.6666564941406, + "b": 162.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.760", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 174.73329162597656, + "r": 425.6666564941406, + "b": 162.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.640", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.0, + "t": 174.73329162597656, + "r": 481.0, + "b": 162.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.33333587646484, + "t": 154.73329162597656, + "r": 130.6666717529297, + "b": 142.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.6666717529297, + "t": 153.73329162597656, + "r": 192.0, + "b": 143.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7328", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 154.73329162597656, + "r": 251.6666717529297, + "b": 142.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-4.780", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 154.73329162597656, + "r": 313.6666564941406, + "b": 142.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "40.095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 154.73329162597656, + "r": 369.0, + "b": 142.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.340", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.0, + "t": 154.73329162597656, + "r": 425.0, + "b": 142.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-1.210", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 155.39996337890625, + "r": 479.0, + "b": 143.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.165", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.0, + "t": 133.73329162597656, + "r": 130.0, + "b": 123.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 134.73329162597656, + "r": 192.3333282470703, + "b": 122.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7273", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 134.73329162597656, + "r": 251.6666717529297, + "b": 122.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~5.497", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 134.73329162597656, + "r": 313.6666564941406, + "b": 122.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "38.205", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 134.73329162597656, + "r": 369.0, + "b": 122.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-6.925", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.0, + "t": 134.73329162597656, + "r": 425.6666564941406, + "b": 122.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "~1.145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 135.39996337890625, + "r": 479.0, + "b": 123.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.430", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 114.7332992553711, + "r": 129.6666717529297, + "b": 102.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 114.7332992553711, + "r": 192.3333282470703, + "b": 102.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7215", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 114.7332992553711, + "r": 251.6666717529297, + "b": 102.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~6.249", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 115.39996337890625, + "r": 313.6666564941406, + "b": 103.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "36.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 115.39996337890625, + "r": 369.0, + "b": 103.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~6.655", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 115.39996337890625, + "r": 425.6666564941406, + "b": 103.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.495", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.3333435058594, + "t": 115.0666275024414, + "r": 476.6666564941406, + "b": 104.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.665", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 27, + "num_cols": 7, + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 163.6666717529297, + "t": 624.7332763671875, + "r": 186.3333282470703, + "b": 612.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "IF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 223.6666717529297, + "t": 624.7332763671875, + "r": 249.6666717529297, + "b": 612.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "STF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 290.0, + "t": 623.7332763671875, + "r": 300.6666564941406, + "b": 610.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 342.41876220703125, + "t": 619.5470581054688, + "r": 359.58123779296875, + "b": 613.2528686523438, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 400.0, + "t": 623.066650390625, + "r": 410.6666564941406, + "b": 609.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 457.0, + "t": 621.3999633789062, + "r": 469.6666564941406, + "b": 608.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "@1", + "column_header": true, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.0440902709961, + "t": 608.0348510742188, + "r": 132.62257385253906, + "b": 590.4317016601562, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.6666717529297, + "t": 606.7332763671875, + "r": 191.0, + "b": 592.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 230.3333282470703, + "t": 606.7332763671875, + "r": 243.6666717529297, + "b": 593.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.80169677734375, + "t": 604.9560546875, + "r": 309.19830322265625, + "b": 594.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.4683532714844, + "t": 604.9560546875, + "r": 365.8649597167969, + "b": 594.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.80169677734375, + "t": 604.9560546875, + "r": 419.8649597167969, + "b": 594.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.4267578125, + "t": 604.2704467773438, + "r": 477.5732421875, + "b": 594.86279296875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.33333587646484, + "t": 584.7332763671875, + "r": 130.3333282470703, + "b": 572.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 585.066650390625, + "r": 192.3333282470703, + "b": 573.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7702", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 584.7332763671875, + "r": 249.6666717529297, + "b": 572.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 584.7332763671875, + "r": 312.3333435058594, + "b": 572.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.395", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 583.7332763671875, + "r": 366.6666564941406, + "b": 573.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.450", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 584.066650390625, + "r": 425.0, + "b": 572.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.300", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 584.066650390625, + "r": 479.0, + "b": 572.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 565.3999633789062, + "r": 130.3333282470703, + "b": 553.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 565.7332763671875, + "r": 192.3333282470703, + "b": 553.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7700", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 565.3999633789062, + "r": 249.6666717529297, + "b": 553.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.049", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.6666564941406, + "t": 564.3999633789062, + "r": 312.0, + "b": 553.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.270", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 564.7332763671875, + "r": 367.0, + "b": 552.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 564.7332763671875, + "r": 425.0, + "b": 552.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.175", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 564.7332763671875, + "r": 479.0, + "b": 552.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 546.066650390625, + "r": 130.3333282470703, + "b": 534.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 546.066650390625, + "r": 192.3333282470703, + "b": 534.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7700", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 546.066650390625, + "r": 249.6666717529297, + "b": 534.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.047", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 545.3999633789062, + "r": 312.3333435058594, + "b": 533.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.135", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 545.066650390625, + "r": 366.6666564941406, + "b": 534.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.445", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.0, + "t": 545.3999633789062, + "r": 425.0, + "b": 533.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 545.3999633789062, + "r": 479.0, + "b": 533.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 526.7332763671875, + "r": 130.3333282470703, + "b": 514.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.0, + "t": 527.3999633789062, + "r": 192.3333282470703, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7699", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 526.066650390625, + "r": 249.6666717529297, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.033", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 526.066650390625, + "r": 312.3333435058594, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.905", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 526.066650390625, + "r": 367.0, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.345", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 526.066650390625, + "r": 425.0, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 526.066650390625, + "r": 479.0, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 506.7333068847656, + "r": 130.3333282470703, + "b": 494.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 506.7333068847656, + "r": 192.3333282470703, + "b": 494.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7698", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 506.7333068847656, + "r": 250.3333282470703, + "b": 494.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 506.7333068847656, + "r": 313.0, + "b": 494.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.570", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 506.7333068847656, + "r": 367.0, + "b": 494.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.250", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 506.7333068847656, + "r": 425.6666564941406, + "b": 494.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.285", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 506.7333068847656, + "r": 479.0, + "b": 494.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.040", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 487.39996337890625, + "r": 130.3333282470703, + "b": 475.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 487.39996337890625, + "r": 192.3333282470703, + "b": 475.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7696", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.0, + "t": 486.39996337890625, + "r": 249.3333282470703, + "b": 475.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 486.39996337890625, + "r": 310.0, + "b": 475.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 486.39996337890625, + "r": 366.6666564941406, + "b": 475.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 486.7333068847656, + "r": 423.0, + "b": 474.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 486.7333068847656, + "r": 479.0, + "b": 474.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.0, + "t": 467.0666198730469, + "r": 130.0, + "b": 456.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 467.39996337890625, + "r": 192.3333282470703, + "b": 455.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7694", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 467.39996337890625, + "r": 251.6666717529297, + "b": 455.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 467.39996337890625, + "r": 310.3333435058594, + "b": 455.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.860", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 467.39996337890625, + "r": 369.0, + "b": 455.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.220", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 467.39996337890625, + "r": 425.0, + "b": 455.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.3333435058594, + "t": 467.39996337890625, + "r": 481.0, + "b": 455.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 448.0666198730469, + "r": 130.3333282470703, + "b": 436.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 448.0666198730469, + "r": 192.3333282470703, + "b": 436.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7695", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 448.0666198730469, + "r": 252.3333282470703, + "b": 436.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.023", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 448.0666198730469, + "r": 310.3333435058594, + "b": 436.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "2.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 448.0666198730469, + "r": 369.0, + "b": 436.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.610", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 448.0666198730469, + "r": 425.0, + "b": 436.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.3333435058594, + "t": 448.0666198730469, + "r": 481.0, + "b": 436.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 428.7333068847656, + "r": 130.3333282470703, + "b": 416.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 429.0666198730469, + "r": 192.3333282470703, + "b": 417.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7690", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 428.7333068847656, + "r": 252.3333282470703, + "b": 416.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 428.7333068847656, + "r": 310.3333435058594, + "b": 416.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3.770", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 428.7333068847656, + "r": 369.0, + "b": 416.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.0, + "t": 429.0666198730469, + "r": 425.0, + "b": 415.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.915", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.3333435058594, + "t": 428.7333068847656, + "r": 481.0, + "b": 416.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.095", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.0, + "t": 408.39996337890625, + "r": 130.0, + "b": 397.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.6666717529297, + "t": 408.39996337890625, + "r": 192.0, + "b": 397.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7687", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 408.7333068847656, + "r": 252.3333282470703, + "b": 396.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.124", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 408.7333068847656, + "r": 310.3333435058594, + "b": 396.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "6.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 408.7333068847656, + "r": 369.0, + "b": 396.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.830", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 408.7333068847656, + "r": 423.0, + "b": 396.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.3333435058594, + "t": 408.7333068847656, + "r": 481.0, + "b": 396.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.155", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.0, + "t": 389.0666198730469, + "r": 130.0, + "b": 378.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.6666717529297, + "t": 389.0666198730469, + "r": 192.0, + "b": 378.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7680", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 389.39996337890625, + "r": 251.6666717529297, + "b": 377.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.217", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 389.39996337890625, + "r": 310.3333435058594, + "b": 377.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "9.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 389.0666198730469, + "r": 368.6666564941406, + "b": 378.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.810", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.3333435058594, + "t": 389.0666198730469, + "r": 422.6666564941406, + "b": 378.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.250", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.6666564941406, + "t": 389.0666198730469, + "r": 480.6666564941406, + "b": 378.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.245", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 370.0666198730469, + "r": 130.3333282470703, + "b": 358.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 370.0666198730469, + "r": 192.3333282470703, + "b": 358.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7674", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 370.0666198730469, + "r": 252.3333282470703, + "b": 358.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.290", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 370.0666198730469, + "r": 313.6666564941406, + "b": 358.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "12.725", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 370.0666198730469, + "r": 369.0, + "b": 358.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~3.710", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 370.0666198730469, + "r": 423.0, + "b": 358.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.155", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.3333435058594, + "t": 370.0666198730469, + "r": 481.0, + "b": 358.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.325", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 350.0666198730469, + "r": 130.3333282470703, + "b": 338.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 350.0666198730469, + "r": 192.3333282470703, + "b": 338.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7665", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 350.0666198730469, + "r": 251.0, + "b": 338.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.401", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 350.0666198730469, + "r": 313.6666564941406, + "b": 338.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "17.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 350.0666198730469, + "r": 369.0, + "b": 338.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.815", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 350.0666198730469, + "r": 423.0, + "b": 338.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.3333435058594, + "t": 350.0666198730469, + "r": 481.0, + "b": 338.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.410", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.0, + "t": 329.7333068847656, + "r": 130.0, + "b": 319.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.0, + "t": 331.39996337890625, + "r": 192.3333282470703, + "b": 318.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7652", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.0, + "t": 329.7333068847656, + "r": 251.3333282470703, + "b": 319.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.582", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.0, + "t": 329.7333068847656, + "r": 313.3333435058594, + "b": 319.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "21.605", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 330.7333068847656, + "r": 369.0, + "b": 318.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-5.985", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 330.7333068847656, + "r": 423.0, + "b": 318.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.240", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.0, + "t": 330.7333068847656, + "r": 481.0, + "b": 318.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.495", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 310.7333068847656, + "r": 130.3333282470703, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 310.7333068847656, + "r": 192.3333282470703, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7633", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 310.7333068847656, + "r": 252.3333282470703, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.825", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 310.7333068847656, + "r": 313.6666564941406, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "26.095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 310.7333068847656, + "r": 369.0, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 310.7333068847656, + "r": 423.0, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.515", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.6666564941406, + "t": 310.39996337890625, + "r": 480.6666564941406, + "b": 299.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.580", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.0, + "t": 290.39996337890625, + "r": 130.0, + "b": 279.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.6666717529297, + "t": 290.7333068847656, + "r": 192.0, + "b": 280.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7609", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.0, + "t": 290.39996337890625, + "r": 251.3333282470703, + "b": 279.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~1.129", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.0, + "t": 290.7333068847656, + "r": 313.3333435058594, + "b": 280.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "30.430", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 291.39996337890625, + "r": 369.0, + "b": 279.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.795", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 291.39996337890625, + "r": 423.0, + "b": 279.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.320", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.3333435058594, + "t": 291.39996337890625, + "r": 481.0, + "b": 279.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.610", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 272.0666198730469, + "r": 130.3333282470703, + "b": 260.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 272.39996337890625, + "r": 192.3333282470703, + "b": 260.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7583", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 272.0666198730469, + "r": 251.6666717529297, + "b": 260.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.477", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 272.0666198730469, + "r": 313.6666564941406, + "b": 260.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "34.425", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 272.0666198730469, + "r": 369.0, + "b": 260.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-8.265", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.3333435058594, + "t": 271.7333068847656, + "r": 422.6666564941406, + "b": 261.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.325", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.3333435058594, + "t": 271.7333068847656, + "r": 480.6666564941406, + "b": 261.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.615", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.0, + "t": 251.73329162597656, + "r": 130.0, + "b": 241.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.6666717529297, + "t": 251.73329162597656, + "r": 192.0, + "b": 241.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7549", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 252.73329162597656, + "r": 252.3333282470703, + "b": 240.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.910", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 252.73329162597656, + "r": 313.6666564941406, + "b": 240.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "37.920", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 252.73329162597656, + "r": 369.0, + "b": 240.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-8.430", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 252.73329162597656, + "r": 425.0, + "b": 240.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.335", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.3333435058594, + "t": 252.39996337890625, + "r": 480.6666564941406, + "b": 241.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.615", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.0, + "t": 231.73329162597656, + "r": 130.0, + "b": 221.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.3333282470703, + "t": 233.06663513183594, + "r": 192.3333282470703, + "b": 220.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7517", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 232.73329162597656, + "r": 252.3333282470703, + "b": 220.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.336", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 232.73329162597656, + "r": 313.6666564941406, + "b": 220.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "40.730", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 232.39996337890625, + "r": 368.6666564941406, + "b": 221.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-8.545", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 232.73329162597656, + "r": 425.0, + "b": 220.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.195", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.0, + "t": 233.39996337890625, + "r": 481.0, + "b": 221.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.585", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.0, + "t": 212.39996337890625, + "r": 130.0, + "b": 201.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 213.39996337890625, + "r": 192.3333282470703, + "b": 201.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7476", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 213.39996337890625, + "r": 252.3333282470703, + "b": 201.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.862", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 213.39996337890625, + "r": 313.6666564941406, + "b": 201.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "42.470", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 213.39996337890625, + "r": 369.0, + "b": 201.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-8.360", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.6666564941406, + "t": 213.06663513183594, + "r": 424.6666564941406, + "b": 202.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.890", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.3333435058594, + "t": 214.06663513183594, + "r": 481.0, + "b": 202.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.500", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.33333587646484, + "t": 193.39996337890625, + "r": 130.3333282470703, + "b": 181.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 193.39996337890625, + "r": 192.3333282470703, + "b": 181.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7433", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 193.39996337890625, + "r": 251.0, + "b": 181.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.421", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.0, + "t": 193.06663513183594, + "r": 313.3333435058594, + "b": 182.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "42.840", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 194.06663513183594, + "r": 369.0, + "b": 182.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-8.120", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 194.06663513183594, + "r": 425.6666564941406, + "b": 182.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.575", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.3333435058594, + "t": 193.73329162597656, + "r": 480.6666564941406, + "b": 183.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.355", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.66666412353516, + "t": 173.06663513183594, + "r": 130.0, + "b": 162.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.6666717529297, + "t": 173.06663513183594, + "r": 192.0, + "b": 162.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7383", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 174.06663513183594, + "r": 252.3333282470703, + "b": 162.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-4.072", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 174.06663513183594, + "r": 313.6666564941406, + "b": 162.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "41.855", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 174.73329162597656, + "r": 369.6666564941406, + "b": 162.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.760", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 174.73329162597656, + "r": 425.6666564941406, + "b": 162.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.640", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.0, + "t": 174.73329162597656, + "r": 481.0, + "b": 162.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.110", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.33333587646484, + "t": 154.73329162597656, + "r": 130.6666717529297, + "b": 142.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.6666717529297, + "t": 153.73329162597656, + "r": 192.0, + "b": 143.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7328", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 154.73329162597656, + "r": 251.6666717529297, + "b": 142.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-4.780", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 154.73329162597656, + "r": 313.6666564941406, + "b": 142.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "40.095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 154.73329162597656, + "r": 369.0, + "b": 142.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.340", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.0, + "t": 154.73329162597656, + "r": 425.0, + "b": 142.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-1.210", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 155.39996337890625, + "r": 479.0, + "b": 143.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.165", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.0, + "t": 133.73329162597656, + "r": 130.0, + "b": 123.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 134.73329162597656, + "r": 192.3333282470703, + "b": 122.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7273", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 134.73329162597656, + "r": 251.6666717529297, + "b": 122.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~5.497", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 134.73329162597656, + "r": 313.6666564941406, + "b": 122.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "38.205", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 134.73329162597656, + "r": 369.0, + "b": 122.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-6.925", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.0, + "t": 134.73329162597656, + "r": 425.6666564941406, + "b": 122.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "~1.145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 135.39996337890625, + "r": 479.0, + "b": 123.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.430", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 114.7332992553711, + "r": 129.6666717529297, + "b": 102.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 114.7332992553711, + "r": 192.3333282470703, + "b": 102.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7215", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 114.7332992553711, + "r": 251.6666717529297, + "b": 102.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~6.249", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 115.39996337890625, + "r": 313.6666564941406, + "b": 103.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "36.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 115.39996337890625, + "r": 369.0, + "b": 103.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~6.655", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 115.39996337890625, + "r": 425.6666564941406, + "b": 103.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.495", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.3333435058594, + "t": 115.0666275024414, + "r": 476.6666564941406, + "b": 104.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.665", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 90.00389862060547, + "t": 628.8141479492188, + "r": 499.2869873046875, + "b": 175.86822509765625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/27" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 166.3333282470703, + "t": 624.066650390625, + "r": 189.0, + "b": 612.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "TF", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 226.3333282470703, + "t": 624.066650390625, + "r": 251.6666717529297, + "b": 612.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "8TF", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.80169677734375, + "t": 623.3999633789062, + "r": 311.8649597167969, + "b": 594.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.4683532714844, + "t": 623.3999633789062, + "r": 368.5316467285156, + "b": 594.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.4683532714844, + "t": 623.3999633789062, + "r": 421.8649597167969, + "b": 594.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.80169677734375, + "t": 620.3999633789062, + "r": 481.19830322265625, + "b": 594.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "@1 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.0, + "t": 606.3999633789062, + "r": 137.6666717529297, + "b": 590.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 162.3333282470703, + "t": 606.066650390625, + "r": 193.6666717529297, + "b": 591.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 233.0, + "t": 605.3999633789062, + "r": 245.6666717529297, + "b": 592.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.0, + "t": 583.066650390625, + "r": 369.3333435058594, + "b": 572.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.340", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 583.3999633789062, + "r": 425.6666564941406, + "b": 571.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.150", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 583.066650390625, + "r": 484.6666564941406, + "b": 572.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.0, + "t": 584.066650390625, + "r": 133.0, + "b": 572.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 584.066650390625, + "r": 195.0, + "b": 572.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7698", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 584.066650390625, + "r": 252.3333282470703, + "b": 572.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.027", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.3333435058594, + "t": 583.066650390625, + "r": 315.3333435058594, + "b": 572.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.33333587646484, + "t": 563.7332763671875, + "r": 132.6666717529297, + "b": 553.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.3333282470703, + "t": 563.7332763671875, + "r": 194.0, + "b": 553.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7697", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 564.066650390625, + "r": 252.3333282470703, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 564.066650390625, + "r": 315.0, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 564.066650390625, + "r": 369.6666564941406, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.280", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 564.066650390625, + "r": 425.6666564941406, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.895", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 564.066650390625, + "r": 485.0, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 545.3999633789062, + "r": 133.0, + "b": 533.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 545.7332763671875, + "r": 194.3333282470703, + "b": 533.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7695", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 544.7332763671875, + "r": 254.3333282470703, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 544.7332763671875, + "r": 315.0, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.935", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 544.7332763671875, + "r": 369.6666564941406, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.420", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 544.7332763671875, + "r": 427.6666564941406, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.430", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 544.7332763671875, + "r": 485.0, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 526.066650390625, + "r": 133.0, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 525.066650390625, + "r": 194.0, + "b": 514.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7695", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 525.3999633789062, + "r": 254.3333282470703, + "b": 513.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.013", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 525.3999633789062, + "r": 315.0, + "b": 513.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.765", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 525.3999633789062, + "r": 369.6666564941406, + "b": 513.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.150", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 525.3999633789062, + "r": 425.6666564941406, + "b": 513.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.620", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.0, + "t": 525.3999633789062, + "r": 483.0, + "b": 513.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 506.0666198730469, + "r": 133.0, + "b": 494.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 506.0666198730469, + "r": 194.3333282470703, + "b": 494.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7692", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 505.39996337890625, + "r": 254.3333282470703, + "b": 493.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.049", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 505.39996337890625, + "r": 315.0, + "b": 493.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.505", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 505.39996337890625, + "r": 369.6666564941406, + "b": 493.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.175", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 505.39996337890625, + "r": 425.6666564941406, + "b": 493.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "1.150", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 505.0666198730469, + "r": 484.6666564941406, + "b": 494.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 486.7333068847656, + "r": 132.3333282470703, + "b": 474.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 486.7333068847656, + "r": 194.3333282470703, + "b": 474.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7696", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 486.0666198730469, + "r": 252.3333282470703, + "b": 474.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 486.0666198730469, + "r": 313.0, + "b": 474.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 486.0666198730469, + "r": 369.6666564941406, + "b": 474.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 486.0666198730469, + "r": 425.6666564941406, + "b": 474.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.0, + "t": 486.0666198730469, + "r": 483.0, + "b": 474.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 466.39996337890625, + "r": 132.6666717529297, + "b": 455.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 466.7333068847656, + "r": 194.3333282470703, + "b": 454.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7692", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.0, + "t": 465.7333068847656, + "r": 254.0, + "b": 455.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 466.7333068847656, + "r": 313.0, + "b": 454.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.760", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.0, + "t": 465.7333068847656, + "r": 371.3333435058594, + "b": 455.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.250", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.6666564941406, + "t": 467.0666198730469, + "r": 425.6666564941406, + "b": 454.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.515", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 466.7333068847656, + "r": 485.0, + "b": 454.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 447.39996337890625, + "r": 132.3333282470703, + "b": 435.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 447.39996337890625, + "r": 194.3333282470703, + "b": 435.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7685", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.0, + "t": 446.39996337890625, + "r": 254.0, + "b": 435.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.139", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.3333435058594, + "t": 446.39996337890625, + "r": 312.6666564941406, + "b": 435.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "1.815", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 447.39996337890625, + "r": 371.6666564941406, + "b": 435.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.555", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 447.39996337890625, + "r": 425.6666564941406, + "b": 435.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.395", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 447.39996337890625, + "r": 485.0, + "b": 435.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 428.0666198730469, + "r": 132.3333282470703, + "b": 416.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 428.0666198730469, + "r": 194.3333282470703, + "b": 416.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7686", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 427.39996337890625, + "r": 254.3333282470703, + "b": 415.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.132", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.3333435058594, + "t": 427.0666198730469, + "r": 312.6666564941406, + "b": 416.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3.345", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.0, + "t": 427.0666198730469, + "r": 371.3333435058594, + "b": 416.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 428.0666198730469, + "r": 425.6666564941406, + "b": 416.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "1.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 428.0666198730469, + "r": 485.0, + "b": 416.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 407.7333068847656, + "r": 132.0, + "b": 397.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 408.39996337890625, + "r": 194.3333282470703, + "b": 396.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7682", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 408.0666198730469, + "r": 254.3333282470703, + "b": 396.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.185", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 408.0666198730469, + "r": 313.0, + "b": 396.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "5.425", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 408.0666198730469, + "r": 371.6666564941406, + "b": 396.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.765", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 408.0666198730469, + "r": 425.6666564941406, + "b": 396.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.635", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.6666564941406, + "t": 409.39996337890625, + "r": 485.3333435058594, + "b": 395.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 388.7333068847656, + "r": 132.3333282470703, + "b": 376.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 388.7333068847656, + "r": 194.3333282470703, + "b": 376.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7679", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 389.39996337890625, + "r": 254.3333282470703, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.220", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 388.7333068847656, + "r": 313.0, + "b": 376.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "8.170", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 388.0666198730469, + "r": 371.6666564941406, + "b": 376.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.460", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 388.7333068847656, + "r": 425.6666564941406, + "b": 376.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.455", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 388.7333068847656, + "r": 485.0, + "b": 376.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 368.39996337890625, + "r": 132.0, + "b": 357.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 368.7333068847656, + "r": 194.3333282470703, + "b": 356.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7668", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 368.7333068847656, + "r": 254.3333282470703, + "b": 356.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.364", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 368.7333068847656, + "r": 316.3333435058594, + "b": 356.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "11.605", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 368.7333068847656, + "r": 371.6666564941406, + "b": 356.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.310", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 368.39996337890625, + "r": 425.3333435058594, + "b": 357.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.680", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 368.39996337890625, + "r": 484.6666564941406, + "b": 357.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.130", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 348.39996337890625, + "r": 132.0, + "b": 337.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 349.39996337890625, + "r": 194.3333282470703, + "b": 337.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7657", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.0, + "t": 348.39996337890625, + "r": 254.0, + "b": 337.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.503", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 349.0666198730469, + "r": 316.3333435058594, + "b": 337.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "15.610", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 349.39996337890625, + "r": 372.3333435058594, + "b": 337.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "4.495", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 348.39996337890625, + "r": 425.3333435058594, + "b": 337.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 349.39996337890625, + "r": 485.0, + "b": 337.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.185", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 330.0666198730469, + "r": 132.3333282470703, + "b": 318.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 330.39996337890625, + "r": 194.3333282470703, + "b": 318.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7643", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.0, + "t": 329.0666198730469, + "r": 253.3333282470703, + "b": 318.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.681", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.0, + "t": 330.39996337890625, + "r": 316.3333435058594, + "b": 317.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "19.870", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 330.0666198730469, + "r": 371.6666564941406, + "b": 318.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.470", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 330.0666198730469, + "r": 425.6666564941406, + "b": 318.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "1.260", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 329.7333068847656, + "r": 484.6666564941406, + "b": 319.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.240", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 310.7333068847656, + "r": 132.3333282470703, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 311.0666198730469, + "r": 194.3333282470703, + "b": 299.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7626", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.0, + "t": 309.7333068847656, + "r": 254.0, + "b": 299.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.914", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 309.7333068847656, + "r": 316.0, + "b": 299.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "24.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 310.7333068847656, + "r": 371.6666564941406, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-6.385", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 310.7333068847656, + "r": 425.6666564941406, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.870", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 310.7333068847656, + "r": 485.0, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.290", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 290.7333068847656, + "r": 132.3333282470703, + "b": 278.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 291.0666198730469, + "r": 194.3333282470703, + "b": 279.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7605", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 290.7333068847656, + "r": 254.3333282470703, + "b": 278.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.175", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 291.0666198730469, + "r": 316.3333435058594, + "b": 279.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "28.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 290.7333068847656, + "r": 371.6666564941406, + "b": 278.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.0, + "t": 290.39996337890625, + "r": 425.3333435058594, + "b": 279.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 291.39996337890625, + "r": 485.0, + "b": 279.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.350", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 271.39996337890625, + "r": 132.3333282470703, + "b": 259.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 271.7333068847656, + "r": 194.3333282470703, + "b": 259.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7576", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 271.39996337890625, + "r": 254.3333282470703, + "b": 259.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.558", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 271.7333068847656, + "r": 316.3333435058594, + "b": 259.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "32.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.0, + "t": 271.0666198730469, + "r": 371.3333435058594, + "b": 260.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.575", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 272.0666198730469, + "r": 425.6666564941406, + "b": 260.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.280", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 272.0666198730469, + "r": 485.0, + "b": 260.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.375", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 252.06663513183594, + "r": 132.3333282470703, + "b": 240.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 252.06663513183594, + "r": 194.3333282470703, + "b": 240.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7547", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 251.06663513183594, + "r": 254.0, + "b": 240.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.940", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 252.06663513183594, + "r": 316.3333435058594, + "b": 240.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "35.365", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 252.06663513183594, + "r": 371.6666564941406, + "b": 240.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~7.850", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 251.73329162597656, + "r": 425.3333435058594, + "b": 241.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.615", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 251.73329162597656, + "r": 484.6666564941406, + "b": 241.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 232.06663513183594, + "r": 132.3333282470703, + "b": 220.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 232.06663513183594, + "r": 194.3333282470703, + "b": 220.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7508", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 232.06663513183594, + "r": 254.3333282470703, + "b": 220.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 232.06663513183594, + "r": 316.3333435058594, + "b": 220.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "37.960", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.6666564941406, + "t": 231.73329162597656, + "r": 371.3333435058594, + "b": 221.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~7.790", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 232.73329162597656, + "r": 425.6666564941406, + "b": 220.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 232.73329162597656, + "r": 485.0, + "b": 220.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.415", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 212.06663513183594, + "r": 132.3333282470703, + "b": 200.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 212.06663513183594, + "r": 194.3333282470703, + "b": 200.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7469", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 212.06663513183594, + "r": 254.3333282470703, + "b": 200.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.950", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 211.73329162597656, + "r": 316.0, + "b": 201.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "39.535", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 212.73329162597656, + "r": 372.3333435058594, + "b": 200.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.750", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 212.73329162597656, + "r": 425.6666564941406, + "b": 200.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.530", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 212.39996337890625, + "r": 484.6666564941406, + "b": 201.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.385", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.33333587646484, + "t": 191.73329162597656, + "r": 132.0, + "b": 181.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 192.73329162597656, + "r": 194.3333282470703, + "b": 180.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7427", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.0, + "t": 191.73329162597656, + "r": 254.0, + "b": 181.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 192.73329162597656, + "r": 316.3333435058594, + "b": 180.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "39.655", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 192.73329162597656, + "r": 372.3333435058594, + "b": 180.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.425", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 193.39996337890625, + "r": 427.6666564941406, + "b": 181.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.890", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 193.39996337890625, + "r": 483.6666564941406, + "b": 181.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.305", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 23, + "num_cols": 7, + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 166.3333282470703, + "t": 624.066650390625, + "r": 189.0, + "b": 612.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "TF", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 226.3333282470703, + "t": 624.066650390625, + "r": 251.6666717529297, + "b": 612.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "8TF", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.80169677734375, + "t": 623.3999633789062, + "r": 311.8649597167969, + "b": 594.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.4683532714844, + "t": 623.3999633789062, + "r": 368.5316467285156, + "b": 594.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.4683532714844, + "t": 623.3999633789062, + "r": 421.8649597167969, + "b": 594.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.80169677734375, + "t": 620.3999633789062, + "r": 481.19830322265625, + "b": 594.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "@1 10-4", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.0, + "t": 606.3999633789062, + "r": 137.6666717529297, + "b": 590.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 162.3333282470703, + "t": 606.066650390625, + "r": 193.6666717529297, + "b": 591.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 233.0, + "t": 605.3999633789062, + "r": 245.6666717529297, + "b": 592.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.0, + "t": 583.066650390625, + "r": 369.3333435058594, + "b": 572.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.340", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 583.3999633789062, + "r": 425.6666564941406, + "b": 571.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.150", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 583.066650390625, + "r": 484.6666564941406, + "b": 572.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.035", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.0, + "t": 584.066650390625, + "r": 133.0, + "b": 572.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 584.066650390625, + "r": 195.0, + "b": 572.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7698", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 584.066650390625, + "r": 252.3333282470703, + "b": 572.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.027", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.3333435058594, + "t": 583.066650390625, + "r": 315.3333435058594, + "b": 572.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.33333587646484, + "t": 563.7332763671875, + "r": 132.6666717529297, + "b": 553.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.3333282470703, + "t": 563.7332763671875, + "r": 194.0, + "b": 553.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7697", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 564.066650390625, + "r": 252.3333282470703, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 564.066650390625, + "r": 315.0, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 564.066650390625, + "r": 369.6666564941406, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.280", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 564.066650390625, + "r": 425.6666564941406, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.895", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 564.066650390625, + "r": 485.0, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 545.3999633789062, + "r": 133.0, + "b": 533.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 545.7332763671875, + "r": 194.3333282470703, + "b": 533.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7695", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 544.7332763671875, + "r": 254.3333282470703, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 544.7332763671875, + "r": 315.0, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.935", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 544.7332763671875, + "r": 369.6666564941406, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.420", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 544.7332763671875, + "r": 427.6666564941406, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.430", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 544.7332763671875, + "r": 485.0, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 526.066650390625, + "r": 133.0, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 525.066650390625, + "r": 194.0, + "b": 514.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7695", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 525.3999633789062, + "r": 254.3333282470703, + "b": 513.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.013", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 525.3999633789062, + "r": 315.0, + "b": 513.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.765", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 525.3999633789062, + "r": 369.6666564941406, + "b": 513.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.150", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 525.3999633789062, + "r": 425.6666564941406, + "b": 513.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.620", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.0, + "t": 525.3999633789062, + "r": 483.0, + "b": 513.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 506.0666198730469, + "r": 133.0, + "b": 494.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 506.0666198730469, + "r": 194.3333282470703, + "b": 494.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7692", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 505.39996337890625, + "r": 254.3333282470703, + "b": 493.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.049", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 505.39996337890625, + "r": 315.0, + "b": 493.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.505", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 505.39996337890625, + "r": 369.6666564941406, + "b": 493.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.175", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 505.39996337890625, + "r": 425.6666564941406, + "b": 493.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "1.150", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 505.0666198730469, + "r": 484.6666564941406, + "b": 494.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 486.7333068847656, + "r": 132.3333282470703, + "b": 474.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 486.7333068847656, + "r": 194.3333282470703, + "b": 474.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7696", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 486.0666198730469, + "r": 252.3333282470703, + "b": 474.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 486.0666198730469, + "r": 313.0, + "b": 474.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 486.0666198730469, + "r": 369.6666564941406, + "b": 474.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 486.0666198730469, + "r": 425.6666564941406, + "b": 474.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.0, + "t": 486.0666198730469, + "r": 483.0, + "b": 474.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 466.39996337890625, + "r": 132.6666717529297, + "b": 455.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 466.7333068847656, + "r": 194.3333282470703, + "b": 454.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7692", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.0, + "t": 465.7333068847656, + "r": 254.0, + "b": 455.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 466.7333068847656, + "r": 313.0, + "b": 454.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.760", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.0, + "t": 465.7333068847656, + "r": 371.3333435058594, + "b": 455.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.250", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.6666564941406, + "t": 467.0666198730469, + "r": 425.6666564941406, + "b": 454.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.515", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 466.7333068847656, + "r": 485.0, + "b": 454.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 447.39996337890625, + "r": 132.3333282470703, + "b": 435.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 447.39996337890625, + "r": 194.3333282470703, + "b": 435.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7685", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.0, + "t": 446.39996337890625, + "r": 254.0, + "b": 435.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.139", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.3333435058594, + "t": 446.39996337890625, + "r": 312.6666564941406, + "b": 435.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "1.815", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 447.39996337890625, + "r": 371.6666564941406, + "b": 435.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.555", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 447.39996337890625, + "r": 425.6666564941406, + "b": 435.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.395", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 447.39996337890625, + "r": 485.0, + "b": 435.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 428.0666198730469, + "r": 132.3333282470703, + "b": 416.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 428.0666198730469, + "r": 194.3333282470703, + "b": 416.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7686", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 427.39996337890625, + "r": 254.3333282470703, + "b": 415.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.132", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.3333435058594, + "t": 427.0666198730469, + "r": 312.6666564941406, + "b": 416.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3.345", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.0, + "t": 427.0666198730469, + "r": 371.3333435058594, + "b": 416.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 428.0666198730469, + "r": 425.6666564941406, + "b": 416.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "1.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 428.0666198730469, + "r": 485.0, + "b": 416.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 407.7333068847656, + "r": 132.0, + "b": 397.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 408.39996337890625, + "r": 194.3333282470703, + "b": 396.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7682", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 408.0666198730469, + "r": 254.3333282470703, + "b": 396.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.185", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 408.0666198730469, + "r": 313.0, + "b": 396.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "5.425", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 408.0666198730469, + "r": 371.6666564941406, + "b": 396.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.765", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 408.0666198730469, + "r": 425.6666564941406, + "b": 396.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.635", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.6666564941406, + "t": 409.39996337890625, + "r": 485.3333435058594, + "b": 395.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 388.7333068847656, + "r": 132.3333282470703, + "b": 376.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 388.7333068847656, + "r": 194.3333282470703, + "b": 376.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7679", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 389.39996337890625, + "r": 254.3333282470703, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.220", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 388.7333068847656, + "r": 313.0, + "b": 376.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "8.170", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 388.0666198730469, + "r": 371.6666564941406, + "b": 376.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.460", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 388.7333068847656, + "r": 425.6666564941406, + "b": 376.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.455", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 388.7333068847656, + "r": 485.0, + "b": 376.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.085", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 368.39996337890625, + "r": 132.0, + "b": 357.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 368.7333068847656, + "r": 194.3333282470703, + "b": 356.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7668", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 368.7333068847656, + "r": 254.3333282470703, + "b": 356.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.364", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 368.7333068847656, + "r": 316.3333435058594, + "b": 356.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "11.605", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 368.7333068847656, + "r": 371.6666564941406, + "b": 356.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.310", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 368.39996337890625, + "r": 425.3333435058594, + "b": 357.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.680", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 368.39996337890625, + "r": 484.6666564941406, + "b": 357.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.130", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 348.39996337890625, + "r": 132.0, + "b": 337.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 349.39996337890625, + "r": 194.3333282470703, + "b": 337.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7657", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.0, + "t": 348.39996337890625, + "r": 254.0, + "b": 337.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.503", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 349.0666198730469, + "r": 316.3333435058594, + "b": 337.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "15.610", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 349.39996337890625, + "r": 372.3333435058594, + "b": 337.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "4.495", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 348.39996337890625, + "r": 425.3333435058594, + "b": 337.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 349.39996337890625, + "r": 485.0, + "b": 337.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.185", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 330.0666198730469, + "r": 132.3333282470703, + "b": 318.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 330.39996337890625, + "r": 194.3333282470703, + "b": 318.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7643", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.0, + "t": 329.0666198730469, + "r": 253.3333282470703, + "b": 318.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.681", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.0, + "t": 330.39996337890625, + "r": 316.3333435058594, + "b": 317.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "19.870", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 330.0666198730469, + "r": 371.6666564941406, + "b": 318.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.470", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 330.0666198730469, + "r": 425.6666564941406, + "b": 318.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "1.260", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 329.7333068847656, + "r": 484.6666564941406, + "b": 319.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.240", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 310.7333068847656, + "r": 132.3333282470703, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 311.0666198730469, + "r": 194.3333282470703, + "b": 299.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7626", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.0, + "t": 309.7333068847656, + "r": 254.0, + "b": 299.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.914", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 309.7333068847656, + "r": 316.0, + "b": 299.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "24.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 310.7333068847656, + "r": 371.6666564941406, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-6.385", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 310.7333068847656, + "r": 425.6666564941406, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.870", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 310.7333068847656, + "r": 485.0, + "b": 298.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.290", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 290.7333068847656, + "r": 132.3333282470703, + "b": 278.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 291.0666198730469, + "r": 194.3333282470703, + "b": 279.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7605", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 290.7333068847656, + "r": 254.3333282470703, + "b": 278.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.175", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 291.0666198730469, + "r": 316.3333435058594, + "b": 279.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "28.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 290.7333068847656, + "r": 371.6666564941406, + "b": 278.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.0, + "t": 290.39996337890625, + "r": 425.3333435058594, + "b": 279.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 291.39996337890625, + "r": 485.0, + "b": 279.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.350", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 271.39996337890625, + "r": 132.3333282470703, + "b": 259.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 271.7333068847656, + "r": 194.3333282470703, + "b": 259.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7576", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 271.39996337890625, + "r": 254.3333282470703, + "b": 259.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.558", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 271.7333068847656, + "r": 316.3333435058594, + "b": 259.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "32.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.0, + "t": 271.0666198730469, + "r": 371.3333435058594, + "b": 260.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.575", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 272.0666198730469, + "r": 425.6666564941406, + "b": 260.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.280", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 272.0666198730469, + "r": 485.0, + "b": 260.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.375", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 252.06663513183594, + "r": 132.3333282470703, + "b": 240.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 252.06663513183594, + "r": 194.3333282470703, + "b": 240.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7547", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 251.06663513183594, + "r": 254.0, + "b": 240.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.940", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 252.06663513183594, + "r": 316.3333435058594, + "b": 240.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "35.365", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 252.06663513183594, + "r": 371.6666564941406, + "b": 240.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~7.850", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 251.73329162597656, + "r": 425.3333435058594, + "b": 241.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.615", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 251.73329162597656, + "r": 484.6666564941406, + "b": 241.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.400", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 232.06663513183594, + "r": 132.3333282470703, + "b": 220.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 232.06663513183594, + "r": 194.3333282470703, + "b": 220.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7508", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 232.06663513183594, + "r": 254.3333282470703, + "b": 220.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 232.06663513183594, + "r": 316.3333435058594, + "b": 220.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "37.960", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.6666564941406, + "t": 231.73329162597656, + "r": 371.3333435058594, + "b": 221.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~7.790", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 232.73329162597656, + "r": 425.6666564941406, + "b": 220.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 232.73329162597656, + "r": 485.0, + "b": 220.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.415", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 212.06663513183594, + "r": 132.3333282470703, + "b": 200.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 212.06663513183594, + "r": 194.3333282470703, + "b": 200.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7469", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 212.06663513183594, + "r": 254.3333282470703, + "b": 200.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.950", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 211.73329162597656, + "r": 316.0, + "b": 201.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "39.535", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 212.73329162597656, + "r": 372.3333435058594, + "b": 200.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.750", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 212.73329162597656, + "r": 425.6666564941406, + "b": 200.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.530", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 212.39996337890625, + "r": 484.6666564941406, + "b": 201.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.385", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.33333587646484, + "t": 191.73329162597656, + "r": 132.0, + "b": 181.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 192.73329162597656, + "r": 194.3333282470703, + "b": 180.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7427", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.0, + "t": 191.73329162597656, + "r": 254.0, + "b": 181.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 192.73329162597656, + "r": 316.3333435058594, + "b": 180.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "39.655", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 192.73329162597656, + "r": 372.3333435058594, + "b": 180.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.425", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 193.39996337890625, + "r": 427.6666564941406, + "b": 181.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.890", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 193.39996337890625, + "r": 483.6666564941406, + "b": 181.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.305", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 89.86552429199219, + "t": 627.2822265625, + "r": 495.9353942871094, + "b": 154.575439453125, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/28" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 166.3333282470703, + "t": 622.7332763671875, + "r": 189.0, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "TF-", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 226.3333282470703, + "t": 622.7332763671875, + "r": 252.3333282470703, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "STF", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 291.6666564941406, + "t": 622.066650390625, + "r": 303.6666564941406, + "b": 607.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 348.3333435058594, + "t": 622.066650390625, + "r": 360.3333435058594, + "b": 607.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 401.6666564941406, + "t": 621.3999633789062, + "r": 414.3333435058594, + "b": 606.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 460.0, + "t": 618.3999633789062, + "r": 470.6666564941406, + "b": 607.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "@1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.33333587646484, + "t": 605.066650390625, + "r": 137.3333282470703, + "b": 588.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 162.3333282470703, + "t": 604.066650390625, + "r": 193.6666717529297, + "b": 590.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 233.6666717529297, + "t": 604.066650390625, + "r": 245.6666717529297, + "b": 591.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.4683532714844, + "t": 602.9560546875, + "r": 311.8649597167969, + "b": 592.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.4267578125, + "t": 602.2704467773438, + "r": 367.9065856933594, + "b": 592.86279296875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.80169677734375, + "t": 602.2893676757812, + "r": 421.8649597167969, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.80169677734375, + "t": 602.2893676757812, + "r": 479.8649597167969, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 582.3999633789062, + "r": 132.0, + "b": 571.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 582.7332763671875, + "r": 195.0, + "b": 570.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7696", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 582.7332763671875, + "r": 252.3333282470703, + "b": 570.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.076", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 582.7332763671875, + "r": 315.0, + "b": 570.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.215", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 582.7332763671875, + "r": 369.6666564941406, + "b": 570.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.385", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 582.066650390625, + "r": 427.6666564941406, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.690", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 582.066650390625, + "r": 483.6666564941406, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 563.3999633789062, + "r": 132.3333282470703, + "b": 551.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 563.7332763671875, + "r": 194.3333282470703, + "b": 551.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7691", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.6666717529297, + "t": 562.3999633789062, + "r": 252.0, + "b": 551.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 562.7332763671875, + "r": 315.0, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.155", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 562.7332763671875, + "r": 369.6666564941406, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 562.7332763671875, + "r": 427.6666564941406, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "~0.270", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 561.7332763671875, + "r": 483.3333435058594, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 543.066650390625, + "r": 132.0, + "b": 532.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 543.3999633789062, + "r": 194.6666717529297, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7693", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 543.3999633789062, + "r": 252.3333282470703, + "b": 531.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.032", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 543.3999633789062, + "r": 315.0, + "b": 531.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.0, + "t": 542.3999633789062, + "r": 369.3333435058594, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.375", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 542.7332763671875, + "r": 427.0, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.195", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 542.7332763671875, + "r": 481.0, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 524.066650390625, + "r": 132.3333282470703, + "b": 512.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 524.3999633789062, + "r": 195.0, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7696", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 524.066650390625, + "r": 252.3333282470703, + "b": 512.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.076", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 524.066650390625, + "r": 315.0, + "b": 512.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.855", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.0, + "t": 523.066650390625, + "r": 369.3333435058594, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 523.3999633789062, + "r": 427.6666564941406, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 523.3999633789062, + "r": 481.6666564941406, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 504.7333068847656, + "r": 132.3333282470703, + "b": 492.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 503.7333068847656, + "r": 194.0, + "b": 493.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7691", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 504.0666198730469, + "r": 252.3333282470703, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 503.7333068847656, + "r": 314.6666564941406, + "b": 493.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.545", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 504.0666198730469, + "r": 369.6666564941406, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.215", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.3333435058594, + "t": 503.0666198730469, + "r": 427.3333435058594, + "b": 492.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.350", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 504.0666198730469, + "r": 481.0, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 484.39996337890625, + "r": 132.0, + "b": 473.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 484.7333068847656, + "r": 195.0, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7690", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 484.7333068847656, + "r": 252.3333282470703, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 484.7333068847656, + "r": 313.0, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.0, + "t": 483.7333068847656, + "r": 369.3333435058594, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 483.7333068847656, + "r": 424.6666564941406, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 483.7333068847656, + "r": 480.6666564941406, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 465.0666198730469, + "r": 132.0, + "b": 454.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 465.0666198730469, + "r": 194.0, + "b": 454.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7691", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 465.39996337890625, + "r": 252.3333282470703, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.006", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 465.39996337890625, + "r": 313.0, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.850", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 465.39996337890625, + "r": 371.6666564941406, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.275", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 465.39996337890625, + "r": 427.6666564941406, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.3333435058594, + "t": 464.39996337890625, + "r": 483.3333435058594, + "b": 453.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 446.0666198730469, + "r": 132.3333282470703, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 446.0666198730469, + "r": 195.0, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7688", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 445.0666198730469, + "r": 254.0, + "b": 434.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.033", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.3333435058594, + "t": 445.0666198730469, + "r": 312.6666564941406, + "b": 434.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "2.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 445.0666198730469, + "r": 371.3333435058594, + "b": 434.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.685", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 445.39996337890625, + "r": 425.6666564941406, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.225", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 445.39996337890625, + "r": 483.6666564941406, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 426.7333068847656, + "r": 132.3333282470703, + "b": 414.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 426.7333068847656, + "r": 195.0, + "b": 414.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7688", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 425.7333068847656, + "r": 254.0, + "b": 415.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.026", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 426.7333068847656, + "r": 313.0, + "b": 414.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3.665", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 426.0666198730469, + "r": 371.6666564941406, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.180", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 426.0666198730469, + "r": 425.0, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.230", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 426.0666198730469, + "r": 483.6666564941406, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 406.7333068847656, + "r": 132.3333282470703, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 407.0666198730469, + "r": 194.3333282470703, + "b": 395.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7683", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 406.7333068847656, + "r": 254.3333282470703, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.092", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 406.7333068847656, + "r": 313.0, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "5.840", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 406.7333068847656, + "r": 371.6666564941406, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.730", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 405.7333068847656, + "r": 424.6666564941406, + "b": 395.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.260", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 406.0666198730469, + "r": 483.6666564941406, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.125", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 387.39996337890625, + "r": 132.3333282470703, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 387.39996337890625, + "r": 194.3333282470703, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7678", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 386.7333068847656, + "r": 254.3333282470703, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.159", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 387.39996337890625, + "r": 313.0, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "8.760", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 386.7333068847656, + "r": 371.6666564941406, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.565", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 386.7333068847656, + "r": 425.0, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.360", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 386.7333068847656, + "r": 483.6666564941406, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.170", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 367.39996337890625, + "r": 132.3333282470703, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 367.39996337890625, + "r": 194.3333282470703, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7669", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 367.39996337890625, + "r": 254.3333282470703, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.280", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 367.7333068847656, + "r": 316.3333435058594, + "b": 355.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "12.380", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 366.39996337890625, + "r": 371.3333435058594, + "b": 355.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "3.545", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 367.39996337890625, + "r": 425.0, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.295", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 367.39996337890625, + "r": 483.6666564941406, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.240", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 347.0666198730469, + "r": 132.0, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 347.0666198730469, + "r": 194.6666717529297, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7664", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 347.0666198730469, + "r": 254.6666717529297, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.344", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 347.0666198730469, + "r": 316.0, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "16.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 347.0666198730469, + "r": 371.3333435058594, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.580", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 347.0666198730469, + "r": 424.6666564941406, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.730", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.3333435058594, + "t": 347.0666198730469, + "r": 483.3333435058594, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.320", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 327.7333068847656, + "r": 132.0, + "b": 317.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 328.0666198730469, + "r": 194.0, + "b": 317.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7649", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 328.0666198730469, + "r": 254.3333282470703, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.539", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 328.0666198730469, + "r": 316.3333435058594, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "21.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 328.0666198730469, + "r": 371.6666564941406, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-5.615", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 328.0666198730469, + "r": 425.0, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.650", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.3333435058594, + "t": 327.7333068847656, + "r": 483.3333435058594, + "b": 317.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.380", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 308.39996337890625, + "r": 132.0, + "b": 297.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.0, + "t": 310.0666198730469, + "r": 193.6666717529297, + "b": 296.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7631", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 309.39996337890625, + "r": 254.3333282470703, + "b": 297.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.769", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 308.39996337890625, + "r": 316.0, + "b": 297.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "25.520", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 308.39996337890625, + "r": 371.3333435058594, + "b": 297.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-6.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 308.39996337890625, + "r": 425.3333435058594, + "b": 297.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.595", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.3333435058594, + "t": 308.39996337890625, + "r": 483.3333435058594, + "b": 297.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.415", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 289.39996337890625, + "r": 132.3333282470703, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 289.39996337890625, + "r": 194.3333282470703, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7607", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 289.39996337890625, + "r": 254.3333282470703, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.087", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 289.39996337890625, + "r": 316.3333435058594, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "29.745", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 290.0666198730469, + "r": 371.6666564941406, + "b": 276.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.275", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 289.39996337890625, + "r": 425.6666564941406, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.675", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 289.39996337890625, + "r": 483.6666564941406, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.415", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 269.39996337890625, + "r": 132.3333282470703, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 269.7333068847656, + "r": 194.3333282470703, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7578", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 269.39996337890625, + "r": 255.0, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.465", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 269.39996337890625, + "r": 316.3333435058594, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "33.640", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 269.39996337890625, + "r": 371.6666564941406, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "7.720", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 269.39996337890625, + "r": 425.6666564941406, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.395", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.3333435058594, + "t": 269.0666198730469, + "r": 483.3333435058594, + "b": 258.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 249.06663513183594, + "r": 132.0, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 250.06663513183594, + "r": 194.3333282470703, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7545", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 249.06663513183594, + "r": 254.6666717529297, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.884", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 250.06663513183594, + "r": 316.3333435058594, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "37.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 250.06663513183594, + "r": 371.6666564941406, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.930", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 250.06663513183594, + "r": 425.6666564941406, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.190", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 250.06663513183594, + "r": 483.6666564941406, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.365", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 230.06663513183594, + "r": 132.3333282470703, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 230.06663513183594, + "r": 195.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7514", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 230.06663513183594, + "r": 254.3333282470703, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.293", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 231.39996337890625, + "r": 316.3333435058594, + "b": 217.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "39.760", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 230.06663513183594, + "r": 371.6666564941406, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.915", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.6666564941406, + "t": 231.39996337890625, + "r": 425.6666564941406, + "b": 217.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 230.73329162597656, + "r": 483.6666564941406, + "b": 218.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.275", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 210.73329162597656, + "r": 132.3333282470703, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 210.73329162597656, + "r": 194.3333282470703, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7473", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 210.73329162597656, + "r": 255.0, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~2.824", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 210.73329162597656, + "r": 316.3333435058594, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "41.435", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.0, + "t": 210.39996337890625, + "r": 371.3333435058594, + "b": 199.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.745", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 210.73329162597656, + "r": 427.6666564941406, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.3333435058594, + "t": 210.39996337890625, + "r": 483.3333435058594, + "b": 199.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 190.39996337890625, + "r": 132.0, + "b": 179.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 191.39996337890625, + "r": 194.3333282470703, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7430", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 191.39996337890625, + "r": 254.3333282470703, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.379", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 191.39996337890625, + "r": 316.3333435058594, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "41.790", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 191.39996337890625, + "r": 371.6666564941406, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.525", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 191.39996337890625, + "r": 427.6666564941406, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.250", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 191.06663513183594, + "r": 481.3333435058594, + "b": 180.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.240", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 171.39996337890625, + "r": 132.3333282470703, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 171.39996337890625, + "r": 194.3333282470703, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7379", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 171.39996337890625, + "r": 254.3333282470703, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-4.041", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 172.06663513183594, + "r": 316.3333435058594, + "b": 160.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "40.780", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.0, + "t": 171.06663513183594, + "r": 371.3333435058594, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 172.06663513183594, + "r": 427.6666564941406, + "b": 160.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.325", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 172.06663513183594, + "r": 479.6666564941406, + "b": 160.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.755", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 24, + "num_cols": 7, + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 166.3333282470703, + "t": 622.7332763671875, + "r": 189.0, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "TF-", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 226.3333282470703, + "t": 622.7332763671875, + "r": 252.3333282470703, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "STF", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 291.6666564941406, + "t": 622.066650390625, + "r": 303.6666564941406, + "b": 607.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 348.3333435058594, + "t": 622.066650390625, + "r": 360.3333435058594, + "b": 607.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 401.6666564941406, + "t": 621.3999633789062, + "r": 414.3333435058594, + "b": 606.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 460.0, + "t": 618.3999633789062, + "r": 470.6666564941406, + "b": 607.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "@1", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.33333587646484, + "t": 605.066650390625, + "r": 137.3333282470703, + "b": 588.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 162.3333282470703, + "t": 604.066650390625, + "r": 193.6666717529297, + "b": 590.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 233.6666717529297, + "t": 604.066650390625, + "r": 245.6666717529297, + "b": 591.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.4683532714844, + "t": 602.9560546875, + "r": 311.8649597167969, + "b": 592.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.4267578125, + "t": 602.2704467773438, + "r": 367.9065856933594, + "b": 592.86279296875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.80169677734375, + "t": 602.2893676757812, + "r": 421.8649597167969, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.80169677734375, + "t": 602.2893676757812, + "r": 479.8649597167969, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 582.3999633789062, + "r": 132.0, + "b": 571.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 582.7332763671875, + "r": 195.0, + "b": 570.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7696", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 582.7332763671875, + "r": 252.3333282470703, + "b": 570.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.076", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 582.7332763671875, + "r": 315.0, + "b": 570.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.215", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 582.7332763671875, + "r": 369.6666564941406, + "b": 570.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.385", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 582.066650390625, + "r": 427.6666564941406, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.690", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 582.066650390625, + "r": 483.6666564941406, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 563.3999633789062, + "r": 132.3333282470703, + "b": 551.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 563.7332763671875, + "r": 194.3333282470703, + "b": 551.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7691", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.6666717529297, + "t": 562.3999633789062, + "r": 252.0, + "b": 551.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 562.7332763671875, + "r": 315.0, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.155", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 562.7332763671875, + "r": 369.6666564941406, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 562.7332763671875, + "r": 427.6666564941406, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "~0.270", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 561.7332763671875, + "r": 483.3333435058594, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 543.066650390625, + "r": 132.0, + "b": 532.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 543.3999633789062, + "r": 194.6666717529297, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7693", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 543.3999633789062, + "r": 252.3333282470703, + "b": 531.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.032", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 543.3999633789062, + "r": 315.0, + "b": 531.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.0, + "t": 542.3999633789062, + "r": 369.3333435058594, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.375", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 542.7332763671875, + "r": 427.0, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.195", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 542.7332763671875, + "r": 481.0, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 524.066650390625, + "r": 132.3333282470703, + "b": 512.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 524.3999633789062, + "r": 195.0, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7696", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 524.066650390625, + "r": 252.3333282470703, + "b": 512.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.076", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 524.066650390625, + "r": 315.0, + "b": 512.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.855", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.0, + "t": 523.066650390625, + "r": 369.3333435058594, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 523.3999633789062, + "r": 427.6666564941406, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 523.3999633789062, + "r": 481.6666564941406, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 504.7333068847656, + "r": 132.3333282470703, + "b": 492.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 503.7333068847656, + "r": 194.0, + "b": 493.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7691", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 504.0666198730469, + "r": 252.3333282470703, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 503.7333068847656, + "r": 314.6666564941406, + "b": 493.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.545", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 504.0666198730469, + "r": 369.6666564941406, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.215", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.3333435058594, + "t": 503.0666198730469, + "r": 427.3333435058594, + "b": 492.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.350", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 504.0666198730469, + "r": 481.0, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 484.39996337890625, + "r": 132.0, + "b": 473.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 484.7333068847656, + "r": 195.0, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7690", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 484.7333068847656, + "r": 252.3333282470703, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 484.7333068847656, + "r": 313.0, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.0, + "t": 483.7333068847656, + "r": 369.3333435058594, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 483.7333068847656, + "r": 424.6666564941406, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 483.7333068847656, + "r": 480.6666564941406, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 465.0666198730469, + "r": 132.0, + "b": 454.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 465.0666198730469, + "r": 194.0, + "b": 454.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7691", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 465.39996337890625, + "r": 252.3333282470703, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.006", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 465.39996337890625, + "r": 313.0, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.850", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 465.39996337890625, + "r": 371.6666564941406, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.275", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 465.39996337890625, + "r": 427.6666564941406, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.3333435058594, + "t": 464.39996337890625, + "r": 483.3333435058594, + "b": 453.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 446.0666198730469, + "r": 132.3333282470703, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 446.0666198730469, + "r": 195.0, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7688", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 445.0666198730469, + "r": 254.0, + "b": 434.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.033", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.3333435058594, + "t": 445.0666198730469, + "r": 312.6666564941406, + "b": 434.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "2.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 445.0666198730469, + "r": 371.3333435058594, + "b": 434.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.685", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 445.39996337890625, + "r": 425.6666564941406, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.225", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 445.39996337890625, + "r": 483.6666564941406, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.050", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 426.7333068847656, + "r": 132.3333282470703, + "b": 414.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 426.7333068847656, + "r": 195.0, + "b": 414.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7688", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 425.7333068847656, + "r": 254.0, + "b": 415.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.026", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 426.7333068847656, + "r": 313.0, + "b": 414.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3.665", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 426.0666198730469, + "r": 371.6666564941406, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.180", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 426.0666198730469, + "r": 425.0, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.230", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 426.0666198730469, + "r": 483.6666564941406, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.085", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 406.7333068847656, + "r": 132.3333282470703, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 407.0666198730469, + "r": 194.3333282470703, + "b": 395.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7683", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 406.7333068847656, + "r": 254.3333282470703, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.092", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 406.7333068847656, + "r": 313.0, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "5.840", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 406.7333068847656, + "r": 371.6666564941406, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.730", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 405.7333068847656, + "r": 424.6666564941406, + "b": 395.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.260", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 406.0666198730469, + "r": 483.6666564941406, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.125", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 387.39996337890625, + "r": 132.3333282470703, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 387.39996337890625, + "r": 194.3333282470703, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7678", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 386.7333068847656, + "r": 254.3333282470703, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.159", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 387.39996337890625, + "r": 313.0, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "8.760", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 386.7333068847656, + "r": 371.6666564941406, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.565", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 386.7333068847656, + "r": 425.0, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.360", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 386.7333068847656, + "r": 483.6666564941406, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.170", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 367.39996337890625, + "r": 132.3333282470703, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 367.39996337890625, + "r": 194.3333282470703, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7669", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 367.39996337890625, + "r": 254.3333282470703, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.280", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 367.7333068847656, + "r": 316.3333435058594, + "b": 355.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "12.380", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 366.39996337890625, + "r": 371.3333435058594, + "b": 355.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "3.545", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 367.39996337890625, + "r": 425.0, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.295", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 367.39996337890625, + "r": 483.6666564941406, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.240", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 347.0666198730469, + "r": 132.0, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 347.0666198730469, + "r": 194.6666717529297, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7664", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 347.0666198730469, + "r": 254.6666717529297, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.344", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 347.0666198730469, + "r": 316.0, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "16.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 347.0666198730469, + "r": 371.3333435058594, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.580", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 347.0666198730469, + "r": 424.6666564941406, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.730", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.3333435058594, + "t": 347.0666198730469, + "r": 483.3333435058594, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.320", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 327.7333068847656, + "r": 132.0, + "b": 317.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 328.0666198730469, + "r": 194.0, + "b": 317.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7649", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 328.0666198730469, + "r": 254.3333282470703, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.539", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 328.0666198730469, + "r": 316.3333435058594, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "21.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 328.0666198730469, + "r": 371.6666564941406, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-5.615", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 328.0666198730469, + "r": 425.0, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.650", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.3333435058594, + "t": 327.7333068847656, + "r": 483.3333435058594, + "b": 317.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.380", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 308.39996337890625, + "r": 132.0, + "b": 297.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.0, + "t": 310.0666198730469, + "r": 193.6666717529297, + "b": 296.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7631", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 309.39996337890625, + "r": 254.3333282470703, + "b": 297.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.769", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 308.39996337890625, + "r": 316.0, + "b": 297.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "25.520", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 308.39996337890625, + "r": 371.3333435058594, + "b": 297.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-6.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 308.39996337890625, + "r": 425.3333435058594, + "b": 297.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.595", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.3333435058594, + "t": 308.39996337890625, + "r": 483.3333435058594, + "b": 297.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.415", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 289.39996337890625, + "r": 132.3333282470703, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 289.39996337890625, + "r": 194.3333282470703, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7607", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 289.39996337890625, + "r": 254.3333282470703, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.087", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 289.39996337890625, + "r": 316.3333435058594, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "29.745", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 290.0666198730469, + "r": 371.6666564941406, + "b": 276.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.275", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 289.39996337890625, + "r": 425.6666564941406, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.675", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 289.39996337890625, + "r": 483.6666564941406, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.415", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 269.39996337890625, + "r": 132.3333282470703, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 269.7333068847656, + "r": 194.3333282470703, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7578", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 269.39996337890625, + "r": 255.0, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.465", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 269.39996337890625, + "r": 316.3333435058594, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "33.640", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 269.39996337890625, + "r": 371.6666564941406, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "7.720", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 269.39996337890625, + "r": 425.6666564941406, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.395", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.3333435058594, + "t": 269.0666198730469, + "r": 483.3333435058594, + "b": 258.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.405", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 249.06663513183594, + "r": 132.0, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 250.06663513183594, + "r": 194.3333282470703, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7545", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 249.06663513183594, + "r": 254.6666717529297, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.884", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 250.06663513183594, + "r": 316.3333435058594, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "37.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 250.06663513183594, + "r": 371.6666564941406, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.930", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 250.06663513183594, + "r": 425.6666564941406, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.190", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 250.06663513183594, + "r": 483.6666564941406, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.365", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 230.06663513183594, + "r": 132.3333282470703, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 230.06663513183594, + "r": 195.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7514", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 230.06663513183594, + "r": 254.3333282470703, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.293", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 231.39996337890625, + "r": 316.3333435058594, + "b": 217.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "39.760", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 230.06663513183594, + "r": 371.6666564941406, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.915", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.6666564941406, + "t": 231.39996337890625, + "r": 425.6666564941406, + "b": 217.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 230.73329162597656, + "r": 483.6666564941406, + "b": 218.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.275", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 210.73329162597656, + "r": 132.3333282470703, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 210.73329162597656, + "r": 194.3333282470703, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7473", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 210.73329162597656, + "r": 255.0, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~2.824", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 210.73329162597656, + "r": 316.3333435058594, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "41.435", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.0, + "t": 210.39996337890625, + "r": 371.3333435058594, + "b": 199.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.745", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 210.73329162597656, + "r": 427.6666564941406, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.3333435058594, + "t": 210.39996337890625, + "r": 483.3333435058594, + "b": 199.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.105", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 190.39996337890625, + "r": 132.0, + "b": 179.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 191.39996337890625, + "r": 194.3333282470703, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7430", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 191.39996337890625, + "r": 254.3333282470703, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.379", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 191.39996337890625, + "r": 316.3333435058594, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "41.790", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 191.39996337890625, + "r": 371.6666564941406, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.525", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 191.39996337890625, + "r": 427.6666564941406, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.250", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 191.06663513183594, + "r": 481.3333435058594, + "b": 180.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.240", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 171.39996337890625, + "r": 132.3333282470703, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 171.39996337890625, + "r": 194.3333282470703, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7379", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 171.39996337890625, + "r": 254.3333282470703, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-4.041", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 172.06663513183594, + "r": 316.3333435058594, + "b": 160.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "40.780", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.0, + "t": 171.06663513183594, + "r": 371.3333435058594, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 172.06663513183594, + "r": 427.6666564941406, + "b": 160.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.325", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 172.06663513183594, + "r": 479.6666564941406, + "b": 160.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.755", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/3", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 89.19095611572266, + "t": 629.54638671875, + "r": 495.9927062988281, + "b": 136.14739990234375, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/29" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "bbox": { + "l": 115.66666412353516, + "t": 621.3999633789062, + "r": 120.33333587646484, + "b": 612.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "I", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 165.0, + "t": 623.3999633789062, + "r": 187.6666717529297, + "b": 611.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "TF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 225.0, + "t": 624.066650390625, + "r": 251.0, + "b": 611.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "8TF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 290.6666564941406, + "t": 623.7332763671875, + "r": 301.3333435058594, + "b": 609.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 343.35980224609375, + "t": 619.168212890625, + "r": 361.3068542480469, + "b": 613.6317138671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "&", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 400.3333435058594, + "t": 624.7332763671875, + "r": 413.0, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 457.6666564941406, + "t": 622.7332763671875, + "r": 470.3333435058594, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "01", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.33333587646484, + "t": 605.7332763671875, + "r": 136.0, + "b": 589.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.0, + "t": 605.3999633789062, + "r": 192.3333282470703, + "b": 590.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.6666717529297, + "t": 605.3999633789062, + "r": 244.3333282470703, + "b": 592.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.4683532714844, + "t": 604.9560546875, + "r": 309.8649597167969, + "b": 594.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.737060546875, + "t": 604.9258422851562, + "r": 366.92962646484375, + "b": 595.8740844726562, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 605.6227416992188, + "r": 426.3333435058594, + "b": 573.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.165 10 -4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.0, + "t": 606.2893676757812, + "r": 479.3333435058594, + "b": 574.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.66666412353516, + "t": 583.3999633789062, + "r": 131.6666717529297, + "b": 571.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 584.3999633789062, + "r": 193.0, + "b": 572.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7721", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.0, + "t": 584.066650390625, + "r": 251.0, + "b": 572.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 584.7332763671875, + "r": 313.6666564941406, + "b": 572.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 584.7332763671875, + "r": 368.3333435058594, + "b": 572.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.130", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.66666412353516, + "t": 563.3999633789062, + "r": 131.6666717529297, + "b": 551.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 564.066650390625, + "r": 194.3333282470703, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7720", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 564.066650390625, + "r": 253.0, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.011", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 564.7332763671875, + "r": 314.3333435058594, + "b": 552.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~0.350", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 565.3999633789062, + "r": 369.0, + "b": 553.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.210", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 565.066650390625, + "r": 426.6666564941406, + "b": 554.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "~0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 566.066650390625, + "r": 482.3333435058594, + "b": 554.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.66666412353516, + "t": 544.066650390625, + "r": 132.3333282470703, + "b": 532.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 544.7332763671875, + "r": 194.3333282470703, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7722", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 544.7332763671875, + "r": 251.6666717529297, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.018", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 545.3999633789062, + "r": 314.3333435058594, + "b": 533.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.315", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.6666564941406, + "t": 546.3999633789062, + "r": 369.0, + "b": 533.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.165", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 546.066650390625, + "r": 427.0, + "b": 534.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.225", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 546.7332763671875, + "r": 482.3333435058594, + "b": 534.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.66666412353516, + "t": 524.7332763671875, + "r": 132.3333282470703, + "b": 512.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 525.3999633789062, + "r": 194.3333282470703, + "b": 513.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7722", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 525.3999633789062, + "r": 251.6666717529297, + "b": 513.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.013", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 526.066650390625, + "r": 314.3333435058594, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.270", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.6666564941406, + "t": 527.066650390625, + "r": 369.0, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 526.7332763671875, + "r": 427.0, + "b": 514.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.140", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 527.3999633789062, + "r": 482.3333435058594, + "b": 515.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 504.39996337890625, + "r": 132.0, + "b": 493.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 505.39996337890625, + "r": 194.3333282470703, + "b": 493.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7722", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.0, + "t": 505.0666198730469, + "r": 251.3333282470703, + "b": 494.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.006", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 506.0666198730469, + "r": 314.3333435058594, + "b": 494.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.185", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.0, + "t": 506.7333068847656, + "r": 369.6666564941406, + "b": 494.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 507.39996337890625, + "r": 427.0, + "b": 495.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.150", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 508.0666198730469, + "r": 483.0, + "b": 496.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 485.0666198730469, + "r": 132.0, + "b": 474.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 486.0666198730469, + "r": 193.6666717529297, + "b": 474.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7721", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.0, + "t": 485.7333068847656, + "r": 251.3333282470703, + "b": 475.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.3333435058594, + "t": 486.7333068847656, + "r": 312.3333435058594, + "b": 474.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.0, + "t": 487.39996337890625, + "r": 369.0, + "b": 475.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 488.0666198730469, + "r": 425.0, + "b": 476.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.3333435058594, + "t": 488.7333068847656, + "r": 481.0, + "b": 476.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.0, + "t": 466.7333068847656, + "r": 132.3333282470703, + "b": 454.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 466.7333068847656, + "r": 194.3333282470703, + "b": 454.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7720", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 467.7333068847656, + "r": 254.3333282470703, + "b": 454.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.017", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.0, + "t": 468.0666198730469, + "r": 313.0, + "b": 455.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.380", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 468.0666198730469, + "r": 371.6666564941406, + "b": 456.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.130", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.3333435058594, + "t": 467.7333068847656, + "r": 427.3333435058594, + "b": 457.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 469.39996337890625, + "r": 483.0, + "b": 457.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 446.7333068847656, + "r": 133.0, + "b": 434.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 446.7333068847656, + "r": 195.0, + "b": 434.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7718", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 447.39996337890625, + "r": 254.3333282470703, + "b": 435.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 447.39996337890625, + "r": 313.0, + "b": 435.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "1.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 448.0666198730469, + "r": 371.6666564941406, + "b": 436.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.355", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 448.7333068847656, + "r": 427.6666564941406, + "b": 436.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 449.39996337890625, + "r": 483.0, + "b": 437.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.0, + "t": 426.7333068847656, + "r": 133.0, + "b": 414.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 427.39996337890625, + "r": 195.0, + "b": 415.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7715", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 428.0666198730469, + "r": 254.3333282470703, + "b": 416.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.079", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 428.0666198730469, + "r": 313.0, + "b": 416.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "2.245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 428.7333068847656, + "r": 371.6666564941406, + "b": 416.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.725", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 429.39996337890625, + "r": 425.6666564941406, + "b": 417.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 430.0666198730469, + "r": 483.6666564941406, + "b": 418.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.33333587646484, + "t": 406.39996337890625, + "r": 132.6666717529297, + "b": 395.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 407.39996337890625, + "r": 195.0, + "b": 395.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7713", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 408.0666198730469, + "r": 255.0, + "b": 396.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.3333435058594, + "t": 407.7333068847656, + "r": 312.6666564941406, + "b": 397.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3.925", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 409.7333068847656, + "r": 371.6666564941406, + "b": 396.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 409.39996337890625, + "r": 425.6666564941406, + "b": 397.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.220", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.3333435058594, + "t": 409.7333068847656, + "r": 483.3333435058594, + "b": 399.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.0, + "t": 387.39996337890625, + "r": 133.0, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 388.7333068847656, + "r": 195.6666717529297, + "b": 376.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7708", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.0, + "t": 388.7333068847656, + "r": 255.0, + "b": 376.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.174", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.0, + "t": 388.39996337890625, + "r": 313.3333435058594, + "b": 377.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "6.230", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 389.39996337890625, + "r": 372.3333435058594, + "b": 377.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.900", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 390.0666198730469, + "r": 425.6666564941406, + "b": 378.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 390.7333068847656, + "r": 483.6666564941406, + "b": 378.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.0, + "t": 368.0666198730469, + "r": 133.6666717529297, + "b": 356.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.6666717529297, + "t": 368.7333068847656, + "r": 195.6666717529297, + "b": 356.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7699", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.0, + "t": 369.39996337890625, + "r": 255.0, + "b": 357.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.289", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 369.39996337890625, + "r": 313.6666564941406, + "b": 357.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "9.070", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 370.0666198730469, + "r": 372.3333435058594, + "b": 358.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.670", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 371.39996337890625, + "r": 426.3333435058594, + "b": 358.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.300", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 371.39996337890625, + "r": 483.6666564941406, + "b": 359.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.66666412353516, + "t": 348.0666198730469, + "r": 133.6666717529297, + "b": 336.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.6666717529297, + "t": 349.39996337890625, + "r": 195.0, + "b": 336.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7691", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.0, + "t": 349.39996337890625, + "r": 255.0, + "b": 337.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.390", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 349.7333068847656, + "r": 317.0, + "b": 337.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "12.230", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 350.7333068847656, + "r": 372.3333435058594, + "b": 338.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~3.490", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.3333435058594, + "t": 350.7333068847656, + "r": 426.3333435058594, + "b": 338.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.445", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.3333435058594, + "t": 352.39996337890625, + "r": 484.3333435058594, + "b": 339.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.66666412353516, + "t": 328.7333068847656, + "r": 133.6666717529297, + "b": 316.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.6666717529297, + "t": 329.39996337890625, + "r": 195.6666717529297, + "b": 317.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7676", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.0, + "t": 330.0666198730469, + "r": 255.6666717529297, + "b": 318.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.588", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 330.0666198730469, + "r": 317.0, + "b": 318.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "15.545", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 330.7333068847656, + "r": 373.0, + "b": 318.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.340", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.3333435058594, + "t": 331.39996337890625, + "r": 426.3333435058594, + "b": 319.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.675", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 332.0666198730469, + "r": 484.3333435058594, + "b": 320.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.66666412353516, + "t": 309.39996337890625, + "r": 133.6666717529297, + "b": 297.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.6666717529297, + "t": 310.39996337890625, + "r": 196.3333282470703, + "b": 298.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7660", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 311.0666198730469, + "r": 255.6666717529297, + "b": 298.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.789", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 311.0666198730469, + "r": 317.0, + "b": 299.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "19.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 311.39996337890625, + "r": 373.0, + "b": 299.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-5.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.3333435058594, + "t": 312.0666198730469, + "r": 427.0, + "b": 300.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.315", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 312.7333068847656, + "r": 484.3333435058594, + "b": 300.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.66666412353516, + "t": 289.39996337890625, + "r": 134.3333282470703, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 160.3333282470703, + "t": 290.0666198730469, + "r": 196.3333282470703, + "b": 278.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7636", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 290.7333068847656, + "r": 255.6666717529297, + "b": 278.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.103", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 291.39996337890625, + "r": 317.0, + "b": 279.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "22.635", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 292.0666198730469, + "r": 373.0, + "b": 280.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-5.515", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.0, + "t": 293.39996337890625, + "r": 427.0, + "b": 279.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.270", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.3333435058594, + "t": 293.39996337890625, + "r": 484.3333435058594, + "b": 281.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 104.33333587646484, + "t": 270.0666198730469, + "r": 134.3333282470703, + "b": 258.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.6666717529297, + "t": 271.0666198730469, + "r": 195.6666717529297, + "b": 259.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7611", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.0, + "t": 270.39996337890625, + "r": 255.3333282470703, + "b": 259.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.422", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 272.39996337890625, + "r": 317.6666564941406, + "b": 260.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "26.180", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.0, + "t": 272.7333068847656, + "r": 373.0, + "b": 260.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.680", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 397.3333435058594, + "t": 272.39996337890625, + "r": 426.6666564941406, + "b": 261.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.3333435058594, + "t": 274.0666198730469, + "r": 485.0, + "b": 262.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 104.33333587646484, + "t": 250.73329162597656, + "r": 134.3333282470703, + "b": 238.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 160.3333282470703, + "t": 251.39996337890625, + "r": 196.3333282470703, + "b": 239.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7580", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 252.06663513183594, + "r": 256.3333435058594, + "b": 240.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.826", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 252.06663513183594, + "r": 317.6666564941406, + "b": 240.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "29.350", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.3333435058594, + "t": 252.39996337890625, + "r": 373.3333435058594, + "b": 241.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.615", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 253.06663513183594, + "r": 428.6666564941406, + "b": 242.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.3333435058594, + "t": 254.73329162597656, + "r": 485.0, + "b": 242.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 104.66666412353516, + "t": 230.39996337890625, + "r": 134.0, + "b": 219.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 160.3333282470703, + "t": 231.39996337890625, + "r": 196.3333282470703, + "b": 219.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7543", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 232.06663513183594, + "r": 255.6666717529297, + "b": 220.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.301", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 232.73329162597656, + "r": 317.6666564941406, + "b": 220.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "31.900", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.0, + "t": 233.39996337890625, + "r": 373.6666564941406, + "b": 221.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.6666564941406, + "t": 234.73329162597656, + "r": 429.6666564941406, + "b": 221.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.435", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 234.73329162597656, + "r": 485.0, + "b": 222.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 104.0, + "t": 212.06663513183594, + "r": 135.0, + "b": 199.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 160.3333282470703, + "t": 212.06663513183594, + "r": 197.0, + "b": 200.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7502", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 212.73329162597656, + "r": 255.6666717529297, + "b": 200.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.841", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 213.39996337890625, + "r": 317.6666564941406, + "b": 201.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "33.680", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.0, + "t": 214.06663513183594, + "r": 373.6666564941406, + "b": 202.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-5.255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 214.73329162597656, + "r": 429.6666564941406, + "b": 202.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.625", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.0, + "t": 215.39996337890625, + "r": 483.0, + "b": 203.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 105.0, + "t": 192.06663513183594, + "r": 135.0, + "b": 180.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.0, + "t": 192.73329162597656, + "r": 197.0, + "b": 180.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7455", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 193.39996337890625, + "r": 255.6666717529297, + "b": 181.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.451", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.3333435058594, + "t": 194.06663513183594, + "r": 318.3333435058594, + "b": 182.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "34.935", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.0, + "t": 194.73329162597656, + "r": 373.6666564941406, + "b": 182.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-5.155", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 195.39996337890625, + "r": 429.6666564941406, + "b": 183.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.855", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.0, + "t": 196.06663513183594, + "r": 483.0, + "b": 184.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.160", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 105.0, + "t": 172.06663513183594, + "r": 135.0, + "b": 160.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.0, + "t": 172.73329162597656, + "r": 197.0, + "b": 160.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7403", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.6666717529297, + "t": 172.39996337890625, + "r": 256.0, + "b": 161.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~4.113", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.3333435058594, + "t": 174.06663513183594, + "r": 318.3333435058594, + "b": 162.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "35.700", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 174.73329162597656, + "r": 373.6666564941406, + "b": 162.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.880", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 175.39996337890625, + "r": 429.6666564941406, + "b": 163.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-1.160", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.0, + "t": 176.06663513183594, + "r": 483.0, + "b": 164.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.280", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 105.0, + "t": 152.06663513183594, + "r": 135.0, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.0, + "t": 152.73329162597656, + "r": 197.0, + "b": 140.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7349", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 153.39996337890625, + "r": 257.0, + "b": 141.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-4.813", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.3333435058594, + "t": 154.06663513183594, + "r": 318.3333435058594, + "b": 142.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "35.940", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 154.73329162597656, + "r": 374.3333435058594, + "b": 142.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~4.605", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 155.39996337890625, + "r": 430.3333435058594, + "b": 143.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-1.145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 157.06663513183594, + "r": 481.6666564941406, + "b": 143.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.395", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 25, + "num_cols": 7, + "grid": [ + [ + { + "bbox": { + "l": 115.66666412353516, + "t": 621.3999633789062, + "r": 120.33333587646484, + "b": 612.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "I", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 165.0, + "t": 623.3999633789062, + "r": 187.6666717529297, + "b": 611.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "TF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 225.0, + "t": 624.066650390625, + "r": 251.0, + "b": 611.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "8TF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 290.6666564941406, + "t": 623.7332763671875, + "r": 301.3333435058594, + "b": 609.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 343.35980224609375, + "t": 619.168212890625, + "r": 361.3068542480469, + "b": 613.6317138671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "&", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 400.3333435058594, + "t": 624.7332763671875, + "r": 413.0, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 457.6666564941406, + "t": 622.7332763671875, + "r": 470.3333435058594, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "01", + "column_header": true, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.33333587646484, + "t": 605.7332763671875, + "r": 136.0, + "b": 589.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.0, + "t": 605.3999633789062, + "r": 192.3333282470703, + "b": 590.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.6666717529297, + "t": 605.3999633789062, + "r": 244.3333282470703, + "b": 592.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.4683532714844, + "t": 604.9560546875, + "r": 309.8649597167969, + "b": 594.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.737060546875, + "t": 604.9258422851562, + "r": 366.92962646484375, + "b": 595.8740844726562, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 605.6227416992188, + "r": 426.3333435058594, + "b": 573.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.165 10 -4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.0, + "t": 606.2893676757812, + "r": 479.3333435058594, + "b": 574.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000 10-4", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.66666412353516, + "t": 583.3999633789062, + "r": 131.6666717529297, + "b": 571.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 584.3999633789062, + "r": 193.0, + "b": 572.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7721", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.0, + "t": 584.066650390625, + "r": 251.0, + "b": 572.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 584.7332763671875, + "r": 313.6666564941406, + "b": 572.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 584.7332763671875, + "r": 368.3333435058594, + "b": 572.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.130", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.66666412353516, + "t": 563.3999633789062, + "r": 131.6666717529297, + "b": 551.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 564.066650390625, + "r": 194.3333282470703, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7720", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 564.066650390625, + "r": 253.0, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.011", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 564.7332763671875, + "r": 314.3333435058594, + "b": 552.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~0.350", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 565.3999633789062, + "r": 369.0, + "b": 553.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.210", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 565.066650390625, + "r": 426.6666564941406, + "b": 554.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "~0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 566.066650390625, + "r": 482.3333435058594, + "b": 554.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.66666412353516, + "t": 544.066650390625, + "r": 132.3333282470703, + "b": 532.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 544.7332763671875, + "r": 194.3333282470703, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7722", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 544.7332763671875, + "r": 251.6666717529297, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.018", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 545.3999633789062, + "r": 314.3333435058594, + "b": 533.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.315", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.6666564941406, + "t": 546.3999633789062, + "r": 369.0, + "b": 533.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.165", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 546.066650390625, + "r": 427.0, + "b": 534.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.225", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 546.7332763671875, + "r": 482.3333435058594, + "b": 534.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.66666412353516, + "t": 524.7332763671875, + "r": 132.3333282470703, + "b": 512.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 525.3999633789062, + "r": 194.3333282470703, + "b": 513.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7722", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 525.3999633789062, + "r": 251.6666717529297, + "b": 513.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.013", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 526.066650390625, + "r": 314.3333435058594, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.270", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.6666564941406, + "t": 527.066650390625, + "r": 369.0, + "b": 514.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 526.7332763671875, + "r": 427.0, + "b": 514.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.140", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 527.3999633789062, + "r": 482.3333435058594, + "b": 515.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 504.39996337890625, + "r": 132.0, + "b": 493.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 505.39996337890625, + "r": 194.3333282470703, + "b": 493.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7722", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.0, + "t": 505.0666198730469, + "r": 251.3333282470703, + "b": 494.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.006", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 506.0666198730469, + "r": 314.3333435058594, + "b": 494.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.185", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.0, + "t": 506.7333068847656, + "r": 369.6666564941406, + "b": 494.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 507.39996337890625, + "r": 427.0, + "b": 495.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.150", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 508.0666198730469, + "r": 483.0, + "b": 496.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 485.0666198730469, + "r": 132.0, + "b": 474.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 486.0666198730469, + "r": 193.6666717529297, + "b": 474.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7721", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.0, + "t": 485.7333068847656, + "r": 251.3333282470703, + "b": 475.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.3333435058594, + "t": 486.7333068847656, + "r": 312.3333435058594, + "b": 474.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.0, + "t": 487.39996337890625, + "r": 369.0, + "b": 475.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 488.0666198730469, + "r": 425.0, + "b": 476.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.3333435058594, + "t": 488.7333068847656, + "r": 481.0, + "b": 476.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.0, + "t": 466.7333068847656, + "r": 132.3333282470703, + "b": 454.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 466.7333068847656, + "r": 194.3333282470703, + "b": 454.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7720", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 467.7333068847656, + "r": 254.3333282470703, + "b": 454.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.017", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.0, + "t": 468.0666198730469, + "r": 313.0, + "b": 455.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.380", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 468.0666198730469, + "r": 371.6666564941406, + "b": 456.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.130", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.3333435058594, + "t": 467.7333068847656, + "r": 427.3333435058594, + "b": 457.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 469.39996337890625, + "r": 483.0, + "b": 457.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 446.7333068847656, + "r": 133.0, + "b": 434.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 446.7333068847656, + "r": 195.0, + "b": 434.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7718", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 447.39996337890625, + "r": 254.3333282470703, + "b": 435.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 447.39996337890625, + "r": 313.0, + "b": 435.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "1.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 448.0666198730469, + "r": 371.6666564941406, + "b": 436.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.355", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 448.7333068847656, + "r": 427.6666564941406, + "b": 436.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 449.39996337890625, + "r": 483.0, + "b": 437.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.0, + "t": 426.7333068847656, + "r": 133.0, + "b": 414.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 427.39996337890625, + "r": 195.0, + "b": 415.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7715", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 428.0666198730469, + "r": 254.3333282470703, + "b": 416.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.079", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 428.0666198730469, + "r": 313.0, + "b": 416.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "2.245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 428.7333068847656, + "r": 371.6666564941406, + "b": 416.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.725", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 429.39996337890625, + "r": 425.6666564941406, + "b": 417.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 430.0666198730469, + "r": 483.6666564941406, + "b": 418.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.33333587646484, + "t": 406.39996337890625, + "r": 132.6666717529297, + "b": 395.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 407.39996337890625, + "r": 195.0, + "b": 395.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7713", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 408.0666198730469, + "r": 255.0, + "b": 396.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.3333435058594, + "t": 407.7333068847656, + "r": 312.6666564941406, + "b": 397.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3.925", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 409.7333068847656, + "r": 371.6666564941406, + "b": 396.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 409.39996337890625, + "r": 425.6666564941406, + "b": 397.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.220", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.3333435058594, + "t": 409.7333068847656, + "r": 483.3333435058594, + "b": 399.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.0, + "t": 387.39996337890625, + "r": 133.0, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 388.7333068847656, + "r": 195.6666717529297, + "b": 376.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7708", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.0, + "t": 388.7333068847656, + "r": 255.0, + "b": 376.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.174", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.0, + "t": 388.39996337890625, + "r": 313.3333435058594, + "b": 377.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "6.230", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 389.39996337890625, + "r": 372.3333435058594, + "b": 377.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.900", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 390.0666198730469, + "r": 425.6666564941406, + "b": 378.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 390.7333068847656, + "r": 483.6666564941406, + "b": 378.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.0, + "t": 368.0666198730469, + "r": 133.6666717529297, + "b": 356.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.6666717529297, + "t": 368.7333068847656, + "r": 195.6666717529297, + "b": 356.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7699", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.0, + "t": 369.39996337890625, + "r": 255.0, + "b": 357.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.289", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 369.39996337890625, + "r": 313.6666564941406, + "b": 357.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "9.070", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.6666564941406, + "t": 370.0666198730469, + "r": 372.3333435058594, + "b": 358.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.670", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 371.39996337890625, + "r": 426.3333435058594, + "b": 358.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.300", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 371.39996337890625, + "r": 483.6666564941406, + "b": 359.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.66666412353516, + "t": 348.0666198730469, + "r": 133.6666717529297, + "b": 336.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.6666717529297, + "t": 349.39996337890625, + "r": 195.0, + "b": 336.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7691", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.0, + "t": 349.39996337890625, + "r": 255.0, + "b": 337.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.390", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 349.7333068847656, + "r": 317.0, + "b": 337.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "12.230", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 350.7333068847656, + "r": 372.3333435058594, + "b": 338.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~3.490", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.3333435058594, + "t": 350.7333068847656, + "r": 426.3333435058594, + "b": 338.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.445", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.3333435058594, + "t": 352.39996337890625, + "r": 484.3333435058594, + "b": 339.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.035", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.66666412353516, + "t": 328.7333068847656, + "r": 133.6666717529297, + "b": 316.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.6666717529297, + "t": 329.39996337890625, + "r": 195.6666717529297, + "b": 317.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7676", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.0, + "t": 330.0666198730469, + "r": 255.6666717529297, + "b": 318.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.588", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 330.0666198730469, + "r": 317.0, + "b": 318.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "15.545", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 330.7333068847656, + "r": 373.0, + "b": 318.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.340", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.3333435058594, + "t": 331.39996337890625, + "r": 426.3333435058594, + "b": 319.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.675", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 332.0666198730469, + "r": 484.3333435058594, + "b": 320.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.66666412353516, + "t": 309.39996337890625, + "r": 133.6666717529297, + "b": 297.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.6666717529297, + "t": 310.39996337890625, + "r": 196.3333282470703, + "b": 298.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7660", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 311.0666198730469, + "r": 255.6666717529297, + "b": 298.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.789", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 311.0666198730469, + "r": 317.0, + "b": 299.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "19.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 311.39996337890625, + "r": 373.0, + "b": 299.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-5.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.3333435058594, + "t": 312.0666198730469, + "r": 427.0, + "b": 300.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.315", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 312.7333068847656, + "r": 484.3333435058594, + "b": 300.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.060", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.66666412353516, + "t": 289.39996337890625, + "r": 134.3333282470703, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 160.3333282470703, + "t": 290.0666198730469, + "r": 196.3333282470703, + "b": 278.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7636", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 290.7333068847656, + "r": 255.6666717529297, + "b": 278.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.103", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 291.39996337890625, + "r": 317.0, + "b": 279.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "22.635", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 292.0666198730469, + "r": 373.0, + "b": 280.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-5.515", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.0, + "t": 293.39996337890625, + "r": 427.0, + "b": 279.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.270", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.3333435058594, + "t": 293.39996337890625, + "r": 484.3333435058594, + "b": 281.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 104.33333587646484, + "t": 270.0666198730469, + "r": 134.3333282470703, + "b": 258.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.6666717529297, + "t": 271.0666198730469, + "r": 195.6666717529297, + "b": 259.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7611", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.0, + "t": 270.39996337890625, + "r": 255.3333282470703, + "b": 259.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.422", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 272.39996337890625, + "r": 317.6666564941406, + "b": 260.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "26.180", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.0, + "t": 272.7333068847656, + "r": 373.0, + "b": 260.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.680", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 397.3333435058594, + "t": 272.39996337890625, + "r": 426.6666564941406, + "b": 261.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.3333435058594, + "t": 274.0666198730469, + "r": 485.0, + "b": 262.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.085", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 104.33333587646484, + "t": 250.73329162597656, + "r": 134.3333282470703, + "b": 238.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 160.3333282470703, + "t": 251.39996337890625, + "r": 196.3333282470703, + "b": 239.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7580", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 252.06663513183594, + "r": 256.3333435058594, + "b": 240.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.826", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 252.06663513183594, + "r": 317.6666564941406, + "b": 240.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "29.350", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.3333435058594, + "t": 252.39996337890625, + "r": 373.3333435058594, + "b": 241.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.615", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.3333435058594, + "t": 253.06663513183594, + "r": 428.6666564941406, + "b": 242.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.3333435058594, + "t": 254.73329162597656, + "r": 485.0, + "b": 242.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 104.66666412353516, + "t": 230.39996337890625, + "r": 134.0, + "b": 219.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 160.3333282470703, + "t": 231.39996337890625, + "r": 196.3333282470703, + "b": 219.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7543", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 232.06663513183594, + "r": 255.6666717529297, + "b": 220.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.301", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 232.73329162597656, + "r": 317.6666564941406, + "b": 220.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "31.900", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.0, + "t": 233.39996337890625, + "r": 373.6666564941406, + "b": 221.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.6666564941406, + "t": 234.73329162597656, + "r": 429.6666564941406, + "b": 221.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.435", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 234.73329162597656, + "r": 485.0, + "b": 222.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 104.0, + "t": 212.06663513183594, + "r": 135.0, + "b": 199.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 160.3333282470703, + "t": 212.06663513183594, + "r": 197.0, + "b": 200.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7502", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 212.73329162597656, + "r": 255.6666717529297, + "b": 200.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.841", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 213.39996337890625, + "r": 317.6666564941406, + "b": 201.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "33.680", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.0, + "t": 214.06663513183594, + "r": 373.6666564941406, + "b": 202.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-5.255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 214.73329162597656, + "r": 429.6666564941406, + "b": 202.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.625", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.0, + "t": 215.39996337890625, + "r": 483.0, + "b": 203.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.060", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 105.0, + "t": 192.06663513183594, + "r": 135.0, + "b": 180.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.0, + "t": 192.73329162597656, + "r": 197.0, + "b": 180.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7455", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 193.39996337890625, + "r": 255.6666717529297, + "b": 181.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.451", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.3333435058594, + "t": 194.06663513183594, + "r": 318.3333435058594, + "b": 182.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "34.935", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.0, + "t": 194.73329162597656, + "r": 373.6666564941406, + "b": 182.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-5.155", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 195.39996337890625, + "r": 429.6666564941406, + "b": 183.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.855", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.0, + "t": 196.06663513183594, + "r": 483.0, + "b": 184.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.160", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 105.0, + "t": 172.06663513183594, + "r": 135.0, + "b": 160.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.0, + "t": 172.73329162597656, + "r": 197.0, + "b": 160.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7403", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.6666717529297, + "t": 172.39996337890625, + "r": 256.0, + "b": 161.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~4.113", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.3333435058594, + "t": 174.06663513183594, + "r": 318.3333435058594, + "b": 162.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "35.700", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 174.73329162597656, + "r": 373.6666564941406, + "b": 162.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.880", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 175.39996337890625, + "r": 429.6666564941406, + "b": 163.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-1.160", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.0, + "t": 176.06663513183594, + "r": 483.0, + "b": 164.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.280", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 105.0, + "t": 152.06663513183594, + "r": 135.0, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.0, + "t": 152.73329162597656, + "r": 197.0, + "b": 140.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7349", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 153.39996337890625, + "r": 257.0, + "b": 141.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-4.813", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.3333435058594, + "t": 154.06663513183594, + "r": 318.3333435058594, + "b": 142.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "35.940", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 154.73329162597656, + "r": 374.3333435058594, + "b": 142.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~4.605", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 155.39996337890625, + "r": 430.3333435058594, + "b": 143.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-1.145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 157.06663513183594, + "r": 481.6666564941406, + "b": 143.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.395", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/4", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 83.16436767578125, + "t": 639.6160888671875, + "r": 492.1228332519531, + "b": 106.8970947265625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/31" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.6666717529297, + "t": 634.7332763671875, + "r": 182.3333282470703, + "b": 622.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "IF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 634.7332763671875, + "r": 245.6666717529297, + "b": 622.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "STF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.3333435058594, + "t": 633.7332763671875, + "r": 296.0, + "b": 619.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 633.3999633789062, + "r": 352.3333435058594, + "b": 619.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.3333435058594, + "t": 633.3999633789062, + "r": 407.0, + "b": 618.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 454.6666564941406, + "t": 630.3999633789062, + "r": 466.0, + "b": 619.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "01", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 93.66666412353516, + "t": 617.7332763671875, + "r": 130.6666717529297, + "b": 600.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 616.7332763671875, + "r": 187.0, + "b": 602.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "TlkA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.0, + "t": 616.066650390625, + "r": 239.6666717529297, + "b": 602.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.737060546875, + "t": 614.2592163085938, + "r": 304.92962646484375, + "b": 605.2073974609375, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10 4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.1350402832031, + "t": 614.2893676757812, + "r": 361.19830322265625, + "b": 604.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 386.4683532714844, + "t": 614.2893676757812, + "r": 414.5316467285156, + "b": 604.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 614.2893676757812, + "r": 475.6666564941406, + "b": 581.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.055 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.66666412353516, + "t": 594.7332763671875, + "r": 125.66666412353516, + "b": 582.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 594.7332763671875, + "r": 187.6666717529297, + "b": 582.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 594.066650390625, + "r": 246.3333282470703, + "b": 582.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 594.066650390625, + "r": 308.3333435058594, + "b": 582.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 594.066650390625, + "r": 364.3333435058594, + "b": 582.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.6666564941406, + "t": 593.3999633789062, + "r": 420.3333435058594, + "b": 581.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.66666412353516, + "t": 575.3999633789062, + "r": 125.66666412353516, + "b": 563.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 575.066650390625, + "r": 187.6666717529297, + "b": 563.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 574.7332763671875, + "r": 245.6666717529297, + "b": 562.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 574.066650390625, + "r": 308.3333435058594, + "b": 562.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 574.066650390625, + "r": 364.3333435058594, + "b": 562.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.0, + "t": 573.066650390625, + "r": 417.3333435058594, + "b": 562.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 574.066650390625, + "r": 475.6666564941406, + "b": 561.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.66666412353516, + "t": 555.3999633789062, + "r": 125.66666412353516, + "b": 543.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 555.3999633789062, + "r": 187.6666717529297, + "b": 543.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7072", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 554.7332763671875, + "r": 245.6666717529297, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 554.7332763671875, + "r": 308.3333435058594, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 330.0, + "t": 553.7332763671875, + "r": 364.0, + "b": 543.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.0, + "t": 553.7332763671875, + "r": 417.3333435058594, + "b": 543.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.0, + "t": 553.7332763671875, + "r": 475.3333435058594, + "b": 543.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.66666412353516, + "t": 536.066650390625, + "r": 125.66666412353516, + "b": 524.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 536.3999633789062, + "r": 187.6666717529297, + "b": 524.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7072", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 535.3999633789062, + "r": 245.6666717529297, + "b": 523.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.019", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 275.6666564941406, + "t": 535.3999633789062, + "r": 306.3333435058594, + "b": 523.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.0, + "t": 534.3999633789062, + "r": 362.0, + "b": 523.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 386.0, + "t": 534.3999633789062, + "r": 419.3333435058594, + "b": 523.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.090", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 534.7332763671875, + "r": 475.6666564941406, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.66666412353516, + "t": 516.7332763671875, + "r": 125.66666412353516, + "b": 504.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 516.7332763671875, + "r": 187.6666717529297, + "b": 504.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7070", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 516.066650390625, + "r": 248.3333282470703, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 275.6666564941406, + "t": 516.066650390625, + "r": 306.3333435058594, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 515.3999633789062, + "r": 364.3333435058594, + "b": 503.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.0, + "t": 515.066650390625, + "r": 417.3333435058594, + "b": 504.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 515.3999633789062, + "r": 475.6666564941406, + "b": 503.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.66666412353516, + "t": 497.39996337890625, + "r": 125.66666412353516, + "b": 485.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 496.7333068847656, + "r": 187.0, + "b": 484.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 496.7333068847656, + "r": 245.6666717529297, + "b": 484.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.0, + "t": 495.7333068847656, + "r": 306.0, + "b": 485.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.0, + "t": 495.7333068847656, + "r": 362.0, + "b": 485.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.0, + "t": 496.0666198730469, + "r": 417.6666564941406, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 496.0666198730469, + "r": 475.6666564941406, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.66666412353516, + "t": 477.39996337890625, + "r": 125.66666412353516, + "b": 465.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 477.39996337890625, + "r": 187.0, + "b": 465.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 476.7333068847656, + "r": 245.0, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 476.7333068847656, + "r": 308.3333435058594, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 331.6666564941406, + "t": 476.7333068847656, + "r": 361.6666564941406, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.3333435058594, + "t": 475.7333068847656, + "r": 417.3333435058594, + "b": 465.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 476.7333068847656, + "r": 478.3333435058594, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 96.0, + "t": 457.0666198730469, + "r": 125.33333587646484, + "b": 446.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 458.0666198730469, + "r": 187.6666717529297, + "b": 445.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 457.39996337890625, + "r": 247.6666717529297, + "b": 445.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 457.39996337890625, + "r": 308.3333435058594, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 331.6666564941406, + "t": 457.39996337890625, + "r": 361.6666564941406, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.070", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 456.7333068847656, + "r": 419.6666564941406, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 456.7333068847656, + "r": 478.3333435058594, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.66666412353516, + "t": 438.0666198730469, + "r": 125.66666412353516, + "b": 426.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 438.0666198730469, + "r": 187.6666717529297, + "b": 426.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 437.39996337890625, + "r": 247.6666717529297, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.028", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 437.39996337890625, + "r": 308.3333435058594, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 437.39996337890625, + "r": 364.3333435058594, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 437.39996337890625, + "r": 419.6666564941406, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 437.39996337890625, + "r": 477.6666564941406, + "b": 424.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.66666412353516, + "t": 418.7333068847656, + "r": 125.66666412353516, + "b": 406.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 418.0666198730469, + "r": 187.6666717529297, + "b": 406.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7068", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 417.39996337890625, + "r": 247.6666717529297, + "b": 405.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.042", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 417.39996337890625, + "r": 308.3333435058594, + "b": 405.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.175", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 417.39996337890625, + "r": 364.3333435058594, + "b": 405.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 417.39996337890625, + "r": 417.6666564941406, + "b": 405.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 417.39996337890625, + "r": 478.3333435058594, + "b": 405.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 96.0, + "t": 398.39996337890625, + "r": 125.33333587646484, + "b": 387.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 150.6666717529297, + "t": 400.0666198730469, + "r": 187.6666717529297, + "b": 386.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7066", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 398.7333068847656, + "r": 247.6666717529297, + "b": 386.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.058", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 398.0666198730469, + "r": 308.3333435058594, + "b": 386.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~0.410", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 398.0666198730469, + "r": 364.3333435058594, + "b": 386.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 398.0666198730469, + "r": 419.6666564941406, + "b": 386.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 398.0666198730469, + "r": 477.6666564941406, + "b": 386.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 96.0, + "t": 379.0666198730469, + "r": 125.33333587646484, + "b": 368.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 379.7333068847656, + "r": 187.6666717529297, + "b": 367.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 378.7333068847656, + "r": 247.0, + "b": 366.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.11l", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 378.7333068847656, + "r": 308.3333435058594, + "b": 366.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.875", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 378.7333068847656, + "r": 364.3333435058594, + "b": 366.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.140", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 378.7333068847656, + "r": 420.3333435058594, + "b": 366.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 378.7333068847656, + "r": 478.3333435058594, + "b": 366.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 96.0, + "t": 359.0666198730469, + "r": 125.33333587646484, + "b": 348.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 150.6666717529297, + "t": 360.7333068847656, + "r": 187.0, + "b": 347.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7057", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 359.39996337890625, + "r": 247.6666717529297, + "b": 347.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.187", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 359.39996337890625, + "r": 308.3333435058594, + "b": 347.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.570", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 330.0, + "t": 358.39996337890625, + "r": 364.0, + "b": 347.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.240", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.3333435058594, + "t": 358.39996337890625, + "r": 419.3333435058594, + "b": 347.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.090", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.3333435058594, + "t": 358.39996337890625, + "r": 477.3333435058594, + "b": 347.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.0, + "t": 340.0666198730469, + "r": 125.66666412353516, + "b": 328.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 340.39996337890625, + "r": 187.0, + "b": 328.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7049", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 339.39996337890625, + "r": 247.0, + "b": 327.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.311", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 339.39996337890625, + "r": 308.3333435058594, + "b": 327.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.360", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 339.39996337890625, + "r": 364.3333435058594, + "b": 327.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 339.39996337890625, + "r": 419.6666564941406, + "b": 327.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 339.39996337890625, + "r": 477.6666564941406, + "b": 327.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.66666412353516, + "t": 320.7333068847656, + "r": 125.66666412353516, + "b": 308.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 150.6666717529297, + "t": 321.39996337890625, + "r": 187.0, + "b": 288.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7039 0.7029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 320.0666198730469, + "r": 247.6666717529297, + "b": 288.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.442 -0.582", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 320.0666198730469, + "r": 308.3333435058594, + "b": 308.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-3.205", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 320.0666198730469, + "r": 364.3333435058594, + "b": 288.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~0.670 -0.895", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 320.0666198730469, + "r": 419.6666564941406, + "b": 288.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.085 -0.210", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 320.0666198730469, + "r": 478.3333435058594, + "b": 288.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.075 -0.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.66666412353516, + "t": 300.7333068847656, + "r": 125.66666412353516, + "b": 288.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 300.0666198730469, + "r": 308.3333435058594, + "b": 288.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~4.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 96.0, + "t": 280.39996337890625, + "r": 125.33333587646484, + "b": 269.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 281.39996337890625, + "r": 187.6666717529297, + "b": 269.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 280.7333068847656, + "r": 247.6666717529297, + "b": 268.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.798", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 280.7333068847656, + "r": 308.3333435058594, + "b": 268.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-4.930", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 280.7333068847656, + "r": 363.6666564941406, + "b": 268.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 280.7333068847656, + "r": 419.6666564941406, + "b": 268.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 280.7333068847656, + "r": 477.6666564941406, + "b": 268.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.140", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.66666412353516, + "t": 261.39996337890625, + "r": 125.66666412353516, + "b": 249.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 261.39996337890625, + "r": 187.6666717529297, + "b": 249.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6994", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 261.39996337890625, + "r": 247.0, + "b": 249.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.081", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 261.39996337890625, + "r": 308.3333435058594, + "b": 249.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~5.715", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 261.39996337890625, + "r": 364.3333435058594, + "b": 249.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.705", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 261.39996337890625, + "r": 419.6666564941406, + "b": 249.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 261.39996337890625, + "r": 478.3333435058594, + "b": 249.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.215", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.66666412353516, + "t": 242.06663513183594, + "r": 125.0, + "b": 230.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 242.06663513183594, + "r": 187.0, + "b": 230.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6969", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 241.39996337890625, + "r": 247.6666717529297, + "b": 229.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.432", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 241.39996337890625, + "r": 308.3333435058594, + "b": 229.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-6.395", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.3333435058594, + "t": 242.39996337890625, + "r": 363.6666564941406, + "b": 229.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 241.39996337890625, + "r": 419.6666564941406, + "b": 229.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.125", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 242.06663513183594, + "r": 477.6666564941406, + "b": 230.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.305", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 96.0, + "t": 221.73329162597656, + "r": 125.33333587646484, + "b": 211.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 222.06663513183594, + "r": 187.0, + "b": 210.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6937", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 222.06663513183594, + "r": 247.0, + "b": 210.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.881", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 222.06663513183594, + "r": 308.3333435058594, + "b": 210.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-6.550", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 222.06663513183594, + "r": 363.6666564941406, + "b": 210.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~2.945", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 222.06663513183594, + "r": 419.6666564941406, + "b": 210.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.160", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 222.06663513183594, + "r": 477.6666564941406, + "b": 210.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.66666412353516, + "t": 202.73329162597656, + "r": 125.0, + "b": 190.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 202.73329162597656, + "r": 187.6666717529297, + "b": 190.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6906", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.3333282470703, + "t": 201.73329162597656, + "r": 246.6666717529297, + "b": 191.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.331", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 202.73329162597656, + "r": 308.3333435058594, + "b": 190.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-6.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 202.73329162597656, + "r": 364.3333435058594, + "b": 190.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.590", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.6666564941406, + "t": 202.73329162597656, + "r": 419.6666564941406, + "b": 190.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "~0.230", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 202.73329162597656, + "r": 477.6666564941406, + "b": 190.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.530", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 96.0, + "t": 182.39996337890625, + "r": 124.66666412353516, + "b": 171.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 183.39996337890625, + "r": 187.6666717529297, + "b": 170.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6872", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 182.73329162597656, + "r": 247.6666717529297, + "b": 170.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.803", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 182.73329162597656, + "r": 308.3333435058594, + "b": 170.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~5.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 182.73329162597656, + "r": 364.3333435058594, + "b": 170.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "4.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 182.73329162597656, + "r": 419.6666564941406, + "b": 170.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.285", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 182.73329162597656, + "r": 477.6666564941406, + "b": 170.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.675", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.66666412353516, + "t": 163.39996337890625, + "r": 125.0, + "b": 151.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 163.39996337890625, + "r": 187.0, + "b": 151.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6835", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.3333282470703, + "t": 162.39996337890625, + "r": 247.3333282470703, + "b": 151.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.334", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 163.39996337890625, + "r": 308.3333435058594, + "b": 151.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-3.845", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 330.0, + "t": 162.39996337890625, + "r": 364.0, + "b": 151.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.460", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 163.39996337890625, + "r": 419.6666564941406, + "b": 151.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.380", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 163.39996337890625, + "r": 477.6666564941406, + "b": 151.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.845", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.66666412353516, + "t": 143.06663513183594, + "r": 125.0, + "b": 112.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.600 5.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 143.39996337890625, + "r": 187.0, + "b": 131.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6796", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 143.39996337890625, + "r": 247.6666717529297, + "b": 131.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.878", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 143.39996337890625, + "r": 308.3333435058594, + "b": 131.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~2.445", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 143.39996337890625, + "r": 364.3333435058594, + "b": 131.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~4.585", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 143.39996337890625, + "r": 419.6666564941406, + "b": 131.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 143.39996337890625, + "r": 477.6666564941406, + "b": 131.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 124.0666275024414, + "r": 187.0, + "b": 112.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6753", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.3333282470703, + "t": 123.0666275024414, + "r": 247.3333282470703, + "b": 112.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~4.494", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 124.0666275024414, + "r": 308.3333435058594, + "b": 112.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 124.0666275024414, + "r": 363.6666564941406, + "b": 112.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.630", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 124.0666275024414, + "r": 419.6666564941406, + "b": 112.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.510", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 441.0, + "t": 124.0666275024414, + "r": 475.6666564941406, + "b": 112.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.300", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 27, + "num_cols": 7, + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.6666717529297, + "t": 634.7332763671875, + "r": 182.3333282470703, + "b": 622.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "IF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 634.7332763671875, + "r": 245.6666717529297, + "b": 622.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "STF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.3333435058594, + "t": 633.7332763671875, + "r": 296.0, + "b": 619.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 633.3999633789062, + "r": 352.3333435058594, + "b": 619.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.3333435058594, + "t": 633.3999633789062, + "r": 407.0, + "b": 618.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 454.6666564941406, + "t": 630.3999633789062, + "r": 466.0, + "b": 619.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "01", + "column_header": true, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 93.66666412353516, + "t": 617.7332763671875, + "r": 130.6666717529297, + "b": 600.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 616.7332763671875, + "r": 187.0, + "b": 602.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "TlkA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.0, + "t": 616.066650390625, + "r": 239.6666717529297, + "b": 602.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.737060546875, + "t": 614.2592163085938, + "r": 304.92962646484375, + "b": 605.2073974609375, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10 4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.1350402832031, + "t": 614.2893676757812, + "r": 361.19830322265625, + "b": 604.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 386.4683532714844, + "t": 614.2893676757812, + "r": 414.5316467285156, + "b": 604.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 614.2893676757812, + "r": 475.6666564941406, + "b": 581.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.055 10-4", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.66666412353516, + "t": 594.7332763671875, + "r": 125.66666412353516, + "b": 582.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 594.7332763671875, + "r": 187.6666717529297, + "b": 582.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 594.066650390625, + "r": 246.3333282470703, + "b": 582.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 594.066650390625, + "r": 308.3333435058594, + "b": 582.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 594.066650390625, + "r": 364.3333435058594, + "b": 582.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.6666564941406, + "t": 593.3999633789062, + "r": 420.3333435058594, + "b": 581.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.66666412353516, + "t": 575.3999633789062, + "r": 125.66666412353516, + "b": 563.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 575.066650390625, + "r": 187.6666717529297, + "b": 563.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 574.7332763671875, + "r": 245.6666717529297, + "b": 562.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 574.066650390625, + "r": 308.3333435058594, + "b": 562.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 574.066650390625, + "r": 364.3333435058594, + "b": 562.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.0, + "t": 573.066650390625, + "r": 417.3333435058594, + "b": 562.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 574.066650390625, + "r": 475.6666564941406, + "b": 561.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.035", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.66666412353516, + "t": 555.3999633789062, + "r": 125.66666412353516, + "b": 543.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 555.3999633789062, + "r": 187.6666717529297, + "b": 543.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7072", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 554.7332763671875, + "r": 245.6666717529297, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 554.7332763671875, + "r": 308.3333435058594, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 330.0, + "t": 553.7332763671875, + "r": 364.0, + "b": 543.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.0, + "t": 553.7332763671875, + "r": 417.3333435058594, + "b": 543.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.0, + "t": 553.7332763671875, + "r": 475.3333435058594, + "b": 543.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.040", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.66666412353516, + "t": 536.066650390625, + "r": 125.66666412353516, + "b": 524.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 536.3999633789062, + "r": 187.6666717529297, + "b": 524.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7072", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 535.3999633789062, + "r": 245.6666717529297, + "b": 523.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.019", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 275.6666564941406, + "t": 535.3999633789062, + "r": 306.3333435058594, + "b": 523.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.0, + "t": 534.3999633789062, + "r": 362.0, + "b": 523.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 386.0, + "t": 534.3999633789062, + "r": 419.3333435058594, + "b": 523.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.090", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 534.7332763671875, + "r": 475.6666564941406, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.66666412353516, + "t": 516.7332763671875, + "r": 125.66666412353516, + "b": 504.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 516.7332763671875, + "r": 187.6666717529297, + "b": 504.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7070", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 516.066650390625, + "r": 248.3333282470703, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 275.6666564941406, + "t": 516.066650390625, + "r": 306.3333435058594, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 515.3999633789062, + "r": 364.3333435058594, + "b": 503.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.0, + "t": 515.066650390625, + "r": 417.3333435058594, + "b": 504.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 515.3999633789062, + "r": 475.6666564941406, + "b": 503.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.66666412353516, + "t": 497.39996337890625, + "r": 125.66666412353516, + "b": 485.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 496.7333068847656, + "r": 187.0, + "b": 484.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 496.7333068847656, + "r": 245.6666717529297, + "b": 484.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.0, + "t": 495.7333068847656, + "r": 306.0, + "b": 485.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.0, + "t": 495.7333068847656, + "r": 362.0, + "b": 485.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.0, + "t": 496.0666198730469, + "r": 417.6666564941406, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 496.0666198730469, + "r": 475.6666564941406, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.66666412353516, + "t": 477.39996337890625, + "r": 125.66666412353516, + "b": 465.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 477.39996337890625, + "r": 187.0, + "b": 465.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 476.7333068847656, + "r": 245.0, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 476.7333068847656, + "r": 308.3333435058594, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 331.6666564941406, + "t": 476.7333068847656, + "r": 361.6666564941406, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.3333435058594, + "t": 475.7333068847656, + "r": 417.3333435058594, + "b": 465.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 476.7333068847656, + "r": 478.3333435058594, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 96.0, + "t": 457.0666198730469, + "r": 125.33333587646484, + "b": 446.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 458.0666198730469, + "r": 187.6666717529297, + "b": 445.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 457.39996337890625, + "r": 247.6666717529297, + "b": 445.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 457.39996337890625, + "r": 308.3333435058594, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 331.6666564941406, + "t": 457.39996337890625, + "r": 361.6666564941406, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.070", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 456.7333068847656, + "r": 419.6666564941406, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 456.7333068847656, + "r": 478.3333435058594, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.66666412353516, + "t": 438.0666198730469, + "r": 125.66666412353516, + "b": 426.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 438.0666198730469, + "r": 187.6666717529297, + "b": 426.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 437.39996337890625, + "r": 247.6666717529297, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.028", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 437.39996337890625, + "r": 308.3333435058594, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 437.39996337890625, + "r": 364.3333435058594, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 437.39996337890625, + "r": 419.6666564941406, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 437.39996337890625, + "r": 477.6666564941406, + "b": 424.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.66666412353516, + "t": 418.7333068847656, + "r": 125.66666412353516, + "b": 406.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.6666717529297, + "t": 418.0666198730469, + "r": 187.6666717529297, + "b": 406.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7068", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 417.39996337890625, + "r": 247.6666717529297, + "b": 405.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.042", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 417.39996337890625, + "r": 308.3333435058594, + "b": 405.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.175", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 417.39996337890625, + "r": 364.3333435058594, + "b": 405.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 417.39996337890625, + "r": 417.6666564941406, + "b": 405.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 417.39996337890625, + "r": 478.3333435058594, + "b": 405.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 96.0, + "t": 398.39996337890625, + "r": 125.33333587646484, + "b": 387.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 150.6666717529297, + "t": 400.0666198730469, + "r": 187.6666717529297, + "b": 386.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7066", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 398.7333068847656, + "r": 247.6666717529297, + "b": 386.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.058", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 398.0666198730469, + "r": 308.3333435058594, + "b": 386.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~0.410", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 398.0666198730469, + "r": 364.3333435058594, + "b": 386.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 398.0666198730469, + "r": 419.6666564941406, + "b": 386.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 398.0666198730469, + "r": 477.6666564941406, + "b": 386.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 96.0, + "t": 379.0666198730469, + "r": 125.33333587646484, + "b": 368.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 379.7333068847656, + "r": 187.6666717529297, + "b": 367.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 378.7333068847656, + "r": 247.0, + "b": 366.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.11l", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 378.7333068847656, + "r": 308.3333435058594, + "b": 366.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.875", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 378.7333068847656, + "r": 364.3333435058594, + "b": 366.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.140", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 378.7333068847656, + "r": 420.3333435058594, + "b": 366.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 378.7333068847656, + "r": 478.3333435058594, + "b": 366.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 96.0, + "t": 359.0666198730469, + "r": 125.33333587646484, + "b": 348.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 150.6666717529297, + "t": 360.7333068847656, + "r": 187.0, + "b": 347.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7057", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 359.39996337890625, + "r": 247.6666717529297, + "b": 347.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.187", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 359.39996337890625, + "r": 308.3333435058594, + "b": 347.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.570", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 330.0, + "t": 358.39996337890625, + "r": 364.0, + "b": 347.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.240", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.3333435058594, + "t": 358.39996337890625, + "r": 419.3333435058594, + "b": 347.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.090", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.3333435058594, + "t": 358.39996337890625, + "r": 477.3333435058594, + "b": 347.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.0, + "t": 340.0666198730469, + "r": 125.66666412353516, + "b": 328.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 340.39996337890625, + "r": 187.0, + "b": 328.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7049", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 339.39996337890625, + "r": 247.0, + "b": 327.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.311", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 339.39996337890625, + "r": 308.3333435058594, + "b": 327.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.360", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 339.39996337890625, + "r": 364.3333435058594, + "b": 327.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 339.39996337890625, + "r": 419.6666564941406, + "b": 327.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 339.39996337890625, + "r": 477.6666564941406, + "b": 327.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.66666412353516, + "t": 320.7333068847656, + "r": 125.66666412353516, + "b": 308.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 150.6666717529297, + "t": 321.39996337890625, + "r": 187.0, + "b": 288.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7039 0.7029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 320.0666198730469, + "r": 247.6666717529297, + "b": 288.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.442 -0.582", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 320.0666198730469, + "r": 308.3333435058594, + "b": 308.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-3.205", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 320.0666198730469, + "r": 364.3333435058594, + "b": 288.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~0.670 -0.895", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 320.0666198730469, + "r": 419.6666564941406, + "b": 288.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.085 -0.210", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 320.0666198730469, + "r": 478.3333435058594, + "b": 288.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.075 -0.100", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.66666412353516, + "t": 300.7333068847656, + "r": 125.66666412353516, + "b": 288.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 300.0666198730469, + "r": 308.3333435058594, + "b": 288.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~4.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 96.0, + "t": 280.39996337890625, + "r": 125.33333587646484, + "b": 269.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 281.39996337890625, + "r": 187.6666717529297, + "b": 269.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 280.7333068847656, + "r": 247.6666717529297, + "b": 268.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.798", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 280.7333068847656, + "r": 308.3333435058594, + "b": 268.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-4.930", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 280.7333068847656, + "r": 363.6666564941406, + "b": 268.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 280.7333068847656, + "r": 419.6666564941406, + "b": 268.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 280.7333068847656, + "r": 477.6666564941406, + "b": 268.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.140", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.66666412353516, + "t": 261.39996337890625, + "r": 125.66666412353516, + "b": 249.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 261.39996337890625, + "r": 187.6666717529297, + "b": 249.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6994", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 261.39996337890625, + "r": 247.0, + "b": 249.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.081", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 261.39996337890625, + "r": 308.3333435058594, + "b": 249.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~5.715", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 261.39996337890625, + "r": 364.3333435058594, + "b": 249.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.705", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 261.39996337890625, + "r": 419.6666564941406, + "b": 249.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 261.39996337890625, + "r": 478.3333435058594, + "b": 249.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.215", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.66666412353516, + "t": 242.06663513183594, + "r": 125.0, + "b": 230.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 242.06663513183594, + "r": 187.0, + "b": 230.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6969", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 241.39996337890625, + "r": 247.6666717529297, + "b": 229.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.432", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 241.39996337890625, + "r": 308.3333435058594, + "b": 229.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-6.395", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.3333435058594, + "t": 242.39996337890625, + "r": 363.6666564941406, + "b": 229.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 241.39996337890625, + "r": 419.6666564941406, + "b": 229.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.125", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 242.06663513183594, + "r": 477.6666564941406, + "b": 230.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.305", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 96.0, + "t": 221.73329162597656, + "r": 125.33333587646484, + "b": 211.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 222.06663513183594, + "r": 187.0, + "b": 210.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6937", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 222.06663513183594, + "r": 247.0, + "b": 210.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.881", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 222.06663513183594, + "r": 308.3333435058594, + "b": 210.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-6.550", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 222.06663513183594, + "r": 363.6666564941406, + "b": 210.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~2.945", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 222.06663513183594, + "r": 419.6666564941406, + "b": 210.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.160", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 222.06663513183594, + "r": 477.6666564941406, + "b": 210.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.405", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.66666412353516, + "t": 202.73329162597656, + "r": 125.0, + "b": 190.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 202.73329162597656, + "r": 187.6666717529297, + "b": 190.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6906", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.3333282470703, + "t": 201.73329162597656, + "r": 246.6666717529297, + "b": 191.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.331", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 202.73329162597656, + "r": 308.3333435058594, + "b": 190.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-6.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 202.73329162597656, + "r": 364.3333435058594, + "b": 190.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.590", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.6666564941406, + "t": 202.73329162597656, + "r": 419.6666564941406, + "b": 190.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "~0.230", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 202.73329162597656, + "r": 477.6666564941406, + "b": 190.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.530", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 96.0, + "t": 182.39996337890625, + "r": 124.66666412353516, + "b": 171.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 183.39996337890625, + "r": 187.6666717529297, + "b": 170.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6872", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 182.73329162597656, + "r": 247.6666717529297, + "b": 170.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.803", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 182.73329162597656, + "r": 308.3333435058594, + "b": 170.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~5.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 182.73329162597656, + "r": 364.3333435058594, + "b": 170.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "4.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 182.73329162597656, + "r": 419.6666564941406, + "b": 170.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.285", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 182.73329162597656, + "r": 477.6666564941406, + "b": 170.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.675", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.66666412353516, + "t": 163.39996337890625, + "r": 125.0, + "b": 151.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 163.39996337890625, + "r": 187.0, + "b": 151.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6835", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.3333282470703, + "t": 162.39996337890625, + "r": 247.3333282470703, + "b": 151.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.334", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 163.39996337890625, + "r": 308.3333435058594, + "b": 151.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-3.845", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 330.0, + "t": 162.39996337890625, + "r": 364.0, + "b": 151.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.460", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 163.39996337890625, + "r": 419.6666564941406, + "b": 151.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.380", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 163.39996337890625, + "r": 477.6666564941406, + "b": 151.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.845", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 95.66666412353516, + "t": 143.06663513183594, + "r": 125.0, + "b": 112.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.600 5.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 143.39996337890625, + "r": 187.0, + "b": 131.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6796", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 143.39996337890625, + "r": 247.6666717529297, + "b": 131.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.878", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 143.39996337890625, + "r": 308.3333435058594, + "b": 131.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~2.445", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 143.39996337890625, + "r": 364.3333435058594, + "b": 131.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~4.585", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 143.39996337890625, + "r": 419.6666564941406, + "b": 131.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 143.39996337890625, + "r": 477.6666564941406, + "b": 131.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.060", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 151.0, + "t": 124.0666275024414, + "r": 187.0, + "b": 112.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6753", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.3333282470703, + "t": 123.0666275024414, + "r": 247.3333282470703, + "b": 112.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~4.494", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 124.0666275024414, + "r": 308.3333435058594, + "b": 112.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 329.6666564941406, + "t": 124.0666275024414, + "r": 363.6666564941406, + "b": 112.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.630", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 385.0, + "t": 124.0666275024414, + "r": 419.6666564941406, + "b": 112.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.510", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 441.0, + "t": 124.0666275024414, + "r": 475.6666564941406, + "b": 112.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.300", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/5", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 89.02405548095703, + "t": 627.67333984375, + "r": 497.6573181152344, + "b": 95.3092041015625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/33" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 167.0, + "t": 622.7332763671875, + "r": 190.3333282470703, + "b": 610.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "TF.", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.0, + "t": 622.7332763671875, + "r": 252.3333282470703, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "8TF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 291.0, + "t": 622.066650390625, + "r": 303.0, + "b": 607.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 343.3902893066406, + "t": 616.5259399414062, + "r": 360.94305419921875, + "b": 610.6073608398438, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "&", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 400.3333435058594, + "t": 620.7332763671875, + "r": 412.3333435058594, + "b": 606.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.71076202392578, + "t": 606.0348510742188, + "r": 135.28924560546875, + "b": 588.4317016601562, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.3333282470703, + "t": 605.7332763671875, + "r": 194.6666717529297, + "b": 589.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 233.0, + "t": 604.066650390625, + "r": 246.3333282470703, + "b": 590.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.1350402832031, + "t": 602.2893676757812, + "r": 310.5316467285156, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10 -4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.1350402832031, + "t": 602.2893676757812, + "r": 366.5316467285156, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.4683532714844, + "t": 601.6227416992188, + "r": 419.8649597167969, + "b": 591.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "10 -4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.4683532714844, + "t": 600.9560546875, + "r": 479.8649597167969, + "b": 590.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 582.3999633789062, + "r": 132.0, + "b": 571.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 582.7332763671875, + "r": 195.0, + "b": 570.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7082", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 582.066650390625, + "r": 252.3333282470703, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.019", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.0, + "t": 581.066650390625, + "r": 314.0, + "b": 570.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 581.3999633789062, + "r": 369.6666564941406, + "b": 569.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.3333435058594, + "t": 580.3999633789062, + "r": 425.3333435058594, + "b": 569.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 580.066650390625, + "r": 481.0, + "b": 569.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 562.3999633789062, + "r": 132.0, + "b": 551.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 562.7332763671875, + "r": 195.0, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7082", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 562.066650390625, + "r": 252.3333282470703, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.012", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.3333435058594, + "t": 562.066650390625, + "r": 312.3333435058594, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.0, + "t": 561.066650390625, + "r": 369.3333435058594, + "b": 550.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 561.3999633789062, + "r": 423.6666564941406, + "b": 549.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 560.3999633789062, + "r": 481.3333435058594, + "b": 549.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 543.066650390625, + "r": 132.0, + "b": 532.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 543.7332763671875, + "r": 195.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.6666717529297, + "t": 542.3999633789062, + "r": 252.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.048", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 542.7332763671875, + "r": 311.6666564941406, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.0, + "t": 541.7332763671875, + "r": 367.3333435058594, + "b": 531.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.0, + "t": 542.066650390625, + "r": 425.6666564941406, + "b": 530.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 541.066650390625, + "r": 481.3333435058594, + "b": 530.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 524.7332763671875, + "r": 132.3333282470703, + "b": 512.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 524.7332763671875, + "r": 195.0, + "b": 512.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7078", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 523.066650390625, + "r": 254.0, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.047", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 523.3999633789062, + "r": 311.6666564941406, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 522.3999633789062, + "r": 369.3333435058594, + "b": 511.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.0, + "t": 522.7332763671875, + "r": 425.6666564941406, + "b": 510.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 522.7332763671875, + "r": 481.6666564941406, + "b": 510.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.66666412353516, + "t": 504.7333068847656, + "r": 132.3333282470703, + "b": 492.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 504.7333068847656, + "r": 194.3333282470703, + "b": 492.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7077", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 504.0666198730469, + "r": 254.3333282470703, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.048", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.0, + "t": 503.0666198730469, + "r": 311.3333435058594, + "b": 492.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 503.39996337890625, + "r": 369.6666564941406, + "b": 491.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 503.39996337890625, + "r": 423.0, + "b": 491.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 502.39996337890625, + "r": 481.3333435058594, + "b": 491.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.66666412353516, + "t": 485.39996337890625, + "r": 132.3333282470703, + "b": 473.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 484.7333068847656, + "r": 193.6666717529297, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7081", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.0, + "t": 483.7333068847656, + "r": 252.0, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 484.0666198730469, + "r": 311.6666564941406, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 484.0666198730469, + "r": 367.0, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 483.0666198730469, + "r": 422.6666564941406, + "b": 472.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 483.39996337890625, + "r": 481.0, + "b": 471.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.0, + "t": 465.0666198730469, + "r": 131.3333282470703, + "b": 454.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 465.39996337890625, + "r": 194.3333282470703, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7082", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 464.7333068847656, + "r": 251.6666717529297, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 464.7333068847656, + "r": 313.6666564941406, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 464.0666198730469, + "r": 369.6666564941406, + "b": 452.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 464.0666198730469, + "r": 423.0, + "b": 452.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 464.0666198730469, + "r": 483.0, + "b": 452.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.66666412353516, + "t": 446.0666198730469, + "r": 131.6666717529297, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 446.0666198730469, + "r": 194.3333282470703, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 445.39996337890625, + "r": 253.6666717529297, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.019", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 444.7333068847656, + "r": 313.6666564941406, + "b": 432.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 444.7333068847656, + "r": 367.0, + "b": 432.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.6666564941406, + "t": 443.7333068847656, + "r": 424.6666564941406, + "b": 433.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 444.0666198730469, + "r": 483.0, + "b": 432.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.66666412353516, + "t": 426.7333068847656, + "r": 131.6666717529297, + "b": 414.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 426.0666198730469, + "r": 194.3333282470703, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7076", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 425.39996337890625, + "r": 254.3333282470703, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.064", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 425.39996337890625, + "r": 313.6666564941406, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.165", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 424.39996337890625, + "r": 368.6666564941406, + "b": 413.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 424.7333068847656, + "r": 423.0, + "b": 412.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 424.7333068847656, + "r": 483.0, + "b": 412.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.0, + "t": 406.39996337890625, + "r": 131.3333282470703, + "b": 395.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 406.7333068847656, + "r": 194.3333282470703, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7072", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 406.0666198730469, + "r": 254.3333282470703, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.124", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 405.39996337890625, + "r": 313.6666564941406, + "b": 393.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.310", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 405.39996337890625, + "r": 369.0, + "b": 393.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 405.39996337890625, + "r": 423.0, + "b": 393.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 404.39996337890625, + "r": 482.6666564941406, + "b": 393.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.66666412353516, + "t": 387.39996337890625, + "r": 131.6666717529297, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 387.39996337890625, + "r": 193.6666717529297, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 386.7333068847656, + "r": 253.6666717529297, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.144", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 385.7333068847656, + "r": 313.3333435058594, + "b": 375.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.585", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.0, + "t": 386.39996337890625, + "r": 369.0, + "b": 373.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.135", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 386.0666198730469, + "r": 423.0, + "b": 374.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 385.0666198730469, + "r": 482.6666564941406, + "b": 374.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.0, + "t": 368.0666198730469, + "r": 131.6666717529297, + "b": 356.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 368.0666198730469, + "r": 193.6666717529297, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 366.39996337890625, + "r": 253.3333282470703, + "b": 355.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.144", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 366.7333068847656, + "r": 313.6666564941406, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 366.7333068847656, + "r": 369.0, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.0, + "t": 365.7333068847656, + "r": 424.0, + "b": 355.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 366.0666198730469, + "r": 483.0, + "b": 354.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.0, + "t": 348.0666198730469, + "r": 131.6666717529297, + "b": 336.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 348.0666198730469, + "r": 193.6666717529297, + "b": 336.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7068", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 347.39996337890625, + "r": 253.0, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.181", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 347.39996337890625, + "r": 313.6666564941406, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.765", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.6666564941406, + "t": 346.39996337890625, + "r": 368.6666564941406, + "b": 335.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.380", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 346.7333068847656, + "r": 424.3333435058594, + "b": 334.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 346.7333068847656, + "r": 483.0, + "b": 334.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.0, + "t": 328.7333068847656, + "r": 131.6666717529297, + "b": 316.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.0, + "t": 327.7333068847656, + "r": 193.3333282470703, + "b": 317.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 327.39996337890625, + "r": 253.6666717529297, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.294", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 327.39996337890625, + "r": 313.0, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.585", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 327.39996337890625, + "r": 369.0, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.565", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 327.39996337890625, + "r": 422.3333435058594, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 326.7333068847656, + "r": 483.0, + "b": 314.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 308.39996337890625, + "r": 130.6666717529297, + "b": 297.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 308.7333068847656, + "r": 193.6666717529297, + "b": 296.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7052", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 308.0666198730469, + "r": 253.0, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.407", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 308.0666198730469, + "r": 313.0, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-3.485", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.6666564941406, + "t": 307.0666198730469, + "r": 368.0, + "b": 296.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.750", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 307.39996337890625, + "r": 424.3333435058594, + "b": 276.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.070 0.120", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 307.39996337890625, + "r": 483.0, + "b": 295.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.155", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 288.39996337890625, + "r": 130.6666717529297, + "b": 277.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 288.7333068847656, + "r": 193.6666717529297, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7042", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 287.7333068847656, + "r": 253.3333282470703, + "b": 277.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.544", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 288.0666198730469, + "r": 313.0, + "b": 276.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-4.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 288.0666198730469, + "r": 368.3333435058594, + "b": 276.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.995", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 287.39996337890625, + "r": 482.3333435058594, + "b": 275.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.225", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 269.0666198730469, + "r": 130.6666717529297, + "b": 258.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 269.7333068847656, + "r": 193.6666717529297, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 268.39996337890625, + "r": 252.6666717529297, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.832", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 268.7333068847656, + "r": 313.0, + "b": 256.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-5.380", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.6666564941406, + "t": 267.7333068847656, + "r": 368.0, + "b": 257.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.345", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 268.0666198730469, + "r": 424.3333435058594, + "b": 256.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.115", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 268.0666198730469, + "r": 483.0, + "b": 256.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.310", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 249.73329162597656, + "r": 130.6666717529297, + "b": 239.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 250.06663513183594, + "r": 193.6666717529297, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 249.39996337890625, + "r": 253.0, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.092", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 249.39996337890625, + "r": 313.0, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-6.300", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 249.39996337890625, + "r": 368.3333435058594, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.735", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 249.39996337890625, + "r": 424.3333435058594, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.090", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 248.73329162597656, + "r": 482.3333435058594, + "b": 236.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.450", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.33333587646484, + "t": 230.73329162597656, + "r": 131.0, + "b": 218.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 230.73329162597656, + "r": 193.6666717529297, + "b": 218.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6983", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.3333282470703, + "t": 230.06663513183594, + "r": 253.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.387", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.6666564941406, + "t": 229.06663513183594, + "r": 312.6666564941406, + "b": 218.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-7.130", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.6666564941406, + "t": 229.06663513183594, + "r": 368.0, + "b": 218.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.310", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.0, + "t": 229.06663513183594, + "r": 424.0, + "b": 218.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.150", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 229.39996337890625, + "r": 482.3333435058594, + "b": 217.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.590", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 210.39996337890625, + "r": 130.6666717529297, + "b": 199.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 210.73329162597656, + "r": 193.6666717529297, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6950", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 209.73329162597656, + "r": 252.6666717529297, + "b": 199.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.842", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 210.06663513183594, + "r": 313.0, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "7.420", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.6666564941406, + "t": 210.06663513183594, + "r": 368.3333435058594, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 210.06663513183594, + "r": 424.3333435058594, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.190", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 210.06663513183594, + "r": 482.3333435058594, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.760", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 191.06663513183594, + "r": 130.6666717529297, + "b": 180.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 191.39996337890625, + "r": 193.0, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6917", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.3333282470703, + "t": 190.73329162597656, + "r": 253.0, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.310", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 190.73329162597656, + "r": 312.3333435058594, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-7.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.6666564941406, + "t": 190.73329162597656, + "r": 368.3333435058594, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.680", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 190.73329162597656, + "r": 424.3333435058594, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.215", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.0, + "t": 189.73329162597656, + "r": 482.0, + "b": 179.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.945", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 171.06663513183594, + "r": 130.6666717529297, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.3333282470703, + "t": 171.06663513183594, + "r": 192.6666717529297, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6889", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.6666717529297, + "t": 170.39996337890625, + "r": 251.3333282470703, + "b": 159.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.711", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.6666564941406, + "t": 170.39996337890625, + "r": 312.0, + "b": 159.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-6.180", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.6666564941406, + "t": 170.73329162597656, + "r": 368.3333435058594, + "b": 158.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.225", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 170.73329162597656, + "r": 423.6666564941406, + "b": 158.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.305", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 170.73329162597656, + "r": 482.3333435058594, + "b": 158.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.185", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 151.73329162597656, + "r": 130.0, + "b": 141.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 152.06663513183594, + "r": 193.0, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6853", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.3333282470703, + "t": 151.39996337890625, + "r": 251.6666717529297, + "b": 139.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~3.211", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 151.39996337890625, + "r": 312.3333435058594, + "b": 139.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-4.990", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.6666564941406, + "t": 151.39996337890625, + "r": 368.3333435058594, + "b": 139.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.580", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.0, + "t": 151.39996337890625, + "r": 423.6666564941406, + "b": 139.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.335", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 151.39996337890625, + "r": 482.3333435058594, + "b": 139.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.470", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.66666412353516, + "t": 131.73329162597656, + "r": 130.0, + "b": 121.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.6666717529297, + "t": 131.73329162597656, + "r": 192.6666717529297, + "b": 121.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6806", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.3333282470703, + "t": 132.06663513183594, + "r": 252.3333282470703, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.876", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 132.06663513183594, + "r": 312.3333435058594, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-3.615", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.0, + "t": 131.06663513183594, + "r": 368.0, + "b": 120.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.770", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 131.39996337890625, + "r": 423.6666564941406, + "b": 119.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 131.39996337890625, + "r": 482.3333435058594, + "b": 119.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.785", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.33333587646484, + "t": 112.7332992553711, + "r": 130.3333282470703, + "b": 100.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 112.7332992553711, + "r": 193.0, + "b": 100.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6767", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.6666717529297, + "t": 111.7332992553711, + "r": 252.0, + "b": 101.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-4.438", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.6666564941406, + "t": 111.7332992553711, + "r": 312.0, + "b": 101.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.305", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.6666564941406, + "t": 112.0666275024414, + "r": 368.3333435058594, + "b": 100.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.795", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.0, + "t": 112.0666275024414, + "r": 423.6666564941406, + "b": 100.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.3333435058594, + "t": 112.39996337890625, + "r": 479.6666564941406, + "b": 99.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~2.125", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 27, + "num_cols": 7, + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 167.0, + "t": 622.7332763671875, + "r": 190.3333282470703, + "b": 610.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "TF.", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.0, + "t": 622.7332763671875, + "r": 252.3333282470703, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "8TF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 291.0, + "t": 622.066650390625, + "r": 303.0, + "b": 607.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 343.3902893066406, + "t": 616.5259399414062, + "r": 360.94305419921875, + "b": 610.6073608398438, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "&", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 400.3333435058594, + "t": 620.7332763671875, + "r": 412.3333435058594, + "b": 606.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.71076202392578, + "t": 606.0348510742188, + "r": 135.28924560546875, + "b": 588.4317016601562, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.3333282470703, + "t": 605.7332763671875, + "r": 194.6666717529297, + "b": 589.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 233.0, + "t": 604.066650390625, + "r": 246.3333282470703, + "b": 590.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.1350402832031, + "t": 602.2893676757812, + "r": 310.5316467285156, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10 -4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.1350402832031, + "t": 602.2893676757812, + "r": 366.5316467285156, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.4683532714844, + "t": 601.6227416992188, + "r": 419.8649597167969, + "b": 591.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "10 -4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.4683532714844, + "t": 600.9560546875, + "r": 479.8649597167969, + "b": 590.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 582.3999633789062, + "r": 132.0, + "b": 571.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 582.7332763671875, + "r": 195.0, + "b": 570.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7082", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 582.066650390625, + "r": 252.3333282470703, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.019", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.0, + "t": 581.066650390625, + "r": 314.0, + "b": 570.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 581.3999633789062, + "r": 369.6666564941406, + "b": 569.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.3333435058594, + "t": 580.3999633789062, + "r": 425.3333435058594, + "b": 569.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 580.066650390625, + "r": 481.0, + "b": 569.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 562.3999633789062, + "r": 132.0, + "b": 551.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 562.7332763671875, + "r": 195.0, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7082", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 562.066650390625, + "r": 252.3333282470703, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.012", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.3333435058594, + "t": 562.066650390625, + "r": 312.3333435058594, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.0, + "t": 561.066650390625, + "r": 369.3333435058594, + "b": 550.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 561.3999633789062, + "r": 423.6666564941406, + "b": 549.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 560.3999633789062, + "r": 481.3333435058594, + "b": 549.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.030", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 543.066650390625, + "r": 132.0, + "b": 532.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 543.7332763671875, + "r": 195.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.6666717529297, + "t": 542.3999633789062, + "r": 252.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.048", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 542.7332763671875, + "r": 311.6666564941406, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.0, + "t": 541.7332763671875, + "r": 367.3333435058594, + "b": 531.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.0, + "t": 542.066650390625, + "r": 425.6666564941406, + "b": 530.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 541.066650390625, + "r": 481.3333435058594, + "b": 530.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 524.7332763671875, + "r": 132.3333282470703, + "b": 512.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 524.7332763671875, + "r": 195.0, + "b": 512.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7078", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 523.066650390625, + "r": 254.0, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.047", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 523.3999633789062, + "r": 311.6666564941406, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 522.3999633789062, + "r": 369.3333435058594, + "b": 511.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.0, + "t": 522.7332763671875, + "r": 425.6666564941406, + "b": 510.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 522.7332763671875, + "r": 481.6666564941406, + "b": 510.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.66666412353516, + "t": 504.7333068847656, + "r": 132.3333282470703, + "b": 492.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 504.7333068847656, + "r": 194.3333282470703, + "b": 492.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7077", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 504.0666198730469, + "r": 254.3333282470703, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.048", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.0, + "t": 503.0666198730469, + "r": 311.3333435058594, + "b": 492.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 503.39996337890625, + "r": 369.6666564941406, + "b": 491.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 503.39996337890625, + "r": 423.0, + "b": 491.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 502.39996337890625, + "r": 481.3333435058594, + "b": 491.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.66666412353516, + "t": 485.39996337890625, + "r": 132.3333282470703, + "b": 473.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 484.7333068847656, + "r": 193.6666717529297, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7081", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.0, + "t": 483.7333068847656, + "r": 252.0, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 484.0666198730469, + "r": 311.6666564941406, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 484.0666198730469, + "r": 367.0, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 483.0666198730469, + "r": 422.6666564941406, + "b": 472.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 483.39996337890625, + "r": 481.0, + "b": 471.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.0, + "t": 465.0666198730469, + "r": 131.3333282470703, + "b": 454.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 465.39996337890625, + "r": 194.3333282470703, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7082", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 464.7333068847656, + "r": 251.6666717529297, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 464.7333068847656, + "r": 313.6666564941406, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 464.0666198730469, + "r": 369.6666564941406, + "b": 452.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 464.0666198730469, + "r": 423.0, + "b": 452.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 464.0666198730469, + "r": 483.0, + "b": 452.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.66666412353516, + "t": 446.0666198730469, + "r": 131.6666717529297, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 446.0666198730469, + "r": 194.3333282470703, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 445.39996337890625, + "r": 253.6666717529297, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.019", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 444.7333068847656, + "r": 313.6666564941406, + "b": 432.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 444.7333068847656, + "r": 367.0, + "b": 432.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.6666564941406, + "t": 443.7333068847656, + "r": 424.6666564941406, + "b": 433.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 444.0666198730469, + "r": 483.0, + "b": 432.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.66666412353516, + "t": 426.7333068847656, + "r": 131.6666717529297, + "b": 414.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 426.0666198730469, + "r": 194.3333282470703, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7076", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 425.39996337890625, + "r": 254.3333282470703, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.064", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 425.39996337890625, + "r": 313.6666564941406, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.165", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 424.39996337890625, + "r": 368.6666564941406, + "b": 413.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 424.7333068847656, + "r": 423.0, + "b": 412.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 424.7333068847656, + "r": 483.0, + "b": 412.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.0, + "t": 406.39996337890625, + "r": 131.3333282470703, + "b": 395.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 406.7333068847656, + "r": 194.3333282470703, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7072", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 406.0666198730469, + "r": 254.3333282470703, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.124", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 405.39996337890625, + "r": 313.6666564941406, + "b": 393.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.310", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 405.39996337890625, + "r": 369.0, + "b": 393.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 405.39996337890625, + "r": 423.0, + "b": 393.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 404.39996337890625, + "r": 482.6666564941406, + "b": 393.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.66666412353516, + "t": 387.39996337890625, + "r": 131.6666717529297, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 387.39996337890625, + "r": 193.6666717529297, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 386.7333068847656, + "r": 253.6666717529297, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.144", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 385.7333068847656, + "r": 313.3333435058594, + "b": 375.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.585", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.0, + "t": 386.39996337890625, + "r": 369.0, + "b": 373.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.135", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 386.0666198730469, + "r": 423.0, + "b": 374.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 385.0666198730469, + "r": 482.6666564941406, + "b": 374.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.0, + "t": 368.0666198730469, + "r": 131.6666717529297, + "b": 356.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 368.0666198730469, + "r": 193.6666717529297, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 366.39996337890625, + "r": 253.3333282470703, + "b": 355.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.144", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 366.7333068847656, + "r": 313.6666564941406, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 366.7333068847656, + "r": 369.0, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.0, + "t": 365.7333068847656, + "r": 424.0, + "b": 355.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 366.0666198730469, + "r": 483.0, + "b": 354.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.0, + "t": 348.0666198730469, + "r": 131.6666717529297, + "b": 336.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 348.0666198730469, + "r": 193.6666717529297, + "b": 336.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7068", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 347.39996337890625, + "r": 253.0, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.181", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 347.39996337890625, + "r": 313.6666564941406, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.765", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.6666564941406, + "t": 346.39996337890625, + "r": 368.6666564941406, + "b": 335.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.380", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 346.7333068847656, + "r": 424.3333435058594, + "b": 334.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 346.7333068847656, + "r": 483.0, + "b": 334.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.080", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.0, + "t": 328.7333068847656, + "r": 131.6666717529297, + "b": 316.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.0, + "t": 327.7333068847656, + "r": 193.3333282470703, + "b": 317.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 327.39996337890625, + "r": 253.6666717529297, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.294", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 327.39996337890625, + "r": 313.0, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.585", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 327.39996337890625, + "r": 369.0, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.565", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 327.39996337890625, + "r": 422.3333435058594, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 326.7333068847656, + "r": 483.0, + "b": 314.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.105", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 308.39996337890625, + "r": 130.6666717529297, + "b": 297.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 308.7333068847656, + "r": 193.6666717529297, + "b": 296.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7052", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 308.0666198730469, + "r": 253.0, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.407", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 308.0666198730469, + "r": 313.0, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-3.485", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.6666564941406, + "t": 307.0666198730469, + "r": 368.0, + "b": 296.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.750", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 307.39996337890625, + "r": 424.3333435058594, + "b": 276.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.070 0.120", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 307.39996337890625, + "r": 483.0, + "b": 295.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.155", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 288.39996337890625, + "r": 130.6666717529297, + "b": 277.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 288.7333068847656, + "r": 193.6666717529297, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7042", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 287.7333068847656, + "r": 253.3333282470703, + "b": 277.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.544", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 288.0666198730469, + "r": 313.0, + "b": 276.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-4.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 288.0666198730469, + "r": 368.3333435058594, + "b": 276.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.995", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 287.39996337890625, + "r": 482.3333435058594, + "b": 275.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.225", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 269.0666198730469, + "r": 130.6666717529297, + "b": 258.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 269.7333068847656, + "r": 193.6666717529297, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 268.39996337890625, + "r": 252.6666717529297, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.832", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 268.7333068847656, + "r": 313.0, + "b": 256.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-5.380", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.6666564941406, + "t": 267.7333068847656, + "r": 368.0, + "b": 257.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.345", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 268.0666198730469, + "r": 424.3333435058594, + "b": 256.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.115", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 268.0666198730469, + "r": 483.0, + "b": 256.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.310", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 249.73329162597656, + "r": 130.6666717529297, + "b": 239.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 250.06663513183594, + "r": 193.6666717529297, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 249.39996337890625, + "r": 253.0, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.092", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 249.39996337890625, + "r": 313.0, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-6.300", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 249.39996337890625, + "r": 368.3333435058594, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.735", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 249.39996337890625, + "r": 424.3333435058594, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.090", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 248.73329162597656, + "r": 482.3333435058594, + "b": 236.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.450", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.33333587646484, + "t": 230.73329162597656, + "r": 131.0, + "b": 218.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 230.73329162597656, + "r": 193.6666717529297, + "b": 218.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6983", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.3333282470703, + "t": 230.06663513183594, + "r": 253.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.387", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.6666564941406, + "t": 229.06663513183594, + "r": 312.6666564941406, + "b": 218.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-7.130", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.6666564941406, + "t": 229.06663513183594, + "r": 368.0, + "b": 218.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.310", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.0, + "t": 229.06663513183594, + "r": 424.0, + "b": 218.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.150", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 229.39996337890625, + "r": 482.3333435058594, + "b": 217.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.590", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 210.39996337890625, + "r": 130.6666717529297, + "b": 199.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 210.73329162597656, + "r": 193.6666717529297, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6950", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 209.73329162597656, + "r": 252.6666717529297, + "b": 199.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.842", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 210.06663513183594, + "r": 313.0, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "7.420", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.6666564941406, + "t": 210.06663513183594, + "r": 368.3333435058594, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 210.06663513183594, + "r": 424.3333435058594, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.190", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 210.06663513183594, + "r": 482.3333435058594, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.760", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 191.06663513183594, + "r": 130.6666717529297, + "b": 180.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 191.39996337890625, + "r": 193.0, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6917", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.3333282470703, + "t": 190.73329162597656, + "r": 253.0, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.310", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 190.73329162597656, + "r": 312.3333435058594, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-7.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.6666564941406, + "t": 190.73329162597656, + "r": 368.3333435058594, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.680", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 190.73329162597656, + "r": 424.3333435058594, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.215", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.0, + "t": 189.73329162597656, + "r": 482.0, + "b": 179.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.945", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 171.06663513183594, + "r": 130.6666717529297, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.3333282470703, + "t": 171.06663513183594, + "r": 192.6666717529297, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6889", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.6666717529297, + "t": 170.39996337890625, + "r": 251.3333282470703, + "b": 159.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.711", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.6666564941406, + "t": 170.39996337890625, + "r": 312.0, + "b": 159.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-6.180", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.6666564941406, + "t": 170.73329162597656, + "r": 368.3333435058594, + "b": 158.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.225", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 170.73329162597656, + "r": 423.6666564941406, + "b": 158.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.305", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 170.73329162597656, + "r": 482.3333435058594, + "b": 158.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.185", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 151.73329162597656, + "r": 130.0, + "b": 141.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 152.06663513183594, + "r": 193.0, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6853", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.3333282470703, + "t": 151.39996337890625, + "r": 251.6666717529297, + "b": 139.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~3.211", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 151.39996337890625, + "r": 312.3333435058594, + "b": 139.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-4.990", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.6666564941406, + "t": 151.39996337890625, + "r": 368.3333435058594, + "b": 139.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.580", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.0, + "t": 151.39996337890625, + "r": 423.6666564941406, + "b": 139.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.335", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 151.39996337890625, + "r": 482.3333435058594, + "b": 139.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.470", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.66666412353516, + "t": 131.73329162597656, + "r": 130.0, + "b": 121.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.6666717529297, + "t": 131.73329162597656, + "r": 192.6666717529297, + "b": 121.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6806", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.3333282470703, + "t": 132.06663513183594, + "r": 252.3333282470703, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.876", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 132.06663513183594, + "r": 312.3333435058594, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-3.615", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.0, + "t": 131.06663513183594, + "r": 368.0, + "b": 120.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.770", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 131.39996337890625, + "r": 423.6666564941406, + "b": 119.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 131.39996337890625, + "r": 482.3333435058594, + "b": 119.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.785", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.33333587646484, + "t": 112.7332992553711, + "r": 130.3333282470703, + "b": 100.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 112.7332992553711, + "r": 193.0, + "b": 100.7332992553711, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6767", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.6666717529297, + "t": 111.7332992553711, + "r": 252.0, + "b": 101.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-4.438", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.6666564941406, + "t": 111.7332992553711, + "r": 312.0, + "b": 101.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.305", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.6666564941406, + "t": 112.0666275024414, + "r": 368.3333435058594, + "b": 100.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.795", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.0, + "t": 112.0666275024414, + "r": 423.6666564941406, + "b": 100.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.3333435058594, + "t": 112.39996337890625, + "r": 479.6666564941406, + "b": 99.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~2.125", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/6", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 90.1905517578125, + "t": 627.1756591796875, + "r": 497.99456787109375, + "b": 173.57891845703125, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/35" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 166.3333282470703, + "t": 622.066650390625, + "r": 189.0, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "TF", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 226.3333282470703, + "t": 622.7332763671875, + "r": 252.3333282470703, + "b": 590.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "STF %", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.07037353515625, + "t": 622.066650390625, + "r": 310.92962646484375, + "b": 593.2073974609375, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.07037353515625, + "t": 617.581298828125, + "r": 366.92962646484375, + "b": 593.2073974609375, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "4 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.4267578125, + "t": 621.3999633789062, + "r": 419.9065856933594, + "b": 592.86279296875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.4683532714844, + "t": 618.3999633789062, + "r": 479.8649597167969, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "01 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.33333587646484, + "t": 605.066650390625, + "r": 137.3333282470703, + "b": 588.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.3333282470703, + "t": 605.066650390625, + "r": 194.3333282470703, + "b": 588.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.6666564941406, + "t": 582.066650390625, + "r": 370.3333435058594, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 582.066650390625, + "r": 426.3333435058594, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 582.066650390625, + "r": 483.6666564941406, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.0, + "t": 583.066650390625, + "r": 132.3333282470703, + "b": 569.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 582.7332763671875, + "r": 195.0, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7087", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 582.066650390625, + "r": 252.3333282470703, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.0, + "t": 583.066650390625, + "r": 314.3333435058594, + "b": 569.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 561.7332763671875, + "r": 132.6666717529297, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 562.7332763671875, + "r": 195.0, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7086", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 562.066650390625, + "r": 252.3333282470703, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.028", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 561.7332763671875, + "r": 314.0, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.0, + "t": 561.7332763671875, + "r": 370.0, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.0, + "t": 561.7332763671875, + "r": 423.3333435058594, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.0, + "t": 561.7332763671875, + "r": 481.3333435058594, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 542.3999633789062, + "r": 132.6666717529297, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 543.7332763671875, + "r": 195.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.6666717529297, + "t": 542.3999633789062, + "r": 252.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.6666564941406, + "t": 542.3999633789062, + "r": 312.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.0, + "t": 542.3999633789062, + "r": 370.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.0, + "t": 542.3999633789062, + "r": 425.3333435058594, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.0, + "t": 542.3999633789062, + "r": 481.3333435058594, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 523.3999633789062, + "r": 133.0, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 523.3999633789062, + "r": 195.0, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 523.3999633789062, + "r": 252.3333282470703, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.3333435058594, + "t": 523.3999633789062, + "r": 312.3333435058594, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.0, + "t": 523.066650390625, + "r": 370.0, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.6666564941406, + "t": 524.066650390625, + "r": 423.6666564941406, + "b": 512.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 524.066650390625, + "r": 483.6666564941406, + "b": 512.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 504.0666198730469, + "r": 133.0, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 504.0666198730469, + "r": 195.0, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 504.0666198730469, + "r": 252.3333282470703, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.3333435058594, + "t": 504.0666198730469, + "r": 312.3333435058594, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 504.0666198730469, + "r": 370.3333435058594, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.6666564941406, + "t": 504.0666198730469, + "r": 423.6666564941406, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 504.0666198730469, + "r": 483.6666564941406, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 483.7333068847656, + "r": 132.0, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 484.7333068847656, + "r": 195.0, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.6666717529297, + "t": 483.7333068847656, + "r": 252.0, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.6666564941406, + "t": 483.7333068847656, + "r": 312.0, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.6666564941406, + "t": 483.7333068847656, + "r": 368.0, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.6666564941406, + "t": 484.7333068847656, + "r": 423.6666564941406, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.6666564941406, + "t": 484.7333068847656, + "r": 481.6666564941406, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 464.39996337890625, + "r": 132.6666717529297, + "b": 453.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 464.7333068847656, + "r": 195.0, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 464.7333068847656, + "r": 252.3333282470703, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 464.7333068847656, + "r": 315.0, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.6666564941406, + "t": 465.39996337890625, + "r": 370.3333435058594, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.6666564941406, + "t": 465.39996337890625, + "r": 423.6666564941406, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.6666564941406, + "t": 465.39996337890625, + "r": 481.6666564941406, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 444.39996337890625, + "r": 132.6666717529297, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 445.39996337890625, + "r": 195.0, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7083", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 444.39996337890625, + "r": 254.6666717529297, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.009", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 444.39996337890625, + "r": 314.6666564941406, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 445.39996337890625, + "r": 370.3333435058594, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 445.39996337890625, + "r": 426.3333435058594, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 445.39996337890625, + "r": 484.3333435058594, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 426.0666198730469, + "r": 133.0, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 426.39996337890625, + "r": 194.3333282470703, + "b": 414.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7081", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 426.0666198730469, + "r": 255.0, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.038", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 426.0666198730469, + "r": 315.0, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 426.0666198730469, + "r": 370.3333435058594, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.0, + "t": 425.7333068847656, + "r": 426.0, + "b": 415.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.0, + "t": 425.7333068847656, + "r": 481.3333435058594, + "b": 415.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.66666412353516, + "t": 405.7333068847656, + "r": 132.6666717529297, + "b": 395.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 406.7333068847656, + "r": 194.3333282470703, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7081", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 406.0666198730469, + "r": 255.0, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.0, + "t": 407.39996337890625, + "r": 315.0, + "b": 393.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.195", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 406.7333068847656, + "r": 370.3333435058594, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.6666564941406, + "t": 406.7333068847656, + "r": 424.3333435058594, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 406.7333068847656, + "r": 484.3333435058594, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 386.7333068847656, + "r": 133.0, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 387.0666198730469, + "r": 195.0, + "b": 375.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7079", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 386.7333068847656, + "r": 255.0, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.070", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 386.7333068847656, + "r": 315.0, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.370", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 386.7333068847656, + "r": 370.3333435058594, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.6666564941406, + "t": 386.7333068847656, + "r": 424.3333435058594, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 387.39996337890625, + "r": 484.3333435058594, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.33333587646484, + "t": 366.7333068847656, + "r": 133.0, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 368.0666198730469, + "r": 195.0, + "b": 354.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7077", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 366.7333068847656, + "r": 255.0, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.099", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 366.39996337890625, + "r": 314.6666564941406, + "b": 355.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.680", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.6666564941406, + "t": 366.39996337890625, + "r": 370.0, + "b": 355.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.150", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 367.39996337890625, + "r": 426.3333435058594, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 367.39996337890625, + "r": 484.3333435058594, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.33333587646484, + "t": 346.39996337890625, + "r": 132.6666717529297, + "b": 335.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 348.0666198730469, + "r": 195.0, + "b": 334.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 346.7333068847656, + "r": 255.0, + "b": 334.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.144", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 347.39996337890625, + "r": 315.0, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 347.39996337890625, + "r": 370.3333435058594, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.6666564941406, + "t": 347.39996337890625, + "r": 424.3333435058594, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 347.39996337890625, + "r": 484.3333435058594, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.0, + "t": 327.39996337890625, + "r": 133.0, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 327.39996337890625, + "r": 195.0, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7067", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 327.39996337890625, + "r": 255.0, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.228", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 327.39996337890625, + "r": 315.0, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.525", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.6666564941406, + "t": 327.0666198730469, + "r": 370.6666564941406, + "b": 316.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.6666564941406, + "t": 328.0666198730469, + "r": 424.3333435058594, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 328.0666198730469, + "r": 484.3333435058594, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.33333587646484, + "t": 307.7333068847656, + "r": 132.6666717529297, + "b": 297.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 308.7333068847656, + "r": 195.0, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.0, + "t": 308.0666198730469, + "r": 255.0, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.293", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 307.7333068847656, + "r": 314.6666564941406, + "b": 297.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.915", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.6666564941406, + "t": 307.7333068847656, + "r": 370.0, + "b": 297.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.540", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 308.7333068847656, + "r": 426.3333435058594, + "b": 296.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.0, + "t": 308.39996337890625, + "r": 484.0, + "b": 297.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.0, + "t": 288.7333068847656, + "r": 133.0, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 289.0666198730469, + "r": 195.0, + "b": 277.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7053", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.0, + "t": 288.7333068847656, + "r": 255.0, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.426", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 288.7333068847656, + "r": 315.0, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.250", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 288.7333068847656, + "r": 371.0, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.640", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 289.39996337890625, + "r": 426.3333435058594, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 289.39996337890625, + "r": 484.3333435058594, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.33333587646484, + "t": 268.39996337890625, + "r": 132.6666717529297, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 270.0666198730469, + "r": 194.3333282470703, + "b": 256.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7041", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.3333282470703, + "t": 268.39996337890625, + "r": 254.6666717529297, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.599", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 269.7333068847656, + "r": 315.0, + "b": 256.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.415", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 269.39996337890625, + "r": 371.0, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.875", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 270.0666198730469, + "r": 426.3333435058594, + "b": 258.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 270.0666198730469, + "r": 484.3333435058594, + "b": 258.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.33333587646484, + "t": 249.06663513183594, + "r": 132.6666717529297, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 250.06663513183594, + "r": 195.6666717529297, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7026", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 249.06663513183594, + "r": 254.6666717529297, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.818", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 250.06663513183594, + "r": 315.0, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~2.345", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 250.06663513183594, + "r": 371.0, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 249.73329162597656, + "r": 426.0, + "b": 239.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 250.73329162597656, + "r": 484.3333435058594, + "b": 238.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.33333587646484, + "t": 229.06663513183594, + "r": 132.6666717529297, + "b": 218.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 230.06663513183594, + "r": 195.6666717529297, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.0, + "t": 230.06663513183594, + "r": 255.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.103", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 230.06663513183594, + "r": 315.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 230.06663513183594, + "r": 371.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.490", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.3333435058594, + "t": 230.73329162597656, + "r": 424.3333435058594, + "b": 218.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 230.73329162597656, + "r": 484.3333435058594, + "b": 218.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.0, + "t": 210.06663513183594, + "r": 133.0, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 210.06663513183594, + "r": 195.0, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6980", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.0, + "t": 210.73329162597656, + "r": 255.3333282470703, + "b": 197.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.467", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 210.73329162597656, + "r": 315.6666564941406, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~0.775", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 210.73329162597656, + "r": 371.0, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.950", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.6666564941406, + "t": 210.39996337890625, + "r": 424.0, + "b": 199.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 211.39996337890625, + "r": 484.3333435058594, + "b": 199.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 103.0, + "t": 190.73329162597656, + "r": 133.0, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 190.73329162597656, + "r": 195.6666717529297, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6950", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 190.73329162597656, + "r": 255.0, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.883", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 190.73329162597656, + "r": 313.0, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.345", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.6666564941406, + "t": 190.39996337890625, + "r": 370.6666564941406, + "b": 179.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 191.39996337890625, + "r": 426.3333435058594, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 192.06663513183594, + "r": 482.3333435058594, + "b": 180.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.080", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 23, + "num_cols": 7, + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 166.3333282470703, + "t": 622.066650390625, + "r": 189.0, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "TF", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 226.3333282470703, + "t": 622.7332763671875, + "r": 252.3333282470703, + "b": 590.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "STF %", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.07037353515625, + "t": 622.066650390625, + "r": 310.92962646484375, + "b": 593.2073974609375, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.07037353515625, + "t": 617.581298828125, + "r": 366.92962646484375, + "b": 593.2073974609375, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "4 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.4267578125, + "t": 621.3999633789062, + "r": 419.9065856933594, + "b": 592.86279296875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.4683532714844, + "t": 618.3999633789062, + "r": 479.8649597167969, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "01 10-4", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.33333587646484, + "t": 605.066650390625, + "r": 137.3333282470703, + "b": 588.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.3333282470703, + "t": 605.066650390625, + "r": 194.3333282470703, + "b": 588.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.6666564941406, + "t": 582.066650390625, + "r": 370.3333435058594, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 582.066650390625, + "r": 426.3333435058594, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 582.066650390625, + "r": 483.6666564941406, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.0, + "t": 583.066650390625, + "r": 132.3333282470703, + "b": 569.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 582.7332763671875, + "r": 195.0, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7087", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 582.066650390625, + "r": 252.3333282470703, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.0, + "t": 583.066650390625, + "r": 314.3333435058594, + "b": 569.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 561.7332763671875, + "r": 132.6666717529297, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 562.7332763671875, + "r": 195.0, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7086", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 562.066650390625, + "r": 252.3333282470703, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.028", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 561.7332763671875, + "r": 314.0, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.0, + "t": 561.7332763671875, + "r": 370.0, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.0, + "t": 561.7332763671875, + "r": 423.3333435058594, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.0, + "t": 561.7332763671875, + "r": 481.3333435058594, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 542.3999633789062, + "r": 132.6666717529297, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 543.7332763671875, + "r": 195.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.6666717529297, + "t": 542.3999633789062, + "r": 252.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.6666564941406, + "t": 542.3999633789062, + "r": 312.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.0, + "t": 542.3999633789062, + "r": 370.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.0, + "t": 542.3999633789062, + "r": 425.3333435058594, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.0, + "t": 542.3999633789062, + "r": 481.3333435058594, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 523.3999633789062, + "r": 133.0, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 523.3999633789062, + "r": 195.0, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 523.3999633789062, + "r": 252.3333282470703, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.3333435058594, + "t": 523.3999633789062, + "r": 312.3333435058594, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.0, + "t": 523.066650390625, + "r": 370.0, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.6666564941406, + "t": 524.066650390625, + "r": 423.6666564941406, + "b": 512.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 524.066650390625, + "r": 483.6666564941406, + "b": 512.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 504.0666198730469, + "r": 133.0, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 504.0666198730469, + "r": 195.0, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 504.0666198730469, + "r": 252.3333282470703, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.3333435058594, + "t": 504.0666198730469, + "r": 312.3333435058594, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 504.0666198730469, + "r": 370.3333435058594, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.6666564941406, + "t": 504.0666198730469, + "r": 423.6666564941406, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 504.0666198730469, + "r": 483.6666564941406, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 483.7333068847656, + "r": 132.0, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 484.7333068847656, + "r": 195.0, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.6666717529297, + "t": 483.7333068847656, + "r": 252.0, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.6666564941406, + "t": 483.7333068847656, + "r": 312.0, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.6666564941406, + "t": 483.7333068847656, + "r": 368.0, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.6666564941406, + "t": 484.7333068847656, + "r": 423.6666564941406, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.6666564941406, + "t": 484.7333068847656, + "r": 481.6666564941406, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 464.39996337890625, + "r": 132.6666717529297, + "b": 453.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 464.7333068847656, + "r": 195.0, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.3333282470703, + "t": 464.7333068847656, + "r": 252.3333282470703, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 464.7333068847656, + "r": 315.0, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.6666564941406, + "t": 465.39996337890625, + "r": 370.3333435058594, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.6666564941406, + "t": 465.39996337890625, + "r": 423.6666564941406, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.6666564941406, + "t": 465.39996337890625, + "r": 481.6666564941406, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 444.39996337890625, + "r": 132.6666717529297, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 445.39996337890625, + "r": 195.0, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7083", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 444.39996337890625, + "r": 254.6666717529297, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.009", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 444.39996337890625, + "r": 314.6666564941406, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 445.39996337890625, + "r": 370.3333435058594, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 445.39996337890625, + "r": 426.3333435058594, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 445.39996337890625, + "r": 484.3333435058594, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 426.0666198730469, + "r": 133.0, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 426.39996337890625, + "r": 194.3333282470703, + "b": 414.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7081", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 426.0666198730469, + "r": 255.0, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.038", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 426.0666198730469, + "r": 315.0, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 426.0666198730469, + "r": 370.3333435058594, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.0, + "t": 425.7333068847656, + "r": 426.0, + "b": 415.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.0, + "t": 425.7333068847656, + "r": 481.3333435058594, + "b": 415.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.66666412353516, + "t": 405.7333068847656, + "r": 132.6666717529297, + "b": 395.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 406.7333068847656, + "r": 194.3333282470703, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7081", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 406.0666198730469, + "r": 255.0, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.0, + "t": 407.39996337890625, + "r": 315.0, + "b": 393.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.195", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 406.7333068847656, + "r": 370.3333435058594, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.6666564941406, + "t": 406.7333068847656, + "r": 424.3333435058594, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 406.7333068847656, + "r": 484.3333435058594, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 386.7333068847656, + "r": 133.0, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 387.0666198730469, + "r": 195.0, + "b": 375.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7079", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 386.7333068847656, + "r": 255.0, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.070", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 386.7333068847656, + "r": 315.0, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.370", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 386.7333068847656, + "r": 370.3333435058594, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.6666564941406, + "t": 386.7333068847656, + "r": 424.3333435058594, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 387.39996337890625, + "r": 484.3333435058594, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.33333587646484, + "t": 366.7333068847656, + "r": 133.0, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 368.0666198730469, + "r": 195.0, + "b": 354.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7077", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 366.7333068847656, + "r": 255.0, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.099", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 366.39996337890625, + "r": 314.6666564941406, + "b": 355.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.680", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.6666564941406, + "t": 366.39996337890625, + "r": 370.0, + "b": 355.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.150", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 367.39996337890625, + "r": 426.3333435058594, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 367.39996337890625, + "r": 484.3333435058594, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.33333587646484, + "t": 346.39996337890625, + "r": 132.6666717529297, + "b": 335.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 348.0666198730469, + "r": 195.0, + "b": 334.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 346.7333068847656, + "r": 255.0, + "b": 334.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.144", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 347.39996337890625, + "r": 315.0, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 347.39996337890625, + "r": 370.3333435058594, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.6666564941406, + "t": 347.39996337890625, + "r": 424.3333435058594, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 347.39996337890625, + "r": 484.3333435058594, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.0, + "t": 327.39996337890625, + "r": 133.0, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 327.39996337890625, + "r": 195.0, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7067", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 327.39996337890625, + "r": 255.0, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.228", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 327.39996337890625, + "r": 315.0, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.525", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.6666564941406, + "t": 327.0666198730469, + "r": 370.6666564941406, + "b": 316.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.6666564941406, + "t": 328.0666198730469, + "r": 424.3333435058594, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 328.0666198730469, + "r": 484.3333435058594, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.33333587646484, + "t": 307.7333068847656, + "r": 132.6666717529297, + "b": 297.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 308.7333068847656, + "r": 195.0, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.0, + "t": 308.0666198730469, + "r": 255.0, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.293", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 307.7333068847656, + "r": 314.6666564941406, + "b": 297.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.915", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.6666564941406, + "t": 307.7333068847656, + "r": 370.0, + "b": 297.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.540", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 308.7333068847656, + "r": 426.3333435058594, + "b": 296.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.0, + "t": 308.39996337890625, + "r": 484.0, + "b": 297.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.015", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.0, + "t": 288.7333068847656, + "r": 133.0, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 289.0666198730469, + "r": 195.0, + "b": 277.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7053", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.0, + "t": 288.7333068847656, + "r": 255.0, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.426", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 288.7333068847656, + "r": 315.0, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.250", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 288.7333068847656, + "r": 371.0, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.640", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 289.39996337890625, + "r": 426.3333435058594, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 289.39996337890625, + "r": 484.3333435058594, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.33333587646484, + "t": 268.39996337890625, + "r": 132.6666717529297, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.6666717529297, + "t": 270.0666198730469, + "r": 194.3333282470703, + "b": 256.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7041", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.3333282470703, + "t": 268.39996337890625, + "r": 254.6666717529297, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.599", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.6666564941406, + "t": 269.7333068847656, + "r": 315.0, + "b": 256.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.415", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 269.39996337890625, + "r": 371.0, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.875", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 270.0666198730469, + "r": 426.3333435058594, + "b": 258.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 270.0666198730469, + "r": 484.3333435058594, + "b": 258.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.33333587646484, + "t": 249.06663513183594, + "r": 132.6666717529297, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 250.06663513183594, + "r": 195.6666717529297, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7026", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.6666717529297, + "t": 249.06663513183594, + "r": 254.6666717529297, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.818", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 250.06663513183594, + "r": 315.0, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~2.345", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 250.06663513183594, + "r": 371.0, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 249.73329162597656, + "r": 426.0, + "b": 239.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 250.73329162597656, + "r": 484.3333435058594, + "b": 238.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.33333587646484, + "t": 229.06663513183594, + "r": 132.6666717529297, + "b": 218.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 230.06663513183594, + "r": 195.6666717529297, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.0, + "t": 230.06663513183594, + "r": 255.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.103", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 230.06663513183594, + "r": 315.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 230.06663513183594, + "r": 371.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.490", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.3333435058594, + "t": 230.73329162597656, + "r": 424.3333435058594, + "b": 218.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 230.73329162597656, + "r": 484.3333435058594, + "b": 218.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.0, + "t": 210.06663513183594, + "r": 133.0, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 210.06663513183594, + "r": 195.0, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6980", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.0, + "t": 210.73329162597656, + "r": 255.3333282470703, + "b": 197.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.467", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 210.73329162597656, + "r": 315.6666564941406, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~0.775", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 210.73329162597656, + "r": 371.0, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.950", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.6666564941406, + "t": 210.39996337890625, + "r": 424.0, + "b": 199.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 211.39996337890625, + "r": 484.3333435058594, + "b": 199.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 103.0, + "t": 190.73329162597656, + "r": 133.0, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 190.73329162597656, + "r": 195.6666717529297, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6950", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 190.73329162597656, + "r": 255.0, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.883", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 190.73329162597656, + "r": 313.0, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.345", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.6666564941406, + "t": 190.39996337890625, + "r": 370.6666564941406, + "b": 179.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 191.39996337890625, + "r": 426.3333435058594, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 192.06663513183594, + "r": 482.3333435058594, + "b": 180.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.080", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/7", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 88.87802124023438, + "t": 627.3885498046875, + "r": 497.031982421875, + "b": 154.73675537109375, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/37" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "bbox": { + "l": 116.33333587646484, + "t": 622.066650390625, + "r": 121.66666412353516, + "b": 612.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "I", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 165.6666717529297, + "t": 622.7332763671875, + "r": 188.3333282470703, + "b": 610.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "TF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 226.3333282470703, + "t": 622.7332763671875, + "r": 251.6666717529297, + "b": 610.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "8TF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 287.3902893066406, + "t": 617.1925659179688, + "r": 304.94305419921875, + "b": 611.2739868164062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 346.3333435058594, + "t": 621.3999633789062, + "r": 358.3333435058594, + "b": 606.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 399.6666564941406, + "t": 620.7332763671875, + "r": 412.3333435058594, + "b": 606.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 459.3333435058594, + "t": 617.7332763671875, + "r": 470.6666564941406, + "b": 607.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "01", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.0, + "t": 605.7332763671875, + "r": 137.0, + "b": 589.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.6666717529297, + "t": 604.7332763671875, + "r": 193.6666717529297, + "b": 590.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 232.3333282470703, + "t": 604.7332763671875, + "r": 245.6666717529297, + "b": 591.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.80169677734375, + "t": 602.9560546875, + "r": 310.5316467285156, + "b": 592.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.4683532714844, + "t": 602.2893676757812, + "r": 365.8649597167969, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "10 -4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 602.2893676757812, + "r": 425.0, + "b": 569.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.065 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 601.6227416992188, + "r": 483.0, + "b": 569.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.66666412353516, + "t": 583.3999633789062, + "r": 132.3333282470703, + "b": 571.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 583.7332763671875, + "r": 194.3333282470703, + "b": 571.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7086", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 582.7332763671875, + "r": 252.3333282470703, + "b": 570.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.0, + "t": 581.7332763671875, + "r": 314.0, + "b": 571.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 582.066650390625, + "r": 367.6666564941406, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.66666412353516, + "t": 564.066650390625, + "r": 131.6666717529297, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 564.066650390625, + "r": 194.3333282470703, + "b": 551.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7086", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 563.3999633789062, + "r": 251.6666717529297, + "b": 551.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.036", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 562.7332763671875, + "r": 313.6666564941406, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 561.7332763671875, + "r": 369.3333435058594, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 562.066650390625, + "r": 423.0, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.135", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.6666564941406, + "t": 561.066650390625, + "r": 480.6666564941406, + "b": 550.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 545.066650390625, + "r": 131.6666717529297, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 544.3999633789062, + "r": 194.3333282470703, + "b": 532.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.0, + "t": 543.066650390625, + "r": 251.3333282470703, + "b": 532.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.018", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 543.3999633789062, + "r": 311.6666564941406, + "b": 531.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 542.3999633789062, + "r": 369.3333435058594, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 542.7332763671875, + "r": 423.0, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.6666564941406, + "t": 541.7332763671875, + "r": 480.6666564941406, + "b": 531.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.66666412353516, + "t": 524.7332763671875, + "r": 131.6666717529297, + "b": 512.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 524.7332763671875, + "r": 194.3333282470703, + "b": 512.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7086", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 524.066650390625, + "r": 251.6666717529297, + "b": 512.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.038", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 523.3999633789062, + "r": 311.6666564941406, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 523.3999633789062, + "r": 367.0, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.6666564941406, + "t": 522.3999633789062, + "r": 424.6666564941406, + "b": 511.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.3333435058594, + "t": 522.7332763671875, + "r": 481.0, + "b": 510.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 102.0, + "t": 504.39996337890625, + "r": 131.3333282470703, + "b": 493.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 504.7333068847656, + "r": 194.3333282470703, + "b": 492.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 504.0666198730469, + "r": 251.0, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.011", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 504.0666198730469, + "r": 311.6666564941406, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 503.0666198730469, + "r": 368.6666564941406, + "b": 492.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 503.39996337890625, + "r": 423.0, + "b": 491.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.6666564941406, + "t": 502.39996337890625, + "r": 480.6666564941406, + "b": 491.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.0, + "t": 485.39996337890625, + "r": 131.6666717529297, + "b": 473.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 485.39996337890625, + "r": 193.6666717529297, + "b": 473.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7083", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 484.7333068847656, + "r": 251.6666717529297, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 484.7333068847656, + "r": 311.6666564941406, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 483.7333068847656, + "r": 366.6666564941406, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 484.0666198730469, + "r": 423.0, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.3333435058594, + "t": 484.0666198730469, + "r": 481.0, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.0, + "t": 466.0666198730469, + "r": 131.6666717529297, + "b": 454.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 466.0666198730469, + "r": 194.3333282470703, + "b": 454.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7082", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 465.39996337890625, + "r": 253.6666717529297, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 464.39996337890625, + "r": 313.3333435058594, + "b": 453.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 464.7333068847656, + "r": 369.0, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 464.7333068847656, + "r": 423.0, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.3333435058594, + "t": 464.7333068847656, + "r": 481.0, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.66666412353516, + "t": 446.7333068847656, + "r": 131.6666717529297, + "b": 434.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 446.0666198730469, + "r": 193.0, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7081", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 445.0666198730469, + "r": 253.3333282470703, + "b": 434.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 445.39996337890625, + "r": 313.6666564941406, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 444.39996337890625, + "r": 368.6666564941406, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 444.39996337890625, + "r": 422.6666564941406, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 444.7333068847656, + "r": 483.0, + "b": 432.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.0, + "t": 427.39996337890625, + "r": 131.6666717529297, + "b": 415.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 427.0666198730469, + "r": 193.0, + "b": 415.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7081", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 425.7333068847656, + "r": 253.3333282470703, + "b": 415.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.036", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 426.0666198730469, + "r": 313.6666564941406, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 425.0666198730469, + "r": 368.6666564941406, + "b": 414.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 425.0666198730469, + "r": 422.0, + "b": 414.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 425.39996337890625, + "r": 483.0, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.0, + "t": 407.39996337890625, + "r": 131.6666717529297, + "b": 395.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 407.7333068847656, + "r": 193.6666717529297, + "b": 395.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7079", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 406.7333068847656, + "r": 253.6666717529297, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 406.0666198730469, + "r": 313.6666564941406, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.210", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 406.0666198730469, + "r": 369.0, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 406.0666198730469, + "r": 422.3333435058594, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 405.0666198730469, + "r": 482.6666564941406, + "b": 394.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.0, + "t": 388.0666198730469, + "r": 131.6666717529297, + "b": 376.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 388.39996337890625, + "r": 193.6666717529297, + "b": 376.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7079", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 387.39996337890625, + "r": 253.0, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.061", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 386.39996337890625, + "r": 313.3333435058594, + "b": 375.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.395", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 386.7333068847656, + "r": 369.0, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 385.7333068847656, + "r": 422.6666564941406, + "b": 375.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 386.0666198730469, + "r": 482.3333435058594, + "b": 374.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 367.7333068847656, + "r": 130.6666717529297, + "b": 357.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 368.39996337890625, + "r": 193.6666717529297, + "b": 356.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 367.39996337890625, + "r": 253.6666717529297, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.112", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 367.39996337890625, + "r": 313.6666564941406, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.710", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 367.39996337890625, + "r": 369.0, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.170", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 366.7333068847656, + "r": 422.3333435058594, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 366.7333068847656, + "r": 482.3333435058594, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 347.7333068847656, + "r": 130.6666717529297, + "b": 337.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 349.0666198730469, + "r": 193.6666717529297, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7072", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 347.0666198730469, + "r": 253.3333282470703, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.159", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 347.39996337890625, + "r": 313.6666564941406, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.140", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 347.39996337890625, + "r": 369.0, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 346.39996337890625, + "r": 422.0, + "b": 335.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 346.7333068847656, + "r": 483.0, + "b": 334.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 328.39996337890625, + "r": 130.6666717529297, + "b": 317.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 328.7333068847656, + "r": 193.6666717529297, + "b": 316.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7067", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 327.7333068847656, + "r": 252.6666717529297, + "b": 317.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.231", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 328.0666198730469, + "r": 313.6666564941406, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.565", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 327.0666198730469, + "r": 368.6666564941406, + "b": 316.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.410", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 327.0666198730469, + "r": 422.0, + "b": 316.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 327.0666198730469, + "r": 482.0, + "b": 316.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 309.0666198730469, + "r": 130.6666717529297, + "b": 298.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 309.39996337890625, + "r": 193.6666717529297, + "b": 297.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 308.39996337890625, + "r": 253.3333282470703, + "b": 297.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.323", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 308.7333068847656, + "r": 313.6666564941406, + "b": 296.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.970", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.6666564941406, + "t": 307.7333068847656, + "r": 368.6666564941406, + "b": 297.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.550", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 307.7333068847656, + "r": 422.0, + "b": 297.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 307.7333068847656, + "r": 482.0, + "b": 297.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 289.0666198730469, + "r": 130.6666717529297, + "b": 278.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 289.39996337890625, + "r": 193.6666717529297, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7052", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 289.39996337890625, + "r": 253.0, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.433", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 288.39996337890625, + "r": 313.3333435058594, + "b": 277.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.310", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.6666564941406, + "t": 288.39996337890625, + "r": 368.6666564941406, + "b": 277.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.665", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.6666564941406, + "t": 288.39996337890625, + "r": 424.0, + "b": 277.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 288.7333068847656, + "r": 482.3333435058594, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 269.7333068847656, + "r": 130.6666717529297, + "b": 259.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 270.0666198730469, + "r": 193.0, + "b": 258.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7041", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 270.0666198730469, + "r": 253.6666717529297, + "b": 258.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 269.0666198730469, + "r": 313.3333435058594, + "b": 258.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.505", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 269.39996337890625, + "r": 369.0, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.825", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 269.39996337890625, + "r": 424.3333435058594, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.070", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 269.39996337890625, + "r": 482.3333435058594, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.0, + "t": 250.73329162597656, + "r": 131.0, + "b": 238.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 250.73329162597656, + "r": 193.6666717529297, + "b": 238.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 249.73329162597656, + "r": 252.0, + "b": 239.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.831", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 250.06663513183594, + "r": 313.0, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~2.445", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.6666564941406, + "t": 249.06663513183594, + "r": 368.6666564941406, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~1.140", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 249.06663513183594, + "r": 422.0, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.0, + "t": 249.06663513183594, + "r": 482.0, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 230.39996337890625, + "r": 130.6666717529297, + "b": 219.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 230.73329162597656, + "r": 193.6666717529297, + "b": 218.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 230.06663513183594, + "r": 253.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.112", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 230.06663513183594, + "r": 313.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.915", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 230.06663513183594, + "r": 369.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 230.06663513183594, + "r": 424.3333435058594, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.0, + "t": 229.06663513183594, + "r": 482.0, + "b": 218.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.0, + "t": 211.39996337890625, + "r": 131.0, + "b": 199.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 211.39996337890625, + "r": 193.0, + "b": 199.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6980", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.0, + "t": 211.39996337890625, + "r": 253.0, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.450", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 210.73329162597656, + "r": 313.0, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.880", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 210.73329162597656, + "r": 369.0, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.895", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 210.73329162597656, + "r": 422.3333435058594, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.0, + "t": 209.73329162597656, + "r": 482.0, + "b": 199.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 191.06663513183594, + "r": 130.6666717529297, + "b": 180.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.3333282470703, + "t": 191.06663513183594, + "r": 192.0, + "b": 180.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6951", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.3333282470703, + "t": 191.39996337890625, + "r": 253.0, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.868", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 191.39996337890625, + "r": 311.0, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.465", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 191.39996337890625, + "r": 369.0, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.370", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.0, + "t": 190.39996337890625, + "r": 424.0, + "b": 179.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.0, + "t": 190.39996337890625, + "r": 482.0, + "b": 179.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.120", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.33333587646484, + "t": 171.73329162597656, + "r": 130.6666717529297, + "b": 161.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 172.06663513183594, + "r": 193.0, + "b": 160.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6918", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 172.06663513183594, + "r": 253.0, + "b": 160.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.326", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 172.06663513183594, + "r": 311.0, + "b": 160.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "1.815", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.6666564941406, + "t": 171.06663513183594, + "r": 368.6666564941406, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.775", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 171.39996337890625, + "r": 424.3333435058594, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 171.39996337890625, + "r": 480.3333435058594, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.205", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 24, + "num_cols": 7, + "grid": [ + [ + { + "bbox": { + "l": 116.33333587646484, + "t": 622.066650390625, + "r": 121.66666412353516, + "b": 612.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "I", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 165.6666717529297, + "t": 622.7332763671875, + "r": 188.3333282470703, + "b": 610.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "TF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 226.3333282470703, + "t": 622.7332763671875, + "r": 251.6666717529297, + "b": 610.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "8TF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 287.3902893066406, + "t": 617.1925659179688, + "r": 304.94305419921875, + "b": 611.2739868164062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 346.3333435058594, + "t": 621.3999633789062, + "r": 358.3333435058594, + "b": 606.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 399.6666564941406, + "t": 620.7332763671875, + "r": 412.3333435058594, + "b": 606.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 459.3333435058594, + "t": 617.7332763671875, + "r": 470.6666564941406, + "b": 607.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "01", + "column_header": true, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.0, + "t": 605.7332763671875, + "r": 137.0, + "b": 589.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.6666717529297, + "t": 604.7332763671875, + "r": 193.6666717529297, + "b": 590.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 232.3333282470703, + "t": 604.7332763671875, + "r": 245.6666717529297, + "b": 591.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 282.80169677734375, + "t": 602.9560546875, + "r": 310.5316467285156, + "b": 592.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.4683532714844, + "t": 602.2893676757812, + "r": 365.8649597167969, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "10 -4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 602.2893676757812, + "r": 425.0, + "b": 569.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.065 10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 601.6227416992188, + "r": 483.0, + "b": 569.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005 10-4", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.66666412353516, + "t": 583.3999633789062, + "r": 132.3333282470703, + "b": 571.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 583.7332763671875, + "r": 194.3333282470703, + "b": 571.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7086", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 582.7332763671875, + "r": 252.3333282470703, + "b": 570.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.0, + "t": 581.7332763671875, + "r": 314.0, + "b": 571.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 582.066650390625, + "r": 367.6666564941406, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.66666412353516, + "t": 564.066650390625, + "r": 131.6666717529297, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 564.066650390625, + "r": 194.3333282470703, + "b": 551.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7086", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 563.3999633789062, + "r": 251.6666717529297, + "b": 551.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.036", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 562.7332763671875, + "r": 313.6666564941406, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 561.7332763671875, + "r": 369.3333435058594, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 562.066650390625, + "r": 423.0, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.135", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.6666564941406, + "t": 561.066650390625, + "r": 480.6666564941406, + "b": 550.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 545.066650390625, + "r": 131.6666717529297, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 544.3999633789062, + "r": 194.3333282470703, + "b": 532.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 222.0, + "t": 543.066650390625, + "r": 251.3333282470703, + "b": 532.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.018", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 543.3999633789062, + "r": 311.6666564941406, + "b": 531.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 542.3999633789062, + "r": 369.3333435058594, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 542.7332763671875, + "r": 423.0, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.6666564941406, + "t": 541.7332763671875, + "r": 480.6666564941406, + "b": 531.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.66666412353516, + "t": 524.7332763671875, + "r": 131.6666717529297, + "b": 512.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 524.7332763671875, + "r": 194.3333282470703, + "b": 512.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7086", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 524.066650390625, + "r": 251.6666717529297, + "b": 512.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.038", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 523.3999633789062, + "r": 311.6666564941406, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.0, + "t": 523.3999633789062, + "r": 367.0, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.6666564941406, + "t": 522.3999633789062, + "r": 424.6666564941406, + "b": 511.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.3333435058594, + "t": 522.7332763671875, + "r": 481.0, + "b": 510.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 102.0, + "t": 504.39996337890625, + "r": 131.3333282470703, + "b": 493.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 504.7333068847656, + "r": 194.3333282470703, + "b": 492.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 504.0666198730469, + "r": 251.0, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.011", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 504.0666198730469, + "r": 311.6666564941406, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 503.0666198730469, + "r": 368.6666564941406, + "b": 492.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 503.39996337890625, + "r": 423.0, + "b": 491.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.6666564941406, + "t": 502.39996337890625, + "r": 480.6666564941406, + "b": 491.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.0, + "t": 485.39996337890625, + "r": 131.6666717529297, + "b": 473.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 485.39996337890625, + "r": 193.6666717529297, + "b": 473.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7083", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 221.6666717529297, + "t": 484.7333068847656, + "r": 251.6666717529297, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.6666564941406, + "t": 484.7333068847656, + "r": 311.6666564941406, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.3333435058594, + "t": 483.7333068847656, + "r": 366.6666564941406, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 484.0666198730469, + "r": 423.0, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.3333435058594, + "t": 484.0666198730469, + "r": 481.0, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.0, + "t": 466.0666198730469, + "r": 131.6666717529297, + "b": 454.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 466.0666198730469, + "r": 194.3333282470703, + "b": 454.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7082", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.6666717529297, + "t": 465.39996337890625, + "r": 253.6666717529297, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 464.39996337890625, + "r": 313.3333435058594, + "b": 453.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 464.7333068847656, + "r": 369.0, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 464.7333068847656, + "r": 423.0, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.3333435058594, + "t": 464.7333068847656, + "r": 481.0, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.66666412353516, + "t": 446.7333068847656, + "r": 131.6666717529297, + "b": 434.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 446.0666198730469, + "r": 193.0, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7081", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 445.0666198730469, + "r": 253.3333282470703, + "b": 434.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 445.39996337890625, + "r": 313.6666564941406, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 444.39996337890625, + "r": 368.6666564941406, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 444.39996337890625, + "r": 422.6666564941406, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 444.7333068847656, + "r": 483.0, + "b": 432.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.0, + "t": 427.39996337890625, + "r": 131.6666717529297, + "b": 415.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 427.0666198730469, + "r": 193.0, + "b": 415.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7081", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 425.7333068847656, + "r": 253.3333282470703, + "b": 415.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.036", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 426.0666198730469, + "r": 313.6666564941406, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 425.0666198730469, + "r": 368.6666564941406, + "b": 414.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 425.0666198730469, + "r": 422.0, + "b": 414.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 425.39996337890625, + "r": 483.0, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.0, + "t": 407.39996337890625, + "r": 131.6666717529297, + "b": 395.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 407.7333068847656, + "r": 193.6666717529297, + "b": 395.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7079", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 406.7333068847656, + "r": 253.6666717529297, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 406.0666198730469, + "r": 313.6666564941406, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.210", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 406.0666198730469, + "r": 369.0, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 406.0666198730469, + "r": 422.3333435058594, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 405.0666198730469, + "r": 482.6666564941406, + "b": 394.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.0, + "t": 388.0666198730469, + "r": 131.6666717529297, + "b": 376.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 388.39996337890625, + "r": 193.6666717529297, + "b": 376.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7079", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 387.39996337890625, + "r": 253.0, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.061", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 386.39996337890625, + "r": 313.3333435058594, + "b": 375.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.395", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 386.7333068847656, + "r": 369.0, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 385.7333068847656, + "r": 422.6666564941406, + "b": 375.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 386.0666198730469, + "r": 482.3333435058594, + "b": 374.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 367.7333068847656, + "r": 130.6666717529297, + "b": 357.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 368.39996337890625, + "r": 193.6666717529297, + "b": 356.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 367.39996337890625, + "r": 253.6666717529297, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.112", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 367.39996337890625, + "r": 313.6666564941406, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.710", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 367.39996337890625, + "r": 369.0, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.170", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 366.7333068847656, + "r": 422.3333435058594, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 366.7333068847656, + "r": 482.3333435058594, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 347.7333068847656, + "r": 130.6666717529297, + "b": 337.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 349.0666198730469, + "r": 193.6666717529297, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7072", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 347.0666198730469, + "r": 253.3333282470703, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.159", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 347.39996337890625, + "r": 313.6666564941406, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.140", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.0, + "t": 347.39996337890625, + "r": 369.0, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 346.39996337890625, + "r": 422.0, + "b": 335.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 346.7333068847656, + "r": 483.0, + "b": 334.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 328.39996337890625, + "r": 130.6666717529297, + "b": 317.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 328.7333068847656, + "r": 193.6666717529297, + "b": 316.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7067", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 327.7333068847656, + "r": 252.6666717529297, + "b": 317.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.231", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 328.0666198730469, + "r": 313.6666564941406, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.565", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.3333435058594, + "t": 327.0666198730469, + "r": 368.6666564941406, + "b": 316.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.410", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 327.0666198730469, + "r": 422.0, + "b": 316.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 327.0666198730469, + "r": 482.0, + "b": 316.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 309.0666198730469, + "r": 130.6666717529297, + "b": 298.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 309.39996337890625, + "r": 193.6666717529297, + "b": 297.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 308.39996337890625, + "r": 253.3333282470703, + "b": 297.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.323", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 308.7333068847656, + "r": 313.6666564941406, + "b": 296.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.970", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.6666564941406, + "t": 307.7333068847656, + "r": 368.6666564941406, + "b": 297.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.550", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 307.7333068847656, + "r": 422.0, + "b": 297.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 307.7333068847656, + "r": 482.0, + "b": 297.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 289.0666198730469, + "r": 130.6666717529297, + "b": 278.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 289.39996337890625, + "r": 193.6666717529297, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7052", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 289.39996337890625, + "r": 253.0, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.433", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 288.39996337890625, + "r": 313.3333435058594, + "b": 277.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.310", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.6666564941406, + "t": 288.39996337890625, + "r": 368.6666564941406, + "b": 277.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.665", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.6666564941406, + "t": 288.39996337890625, + "r": 424.0, + "b": 277.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 288.7333068847656, + "r": 482.3333435058594, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 269.7333068847656, + "r": 130.6666717529297, + "b": 259.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 270.0666198730469, + "r": 193.0, + "b": 258.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7041", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 270.0666198730469, + "r": 253.6666717529297, + "b": 258.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 269.0666198730469, + "r": 313.3333435058594, + "b": 258.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.505", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 269.39996337890625, + "r": 369.0, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.825", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 269.39996337890625, + "r": 424.3333435058594, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.070", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 269.39996337890625, + "r": 482.3333435058594, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.065", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.0, + "t": 250.73329162597656, + "r": 131.0, + "b": 238.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 250.73329162597656, + "r": 193.6666717529297, + "b": 238.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.3333282470703, + "t": 249.73329162597656, + "r": 252.0, + "b": 239.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.831", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 250.06663513183594, + "r": 313.0, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~2.445", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.6666564941406, + "t": 249.06663513183594, + "r": 368.6666564941406, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~1.140", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 249.06663513183594, + "r": 422.0, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.0, + "t": 249.06663513183594, + "r": 482.0, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.060", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 230.39996337890625, + "r": 130.6666717529297, + "b": 219.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 230.73329162597656, + "r": 193.6666717529297, + "b": 218.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 230.06663513183594, + "r": 253.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.112", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 230.06663513183594, + "r": 313.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.915", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 230.06663513183594, + "r": 369.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 230.06663513183594, + "r": 424.3333435058594, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.0, + "t": 229.06663513183594, + "r": 482.0, + "b": 218.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.0, + "t": 211.39996337890625, + "r": 131.0, + "b": 199.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 211.39996337890625, + "r": 193.0, + "b": 199.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6980", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.0, + "t": 211.39996337890625, + "r": 253.0, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.450", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 210.73329162597656, + "r": 313.0, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.880", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 210.73329162597656, + "r": 369.0, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.895", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 210.73329162597656, + "r": 422.3333435058594, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.0, + "t": 209.73329162597656, + "r": 482.0, + "b": 199.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.080", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 191.06663513183594, + "r": 130.6666717529297, + "b": 180.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.3333282470703, + "t": 191.06663513183594, + "r": 192.0, + "b": 180.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6951", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.3333282470703, + "t": 191.39996337890625, + "r": 253.0, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.868", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 191.39996337890625, + "r": 311.0, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.465", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 191.39996337890625, + "r": 369.0, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.370", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.0, + "t": 190.39996337890625, + "r": 424.0, + "b": 179.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.0, + "t": 190.39996337890625, + "r": 482.0, + "b": 179.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.120", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 101.33333587646484, + "t": 171.73329162597656, + "r": 130.6666717529297, + "b": 161.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 172.06663513183594, + "r": 193.0, + "b": 160.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6918", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 172.06663513183594, + "r": 253.0, + "b": 160.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.326", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.0, + "t": 172.06663513183594, + "r": 311.0, + "b": 160.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "1.815", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.6666564941406, + "t": 171.06663513183594, + "r": 368.6666564941406, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.775", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 171.39996337890625, + "r": 424.3333435058594, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 171.39996337890625, + "r": 480.3333435058594, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.205", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/8", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 86.94476318359375, + "t": 627.4739990234375, + "r": 492.6189880371094, + "b": 114.65557861328125, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/39" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "bbox": { + "l": 115.0, + "t": 621.3999633789062, + "r": 120.33333587646484, + "b": 612.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "I", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 165.0, + "t": 622.7332763671875, + "r": 187.6666717529297, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "IF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 225.0, + "t": 622.066650390625, + "r": 250.3333282470703, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "STF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.7236328125, + "t": 616.8592529296875, + "r": 303.2763671875, + "b": 610.940673828125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 344.3333435058594, + "t": 621.3999633789062, + "r": 356.3333435058594, + "b": 606.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 397.3333435058594, + "t": 620.3999633789062, + "r": 408.0, + "b": 607.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 455.0, + "t": 618.066650390625, + "r": 467.0, + "b": 606.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "01", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 98.33333587646484, + "t": 605.7332763671875, + "r": 135.3333282470703, + "b": 588.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 160.3333282470703, + "t": 604.066650390625, + "r": 192.3333282470703, + "b": 590.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.6666717529297, + "t": 603.3999633789062, + "r": 244.3333282470703, + "b": 590.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.4683532714844, + "t": 602.2893676757812, + "r": 309.19830322265625, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.1350402832031, + "t": 602.2893676757812, + "r": 364.5316467285156, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.1350402832031, + "t": 601.6227416992188, + "r": 416.5316467285156, + "b": 591.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.4037170410156, + "t": 600.9258422851562, + "r": 475.5962829589844, + "b": 591.8740844726562, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.66666412353516, + "t": 582.3999633789062, + "r": 130.6666717529297, + "b": 571.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 582.7332763671875, + "r": 193.0, + "b": 570.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7076", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 582.066650390625, + "r": 251.0, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 582.066650390625, + "r": 310.3333435058594, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.0u0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.0, + "t": 581.066650390625, + "r": 366.0, + "b": 570.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.0, + "t": 580.3999633789062, + "r": 420.0, + "b": 569.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.3333435058594, + "t": 580.3999633789062, + "r": 476.0, + "b": 569.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.33333587646484, + "t": 563.3999633789062, + "r": 130.3333282470703, + "b": 551.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 563.3999633789062, + "r": 193.0, + "b": 551.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7074", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.3333282470703, + "t": 562.7332763671875, + "r": 252.3333282470703, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.0, + "t": 561.7332763671875, + "r": 312.0, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.6666564941406, + "t": 562.066650390625, + "r": 367.6666564941406, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 561.3999633789062, + "r": 419.6666564941406, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 444.6666564941406, + "t": 561.066650390625, + "r": 478.6666564941406, + "b": 550.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.33333587646484, + "t": 544.066650390625, + "r": 130.3333282470703, + "b": 532.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 544.066650390625, + "r": 193.0, + "b": 532.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 543.3999633789062, + "r": 252.3333282470703, + "b": 531.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.032", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.0, + "t": 542.3999633789062, + "r": 312.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.290", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 542.7332763671875, + "r": 367.6666564941406, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 542.7332763671875, + "r": 420.3333435058594, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 444.0, + "t": 541.7332763671875, + "r": 478.0, + "b": 531.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.33333587646484, + "t": 524.7332763671875, + "r": 130.3333282470703, + "b": 512.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 525.066650390625, + "r": 191.6666717529297, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 524.066650390625, + "r": 252.3333282470703, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 523.3999633789062, + "r": 312.3333435058594, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 523.3999633789062, + "r": 367.6666564941406, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 522.7332763671875, + "r": 420.3333435058594, + "b": 510.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.155", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 522.7332763671875, + "r": 478.3333435058594, + "b": 510.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.66666412353516, + "t": 503.7333068847656, + "r": 130.0, + "b": 493.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 504.0666198730469, + "r": 192.3333282470703, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.0, + "t": 503.0666198730469, + "r": 252.0, + "b": 492.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.092", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 503.39996337890625, + "r": 311.6666564941406, + "b": 491.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.480", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 503.39996337890625, + "r": 367.6666564941406, + "b": 491.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.205", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.0, + "t": 502.39996337890625, + "r": 420.0, + "b": 491.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.120", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 444.0, + "t": 502.39996337890625, + "r": 478.0, + "b": 491.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.33333587646484, + "t": 484.7333068847656, + "r": 130.3333282470703, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 484.7333068847656, + "r": 192.3333282470703, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7066", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 484.0666198730469, + "r": 252.3333282470703, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.134", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 484.0666198730469, + "r": 311.6666564941406, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~0.480", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 484.0666198730469, + "r": 367.6666564941406, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.280", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.0, + "t": 483.0666198730469, + "r": 419.3333435058594, + "b": 472.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 483.39996337890625, + "r": 478.3333435058594, + "b": 471.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.66666412353516, + "t": 465.0666198730469, + "r": 130.0, + "b": 454.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 465.39996337890625, + "r": 192.3333282470703, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.0, + "t": 464.39996337890625, + "r": 252.0, + "b": 453.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.187", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.3333435058594, + "t": 465.39996337890625, + "r": 311.6666564941406, + "b": 452.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~0.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 464.7333068847656, + "r": 367.6666564941406, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.420", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.0, + "t": 463.7333068847656, + "r": 419.3333435058594, + "b": 453.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 444.0, + "t": 463.7333068847656, + "r": 478.0, + "b": 453.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.33333587646484, + "t": 446.0666198730469, + "r": 130.3333282470703, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 446.0666198730469, + "r": 192.3333282470703, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7057", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.0, + "t": 445.0666198730469, + "r": 252.0, + "b": 434.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.266", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 445.39996337890625, + "r": 311.6666564941406, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.230", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 445.39996337890625, + "r": 367.6666564941406, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.475", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.3333435058594, + "t": 444.39996337890625, + "r": 419.3333435058594, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 444.7333068847656, + "r": 478.3333435058594, + "b": 432.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.0, + "t": 426.39996337890625, + "r": 130.0, + "b": 415.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 426.7333068847656, + "r": 192.3333282470703, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7047", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 426.0666198730469, + "r": 251.0, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~-0.411", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 426.0666198730469, + "r": 309.6666564941406, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.6666564941406, + "t": 425.0666198730469, + "r": 366.6666564941406, + "b": 414.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "'-0.650", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.3333435058594, + "t": 425.0666198730469, + "r": 419.3333435058594, + "b": 414.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.180", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 425.39996337890625, + "r": 478.3333435058594, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.185", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 406.7333068847656, + "r": 129.6666717529297, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 406.7333068847656, + "r": 192.3333282470703, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7036", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 406.0666198730469, + "r": 252.3333282470703, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.568", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 406.0666198730469, + "r": 309.6666564941406, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.425", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 406.0666198730469, + "r": 367.0, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.795", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.0, + "t": 406.0666198730469, + "r": 419.6666564941406, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 444.0, + "t": 405.0666198730469, + "r": 478.0, + "b": 394.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.275", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 387.39996337890625, + "r": 130.3333282470703, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 387.0666198730469, + "r": 191.0, + "b": 375.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7021", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 386.7333068847656, + "r": 251.6666717529297, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.772", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 386.7333068847656, + "r": 309.0, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.960", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 386.7333068847656, + "r": 367.0, + "b": 374.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.910", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.0, + "t": 386.0666198730469, + "r": 419.6666564941406, + "b": 374.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.325", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 386.0666198730469, + "r": 478.3333435058594, + "b": 374.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.415", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.0, + "t": 367.0666198730469, + "r": 129.3333282470703, + "b": 356.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 367.39996337890625, + "r": 192.3333282470703, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.0, + "t": 367.39996337890625, + "r": 251.6666717529297, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.037", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 368.0666198730469, + "r": 309.0, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "1.730", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 366.7333068847656, + "r": 367.0, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.0, + "t": 366.7333068847656, + "r": 419.6666564941406, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.385", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 366.7333068847656, + "r": 477.6666564941406, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.625", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.0, + "t": 347.0666198730469, + "r": 129.3333282470703, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 348.39996337890625, + "r": 191.6666717529297, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6979", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.0, + "t": 347.39996337890625, + "r": 251.6666717529297, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.368", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 347.39996337890625, + "r": 309.0, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "2.840", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 347.39996337890625, + "r": 367.0, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.270", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.3333435058594, + "t": 346.39996337890625, + "r": 419.3333435058594, + "b": 335.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.415", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 444.0, + "t": 346.39996337890625, + "r": 477.3333435058594, + "b": 335.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.985", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.0, + "t": 327.7333068847656, + "r": 129.3333282470703, + "b": 317.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 328.0666198730469, + "r": 191.6666717529297, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6950", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.0, + "t": 328.0666198730469, + "r": 251.6666717529297, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.780", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.0, + "t": 327.0666198730469, + "r": 308.6666564941406, + "b": 316.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "4.330", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 327.39996337890625, + "r": 367.0, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.,320", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.0, + "t": 327.39996337890625, + "r": 419.0, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.610", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 327.39996337890625, + "r": 477.6666564941406, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.490", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 308.7333068847656, + "r": 129.6666717529297, + "b": 296.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 309.0666198730469, + "r": 191.6666717529297, + "b": 297.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6917", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.0, + "t": 308.0666198730469, + "r": 251.6666717529297, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.239", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 308.0666198730469, + "r": 309.0, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "5.925", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 308.0666198730469, + "r": 367.0, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.265", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.0, + "t": 308.0666198730469, + "r": 419.0, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.665", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 308.0666198730469, + "r": 477.6666564941406, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.985", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 289.39996337890625, + "r": 129.6666717529297, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 288.7333068847656, + "r": 191.6666717529297, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6883", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.0, + "t": 288.7333068847656, + "r": 251.0, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.731", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 288.7333068847656, + "r": 309.0, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "7.330", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 288.7333068847656, + "r": 367.0, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.195", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.3333435058594, + "t": 287.7333068847656, + "r": 418.6666564941406, + "b": 277.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.730", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.3333435058594, + "t": 287.7333068847656, + "r": 477.3333435058594, + "b": 277.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-2.545", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 100.0, + "t": 269.0666198730469, + "r": 129.3333282470703, + "b": 258.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 269.7333068847656, + "r": 191.6666717529297, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6845", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.0, + "t": 269.39996337890625, + "r": 250.3333282470703, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.261", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 269.39996337890625, + "r": 309.0, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "8.325", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 269.39996337890625, + "r": 367.0, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.6666564941406, + "t": 268.39996337890625, + "r": 418.6666564941406, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.745", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.3333435058594, + "t": 268.39996337890625, + "r": 477.3333435058594, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 250.73329162597656, + "r": 130.0, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 250.06663513183594, + "r": 191.6666717529297, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6805", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.3333282470703, + "t": 249.06663513183594, + "r": 251.3333282470703, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.824", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 250.06663513183594, + "r": 309.0, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "8.730", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.6666564941406, + "t": 249.06663513183594, + "r": 366.6666564941406, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.6666564941406, + "t": 249.06663513183594, + "r": 418.6666564941406, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.735", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.3333435058594, + "t": 249.06663513183594, + "r": 477.3333435058594, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-3.610", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 230.73329162597656, + "r": 129.6666717529297, + "b": 218.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 231.39996337890625, + "r": 191.6666717529297, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6763", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.0, + "t": 230.06663513183594, + "r": 251.6666717529297, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~4.418", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 230.06663513183594, + "r": 309.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "8.610", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 230.06663513183594, + "r": 367.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.985", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.3333435058594, + "t": 230.06663513183594, + "r": 419.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.675", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 230.06663513183594, + "r": 477.6666564941406, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.085", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.33333587646484, + "t": 210.39996337890625, + "r": 128.6666717529297, + "b": 199.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 210.73329162597656, + "r": 191.6666717529297, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6720", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 210.73329162597656, + "r": 251.6666717529297, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~5.022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 210.73329162597656, + "r": 309.0, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "8.175", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 210.73329162597656, + "r": 367.0, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.935", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.3333435058594, + "t": 210.73329162597656, + "r": 419.0, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.655", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 442.6666564941406, + "t": 211.39996337890625, + "r": 477.6666564941406, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-4.470", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.0, + "t": 191.39996337890625, + "r": 129.0, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 191.39996337890625, + "r": 191.6666717529297, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6676", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 191.39996337890625, + "r": 251.0, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~5.647", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 191.39996337890625, + "r": 309.0, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "7.535", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 191.39996337890625, + "r": 366.3333435058594, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.870", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.6666564941406, + "t": 190.39996337890625, + "r": 418.6666564941406, + "b": 179.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.640", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.3333435058594, + "t": 190.39996337890625, + "r": 477.3333435058594, + "b": 179.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-4.810", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.33333587646484, + "t": 171.06663513183594, + "r": 128.6666717529297, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.3333282470703, + "t": 171.06663513183594, + "r": 191.3333282470703, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6632", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 171.39996337890625, + "r": 251.0, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-6.273", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 171.39996337890625, + "r": 309.0, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "6.875", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 171.39996337890625, + "r": 366.3333435058594, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.795", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.6666564941406, + "t": 171.06663513183594, + "r": 418.6666564941406, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.605", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.3333435058594, + "t": 171.06663513183594, + "r": 476.6666564941406, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~5.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.0, + "t": 152.06663513183594, + "r": 129.0, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 152.06663513183594, + "r": 191.0, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6589", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 152.06663513183594, + "r": 251.0, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-6.880", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 152.06663513183594, + "r": 309.0, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "6.275", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 152.06663513183594, + "r": 366.3333435058594, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.725", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.3333435058594, + "t": 152.06663513183594, + "r": 419.0, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.550", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 152.06663513183594, + "r": 477.0, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~5.285", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.0, + "t": 132.06663513183594, + "r": 129.0, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 132.06663513183594, + "r": 191.0, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6547", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 132.06663513183594, + "r": 251.0, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-7.477", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 132.06663513183594, + "r": 308.3333435058594, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "5.675", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 132.06663513183594, + "r": 366.3333435058594, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.645", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.3333435058594, + "t": 132.06663513183594, + "r": 418.3333435058594, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.455", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 441.0, + "t": 132.06663513183594, + "r": 475.0, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~5.375", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 26, + "num_cols": 7, + "grid": [ + [ + { + "bbox": { + "l": 115.0, + "t": 621.3999633789062, + "r": 120.33333587646484, + "b": 612.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "I", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 165.0, + "t": 622.7332763671875, + "r": 187.6666717529297, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "IF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 225.0, + "t": 622.066650390625, + "r": 250.3333282470703, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "STF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.7236328125, + "t": 616.8592529296875, + "r": 303.2763671875, + "b": 610.940673828125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 344.3333435058594, + "t": 621.3999633789062, + "r": 356.3333435058594, + "b": 606.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 397.3333435058594, + "t": 620.3999633789062, + "r": 408.0, + "b": 607.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 455.0, + "t": 618.066650390625, + "r": 467.0, + "b": 606.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "01", + "column_header": true, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 98.33333587646484, + "t": 605.7332763671875, + "r": 135.3333282470703, + "b": 588.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 160.3333282470703, + "t": 604.066650390625, + "r": 192.3333282470703, + "b": 590.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.6666717529297, + "t": 603.3999633789062, + "r": 244.3333282470703, + "b": 590.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 281.4683532714844, + "t": 602.2893676757812, + "r": 309.19830322265625, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.1350402832031, + "t": 602.2893676757812, + "r": 364.5316467285156, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.1350402832031, + "t": 601.6227416992188, + "r": 416.5316467285156, + "b": 591.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.4037170410156, + "t": 600.9258422851562, + "r": 475.5962829589844, + "b": 591.8740844726562, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.66666412353516, + "t": 582.3999633789062, + "r": 130.6666717529297, + "b": 571.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 582.7332763671875, + "r": 193.0, + "b": 570.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7076", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 220.3333282470703, + "t": 582.066650390625, + "r": 251.0, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 582.066650390625, + "r": 310.3333435058594, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.0u0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.0, + "t": 581.066650390625, + "r": 366.0, + "b": 570.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.0, + "t": 580.3999633789062, + "r": 420.0, + "b": 569.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.3333435058594, + "t": 580.3999633789062, + "r": 476.0, + "b": 569.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.33333587646484, + "t": 563.3999633789062, + "r": 130.3333282470703, + "b": 551.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 563.3999633789062, + "r": 193.0, + "b": 551.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7074", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.3333282470703, + "t": 562.7332763671875, + "r": 252.3333282470703, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.0, + "t": 561.7332763671875, + "r": 312.0, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.6666564941406, + "t": 562.066650390625, + "r": 367.6666564941406, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 561.3999633789062, + "r": 419.6666564941406, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 444.6666564941406, + "t": 561.066650390625, + "r": 478.6666564941406, + "b": 550.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.33333587646484, + "t": 544.066650390625, + "r": 130.3333282470703, + "b": 532.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 544.066650390625, + "r": 193.0, + "b": 532.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 543.3999633789062, + "r": 252.3333282470703, + "b": 531.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.032", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.0, + "t": 542.3999633789062, + "r": 312.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.290", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 542.7332763671875, + "r": 367.6666564941406, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 542.7332763671875, + "r": 420.3333435058594, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 444.0, + "t": 541.7332763671875, + "r": 478.0, + "b": 531.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.33333587646484, + "t": 524.7332763671875, + "r": 130.3333282470703, + "b": 512.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 525.066650390625, + "r": 191.6666717529297, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 524.066650390625, + "r": 252.3333282470703, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 523.3999633789062, + "r": 312.3333435058594, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 523.3999633789062, + "r": 367.6666564941406, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 522.7332763671875, + "r": 420.3333435058594, + "b": 510.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.155", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 522.7332763671875, + "r": 478.3333435058594, + "b": 510.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.66666412353516, + "t": 503.7333068847656, + "r": 130.0, + "b": 493.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 504.0666198730469, + "r": 192.3333282470703, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.0, + "t": 503.0666198730469, + "r": 252.0, + "b": 492.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.092", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 503.39996337890625, + "r": 311.6666564941406, + "b": 491.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.480", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 503.39996337890625, + "r": 367.6666564941406, + "b": 491.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.205", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.0, + "t": 502.39996337890625, + "r": 420.0, + "b": 491.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.120", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 444.0, + "t": 502.39996337890625, + "r": 478.0, + "b": 491.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.33333587646484, + "t": 484.7333068847656, + "r": 130.3333282470703, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 484.7333068847656, + "r": 192.3333282470703, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7066", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 484.0666198730469, + "r": 252.3333282470703, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.134", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 484.0666198730469, + "r": 311.6666564941406, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~0.480", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 484.0666198730469, + "r": 367.6666564941406, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.280", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.0, + "t": 483.0666198730469, + "r": 419.3333435058594, + "b": 472.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 483.39996337890625, + "r": 478.3333435058594, + "b": 471.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.66666412353516, + "t": 465.0666198730469, + "r": 130.0, + "b": 454.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 465.39996337890625, + "r": 192.3333282470703, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.0, + "t": 464.39996337890625, + "r": 252.0, + "b": 453.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.187", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.3333435058594, + "t": 465.39996337890625, + "r": 311.6666564941406, + "b": 452.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~0.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 464.7333068847656, + "r": 367.6666564941406, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.420", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.0, + "t": 463.7333068847656, + "r": 419.3333435058594, + "b": 453.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 444.0, + "t": 463.7333068847656, + "r": 478.0, + "b": 453.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.33333587646484, + "t": 446.0666198730469, + "r": 130.3333282470703, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 446.0666198730469, + "r": 192.3333282470703, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7057", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.0, + "t": 445.0666198730469, + "r": 252.0, + "b": 434.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.266", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.6666564941406, + "t": 445.39996337890625, + "r": 311.6666564941406, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.230", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 445.39996337890625, + "r": 367.6666564941406, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.475", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.3333435058594, + "t": 444.39996337890625, + "r": 419.3333435058594, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 444.7333068847656, + "r": 478.3333435058594, + "b": 432.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.110", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.0, + "t": 426.39996337890625, + "r": 130.0, + "b": 415.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 426.7333068847656, + "r": 192.3333282470703, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7047", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 213.0, + "t": 426.0666198730469, + "r": 251.0, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~-0.411", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 426.0666198730469, + "r": 309.6666564941406, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.6666564941406, + "t": 425.0666198730469, + "r": 366.6666564941406, + "b": 414.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "'-0.650", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.3333435058594, + "t": 425.0666198730469, + "r": 419.3333435058594, + "b": 414.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.180", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 425.39996337890625, + "r": 478.3333435058594, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.185", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 406.7333068847656, + "r": 129.6666717529297, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 406.7333068847656, + "r": 192.3333282470703, + "b": 394.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7036", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 406.0666198730469, + "r": 252.3333282470703, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.568", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 406.0666198730469, + "r": 309.6666564941406, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.425", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 406.0666198730469, + "r": 367.0, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.795", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.0, + "t": 406.0666198730469, + "r": 419.6666564941406, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 444.0, + "t": 405.0666198730469, + "r": 478.0, + "b": 394.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.275", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 387.39996337890625, + "r": 130.3333282470703, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 387.0666198730469, + "r": 191.0, + "b": 375.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7021", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.6666717529297, + "t": 386.7333068847656, + "r": 251.6666717529297, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.772", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 386.7333068847656, + "r": 309.0, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.960", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 386.7333068847656, + "r": 367.0, + "b": 374.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.910", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.0, + "t": 386.0666198730469, + "r": 419.6666564941406, + "b": 374.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.325", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 386.0666198730469, + "r": 478.3333435058594, + "b": 374.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.415", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.0, + "t": 367.0666198730469, + "r": 129.3333282470703, + "b": 356.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 367.39996337890625, + "r": 192.3333282470703, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.0, + "t": 367.39996337890625, + "r": 251.6666717529297, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.037", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 368.0666198730469, + "r": 309.0, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "1.730", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 366.7333068847656, + "r": 367.0, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.0, + "t": 366.7333068847656, + "r": 419.6666564941406, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.385", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 366.7333068847656, + "r": 477.6666564941406, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.625", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.0, + "t": 347.0666198730469, + "r": 129.3333282470703, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 348.39996337890625, + "r": 191.6666717529297, + "b": 336.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6979", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.0, + "t": 347.39996337890625, + "r": 251.6666717529297, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.368", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 347.39996337890625, + "r": 309.0, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "2.840", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 347.39996337890625, + "r": 367.0, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.270", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.3333435058594, + "t": 346.39996337890625, + "r": 419.3333435058594, + "b": 335.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.415", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 444.0, + "t": 346.39996337890625, + "r": 477.3333435058594, + "b": 335.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.985", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.0, + "t": 327.7333068847656, + "r": 129.3333282470703, + "b": 317.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 328.0666198730469, + "r": 191.6666717529297, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6950", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.0, + "t": 328.0666198730469, + "r": 251.6666717529297, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.780", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.0, + "t": 327.0666198730469, + "r": 308.6666564941406, + "b": 316.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "4.330", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 333.0, + "t": 327.39996337890625, + "r": 367.0, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.,320", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.0, + "t": 327.39996337890625, + "r": 419.0, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.610", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.6666564941406, + "t": 327.39996337890625, + "r": 477.6666564941406, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.490", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 308.7333068847656, + "r": 129.6666717529297, + "b": 296.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 309.0666198730469, + "r": 191.6666717529297, + "b": 297.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6917", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.0, + "t": 308.0666198730469, + "r": 251.6666717529297, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.239", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 308.0666198730469, + "r": 309.0, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "5.925", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 308.0666198730469, + "r": 367.0, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.265", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.0, + "t": 308.0666198730469, + "r": 419.0, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.665", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 308.0666198730469, + "r": 477.6666564941406, + "b": 296.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.985", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 289.39996337890625, + "r": 129.6666717529297, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 288.7333068847656, + "r": 191.6666717529297, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6883", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.0, + "t": 288.7333068847656, + "r": 251.0, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.731", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 288.7333068847656, + "r": 309.0, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "7.330", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 288.7333068847656, + "r": 367.0, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.195", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.3333435058594, + "t": 287.7333068847656, + "r": 418.6666564941406, + "b": 277.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.730", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.3333435058594, + "t": 287.7333068847656, + "r": 477.3333435058594, + "b": 277.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-2.545", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 100.0, + "t": 269.0666198730469, + "r": 129.3333282470703, + "b": 258.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 269.7333068847656, + "r": 191.6666717529297, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6845", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.0, + "t": 269.39996337890625, + "r": 250.3333282470703, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.261", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 269.39996337890625, + "r": 309.0, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "8.325", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 269.39996337890625, + "r": 367.0, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.6666564941406, + "t": 268.39996337890625, + "r": 418.6666564941406, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.745", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.3333435058594, + "t": 268.39996337890625, + "r": 477.3333435058594, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.110", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 250.73329162597656, + "r": 130.0, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 250.06663513183594, + "r": 191.6666717529297, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6805", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.3333282470703, + "t": 249.06663513183594, + "r": 251.3333282470703, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.824", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 250.06663513183594, + "r": 309.0, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "8.730", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.6666564941406, + "t": 249.06663513183594, + "r": 366.6666564941406, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.6666564941406, + "t": 249.06663513183594, + "r": 418.6666564941406, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.735", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.3333435058594, + "t": 249.06663513183594, + "r": 477.3333435058594, + "b": 238.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-3.610", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.66666412353516, + "t": 230.73329162597656, + "r": 129.6666717529297, + "b": 218.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 231.39996337890625, + "r": 191.6666717529297, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6763", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 217.0, + "t": 230.06663513183594, + "r": 251.6666717529297, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~4.418", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 230.06663513183594, + "r": 309.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "8.610", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 230.06663513183594, + "r": 367.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.985", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.3333435058594, + "t": 230.06663513183594, + "r": 419.0, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.675", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 230.06663513183594, + "r": 477.6666564941406, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.085", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.33333587646484, + "t": 210.39996337890625, + "r": 128.6666717529297, + "b": 199.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 210.73329162597656, + "r": 191.6666717529297, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6720", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 210.73329162597656, + "r": 251.6666717529297, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~5.022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 210.73329162597656, + "r": 309.0, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "8.175", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 210.73329162597656, + "r": 367.0, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.935", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.3333435058594, + "t": 210.73329162597656, + "r": 419.0, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.655", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 442.6666564941406, + "t": 211.39996337890625, + "r": 477.6666564941406, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-4.470", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.0, + "t": 191.39996337890625, + "r": 129.0, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 191.39996337890625, + "r": 191.6666717529297, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6676", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 191.39996337890625, + "r": 251.0, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~5.647", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 191.39996337890625, + "r": 309.0, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "7.535", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 191.39996337890625, + "r": 366.3333435058594, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.870", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.6666564941406, + "t": 190.39996337890625, + "r": 418.6666564941406, + "b": 179.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.640", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.3333435058594, + "t": 190.39996337890625, + "r": 477.3333435058594, + "b": 179.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-4.810", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.33333587646484, + "t": 171.06663513183594, + "r": 128.6666717529297, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.3333282470703, + "t": 171.06663513183594, + "r": 191.3333282470703, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6632", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 171.39996337890625, + "r": 251.0, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-6.273", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 171.39996337890625, + "r": 309.0, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "6.875", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 171.39996337890625, + "r": 366.3333435058594, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.795", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.6666564941406, + "t": 171.06663513183594, + "r": 418.6666564941406, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.605", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.3333435058594, + "t": 171.06663513183594, + "r": 476.6666564941406, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~5.100", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.0, + "t": 152.06663513183594, + "r": 129.0, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 152.06663513183594, + "r": 191.0, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6589", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 152.06663513183594, + "r": 251.0, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-6.880", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 278.3333435058594, + "t": 152.06663513183594, + "r": 309.0, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "6.275", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 152.06663513183594, + "r": 366.3333435058594, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.725", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.3333435058594, + "t": 152.06663513183594, + "r": 419.0, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.550", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 152.06663513183594, + "r": 477.0, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~5.285", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.0, + "t": 132.06663513183594, + "r": 129.0, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 132.06663513183594, + "r": 191.0, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6547", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 132.06663513183594, + "r": 251.0, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-7.477", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 132.06663513183594, + "r": 308.3333435058594, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "5.675", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 132.06663513183594, + "r": 366.3333435058594, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.645", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.3333435058594, + "t": 132.06663513183594, + "r": 418.3333435058594, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.455", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 441.0, + "t": 132.06663513183594, + "r": 475.0, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~5.375", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/9", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [ + { + "page_no": 19, + "bbox": { + "l": 19.53176498413086, + "t": 658.7711791992188, + "r": 554.3806762695312, + "b": 420.30987548828125, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/52" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "bbox": { + "l": 31.0, + "t": 637.066650390625, + "r": 67.33333587646484, + "b": 620.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 93.66666412353516, + "t": 653.3999633789062, + "r": 123.66666412353516, + "b": 622.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Bo Tesla", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.6666717529297, + "t": 653.3999633789062, + "r": 193.0, + "b": 621.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "IF T/kA", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.80169677734375, + "t": 652.3999633789062, + "r": 259.19830322265625, + "b": 623.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 289.1350402832031, + "t": 652.066650390625, + "r": 316.5316467285156, + "b": 623.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 342.3333435058594, + "t": 651.7332763671875, + "r": 370.3333435058594, + "b": 621.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66 10 4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 400.4683532714844, + "t": 652.066650390625, + "r": 427.8649597167969, + "b": 622.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "68 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 455.80169677734375, + "t": 653.7109985351562, + "r": 483.8649597167969, + "b": 622.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "bso 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 511.80169677734375, + "t": 651.7332763671875, + "r": 539.1983032226562, + "b": 622.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "612 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.66666793823242, + "t": 613.7332763671875, + "r": 62.66666793823242, + "b": 603.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.33333587646484, + "t": 614.066650390625, + "r": 124.33333587646484, + "b": 602.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.0000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.3333282470703, + "t": 613.066650390625, + "r": 196.6666717529297, + "b": 602.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.00000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.0, + "t": 613.3999633789062, + "r": 261.0, + "b": 601.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 288.0, + "t": 612.3999633789062, + "r": 317.3333435058594, + "b": 601.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 344.0, + "t": 612.3999633789062, + "r": 373.3333435058594, + "b": 601.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 399.0, + "t": 612.7332763671875, + "r": 429.0, + "b": 600.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 454.3333435058594, + "t": 612.066650390625, + "r": 485.0, + "b": 600.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.6666564941406, + "t": 611.066650390625, + "r": 540.0, + "b": 600.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.33333206176758, + "t": 595.3999633789062, + "r": 62.33333206176758, + "b": 583.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.0, + "t": 595.066650390625, + "r": 124.0, + "b": 583.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1.5102", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 594.7332763671875, + "r": 198.3333282470703, + "b": 582.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.03071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.0, + "t": 594.066650390625, + "r": 260.3333435058594, + "b": 582.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.237", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.6666564941406, + "t": 594.066650390625, + "r": 319.6666564941406, + "b": 582.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 343.0, + "t": 593.3999633789062, + "r": 373.6666564941406, + "b": 581.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.3333435058594, + "t": 593.3999633789062, + "r": 431.0, + "b": 581.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 454.6666564941406, + "t": 592.3999633789062, + "r": 484.6666564941406, + "b": 581.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.3333435058594, + "t": 592.7332763671875, + "r": 540.3333129882812, + "b": 580.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.33333206176758, + "t": 575.3999633789062, + "r": 62.33333206176758, + "b": 563.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.33333587646484, + "t": 574.7332763671875, + "r": 124.33333587646484, + "b": 562.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.2622", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.0, + "t": 575.7332763671875, + "r": 199.0, + "b": 562.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.16619", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.0, + "t": 574.066650390625, + "r": 260.3333435058594, + "b": 562.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "6.257", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 574.066650390625, + "r": 319.6666564941406, + "b": 562.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.835", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 344.0, + "t": 573.066650390625, + "r": 373.3333435058594, + "b": 562.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.3333435058594, + "t": 573.3999633789062, + "r": 431.0, + "b": 561.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.078", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 454.3333435058594, + "t": 573.3999633789062, + "r": 485.0, + "b": 561.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 508.6666564941406, + "t": 572.3999633789062, + "r": 540.6666870117188, + "b": 561.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "-0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.66666793823242, + "t": 555.066650390625, + "r": 62.0, + "b": 544.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.0, + "t": 555.7332763671875, + "r": 124.0, + "b": 543.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.9899", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.3333282470703, + "t": 554.7332763671875, + "r": 199.0, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.04152", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.6666717529297, + "t": 554.7332763671875, + "r": 263.6666564941406, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "24.994", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 554.066650390625, + "r": 320.3333435058594, + "b": 542.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-6.354", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 343.0, + "t": 554.066650390625, + "r": 373.0, + "b": 542.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.732", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.3333435058594, + "t": 554.066650390625, + "r": 431.0, + "b": 542.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.070", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 454.6666564941406, + "t": 553.066650390625, + "r": 484.0, + "b": 542.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.3333435058594, + "t": 554.066650390625, + "r": 540.3333129882812, + "b": 542.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.008", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.66666793823242, + "t": 535.7332763671875, + "r": 62.0, + "b": 525.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.33333587646484, + "t": 536.3999633789062, + "r": 124.0, + "b": 524.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.3305", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.3333282470703, + "t": 534.3999633789062, + "r": 198.6666717529297, + "b": 523.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.01454", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.6666717529297, + "t": 534.7332763671875, + "r": 263.0, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "34.027", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.6666564941406, + "t": 534.7332763671875, + "r": 319.6666564941406, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.150", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 343.0, + "t": 534.7332763671875, + "r": 373.0, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.209", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.6666564941406, + "t": 533.7332763671875, + "r": 428.0, + "b": 523.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.6666564941406, + "t": 533.7332763671875, + "r": 486.0, + "b": 523.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.6666564941406, + "t": 533.7332763671875, + "r": 540.0, + "b": 523.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.33333206176758, + "t": 516.7332763671875, + "r": 62.33333206176758, + "b": 504.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.0, + "t": 515.7332763671875, + "r": 123.33333587646484, + "b": 505.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.6479", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.6666717529297, + "t": 515.066650390625, + "r": 198.6666717529297, + "b": 504.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.41015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.0, + "t": 515.3999633789062, + "r": 263.0, + "b": 503.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "35.953", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 515.3999633789062, + "r": 319.0, + "b": 503.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-6.971", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 515.3999633789062, + "r": 375.0, + "b": 503.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.449", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.6666564941406, + "t": 514.3999633789062, + "r": 428.0, + "b": 503.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.6666564941406, + "t": 514.7332763671875, + "r": 486.3333435058594, + "b": 502.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.3333435058594, + "t": 514.7332763671875, + "r": 540.3333129882812, + "b": 502.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.33333206176758, + "t": 497.39996337890625, + "r": 61.66666793823242, + "b": 485.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.66666412353516, + "t": 496.7333068847656, + "r": 123.66666412353516, + "b": 484.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.9362", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.6666717529297, + "t": 495.7333068847656, + "r": 198.6666717529297, + "b": 485.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-5.25105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.0, + "t": 496.0666198730469, + "r": 263.0, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "32.215", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 496.0666198730469, + "r": 318.3333435058594, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-6.131", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 496.0666198730469, + "r": 375.0, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.727", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.6666564941406, + "t": 495.0666198730469, + "r": 428.0, + "b": 484.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.116", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.0, + "t": 495.0666198730469, + "r": 486.0, + "b": 484.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.6666564941406, + "t": 495.0666198730469, + "r": 539.3333129882812, + "b": 484.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.037", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.0, + "t": 477.0666198730469, + "r": 61.33333206176758, + "b": 466.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.66666412353516, + "t": 477.39996337890625, + "r": 123.66666412353516, + "b": 465.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.2058", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 476.7333068847656, + "r": 198.3333282470703, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "7.19666", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.0, + "t": 476.7333068847656, + "r": 263.0, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "27.423", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.6666564941406, + "t": 477.39996337890625, + "r": 319.6666564941406, + "b": 463.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.170", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 476.0666198730469, + "r": 375.0, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.812", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.3333435058594, + "t": 476.0666198730469, + "r": 428.3333435058594, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.159", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.6666564941406, + "t": 476.0666198730469, + "r": 486.3333435058594, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.019", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.6666564941406, + "t": 476.0666198730469, + "r": 539.6666870117188, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.052", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.33333206176758, + "t": 458.0666198730469, + "r": 61.66666793823242, + "b": 446.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.66666412353516, + "t": 458.0666198730469, + "r": 123.66666412353516, + "b": 446.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.7095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 149.0, + "t": 457.39996337890625, + "r": 201.6666717529297, + "b": 445.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-10.92848", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.0, + "t": 456.7333068847656, + "r": 263.0, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "18.742", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 456.7333068847656, + "r": 319.0, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.643", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 456.7333068847656, + "r": 375.0, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "~0.899", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.3333435058594, + "t": 456.7333068847656, + "r": 428.3333435058594, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.192", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.0, + "t": 455.7333068847656, + "r": 486.0, + "b": 445.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.6666564941406, + "t": 456.7333068847656, + "r": 539.6666870117188, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.079", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.0, + "t": 437.7333068847656, + "r": 61.33333206176758, + "b": 427.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.33333587646484, + "t": 438.0666198730469, + "r": 123.33333587646484, + "b": 426.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "5.1882", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 149.0, + "t": 437.39996337890625, + "r": 201.6666717529297, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-14.14024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 226.6666717529297, + "t": 437.7333068847656, + "r": 263.0, + "b": 425.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "13.319", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 437.39996337890625, + "r": 319.0, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~2.283", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 437.39996337890625, + "r": 375.0, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.946", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.6666564941406, + "t": 436.39996337890625, + "r": 428.0, + "b": 425.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.208", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.6666564941406, + "t": 436.7333068847656, + "r": 486.3333435058594, + "b": 424.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.6666564941406, + "t": 436.7333068847656, + "r": 537.6666870117188, + "b": 424.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.103", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 11, + "num_cols": 9, + "grid": [ + [ + { + "bbox": { + "l": 31.0, + "t": 637.066650390625, + "r": 67.33333587646484, + "b": 620.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 93.66666412353516, + "t": 653.3999633789062, + "r": 123.66666412353516, + "b": 622.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Bo Tesla", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.6666717529297, + "t": 653.3999633789062, + "r": 193.0, + "b": 621.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "IF T/kA", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.80169677734375, + "t": 652.3999633789062, + "r": 259.19830322265625, + "b": 623.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 289.1350402832031, + "t": 652.066650390625, + "r": 316.5316467285156, + "b": 623.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 342.3333435058594, + "t": 651.7332763671875, + "r": 370.3333435058594, + "b": 621.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66 10 4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 400.4683532714844, + "t": 652.066650390625, + "r": 427.8649597167969, + "b": 622.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "68 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 455.80169677734375, + "t": 653.7109985351562, + "r": 483.8649597167969, + "b": 622.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "bso 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 511.80169677734375, + "t": 651.7332763671875, + "r": 539.1983032226562, + "b": 622.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "612 10-4", + "column_header": true, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.66666793823242, + "t": 613.7332763671875, + "r": 62.66666793823242, + "b": 603.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.33333587646484, + "t": 614.066650390625, + "r": 124.33333587646484, + "b": 602.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.0000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.3333282470703, + "t": 613.066650390625, + "r": 196.6666717529297, + "b": 602.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.00000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.0, + "t": 613.3999633789062, + "r": 261.0, + "b": 601.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 288.0, + "t": 612.3999633789062, + "r": 317.3333435058594, + "b": 601.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 344.0, + "t": 612.3999633789062, + "r": 373.3333435058594, + "b": 601.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 399.0, + "t": 612.7332763671875, + "r": 429.0, + "b": 600.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 454.3333435058594, + "t": 612.066650390625, + "r": 485.0, + "b": 600.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.6666564941406, + "t": 611.066650390625, + "r": 540.0, + "b": 600.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.33333206176758, + "t": 595.3999633789062, + "r": 62.33333206176758, + "b": 583.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.0, + "t": 595.066650390625, + "r": 124.0, + "b": 583.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1.5102", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 594.7332763671875, + "r": 198.3333282470703, + "b": 582.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.03071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.0, + "t": 594.066650390625, + "r": 260.3333435058594, + "b": 582.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.237", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.6666564941406, + "t": 594.066650390625, + "r": 319.6666564941406, + "b": 582.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 343.0, + "t": 593.3999633789062, + "r": 373.6666564941406, + "b": 581.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.3333435058594, + "t": 593.3999633789062, + "r": 431.0, + "b": 581.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 454.6666564941406, + "t": 592.3999633789062, + "r": 484.6666564941406, + "b": 581.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.3333435058594, + "t": 592.7332763671875, + "r": 540.3333129882812, + "b": 580.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.33333206176758, + "t": 575.3999633789062, + "r": 62.33333206176758, + "b": 563.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.33333587646484, + "t": 574.7332763671875, + "r": 124.33333587646484, + "b": 562.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.2622", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.0, + "t": 575.7332763671875, + "r": 199.0, + "b": 562.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.16619", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.0, + "t": 574.066650390625, + "r": 260.3333435058594, + "b": 562.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "6.257", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 574.066650390625, + "r": 319.6666564941406, + "b": 562.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.835", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 344.0, + "t": 573.066650390625, + "r": 373.3333435058594, + "b": 562.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.3333435058594, + "t": 573.3999633789062, + "r": 431.0, + "b": 561.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.078", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 454.3333435058594, + "t": 573.3999633789062, + "r": 485.0, + "b": 561.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 508.6666564941406, + "t": 572.3999633789062, + "r": 540.6666870117188, + "b": 561.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "-0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.66666793823242, + "t": 555.066650390625, + "r": 62.0, + "b": 544.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.0, + "t": 555.7332763671875, + "r": 124.0, + "b": 543.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.9899", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.3333282470703, + "t": 554.7332763671875, + "r": 199.0, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.04152", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.6666717529297, + "t": 554.7332763671875, + "r": 263.6666564941406, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "24.994", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 554.066650390625, + "r": 320.3333435058594, + "b": 542.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-6.354", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 343.0, + "t": 554.066650390625, + "r": 373.0, + "b": 542.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.732", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.3333435058594, + "t": 554.066650390625, + "r": 431.0, + "b": 542.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.070", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 454.6666564941406, + "t": 553.066650390625, + "r": 484.0, + "b": 542.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.3333435058594, + "t": 554.066650390625, + "r": 540.3333129882812, + "b": 542.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.008", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.66666793823242, + "t": 535.7332763671875, + "r": 62.0, + "b": 525.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.33333587646484, + "t": 536.3999633789062, + "r": 124.0, + "b": 524.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.3305", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.3333282470703, + "t": 534.3999633789062, + "r": 198.6666717529297, + "b": 523.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.01454", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.6666717529297, + "t": 534.7332763671875, + "r": 263.0, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "34.027", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.6666564941406, + "t": 534.7332763671875, + "r": 319.6666564941406, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-7.150", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 343.0, + "t": 534.7332763671875, + "r": 373.0, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.209", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.6666564941406, + "t": 533.7332763671875, + "r": 428.0, + "b": 523.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.6666564941406, + "t": 533.7332763671875, + "r": 486.0, + "b": 523.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.6666564941406, + "t": 533.7332763671875, + "r": 540.0, + "b": 523.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.014", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.33333206176758, + "t": 516.7332763671875, + "r": 62.33333206176758, + "b": 504.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.0, + "t": 515.7332763671875, + "r": 123.33333587646484, + "b": 505.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.6479", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.6666717529297, + "t": 515.066650390625, + "r": 198.6666717529297, + "b": 504.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.41015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.0, + "t": 515.3999633789062, + "r": 263.0, + "b": 503.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "35.953", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 515.3999633789062, + "r": 319.0, + "b": 503.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-6.971", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 515.3999633789062, + "r": 375.0, + "b": 503.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.449", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.6666564941406, + "t": 514.3999633789062, + "r": 428.0, + "b": 503.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.6666564941406, + "t": 514.7332763671875, + "r": 486.3333435058594, + "b": 502.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.3333435058594, + "t": 514.7332763671875, + "r": 540.3333129882812, + "b": 502.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.024", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.33333206176758, + "t": 497.39996337890625, + "r": 61.66666793823242, + "b": 485.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.66666412353516, + "t": 496.7333068847656, + "r": 123.66666412353516, + "b": 484.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.9362", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.6666717529297, + "t": 495.7333068847656, + "r": 198.6666717529297, + "b": 485.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-5.25105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.0, + "t": 496.0666198730469, + "r": 263.0, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "32.215", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 496.0666198730469, + "r": 318.3333435058594, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-6.131", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 496.0666198730469, + "r": 375.0, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.727", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.6666564941406, + "t": 495.0666198730469, + "r": 428.0, + "b": 484.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.116", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.0, + "t": 495.0666198730469, + "r": 486.0, + "b": 484.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.6666564941406, + "t": 495.0666198730469, + "r": 539.3333129882812, + "b": 484.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.037", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.0, + "t": 477.0666198730469, + "r": 61.33333206176758, + "b": 466.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.66666412353516, + "t": 477.39996337890625, + "r": 123.66666412353516, + "b": 465.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.2058", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 476.7333068847656, + "r": 198.3333282470703, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "7.19666", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.0, + "t": 476.7333068847656, + "r": 263.0, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "27.423", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.6666564941406, + "t": 477.39996337890625, + "r": 319.6666564941406, + "b": 463.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.170", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 476.0666198730469, + "r": 375.0, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.812", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.3333435058594, + "t": 476.0666198730469, + "r": 428.3333435058594, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.159", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.6666564941406, + "t": 476.0666198730469, + "r": 486.3333435058594, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.019", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.6666564941406, + "t": 476.0666198730469, + "r": 539.6666870117188, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.052", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.33333206176758, + "t": 458.0666198730469, + "r": 61.66666793823242, + "b": 446.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.66666412353516, + "t": 458.0666198730469, + "r": 123.66666412353516, + "b": 446.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.7095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 149.0, + "t": 457.39996337890625, + "r": 201.6666717529297, + "b": 445.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-10.92848", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.0, + "t": 456.7333068847656, + "r": 263.0, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "18.742", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 456.7333068847656, + "r": 319.0, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.643", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 456.7333068847656, + "r": 375.0, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "~0.899", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.3333435058594, + "t": 456.7333068847656, + "r": 428.3333435058594, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.192", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.0, + "t": 455.7333068847656, + "r": 486.0, + "b": 445.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.6666564941406, + "t": 456.7333068847656, + "r": 539.6666870117188, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.079", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.0, + "t": 437.7333068847656, + "r": 61.33333206176758, + "b": 427.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.33333587646484, + "t": 438.0666198730469, + "r": 123.33333587646484, + "b": 426.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "5.1882", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 149.0, + "t": 437.39996337890625, + "r": 201.6666717529297, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-14.14024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 226.6666717529297, + "t": 437.7333068847656, + "r": 263.0, + "b": 425.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "13.319", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 437.39996337890625, + "r": 319.0, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~2.283", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 437.39996337890625, + "r": 375.0, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.946", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.6666564941406, + "t": 436.39996337890625, + "r": 428.0, + "b": 425.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.208", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.6666564941406, + "t": 436.7333068847656, + "r": 486.3333435058594, + "b": 424.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.6666564941406, + "t": 436.7333068847656, + "r": 537.6666870117188, + "b": 424.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.103", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/10", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 19.499370574951172, + "t": 659.6583251953125, + "r": 555.1466674804688, + "b": 419.65106201171875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/56" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.0, + "t": 653.3999633789062, + "r": 117.0, + "b": 640.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Bo", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 166.3333282470703, + "t": 653.3999633789062, + "r": 188.3333282470703, + "b": 641.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "TF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.80169677734375, + "t": 652.7332763671875, + "r": 259.8649597167969, + "b": 623.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 289.1350402832031, + "t": 652.066650390625, + "r": 316.5316467285156, + "b": 622.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 350.3333435058594, + "t": 651.3999633789062, + "r": 362.3333435058594, + "b": 637.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 401.0, + "t": 651.3999633789062, + "r": 429.0, + "b": 619.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "68 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 464.1029357910156, + "t": 653.0465698242188, + "r": 475.563720703125, + "b": 631.4200439453125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "b1o", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 512.4683837890625, + "t": 650.3999633789062, + "r": 539.864990234375, + "b": 620.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "612 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 30.66666603088379, + "t": 637.066650390625, + "r": 67.66666412353516, + "b": 620.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 94.0, + "t": 635.066650390625, + "r": 123.66666412353516, + "b": 622.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Tesla", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.6666717529297, + "t": 634.7332763671875, + "r": 193.0, + "b": 620.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T/kA", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 342.3333435058594, + "t": 634.7332763671875, + "r": 370.6666564941406, + "b": 620.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 457.1714782714844, + "t": 631.637939453125, + "r": 484.49517822265625, + "b": 620.8286743164062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.33333206176758, + "t": 614.7332763671875, + "r": 62.33333206176758, + "b": 602.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.33333587646484, + "t": 614.066650390625, + "r": 124.33333587646484, + "b": 602.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.0000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 613.3999633789062, + "r": 197.0, + "b": 601.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.00000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.0, + "t": 612.7332763671875, + "r": 261.0, + "b": 600.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 288.0, + "t": 611.7332763671875, + "r": 317.3333435058594, + "b": 601.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 343.6666564941406, + "t": 612.066650390625, + "r": 373.6666564941406, + "b": 600.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 399.0, + "t": 611.3999633789062, + "r": 429.6666564941406, + "b": 599.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 455.6666564941406, + "t": 610.7332763671875, + "r": 485.6666564941406, + "b": 598.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 511.3333435058594, + "t": 609.7332763671875, + "r": 540.6666870117188, + "b": 599.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.66666793823242, + "t": 594.3999633789062, + "r": 62.0, + "b": 583.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.33333587646484, + "t": 594.7332763671875, + "r": 123.66666412353516, + "b": 582.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7551", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 594.3999633789062, + "r": 199.0, + "b": 582.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.02383", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.0, + "t": 593.3999633789062, + "r": 260.3333435058594, + "b": 581.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.041", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 288.0, + "t": 592.3999633789062, + "r": 317.3333435058594, + "b": 581.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 344.0, + "t": 591.7332763671875, + "r": 373.3333435058594, + "b": 581.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 399.0, + "t": 592.066650390625, + "r": 429.0, + "b": 580.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 455.3333435058594, + "t": 591.066650390625, + "r": 484.6666564941406, + "b": 580.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 511.3333435058594, + "t": 590.3999633789062, + "r": 540.6666870117188, + "b": 579.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.33333206176758, + "t": 575.3999633789062, + "r": 62.33333206176758, + "b": 563.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.66666412353516, + "t": 574.3999633789062, + "r": 123.33333587646484, + "b": 563.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1.5101", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.3333282470703, + "t": 574.7332763671875, + "r": 199.0, + "b": 562.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.03165", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.3333282470703, + "t": 573.066650390625, + "r": 260.6666564941406, + "b": 562.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 573.3999633789062, + "r": 319.6666564941406, + "b": 561.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 343.3333435058594, + "t": 572.3999633789062, + "r": 372.6666564941406, + "b": 561.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.021", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 397.0, + "t": 572.7332763671875, + "r": 431.6666564941406, + "b": 560.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 455.3333435058594, + "t": 571.7332763671875, + "r": 484.6666564941406, + "b": 561.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 511.0, + "t": 572.066650390625, + "r": 541.0, + "b": 560.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 31.66666603088379, + "t": 556.066650390625, + "r": 62.33333206176758, + "b": 544.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.66666412353516, + "t": 555.066650390625, + "r": 124.0, + "b": 544.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.2625", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.6666717529297, + "t": 554.7332763671875, + "r": 198.6666717529297, + "b": 544.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.15058", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.0, + "t": 554.7332763671875, + "r": 261.0, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "5.678", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 554.066650390625, + "r": 319.6666564941406, + "b": 542.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.623", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 343.3333435058594, + "t": 553.066650390625, + "r": 372.6666564941406, + "b": 542.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.363", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 397.0, + "t": 553.3999633789062, + "r": 431.0, + "b": 541.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 455.3333435058594, + "t": 552.3999633789062, + "r": 484.6666564941406, + "b": 541.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.013", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.3333435058594, + "t": 552.3999633789062, + "r": 541.3333129882812, + "b": 541.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "-0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 31.66666603088379, + "t": 536.7332763671875, + "r": 61.66666793823242, + "b": 524.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.66666412353516, + "t": 536.066650390625, + "r": 123.0, + "b": 524.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.3411", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.0, + "t": 536.7332763671875, + "r": 199.0, + "b": 523.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.70004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.6666717529297, + "t": 534.7332763671875, + "r": 263.6666564941406, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "32.365", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 534.7332763671875, + "r": 319.6666564941406, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.865", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 534.066650390625, + "r": 375.6666564941406, + "b": 522.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.018", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 399.0, + "t": 534.066650390625, + "r": 430.3333435058594, + "b": 522.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.026-", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.0, + "t": 534.066650390625, + "r": 487.0, + "b": 522.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 511.3333435058594, + "t": 533.066650390625, + "r": 540.6666870117188, + "b": 522.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.013", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.66666793823242, + "t": 516.3999633789062, + "r": 61.33333206176758, + "b": 505.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.66666412353516, + "t": 516.7332763671875, + "r": 123.66666412353516, + "b": 504.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.6617", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.3333282470703, + "t": 516.3999633789062, + "r": 198.3333282470703, + "b": 504.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~3.04059", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.0, + "t": 515.3999633789062, + "r": 263.0, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "35.491 35.453", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 515.3999633789062, + "r": 319.0, + "b": 503.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.797", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 514.7332763671875, + "r": 375.0, + "b": 502.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.798", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.6666564941406, + "t": 514.7332763671875, + "r": 430.6666564941406, + "b": 483.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.029 -0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.6666564941406, + "t": 513.7332763671875, + "r": 486.6666564941406, + "b": 503.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 511.0, + "t": 514.066650390625, + "r": 541.0, + "b": 502.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.0, + "t": 497.0666198730469, + "r": 61.33333206176758, + "b": 486.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.33333587646484, + "t": 497.39996337890625, + "r": 123.33333587646484, + "b": 485.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.9565", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.3333282470703, + "t": 496.7333068847656, + "r": 198.3333282470703, + "b": 484.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-4.75846", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.3333435058594, + "t": 495.0666198730469, + "r": 319.3333435058594, + "b": 484.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.272", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 495.39996337890625, + "r": 375.0, + "b": 483.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-1.318", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.6666564941406, + "t": 494.39996337890625, + "r": 486.6666564941406, + "b": 483.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 511.0, + "t": 494.7333068847656, + "r": 540.3333129882812, + "b": 482.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.033", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 31.66666603088379, + "t": 478.0666198730469, + "r": 61.66666793823242, + "b": 466.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.66666412353516, + "t": 477.39996337890625, + "r": 123.66666412353516, + "b": 465.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.2283", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.3333282470703, + "t": 476.7333068847656, + "r": 198.3333282470703, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-6.69863", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 226.6666717529297, + "t": 476.0666198730469, + "r": 263.3333435058594, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "34.234", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 476.0666198730469, + "r": 318.3333435058594, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "4.161", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.0, + "t": 476.7333068847656, + "r": 375.3333435058594, + "b": 462.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-1.473", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.3333435058594, + "t": 475.39996337890625, + "r": 430.3333435058594, + "b": 463.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.011", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.3333435058594, + "t": 475.39996337890625, + "r": 487.0, + "b": 463.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.056", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.6666564941406, + "t": 474.39996337890625, + "r": 540.0, + "b": 463.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.046", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 31.66666603088379, + "t": 458.7333068847656, + "r": 61.66666793823242, + "b": 446.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.66666412353516, + "t": 458.0666198730469, + "r": 123.66666412353516, + "b": 446.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.7250", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 148.6666717529297, + "t": 458.39996337890625, + "r": 201.6666717529297, + "b": 444.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-10.63282", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 226.6666717529297, + "t": 456.7333068847656, + "r": 262.6666564941406, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "25.556", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 456.0666198730469, + "r": 319.0, + "b": 444.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.493", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 456.0666198730469, + "r": 375.0, + "b": 444.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-1.430", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.3333435058594, + "t": 456.0666198730469, + "r": 429.0, + "b": 444.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.046", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.3333435058594, + "t": 455.39996337890625, + "r": 487.0, + "b": 443.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.059", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.3333435058594, + "t": 455.39996337890625, + "r": 540.3333129882812, + "b": 443.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 31.0, + "t": 438.7333068847656, + "r": 61.0, + "b": 426.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.66666412353516, + "t": 438.0666198730469, + "r": 123.66666412353516, + "b": 426.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "5.1998", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 149.0, + "t": 437.39996337890625, + "r": 201.6666717529297, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-13.94705", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 226.6666717529297, + "t": 438.0666198730469, + "r": 262.3333435058594, + "b": 424.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "17.941", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.3333435058594, + "t": 436.7333068847656, + "r": 318.3333435058594, + "b": 424.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~1.ll1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 436.7333068847656, + "r": 375.0, + "b": 424.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-1.315", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.3333435058594, + "t": 436.0666198730469, + "r": 428.3333435058594, + "b": 424.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.109", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.3333435058594, + "t": 436.0666198730469, + "r": 486.3333435058594, + "b": 424.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.058", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 508.3333435058594, + "t": 436.0666198730469, + "r": 537.6666870117188, + "b": 424.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.101", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 12, + "num_cols": 9, + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 101.0, + "t": 653.3999633789062, + "r": 117.0, + "b": 640.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Bo", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 166.3333282470703, + "t": 653.3999633789062, + "r": 188.3333282470703, + "b": 641.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "TF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.80169677734375, + "t": 652.7332763671875, + "r": 259.8649597167969, + "b": 623.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 289.1350402832031, + "t": 652.066650390625, + "r": 316.5316467285156, + "b": 622.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 350.3333435058594, + "t": 651.3999633789062, + "r": 362.3333435058594, + "b": 637.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 401.0, + "t": 651.3999633789062, + "r": 429.0, + "b": 619.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "68 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 464.1029357910156, + "t": 653.0465698242188, + "r": 475.563720703125, + "b": 631.4200439453125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "b1o", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 512.4683837890625, + "t": 650.3999633789062, + "r": 539.864990234375, + "b": 620.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "612 10-4", + "column_header": true, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 30.66666603088379, + "t": 637.066650390625, + "r": 67.66666412353516, + "b": 620.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 94.0, + "t": 635.066650390625, + "r": 123.66666412353516, + "b": 622.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Tesla", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.6666717529297, + "t": 634.7332763671875, + "r": 193.0, + "b": 620.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T/kA", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 342.3333435058594, + "t": 634.7332763671875, + "r": 370.6666564941406, + "b": 620.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 457.1714782714844, + "t": 631.637939453125, + "r": 484.49517822265625, + "b": 620.8286743164062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.33333206176758, + "t": 614.7332763671875, + "r": 62.33333206176758, + "b": 602.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.33333587646484, + "t": 614.066650390625, + "r": 124.33333587646484, + "b": 602.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.0000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 613.3999633789062, + "r": 197.0, + "b": 601.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.00000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.0, + "t": 612.7332763671875, + "r": 261.0, + "b": 600.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 288.0, + "t": 611.7332763671875, + "r": 317.3333435058594, + "b": 601.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 343.6666564941406, + "t": 612.066650390625, + "r": 373.6666564941406, + "b": 600.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 399.0, + "t": 611.3999633789062, + "r": 429.6666564941406, + "b": 599.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 455.6666564941406, + "t": 610.7332763671875, + "r": 485.6666564941406, + "b": 598.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 511.3333435058594, + "t": 609.7332763671875, + "r": 540.6666870117188, + "b": 599.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.66666793823242, + "t": 594.3999633789062, + "r": 62.0, + "b": 583.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.33333587646484, + "t": 594.7332763671875, + "r": 123.66666412353516, + "b": 582.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7551", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 594.3999633789062, + "r": 199.0, + "b": 582.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.02383", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.0, + "t": 593.3999633789062, + "r": 260.3333435058594, + "b": 581.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.041", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 288.0, + "t": 592.3999633789062, + "r": 317.3333435058594, + "b": 581.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 344.0, + "t": 591.7332763671875, + "r": 373.3333435058594, + "b": 581.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 399.0, + "t": 592.066650390625, + "r": 429.0, + "b": 580.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 455.3333435058594, + "t": 591.066650390625, + "r": 484.6666564941406, + "b": 580.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 511.3333435058594, + "t": 590.3999633789062, + "r": 540.6666870117188, + "b": 579.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.33333206176758, + "t": 575.3999633789062, + "r": 62.33333206176758, + "b": 563.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.66666412353516, + "t": 574.3999633789062, + "r": 123.33333587646484, + "b": 563.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1.5101", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.3333282470703, + "t": 574.7332763671875, + "r": 199.0, + "b": 562.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.03165", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.3333282470703, + "t": 573.066650390625, + "r": 260.6666564941406, + "b": 562.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 573.3999633789062, + "r": 319.6666564941406, + "b": 561.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 343.3333435058594, + "t": 572.3999633789062, + "r": 372.6666564941406, + "b": 561.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.021", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 397.0, + "t": 572.7332763671875, + "r": 431.6666564941406, + "b": 560.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 455.3333435058594, + "t": 571.7332763671875, + "r": 484.6666564941406, + "b": 561.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 511.0, + "t": 572.066650390625, + "r": 541.0, + "b": 560.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 31.66666603088379, + "t": 556.066650390625, + "r": 62.33333206176758, + "b": 544.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.66666412353516, + "t": 555.066650390625, + "r": 124.0, + "b": 544.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.2625", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.6666717529297, + "t": 554.7332763671875, + "r": 198.6666717529297, + "b": 544.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.15058", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.0, + "t": 554.7332763671875, + "r": 261.0, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "5.678", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 554.066650390625, + "r": 319.6666564941406, + "b": 542.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.623", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 343.3333435058594, + "t": 553.066650390625, + "r": 372.6666564941406, + "b": 542.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.363", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 397.0, + "t": 553.3999633789062, + "r": 431.0, + "b": 541.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 455.3333435058594, + "t": 552.3999633789062, + "r": 484.6666564941406, + "b": 541.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.013", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.3333435058594, + "t": 552.3999633789062, + "r": 541.3333129882812, + "b": 541.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "-0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 31.66666603088379, + "t": 536.7332763671875, + "r": 61.66666793823242, + "b": 524.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.66666412353516, + "t": 536.066650390625, + "r": 123.0, + "b": 524.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.3411", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.0, + "t": 536.7332763671875, + "r": 199.0, + "b": 523.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.70004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.6666717529297, + "t": 534.7332763671875, + "r": 263.6666564941406, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "32.365", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 534.7332763671875, + "r": 319.6666564941406, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.865", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 534.066650390625, + "r": 375.6666564941406, + "b": 522.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.018", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 399.0, + "t": 534.066650390625, + "r": 430.3333435058594, + "b": 522.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.026-", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.0, + "t": 534.066650390625, + "r": 487.0, + "b": 522.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 511.3333435058594, + "t": 533.066650390625, + "r": 540.6666870117188, + "b": 522.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.013", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.66666793823242, + "t": 516.3999633789062, + "r": 61.33333206176758, + "b": 505.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.66666412353516, + "t": 516.7332763671875, + "r": 123.66666412353516, + "b": 504.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.6617", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.3333282470703, + "t": 516.3999633789062, + "r": 198.3333282470703, + "b": 504.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~3.04059", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.0, + "t": 515.3999633789062, + "r": 263.0, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "35.491 35.453", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 515.3999633789062, + "r": 319.0, + "b": 503.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.797", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 514.7332763671875, + "r": 375.0, + "b": 502.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.798", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.6666564941406, + "t": 514.7332763671875, + "r": 430.6666564941406, + "b": 483.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.029 -0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.6666564941406, + "t": 513.7332763671875, + "r": 486.6666564941406, + "b": 503.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 511.0, + "t": 514.066650390625, + "r": 541.0, + "b": 502.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.022", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.0, + "t": 497.0666198730469, + "r": 61.33333206176758, + "b": 486.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.33333587646484, + "t": 497.39996337890625, + "r": 123.33333587646484, + "b": 485.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.9565", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.3333282470703, + "t": 496.7333068847656, + "r": 198.3333282470703, + "b": 484.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-4.75846", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.3333435058594, + "t": 495.0666198730469, + "r": 319.3333435058594, + "b": 484.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.272", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 495.39996337890625, + "r": 375.0, + "b": 483.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-1.318", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.6666564941406, + "t": 494.39996337890625, + "r": 486.6666564941406, + "b": 483.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 511.0, + "t": 494.7333068847656, + "r": 540.3333129882812, + "b": 482.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.033", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 31.66666603088379, + "t": 478.0666198730469, + "r": 61.66666793823242, + "b": 466.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.66666412353516, + "t": 477.39996337890625, + "r": 123.66666412353516, + "b": 465.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.2283", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.3333282470703, + "t": 476.7333068847656, + "r": 198.3333282470703, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-6.69863", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 226.6666717529297, + "t": 476.0666198730469, + "r": 263.3333435058594, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "34.234", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 476.0666198730469, + "r": 318.3333435058594, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "4.161", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.0, + "t": 476.7333068847656, + "r": 375.3333435058594, + "b": 462.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-1.473", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.3333435058594, + "t": 475.39996337890625, + "r": 430.3333435058594, + "b": 463.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.011", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.3333435058594, + "t": 475.39996337890625, + "r": 487.0, + "b": 463.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.056", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.6666564941406, + "t": 474.39996337890625, + "r": 540.0, + "b": 463.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.046", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 31.66666603088379, + "t": 458.7333068847656, + "r": 61.66666793823242, + "b": 446.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.66666412353516, + "t": 458.0666198730469, + "r": 123.66666412353516, + "b": 446.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.7250", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 148.6666717529297, + "t": 458.39996337890625, + "r": 201.6666717529297, + "b": 444.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-10.63282", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 226.6666717529297, + "t": 456.7333068847656, + "r": 262.6666564941406, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "25.556", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 285.0, + "t": 456.0666198730469, + "r": 319.0, + "b": 444.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.493", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 456.0666198730469, + "r": 375.0, + "b": 444.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-1.430", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.3333435058594, + "t": 456.0666198730469, + "r": 429.0, + "b": 444.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.046", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.3333435058594, + "t": 455.39996337890625, + "r": 487.0, + "b": 443.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.059", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.3333435058594, + "t": 455.39996337890625, + "r": 540.3333129882812, + "b": 443.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.075", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 31.0, + "t": 438.7333068847656, + "r": 61.0, + "b": 426.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 87.66666412353516, + "t": 438.0666198730469, + "r": 123.66666412353516, + "b": 426.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "5.1998", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 149.0, + "t": 437.39996337890625, + "r": 201.6666717529297, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-13.94705", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 226.6666717529297, + "t": 438.0666198730469, + "r": 262.3333435058594, + "b": 424.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "17.941", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.3333435058594, + "t": 436.7333068847656, + "r": 318.3333435058594, + "b": 424.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~1.ll1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 436.7333068847656, + "r": 375.0, + "b": 424.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-1.315", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.3333435058594, + "t": 436.0666198730469, + "r": 428.3333435058594, + "b": 424.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.109", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.3333435058594, + "t": 436.0666198730469, + "r": 486.3333435058594, + "b": 424.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.058", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 508.3333435058594, + "t": 436.0666198730469, + "r": 537.6666870117188, + "b": 424.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.101", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/11", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 22.83742332458496, + "t": 659.6255493164062, + "r": 549.9849243164062, + "b": 420.57708740234375, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/60" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "bbox": { + "l": 34.0, + "t": 653.3999633789062, + "r": 70.66666412353516, + "b": 620.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "I kAmp", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 104.33333587646484, + "t": 654.066650390625, + "r": 120.33333587646484, + "b": 641.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Bo", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 166.3333282470703, + "t": 654.066650390625, + "r": 189.0, + "b": 642.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "TF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 236.6666717529297, + "t": 653.066650390625, + "r": 247.3333282470703, + "b": 639.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.50482177734375, + "t": 653.3999633789062, + "r": 311.8285217285156, + "b": 623.4953002929688, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 345.6666564941406, + "t": 652.066650390625, + "r": 358.3333435058594, + "b": 638.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 403.0, + "t": 652.066650390625, + "r": 415.6666564941406, + "b": 637.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "68", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 456.6666564941406, + "t": 652.3999633789062, + "r": 474.6666564941406, + "b": 636.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "610", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.1350402832031, + "t": 651.066650390625, + "r": 534.5316162109375, + "b": 621.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "b12 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 97.66666412353516, + "t": 635.3999633789062, + "r": 127.66666412353516, + "b": 623.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Tesla", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 162.3333282470703, + "t": 636.066650390625, + "r": 193.6666717529297, + "b": 621.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T/kA", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 228.46836853027344, + "t": 634.2893676757812, + "r": 255.86497497558594, + "b": 624.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.80169677734375, + "t": 633.6227416992188, + "r": 365.19830322265625, + "b": 623.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.80169677734375, + "t": 632.9560546875, + "r": 423.19830322265625, + "b": 622.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.80169677734375, + "t": 632.2893676757812, + "r": 479.19830322265625, + "b": 622.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 36.33333206176758, + "t": 614.7332763671875, + "r": 66.33333587646484, + "b": 602.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 91.66666412353516, + "t": 614.7332763671875, + "r": 128.3333282470703, + "b": 602.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.0000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 614.066650390625, + "r": 197.6666717529297, + "b": 602.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.00000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.3333282470703, + "t": 613.066650390625, + "r": 257.3333435058594, + "b": 602.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 613.3999633789062, + "r": 313.0, + "b": 601.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 612.7332763671875, + "r": 369.0, + "b": 600.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.3333435058594, + "t": 612.066650390625, + "r": 425.0, + "b": 600.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.6666564941406, + "t": 611.066650390625, + "r": 480.0, + "b": 600.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 505.6666564941406, + "t": 611.3999633789062, + "r": 536.3333129882812, + "b": 599.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 35.66666793823242, + "t": 595.3999633789062, + "r": 65.66666412353516, + "b": 583.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 91.33333587646484, + "t": 595.7332763671875, + "r": 128.0, + "b": 583.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7074", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 595.066650390625, + "r": 199.0, + "b": 583.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.02261", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.3333282470703, + "t": 593.7332763671875, + "r": 256.6666564941406, + "b": 583.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 594.066650390625, + "r": 312.3333435058594, + "b": 582.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 593.3999633789062, + "r": 368.3333435058594, + "b": 581.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.3333435058594, + "t": 592.7332763671875, + "r": 423.6666564941406, + "b": 580.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 591.7332763671875, + "r": 481.3333435058594, + "b": 581.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 505.6666564941406, + "t": 592.066650390625, + "r": 535.6666870117188, + "b": 580.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 35.66666793823242, + "t": 576.066650390625, + "r": 65.66666412353516, + "b": 564.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.0, + "t": 575.066650390625, + "r": 127.33333587646484, + "b": 564.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1.4148", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 575.7332763671875, + "r": 199.6666717529297, + "b": 563.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.02600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 225.3333282470703, + "t": 574.3999633789062, + "r": 258.6666564941406, + "b": 563.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 574.7332763671875, + "r": 315.0, + "b": 562.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 574.066650390625, + "r": 367.6666564941406, + "b": 562.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.3333435058594, + "t": 573.3999633789062, + "r": 423.6666564941406, + "b": 561.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 573.3999633789062, + "r": 480.3333435058594, + "b": 561.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 506.0, + "t": 572.3999633789062, + "r": 535.3333129882812, + "b": 561.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 36.0, + "t": 555.7332763671875, + "r": 65.33333587646484, + "b": 545.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.0, + "t": 555.7332763671875, + "r": 127.33333587646484, + "b": 545.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.1218", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 556.066650390625, + "r": 199.0, + "b": 544.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.04791", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 225.0, + "t": 555.3999633789062, + "r": 259.0, + "b": 543.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.196", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 555.3999633789062, + "r": 314.3333435058594, + "b": 543.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.031", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 554.7332763671875, + "r": 370.3333435058594, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.0, + "t": 553.7332763671875, + "r": 424.6666564941406, + "b": 543.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.3333435058594, + "t": 555.066650390625, + "r": 481.6666564941406, + "b": 542.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 506.0, + "t": 553.066650390625, + "r": 535.3333129882812, + "b": 542.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 36.0, + "t": 536.3999633789062, + "r": 65.33333587646484, + "b": 525.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 91.33333587646484, + "t": 537.066650390625, + "r": 127.33333587646484, + "b": 525.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.8200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 536.7332763671875, + "r": 199.6666717529297, + "b": 524.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.36729", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 225.0, + "t": 536.066650390625, + "r": 258.3333435058594, + "b": 524.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-3.051", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 536.066650390625, + "r": 315.0, + "b": 524.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.787", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.6666564941406, + "t": 534.3999633789062, + "r": 370.0, + "b": 523.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.103", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 534.7332763671875, + "r": 426.3333435058594, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.019", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 534.7332763671875, + "r": 482.3333435058594, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 505.6666564941406, + "t": 534.7332763671875, + "r": 535.6666870117188, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 35.66666793823242, + "t": 517.3999633789062, + "r": 65.66666412353516, + "b": 505.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 90.66666412353516, + "t": 517.066650390625, + "r": 126.0, + "b": 505.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.1541", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 517.066650390625, + "r": 199.6666717529297, + "b": 505.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.94530", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 224.3333282470703, + "t": 516.066650390625, + "r": 259.0, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-6.476", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 516.066650390625, + "r": 315.0, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.918", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 515.3999633789062, + "r": 370.3333435058594, + "b": 503.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.208", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 515.3999633789062, + "r": 426.3333435058594, + "b": 503.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.048", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.3333435058594, + "t": 515.7332763671875, + "r": 482.3333435058594, + "b": 502.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.008", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 505.6666564941406, + "t": 514.7332763671875, + "r": 535.6666870117188, + "b": 502.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 36.0, + "t": 497.0666198730469, + "r": 65.33333587646484, + "b": 486.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 91.0, + "t": 497.39996337890625, + "r": 127.66666412353516, + "b": 485.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.4682", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.3333282470703, + "t": 497.39996337890625, + "r": 199.0, + "b": 485.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.97496", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 224.3333282470703, + "t": 496.7333068847656, + "r": 259.0, + "b": 484.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-8.774", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 496.0666198730469, + "r": 315.0, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.974", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.6666564941406, + "t": 496.0666198730469, + "r": 370.3333435058594, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.383", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 495.39996337890625, + "r": 426.3333435058594, + "b": 483.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.082", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 495.39996337890625, + "r": 482.3333435058594, + "b": 483.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 505.6666564941406, + "t": 495.39996337890625, + "r": 535.6666870117188, + "b": 483.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 35.66666793823242, + "t": 478.0666198730469, + "r": 65.0, + "b": 466.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 91.0, + "t": 478.0666198730469, + "r": 127.0, + "b": 466.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.7665", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.3333282470703, + "t": 477.39996337890625, + "r": 199.0, + "b": 465.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.22082", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 228.3333282470703, + "t": 476.7333068847656, + "r": 258.3333435058594, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "7.239", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 476.0666198730469, + "r": 314.3333435058594, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.422", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.6666564941406, + "t": 476.0666198730469, + "r": 370.3333435058594, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.599", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.0, + "t": 475.0666198730469, + "r": 424.6666564941406, + "b": 464.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.101", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 475.39996337890625, + "r": 481.6666564941406, + "b": 463.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 505.0, + "t": 475.39996337890625, + "r": 535.6666870117188, + "b": 463.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.017", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 35.0, + "t": 458.7333068847656, + "r": 65.0, + "b": 446.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 91.33333587646484, + "t": 457.7333068847656, + "r": 126.66666412353516, + "b": 447.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.0439", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 458.0666198730469, + "r": 197.6666717529297, + "b": 446.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "4.75201", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 224.3333282470703, + "t": 457.39996337890625, + "r": 257.6666564941406, + "b": 445.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~5.051", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 457.39996337890625, + "r": 314.3333435058594, + "b": 445.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.753", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.6666564941406, + "t": 456.7333068847656, + "r": 370.3333435058594, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.748", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.0, + "t": 456.7333068847656, + "r": 425.0, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.121", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.0, + "t": 455.7333068847656, + "r": 481.3333435058594, + "b": 445.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 505.6666564941406, + "t": 456.0666198730469, + "r": 535.0, + "b": 444.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.026", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 35.66666793823242, + "t": 439.39996337890625, + "r": 65.0, + "b": 427.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 91.0, + "t": 438.7333068847656, + "r": 127.0, + "b": 426.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.5449", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.3333282470703, + "t": 438.7333068847656, + "r": 198.3333282470703, + "b": 426.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-8.24351", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 224.3333282470703, + "t": 438.0666198730469, + "r": 258.3333435058594, + "b": 426.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~5.612", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 438.0666198730469, + "r": 315.0, + "b": 426.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-5.254", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.6666564941406, + "t": 437.39996337890625, + "r": 369.0, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.791", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.0, + "t": 437.39996337890625, + "r": 425.6666564941406, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.127", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.3333435058594, + "t": 436.39996337890625, + "r": 481.3333435058594, + "b": 425.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 503.0, + "t": 436.7333068847656, + "r": 532.3333129882812, + "b": 424.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.051", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 12, + "num_cols": 9, + "grid": [ + [ + { + "bbox": { + "l": 34.0, + "t": 653.3999633789062, + "r": 70.66666412353516, + "b": 620.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "I kAmp", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 104.33333587646484, + "t": 654.066650390625, + "r": 120.33333587646484, + "b": 641.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Bo", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 166.3333282470703, + "t": 654.066650390625, + "r": 189.0, + "b": 642.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "TF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 236.6666717529297, + "t": 653.066650390625, + "r": 247.3333282470703, + "b": 639.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.50482177734375, + "t": 653.3999633789062, + "r": 311.8285217285156, + "b": 623.4953002929688, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 345.6666564941406, + "t": 652.066650390625, + "r": 358.3333435058594, + "b": 638.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 403.0, + "t": 652.066650390625, + "r": 415.6666564941406, + "b": 637.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "68", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 456.6666564941406, + "t": 652.3999633789062, + "r": 474.6666564941406, + "b": 636.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "610", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.1350402832031, + "t": 651.066650390625, + "r": 534.5316162109375, + "b": 621.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "b12 10-4", + "column_header": true, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 97.66666412353516, + "t": 635.3999633789062, + "r": 127.66666412353516, + "b": 623.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Tesla", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 162.3333282470703, + "t": 636.066650390625, + "r": 193.6666717529297, + "b": 621.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T/kA", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 228.46836853027344, + "t": 634.2893676757812, + "r": 255.86497497558594, + "b": 624.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 337.80169677734375, + "t": 633.6227416992188, + "r": 365.19830322265625, + "b": 623.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.80169677734375, + "t": 632.9560546875, + "r": 423.19830322265625, + "b": 622.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.80169677734375, + "t": 632.2893676757812, + "r": 479.19830322265625, + "b": 622.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 36.33333206176758, + "t": 614.7332763671875, + "r": 66.33333587646484, + "b": 602.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 91.66666412353516, + "t": 614.7332763671875, + "r": 128.3333282470703, + "b": 602.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.0000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 614.066650390625, + "r": 197.6666717529297, + "b": 602.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.00000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.3333282470703, + "t": 613.066650390625, + "r": 257.3333435058594, + "b": 602.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 613.3999633789062, + "r": 313.0, + "b": 601.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 612.7332763671875, + "r": 369.0, + "b": 600.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.3333435058594, + "t": 612.066650390625, + "r": 425.0, + "b": 600.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.6666564941406, + "t": 611.066650390625, + "r": 480.0, + "b": 600.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 505.6666564941406, + "t": 611.3999633789062, + "r": 536.3333129882812, + "b": 599.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 35.66666793823242, + "t": 595.3999633789062, + "r": 65.66666412353516, + "b": 583.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 91.33333587646484, + "t": 595.7332763671875, + "r": 128.0, + "b": 583.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7074", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 595.066650390625, + "r": 199.0, + "b": 583.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.02261", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.3333282470703, + "t": 593.7332763671875, + "r": 256.6666564941406, + "b": 583.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 594.066650390625, + "r": 312.3333435058594, + "b": 582.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 593.3999633789062, + "r": 368.3333435058594, + "b": 581.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.3333435058594, + "t": 592.7332763671875, + "r": 423.6666564941406, + "b": 580.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 591.7332763671875, + "r": 481.3333435058594, + "b": 581.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 505.6666564941406, + "t": 592.066650390625, + "r": 535.6666870117188, + "b": 580.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 35.66666793823242, + "t": 576.066650390625, + "r": 65.66666412353516, + "b": 564.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.0, + "t": 575.066650390625, + "r": 127.33333587646484, + "b": 564.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1.4148", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 575.7332763671875, + "r": 199.6666717529297, + "b": 563.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.02600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 225.3333282470703, + "t": 574.3999633789062, + "r": 258.6666564941406, + "b": 563.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 574.7332763671875, + "r": 315.0, + "b": 562.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 338.3333435058594, + "t": 574.066650390625, + "r": 367.6666564941406, + "b": 562.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 394.3333435058594, + "t": 573.3999633789062, + "r": 423.6666564941406, + "b": 561.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.6666564941406, + "t": 573.3999633789062, + "r": 480.3333435058594, + "b": 561.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 506.0, + "t": 572.3999633789062, + "r": 535.3333129882812, + "b": 561.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 36.0, + "t": 555.7332763671875, + "r": 65.33333587646484, + "b": 545.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.0, + "t": 555.7332763671875, + "r": 127.33333587646484, + "b": 545.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.1218", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 556.066650390625, + "r": 199.0, + "b": 544.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.04791", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 225.0, + "t": 555.3999633789062, + "r": 259.0, + "b": 543.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.196", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 555.3999633789062, + "r": 314.3333435058594, + "b": 543.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.031", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 554.7332763671875, + "r": 370.3333435058594, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.0, + "t": 553.7332763671875, + "r": 424.6666564941406, + "b": 543.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.3333435058594, + "t": 555.066650390625, + "r": 481.6666564941406, + "b": 542.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 506.0, + "t": 553.066650390625, + "r": 535.3333129882812, + "b": 542.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 36.0, + "t": 536.3999633789062, + "r": 65.33333587646484, + "b": 525.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 91.33333587646484, + "t": 537.066650390625, + "r": 127.33333587646484, + "b": 525.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.8200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 536.7332763671875, + "r": 199.6666717529297, + "b": 524.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.36729", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 225.0, + "t": 536.066650390625, + "r": 258.3333435058594, + "b": 524.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-3.051", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 536.066650390625, + "r": 315.0, + "b": 524.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.787", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.6666564941406, + "t": 534.3999633789062, + "r": 370.0, + "b": 523.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.103", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 534.7332763671875, + "r": 426.3333435058594, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.019", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 534.7332763671875, + "r": 482.3333435058594, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 505.6666564941406, + "t": 534.7332763671875, + "r": 535.6666870117188, + "b": 522.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 35.66666793823242, + "t": 517.3999633789062, + "r": 65.66666412353516, + "b": 505.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 90.66666412353516, + "t": 517.066650390625, + "r": 126.0, + "b": 505.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.1541", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 517.066650390625, + "r": 199.6666717529297, + "b": 505.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.94530", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 224.3333282470703, + "t": 516.066650390625, + "r": 259.0, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-6.476", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 516.066650390625, + "r": 315.0, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.918", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 336.3333435058594, + "t": 515.3999633789062, + "r": 370.3333435058594, + "b": 503.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.208", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 515.3999633789062, + "r": 426.3333435058594, + "b": 503.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.048", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.3333435058594, + "t": 515.7332763671875, + "r": 482.3333435058594, + "b": 502.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.008", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 505.6666564941406, + "t": 514.7332763671875, + "r": 535.6666870117188, + "b": 502.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 36.0, + "t": 497.0666198730469, + "r": 65.33333587646484, + "b": 486.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 91.0, + "t": 497.39996337890625, + "r": 127.66666412353516, + "b": 485.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.4682", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.3333282470703, + "t": 497.39996337890625, + "r": 199.0, + "b": 485.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.97496", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 224.3333282470703, + "t": 496.7333068847656, + "r": 259.0, + "b": 484.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-8.774", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 496.0666198730469, + "r": 315.0, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.974", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.6666564941406, + "t": 496.0666198730469, + "r": 370.3333435058594, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.383", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 495.39996337890625, + "r": 426.3333435058594, + "b": 483.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.082", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 495.39996337890625, + "r": 482.3333435058594, + "b": 483.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 505.6666564941406, + "t": 495.39996337890625, + "r": 535.6666870117188, + "b": 483.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 35.66666793823242, + "t": 478.0666198730469, + "r": 65.0, + "b": 466.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 91.0, + "t": 478.0666198730469, + "r": 127.0, + "b": 466.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.7665", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.3333282470703, + "t": 477.39996337890625, + "r": 199.0, + "b": 465.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.22082", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 228.3333282470703, + "t": 476.7333068847656, + "r": 258.3333435058594, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "7.239", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 476.0666198730469, + "r": 314.3333435058594, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.422", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.6666564941406, + "t": 476.0666198730469, + "r": 370.3333435058594, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.599", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.0, + "t": 475.0666198730469, + "r": 424.6666564941406, + "b": 464.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.101", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 475.39996337890625, + "r": 481.6666564941406, + "b": 463.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 505.0, + "t": 475.39996337890625, + "r": 535.6666870117188, + "b": 463.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.017", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 35.0, + "t": 458.7333068847656, + "r": 65.0, + "b": 446.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 91.33333587646484, + "t": 457.7333068847656, + "r": 126.66666412353516, + "b": 447.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.0439", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 458.0666198730469, + "r": 197.6666717529297, + "b": 446.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "4.75201", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 224.3333282470703, + "t": 457.39996337890625, + "r": 257.6666564941406, + "b": 445.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~5.051", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.3333435058594, + "t": 457.39996337890625, + "r": 314.3333435058594, + "b": 445.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~5.753", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.6666564941406, + "t": 456.7333068847656, + "r": 370.3333435058594, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.748", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.0, + "t": 456.7333068847656, + "r": 425.0, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.121", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.0, + "t": 455.7333068847656, + "r": 481.3333435058594, + "b": 445.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 505.6666564941406, + "t": 456.0666198730469, + "r": 535.0, + "b": 444.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.026", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 35.66666793823242, + "t": 439.39996337890625, + "r": 65.0, + "b": 427.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 91.0, + "t": 438.7333068847656, + "r": 127.0, + "b": 426.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.5449", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.3333282470703, + "t": 438.7333068847656, + "r": 198.3333282470703, + "b": 426.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-8.24351", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 224.3333282470703, + "t": 438.0666198730469, + "r": 258.3333435058594, + "b": 426.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~5.612", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.6666564941406, + "t": 438.0666198730469, + "r": 315.0, + "b": 426.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-5.254", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.6666564941406, + "t": 437.39996337890625, + "r": 369.0, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.791", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.0, + "t": 437.39996337890625, + "r": 425.6666564941406, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.127", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.3333435058594, + "t": 436.39996337890625, + "r": 481.3333435058594, + "b": 425.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 503.0, + "t": 436.7333068847656, + "r": 532.3333129882812, + "b": 424.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.051", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/12", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 20.416332244873047, + "t": 659.144287109375, + "r": 553.1943969726562, + "b": 381.97344970703125, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/64" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "bbox": { + "l": 31.33333396911621, + "t": 637.7332763671875, + "r": 68.0, + "b": 620.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.0, + "t": 654.066650390625, + "r": 124.33333587646484, + "b": 623.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Bo Tesla", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 162.3333282470703, + "t": 654.066650390625, + "r": 193.6666717529297, + "b": 621.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "TF T/kA", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.80169677734375, + "t": 653.3999633789062, + "r": 259.19830322265625, + "b": 624.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 287.80169677734375, + "t": 652.7332763671875, + "r": 315.19830322265625, + "b": 624.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.1350402832031, + "t": 652.066650390625, + "r": 369.19830322265625, + "b": 623.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 399.1350402832031, + "t": 651.7332763671875, + "r": 426.5316467285156, + "b": 623.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "68 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 455.1350402832031, + "t": 652.3999633789062, + "r": 482.5316467285156, + "b": 622.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "61o 10 -4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.4683532714844, + "t": 652.3999633789062, + "r": 537.864990234375, + "b": 622.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "612 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 33.0, + "t": 614.7332763671875, + "r": 63.66666793823242, + "b": 602.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 89.33333587646484, + "t": 613.7332763671875, + "r": 125.33333587646484, + "b": 603.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.0000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 614.066650390625, + "r": 198.3333282470703, + "b": 602.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.00000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 230.6666717529297, + "t": 613.066650390625, + "r": 260.6666564941406, + "b": 602.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 286.0, + "t": 613.7332763671875, + "r": 317.0, + "b": 601.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 342.6666564941406, + "t": 612.3999633789062, + "r": 372.0, + "b": 601.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.3333435058594, + "t": 612.7332763671875, + "r": 428.3333435058594, + "b": 600.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 454.0, + "t": 611.7332763671875, + "r": 483.3333435058594, + "b": 601.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.6666564941406, + "t": 612.066650390625, + "r": 539.6666870117188, + "b": 600.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 33.0, + "t": 595.3999633789062, + "r": 63.0, + "b": 583.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.66666412353516, + "t": 596.066650390625, + "r": 125.66666412353516, + "b": 582.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7074", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.6666717529297, + "t": 594.7332763671875, + "r": 199.6666717529297, + "b": 582.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.02247", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 230.3333282470703, + "t": 594.066650390625, + "r": 259.6666564941406, + "b": 582.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.021", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 286.6666564941406, + "t": 593.066650390625, + "r": 315.3333435058594, + "b": 582.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 342.3333435058594, + "t": 593.3999633789062, + "r": 372.3333435058594, + "b": 581.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 397.6666564941406, + "t": 593.3999633789062, + "r": 427.6666564941406, + "b": 581.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.6666564941406, + "t": 592.7332763671875, + "r": 483.6666564941406, + "b": 580.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.6666564941406, + "t": 592.7332763671875, + "r": 539.0, + "b": 580.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 33.33333206176758, + "t": 575.066650390625, + "r": 62.66666793823242, + "b": 564.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 89.0, + "t": 575.3999633789062, + "r": 125.0, + "b": 563.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1.4149", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.3333282470703, + "t": 574.3999633789062, + "r": 199.3333282470703, + "b": 563.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.02530", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 230.3333282470703, + "t": 574.7332763671875, + "r": 260.3333435058594, + "b": 562.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.0, + "t": 573.7332763671875, + "r": 317.3333435058594, + "b": 563.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 342.3333435058594, + "t": 574.066650390625, + "r": 372.3333435058594, + "b": 562.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.0, + "t": 573.066650390625, + "r": 426.6666564941406, + "b": 562.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.0, + "t": 573.066650390625, + "r": 484.6666564941406, + "b": 562.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.3333435058594, + "t": 573.066650390625, + "r": 538.6666870117188, + "b": 562.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 33.33333206176758, + "t": 555.7332763671875, + "r": 62.66666793823242, + "b": 545.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 89.0, + "t": 556.066650390625, + "r": 125.0, + "b": 544.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.1220", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 556.7332763671875, + "r": 199.6666717529297, + "b": 543.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.03943", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.6666717529297, + "t": 555.3999633789062, + "r": 262.3333435058594, + "b": 543.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.053", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.0, + "t": 554.3999633789062, + "r": 318.0, + "b": 543.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.006", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.6666564941406, + "t": 554.7332763671875, + "r": 372.3333435058594, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 397.6666564941406, + "t": 554.7332763671875, + "r": 427.6666564941406, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.6666564941406, + "t": 554.7332763671875, + "r": 483.6666564941406, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.0, + "t": 554.7332763671875, + "r": 539.0, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 33.0, + "t": 537.3999633789062, + "r": 63.0, + "b": 525.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 89.33333587646484, + "t": 536.3999633789062, + "r": 124.66666412353516, + "b": 525.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.8240", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 537.066650390625, + "r": 199.6666717529297, + "b": 525.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.22915", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.6666717529297, + "t": 536.066650390625, + "r": 262.3333435058594, + "b": 524.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.622", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 536.066650390625, + "r": 318.3333435058594, + "b": 524.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.376", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.0, + "t": 535.066650390625, + "r": 374.0, + "b": 524.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "~0.033", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.0, + "t": 535.066650390625, + "r": 429.3333435058594, + "b": 524.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.007", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 535.066650390625, + "r": 485.3333435058594, + "b": 524.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.3333435058594, + "t": 535.066650390625, + "r": 538.0, + "b": 524.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 33.33333206176758, + "t": 517.066650390625, + "r": 62.66666793823242, + "b": 506.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.33333587646484, + "t": 517.3999633789062, + "r": 125.0, + "b": 505.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.1628", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.6666717529297, + "t": 518.066650390625, + "r": 199.0, + "b": 504.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.67301", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 228.0, + "t": 515.7332763671875, + "r": 262.0, + "b": 505.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.444", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 516.066650390625, + "r": 318.3333435058594, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 516.066650390625, + "r": 374.3333435058594, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.064", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 516.066650390625, + "r": 429.6666564941406, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.026", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 516.066650390625, + "r": 485.6666564941406, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.0, + "t": 516.066650390625, + "r": 539.0, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 33.0, + "t": 498.0666198730469, + "r": 63.0, + "b": 466.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000 5.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.33333587646484, + "t": 497.39996337890625, + "r": 123.66666412353516, + "b": 485.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.4851", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.6666717529297, + "t": 498.0666198730469, + "r": 199.6666717529297, + "b": 484.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.49560", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 229.6666717529297, + "t": 496.7333068847656, + "r": 259.6666564941406, + "b": 484.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.751", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 496.7333068847656, + "r": 318.3333435058594, + "b": 484.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.393", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 496.0666198730469, + "r": 374.3333435058594, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.119", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 496.0666198730469, + "r": 429.6666564941406, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.038", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 496.0666198730469, + "r": 485.6666564941406, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.008", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.0, + "t": 496.0666198730469, + "r": 539.0, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.008", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.66666412353516, + "t": 477.0666198730469, + "r": 124.66666412353516, + "b": 466.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.7835", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 477.39996337890625, + "r": 199.6666717529297, + "b": 465.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.78350", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 229.6666717529297, + "t": 476.7333068847656, + "r": 260.3333435058594, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "2.179", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.0, + "t": 475.7333068847656, + "r": 318.0, + "b": 465.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.804", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 476.0666198730469, + "r": 374.3333435058594, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.340", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.0, + "t": 475.7333068847656, + "r": 429.3333435058594, + "b": 465.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 476.0666198730469, + "r": 485.6666564941406, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.0, + "t": 476.0666198730469, + "r": 539.0, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.33333206176758, + "t": 458.0666198730469, + "r": 63.0, + "b": 446.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 89.0, + "t": 458.0666198730469, + "r": 124.33333587646484, + "b": 446.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.0558", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 457.39996337890625, + "r": 199.0, + "b": 445.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~4.47243", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 230.3333282470703, + "t": 457.39996337890625, + "r": 260.3333435058594, + "b": 445.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "1.595", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 456.7333068847656, + "r": 317.6666564941406, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~4.542", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 456.7333068847656, + "r": 374.3333435058594, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.556", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 456.7333068847656, + "r": 429.6666564941406, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.092", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 456.7333068847656, + "r": 485.6666564941406, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.018", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.0, + "t": 456.7333068847656, + "r": 539.0, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 33.0, + "t": 439.39996337890625, + "r": 63.0, + "b": 427.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.33333587646484, + "t": 438.7333068847656, + "r": 124.33333587646484, + "b": 426.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.5525", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 438.0666198730469, + "r": 199.0, + "b": 426.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~8.09129", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.3333282470703, + "t": 437.0666198730469, + "r": 261.3333435058594, + "b": 426.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.519", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.0, + "t": 437.0666198730469, + "r": 317.3333435058594, + "b": 426.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.469", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 437.39996337890625, + "r": 374.3333435058594, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.665", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 437.39996337890625, + "r": 429.6666564941406, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.108", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.6666564941406, + "t": 437.7333068847656, + "r": 485.6666564941406, + "b": 424.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.017", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.3333435058594, + "t": 436.39996337890625, + "r": 538.6666870117188, + "b": 425.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.050", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 33.33333206176758, + "t": 419.0666198730469, + "r": 62.0, + "b": 408.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.0, + "t": 419.7333068847656, + "r": 124.0, + "b": 407.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.7913", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 419.0666198730469, + "r": 198.3333282470703, + "b": 407.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-9.71831", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.6666717529297, + "t": 418.7333068847656, + "r": 262.3333435058594, + "b": 406.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.708", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 418.0666198730469, + "r": 317.6666564941406, + "b": 406.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~4.160", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 418.0666198730469, + "r": 374.3333435058594, + "b": 406.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.637", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 418.0666198730469, + "r": 429.6666564941406, + "b": 406.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.103", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 418.0666198730469, + "r": 485.6666564941406, + "b": 406.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.0, + "t": 418.0666198730469, + "r": 539.0, + "b": 406.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.062", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 32.33333206176758, + "t": 400.0666198730469, + "r": 62.33333206176758, + "b": 388.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.33333587646484, + "t": 400.0666198730469, + "r": 125.0, + "b": 388.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "5.0274", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 149.6666717529297, + "t": 399.39996337890625, + "r": 202.3333282470703, + "b": 387.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-11.18983", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.0, + "t": 398.7333068847656, + "r": 261.6666564941406, + "b": 386.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-3.509", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 398.7333068847656, + "r": 317.6666564941406, + "b": 386.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.835", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 398.7333068847656, + "r": 373.0, + "b": 386.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.601", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 398.7333068847656, + "r": 429.6666564941406, + "b": 386.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.096", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 397.7333068847656, + "r": 485.3333435058594, + "b": 387.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.0, + "t": 398.7333068847656, + "r": 536.3333129882812, + "b": 386.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.073", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 13, + "num_cols": 9, + "grid": [ + [ + { + "bbox": { + "l": 31.33333396911621, + "t": 637.7332763671875, + "r": 68.0, + "b": 620.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 95.0, + "t": 654.066650390625, + "r": 124.33333587646484, + "b": 623.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Bo Tesla", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 162.3333282470703, + "t": 654.066650390625, + "r": 193.6666717529297, + "b": 621.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "TF T/kA", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.80169677734375, + "t": 653.3999633789062, + "r": 259.19830322265625, + "b": 624.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 287.80169677734375, + "t": 652.7332763671875, + "r": 315.19830322265625, + "b": 624.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.1350402832031, + "t": 652.066650390625, + "r": 369.19830322265625, + "b": 623.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 399.1350402832031, + "t": 651.7332763671875, + "r": 426.5316467285156, + "b": 623.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "68 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 455.1350402832031, + "t": 652.3999633789062, + "r": 482.5316467285156, + "b": 622.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "61o 10 -4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 510.4683532714844, + "t": 652.3999633789062, + "r": 537.864990234375, + "b": 622.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "612 10-4", + "column_header": true, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 33.0, + "t": 614.7332763671875, + "r": 63.66666793823242, + "b": 602.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 89.33333587646484, + "t": 613.7332763671875, + "r": 125.33333587646484, + "b": 603.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.0000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 156.3333282470703, + "t": 614.066650390625, + "r": 198.3333282470703, + "b": 602.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.00000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 230.6666717529297, + "t": 613.066650390625, + "r": 260.6666564941406, + "b": 602.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 286.0, + "t": 613.7332763671875, + "r": 317.0, + "b": 601.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 342.6666564941406, + "t": 612.3999633789062, + "r": 372.0, + "b": 601.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.3333435058594, + "t": 612.7332763671875, + "r": 428.3333435058594, + "b": 600.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 454.0, + "t": 611.7332763671875, + "r": 483.3333435058594, + "b": 601.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.6666564941406, + "t": 612.066650390625, + "r": 539.6666870117188, + "b": 600.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 33.0, + "t": 595.3999633789062, + "r": 63.0, + "b": 583.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.66666412353516, + "t": 596.066650390625, + "r": 125.66666412353516, + "b": 582.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7074", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.6666717529297, + "t": 594.7332763671875, + "r": 199.6666717529297, + "b": 582.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.02247", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 230.3333282470703, + "t": 594.066650390625, + "r": 259.6666564941406, + "b": 582.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.021", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 286.6666564941406, + "t": 593.066650390625, + "r": 315.3333435058594, + "b": 582.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 342.3333435058594, + "t": 593.3999633789062, + "r": 372.3333435058594, + "b": 581.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 397.6666564941406, + "t": 593.3999633789062, + "r": 427.6666564941406, + "b": 581.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.6666564941406, + "t": 592.7332763671875, + "r": 483.6666564941406, + "b": 580.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.6666564941406, + "t": 592.7332763671875, + "r": 539.0, + "b": 580.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 33.33333206176758, + "t": 575.066650390625, + "r": 62.66666793823242, + "b": 564.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 89.0, + "t": 575.3999633789062, + "r": 125.0, + "b": 563.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1.4149", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.3333282470703, + "t": 574.3999633789062, + "r": 199.3333282470703, + "b": 563.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.02530", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 230.3333282470703, + "t": 574.7332763671875, + "r": 260.3333435058594, + "b": 562.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.0, + "t": 573.7332763671875, + "r": 317.3333435058594, + "b": 563.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 342.3333435058594, + "t": 574.066650390625, + "r": 372.3333435058594, + "b": 562.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 398.0, + "t": 573.066650390625, + "r": 426.6666564941406, + "b": 562.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 452.0, + "t": 573.066650390625, + "r": 484.6666564941406, + "b": 562.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.3333435058594, + "t": 573.066650390625, + "r": 538.6666870117188, + "b": 562.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 33.33333206176758, + "t": 555.7332763671875, + "r": 62.66666793823242, + "b": 545.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 89.0, + "t": 556.066650390625, + "r": 125.0, + "b": 544.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.1220", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 556.7332763671875, + "r": 199.6666717529297, + "b": 543.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.03943", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.6666717529297, + "t": 555.3999633789062, + "r": 262.3333435058594, + "b": 543.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.053", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.0, + "t": 554.3999633789062, + "r": 318.0, + "b": 543.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.006", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.6666564941406, + "t": 554.7332763671875, + "r": 372.3333435058594, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 397.6666564941406, + "t": 554.7332763671875, + "r": 427.6666564941406, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.6666564941406, + "t": 554.7332763671875, + "r": 483.6666564941406, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.0, + "t": 554.7332763671875, + "r": 539.0, + "b": 542.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 33.0, + "t": 537.3999633789062, + "r": 63.0, + "b": 525.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 89.33333587646484, + "t": 536.3999633789062, + "r": 124.66666412353516, + "b": 525.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.8240", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 537.066650390625, + "r": 199.6666717529297, + "b": 525.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.22915", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.6666717529297, + "t": 536.066650390625, + "r": 262.3333435058594, + "b": 524.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.622", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 536.066650390625, + "r": 318.3333435058594, + "b": 524.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.376", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.0, + "t": 535.066650390625, + "r": 374.0, + "b": 524.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "~0.033", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.0, + "t": 535.066650390625, + "r": 429.3333435058594, + "b": 524.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.007", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 535.066650390625, + "r": 485.3333435058594, + "b": 524.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.3333435058594, + "t": 535.066650390625, + "r": 538.0, + "b": 524.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 33.33333206176758, + "t": 517.066650390625, + "r": 62.66666793823242, + "b": 506.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.33333587646484, + "t": 517.3999633789062, + "r": 125.0, + "b": 505.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.1628", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.6666717529297, + "t": 518.066650390625, + "r": 199.0, + "b": 504.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.67301", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 228.0, + "t": 515.7332763671875, + "r": 262.0, + "b": 505.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.444", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 516.066650390625, + "r": 318.3333435058594, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 516.066650390625, + "r": 374.3333435058594, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.064", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 516.066650390625, + "r": 429.6666564941406, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.026", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 516.066650390625, + "r": 485.6666564941406, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.0, + "t": 516.066650390625, + "r": 539.0, + "b": 504.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.004", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 33.0, + "t": 498.0666198730469, + "r": 63.0, + "b": 466.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000 5.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.33333587646484, + "t": 497.39996337890625, + "r": 123.66666412353516, + "b": 485.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.4851", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 152.6666717529297, + "t": 498.0666198730469, + "r": 199.6666717529297, + "b": 484.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.49560", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 229.6666717529297, + "t": 496.7333068847656, + "r": 259.6666564941406, + "b": 484.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.751", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 496.7333068847656, + "r": 318.3333435058594, + "b": 484.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.393", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 496.0666198730469, + "r": 374.3333435058594, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.119", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 496.0666198730469, + "r": 429.6666564941406, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.038", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 496.0666198730469, + "r": 485.6666564941406, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.008", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.0, + "t": 496.0666198730469, + "r": 539.0, + "b": 484.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.008", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.66666412353516, + "t": 477.0666198730469, + "r": 124.66666412353516, + "b": 466.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.7835", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 477.39996337890625, + "r": 199.6666717529297, + "b": 465.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.78350", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 229.6666717529297, + "t": 476.7333068847656, + "r": 260.3333435058594, + "b": 464.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "2.179", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.0, + "t": 475.7333068847656, + "r": 318.0, + "b": 465.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.804", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 476.0666198730469, + "r": 374.3333435058594, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.340", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.0, + "t": 475.7333068847656, + "r": 429.3333435058594, + "b": 465.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 476.0666198730469, + "r": 485.6666564941406, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.0, + "t": 476.0666198730469, + "r": 539.0, + "b": 464.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.33333206176758, + "t": 458.0666198730469, + "r": 63.0, + "b": 446.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 89.0, + "t": 458.0666198730469, + "r": 124.33333587646484, + "b": 446.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.0558", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 457.39996337890625, + "r": 199.0, + "b": 445.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~4.47243", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 230.3333282470703, + "t": 457.39996337890625, + "r": 260.3333435058594, + "b": 445.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "1.595", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 456.7333068847656, + "r": 317.6666564941406, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~4.542", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 456.7333068847656, + "r": 374.3333435058594, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.556", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 456.7333068847656, + "r": 429.6666564941406, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.092", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 456.7333068847656, + "r": 485.6666564941406, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.018", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.0, + "t": 456.7333068847656, + "r": 539.0, + "b": 444.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 33.0, + "t": 439.39996337890625, + "r": 63.0, + "b": 427.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.33333587646484, + "t": 438.7333068847656, + "r": 124.33333587646484, + "b": 426.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.5525", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 438.0666198730469, + "r": 199.0, + "b": 426.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~8.09129", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.3333282470703, + "t": 437.0666198730469, + "r": 261.3333435058594, + "b": 426.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.519", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.0, + "t": 437.0666198730469, + "r": 317.3333435058594, + "b": 426.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.469", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 437.39996337890625, + "r": 374.3333435058594, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.665", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 437.39996337890625, + "r": 429.6666564941406, + "b": 425.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.108", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 450.6666564941406, + "t": 437.7333068847656, + "r": 485.6666564941406, + "b": 424.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.017", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.3333435058594, + "t": 436.39996337890625, + "r": 538.6666870117188, + "b": 425.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.050", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 33.33333206176758, + "t": 419.0666198730469, + "r": 62.0, + "b": 408.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.0, + "t": 419.7333068847656, + "r": 124.0, + "b": 407.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.7913", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.0, + "t": 419.0666198730469, + "r": 198.3333282470703, + "b": 407.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-9.71831", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.6666717529297, + "t": 418.7333068847656, + "r": 262.3333435058594, + "b": 406.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.708", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 418.0666198730469, + "r": 317.6666564941406, + "b": 406.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~4.160", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 418.0666198730469, + "r": 374.3333435058594, + "b": 406.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.637", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 418.0666198730469, + "r": 429.6666564941406, + "b": 406.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.103", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 418.0666198730469, + "r": 485.6666564941406, + "b": 406.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 509.0, + "t": 418.0666198730469, + "r": 539.0, + "b": 406.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.062", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 32.33333206176758, + "t": 400.0666198730469, + "r": 62.33333206176758, + "b": 388.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 88.33333587646484, + "t": 400.0666198730469, + "r": 125.0, + "b": 388.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "5.0274", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 149.6666717529297, + "t": 399.39996337890625, + "r": 202.3333282470703, + "b": 387.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-11.18983", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 227.0, + "t": 398.7333068847656, + "r": 261.6666564941406, + "b": 386.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-3.509", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 398.7333068847656, + "r": 317.6666564941406, + "b": 386.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.835", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 398.7333068847656, + "r": 373.0, + "b": 386.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.601", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.0, + "t": 398.7333068847656, + "r": 429.6666564941406, + "b": 386.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.096", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 397.7333068847656, + "r": 485.3333435058594, + "b": 387.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.0, + "t": 398.7333068847656, + "r": 536.3333129882812, + "b": 386.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.073", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/13", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [ + { + "page_no": 27, + "bbox": { + "l": 24.668344497680664, + "t": 663.3929443359375, + "r": 550.70166015625, + "b": 364.28515625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/68" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "bbox": { + "l": 36.0, + "t": 641.066650390625, + "r": 72.66666412353516, + "b": 624.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 657.3999633789062, + "r": 129.6666717529297, + "b": 626.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Bo Tesla", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 167.6666717529297, + "t": 656.7332763671875, + "r": 199.0, + "b": 624.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "TF TlkA", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 234.3333282470703, + "t": 655.7332763671875, + "r": 262.3333435058594, + "b": 624.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 288.4683532714844, + "t": 655.3999633789062, + "r": 315.8649597167969, + "b": 626.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 655.3999633789062, + "r": 369.0, + "b": 623.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 397.1350402832031, + "t": 654.7332763671875, + "r": 424.5316467285156, + "b": 625.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "b8 10 -4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.1350402832031, + "t": 655.066650390625, + "r": 480.5316467285156, + "b": 624.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "610 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 508.3333435058594, + "t": 656.0451049804688, + "r": 536.3333129882812, + "b": 622.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "10-4 b1?", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 37.66666793823242, + "t": 618.066650390625, + "r": 67.66666412353516, + "b": 606.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 93.66666412353516, + "t": 617.3999633789062, + "r": 130.3333282470703, + "b": 605.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.0000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.0, + "t": 616.7332763671875, + "r": 203.0, + "b": 604.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.00000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 234.0, + "t": 615.7332763671875, + "r": 262.6666564941406, + "b": 605.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 287.0, + "t": 616.066650390625, + "r": 317.0, + "b": 604.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.6666564941406, + "t": 615.3999633789062, + "r": 371.6666564941406, + "b": 603.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.0, + "t": 614.3999633789062, + "r": 426.0, + "b": 603.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.6666564941406, + "t": 614.7332763671875, + "r": 481.6666564941406, + "b": 602.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.6666564941406, + "t": 614.066650390625, + "r": 537.0, + "b": 602.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 37.66666793823242, + "t": 598.7332763671875, + "r": 67.66666412353516, + "b": 586.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.415", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 93.66666412353516, + "t": 598.066650390625, + "r": 130.3333282470703, + "b": 586.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1.0004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 597.3999633789062, + "r": 205.0, + "b": 585.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.02482", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 233.3333282470703, + "t": 596.3999633789062, + "r": 262.6666564941406, + "b": 585.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 287.0, + "t": 596.7332763671875, + "r": 317.6666564941406, + "b": 584.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 596.066650390625, + "r": 371.6666564941406, + "b": 584.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.0, + "t": 595.066650390625, + "r": 424.6666564941406, + "b": 584.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 595.3999633789062, + "r": 483.0, + "b": 583.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.3333435058594, + "t": 594.3999633789062, + "r": 536.6666870117188, + "b": 583.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 38.0, + "t": 578.3999633789062, + "r": 67.33333587646484, + "b": 567.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 93.66666412353516, + "t": 578.066650390625, + "r": 129.0, + "b": 567.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1.4140", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 577.3999633789062, + "r": 204.3333282470703, + "b": 565.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.02715", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 233.0, + "t": 577.3999633789062, + "r": 263.0, + "b": 565.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 286.6666564941406, + "t": 576.3999633789062, + "r": 316.6666564941406, + "b": 565.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.007", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.3333435058594, + "t": 575.7332763671875, + "r": 371.3333435058594, + "b": 565.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 576.066650390625, + "r": 425.0, + "b": 564.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 575.066650390625, + "r": 481.3333435058594, + "b": 564.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.0, + "t": 575.3999633789062, + "r": 537.0, + "b": 563.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 38.0, + "t": 559.066650390625, + "r": 66.66666412353516, + "b": 548.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 93.33333587646484, + "t": 558.3999633789062, + "r": 129.3333282470703, + "b": 547.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.1200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 559.3999633789062, + "r": 204.3333282470703, + "b": 545.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.07239", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 233.3333282470703, + "t": 557.066650390625, + "r": 262.6666564941406, + "b": 546.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.533", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.3333435058594, + "t": 557.3999633789062, + "r": 319.0, + "b": 545.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.090", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.3333435058594, + "t": 556.3999633789062, + "r": 370.6666564941406, + "b": 545.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.037", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 556.7332763671875, + "r": 427.6666564941406, + "b": 544.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.007", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 555.7332763671875, + "r": 480.6666564941406, + "b": 545.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.3333435058594, + "t": 555.7332763671875, + "r": 536.6666870117188, + "b": 545.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 37.0, + "t": 540.066650390625, + "r": 67.0, + "b": 528.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.66666412353516, + "t": 539.7332763671875, + "r": 128.6666717529297, + "b": 527.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.8081", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 539.3999633789062, + "r": 204.3333282470703, + "b": 526.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.72783", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 233.0, + "t": 538.066650390625, + "r": 263.0, + "b": 526.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3.105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 538.066650390625, + "r": 318.3333435058594, + "b": 526.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.437", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 537.3999633789062, + "r": 371.0, + "b": 525.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.243", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 537.3999633789062, + "r": 427.6666564941406, + "b": 525.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 537.3999633789062, + "r": 481.0, + "b": 525.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.0, + "t": 537.3999633789062, + "r": 536.3333129882812, + "b": 525.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 37.33333206176758, + "t": 519.7332763671875, + "r": 66.66666412353516, + "b": 509.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.66666412353516, + "t": 520.3999633789062, + "r": 129.3333282470703, + "b": 508.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.1306", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 519.3999633789062, + "r": 204.3333282470703, + "b": 507.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.62474", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 232.3333282470703, + "t": 518.7332763671875, + "r": 262.3333435058594, + "b": 506.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "6.527", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.0, + "t": 517.7332763671875, + "r": 318.0, + "b": 507.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.550", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 518.066650390625, + "r": 371.0, + "b": 506.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.477", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 518.066650390625, + "r": 427.0, + "b": 506.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 517.066650390625, + "r": 480.0, + "b": 506.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.0, + "t": 517.3999633789062, + "r": 536.3333129882812, + "b": 505.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.008", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 37.33333206176758, + "t": 500.39996337890625, + "r": 66.66666412353516, + "b": 489.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.750", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 93.33333587646484, + "t": 499.7333068847656, + "r": 128.6666717529297, + "b": 489.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.2833", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 500.0666198730469, + "r": 203.6666717529297, + "b": 488.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.25619", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 232.3333282470703, + "t": 499.39996337890625, + "r": 262.3333435058594, + "b": 487.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "8.585", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.0, + "t": 498.39996337890625, + "r": 318.0, + "b": 487.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.442", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 498.7333068847656, + "r": 371.0, + "b": 486.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.582", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 498.7333068847656, + "r": 427.0, + "b": 486.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.107", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 497.7333068847656, + "r": 482.6666564941406, + "b": 487.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 506.3333435058594, + "t": 498.0666198730469, + "r": 536.3333129882812, + "b": 486.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.012", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 37.0, + "t": 481.39996337890625, + "r": 67.0, + "b": 469.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 93.0, + "t": 480.7333068847656, + "r": 129.0, + "b": 468.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.4295", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 480.0666198730469, + "r": 203.6666717529297, + "b": 468.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.00662", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 232.3333282470703, + "t": 480.0666198730469, + "r": 262.3333435058594, + "b": 468.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "9.396", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 479.39996337890625, + "r": 318.3333435058594, + "b": 467.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.446", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.6666564941406, + "t": 478.39996337890625, + "r": 370.6666564941406, + "b": 467.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.618", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 478.7333068847656, + "r": 427.0, + "b": 466.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.116", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 478.7333068847656, + "r": 483.0, + "b": 466.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 506.6666564941406, + "t": 477.7333068847656, + "r": 536.0, + "b": 467.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.017", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 37.33333206176758, + "t": 461.0666198730469, + "r": 66.0, + "b": 450.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.250", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.0, + "t": 461.39996337890625, + "r": 128.6666717529297, + "b": 449.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.5702", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.3333282470703, + "t": 461.7333068847656, + "r": 203.6666717529297, + "b": 448.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.83722", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 232.3333282470703, + "t": 460.0666198730469, + "r": 262.3333435058594, + "b": 448.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "8.863", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.0, + "t": 459.0666198730469, + "r": 318.0, + "b": 448.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.563", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 459.39996337890625, + "r": 371.0, + "b": 447.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.599", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 458.39996337890625, + "r": 426.6666564941406, + "b": 447.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.119", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 458.7333068847656, + "r": 483.0, + "b": 446.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 506.3333435058594, + "t": 458.7333068847656, + "r": 536.3333129882812, + "b": 446.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 37.33333206176758, + "t": 441.7333068847656, + "r": 66.0, + "b": 431.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.33333587646484, + "t": 442.0666198730469, + "r": 129.0, + "b": 429.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.7072", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 441.39996337890625, + "r": 203.6666717529297, + "b": 429.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-4.68668", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 232.3333282470703, + "t": 440.7333068847656, + "r": 262.3333435058594, + "b": 428.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "7.873", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 440.0666198730469, + "r": 318.3333435058594, + "b": 428.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.635", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 440.0666198730469, + "r": 370.3333435058594, + "b": 428.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.567", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.0, + "t": 440.39996337890625, + "r": 427.0, + "b": 426.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.117", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 439.39996337890625, + "r": 482.3333435058594, + "b": 427.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.018", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 506.3333435058594, + "t": 439.39996337890625, + "r": 535.6666870117188, + "b": 427.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.027", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 36.33333206176758, + "t": 422.7333068847656, + "r": 66.33333587646484, + "b": 410.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.33333587646484, + "t": 422.0666198730469, + "r": 127.66666412353516, + "b": 410.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.9721", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 421.7333068847656, + "r": 203.6666717529297, + "b": 409.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-6.38510", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 232.6666717529297, + "t": 420.39996337890625, + "r": 261.3333435058594, + "b": 409.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "5.264", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 420.7333068847656, + "r": 317.6666564941406, + "b": 408.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.602", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.6666564941406, + "t": 419.7333068847656, + "r": 369.3333435058594, + "b": 409.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.511", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 420.0666198730469, + "r": 426.3333435058594, + "b": 408.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.097", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 420.0666198730469, + "r": 482.3333435058594, + "b": 408.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.018", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 505.6666564941406, + "t": 420.0666198730469, + "r": 535.6666870117188, + "b": 408.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.039", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 37.0, + "t": 403.39996337890625, + "r": 66.33333587646484, + "b": 391.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.33333587646484, + "t": 402.7333068847656, + "r": 128.3333282470703, + "b": 390.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.4806", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 402.0666198730469, + "r": 203.0, + "b": 390.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-9.48737", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.6666717529297, + "t": 401.39996337890625, + "r": 261.6666564941406, + "b": 389.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "1.663", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 401.39996337890625, + "r": 317.6666564941406, + "b": 389.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~0.380", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 400.7333068847656, + "r": 369.6666564941406, + "b": 388.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.381", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 400.7333068847656, + "r": 426.3333435058594, + "b": 388.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.058", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.0, + "t": 399.7333068847656, + "r": 482.0, + "b": 389.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.013", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 506.0, + "t": 399.7333068847656, + "r": 534.6666870117188, + "b": 389.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.061", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 36.0, + "t": 383.0666198730469, + "r": 65.33333587646484, + "b": 372.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.33333587646484, + "t": 382.7333068847656, + "r": 127.66666412353516, + "b": 372.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.9688", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.3333282470703, + "t": 383.39996337890625, + "r": 205.6666717529297, + "b": 369.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-12.17076", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.6666717529297, + "t": 382.0666198730469, + "r": 261.6666564941406, + "b": 370.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.178", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.3333435058594, + "t": 381.0666198730469, + "r": 317.3333435058594, + "b": 370.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.333", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 381.39996337890625, + "r": 370.3333435058594, + "b": 369.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.254", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 381.39996337890625, + "r": 426.3333435058594, + "b": 369.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.033", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 381.39996337890625, + "r": 482.3333435058594, + "b": 369.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.009", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 503.6666564941406, + "t": 380.7333068847656, + "r": 533.6666870117188, + "b": 368.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.082", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 14, + "num_cols": 9, + "grid": [ + [ + { + "bbox": { + "l": 36.0, + "t": 641.066650390625, + "r": 72.66666412353516, + "b": 624.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.66666412353516, + "t": 657.3999633789062, + "r": 129.6666717529297, + "b": 626.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Bo Tesla", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 167.6666717529297, + "t": 656.7332763671875, + "r": 199.0, + "b": 624.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "TF TlkA", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 234.3333282470703, + "t": 655.7332763671875, + "r": 262.3333435058594, + "b": 624.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 288.4683532714844, + "t": 655.3999633789062, + "r": 315.8649597167969, + "b": 626.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 655.3999633789062, + "r": 369.0, + "b": 623.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 397.1350402832031, + "t": 654.7332763671875, + "r": 424.5316467285156, + "b": 625.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "b8 10 -4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 453.1350402832031, + "t": 655.066650390625, + "r": 480.5316467285156, + "b": 624.8438720703125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "610 10-4", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 508.3333435058594, + "t": 656.0451049804688, + "r": 536.3333129882812, + "b": 622.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "10-4 b1?", + "column_header": true, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 37.66666793823242, + "t": 618.066650390625, + "r": 67.66666412353516, + "b": 606.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 93.66666412353516, + "t": 617.3999633789062, + "r": 130.3333282470703, + "b": 605.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.0000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 161.0, + "t": 616.7332763671875, + "r": 203.0, + "b": 604.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.00000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 234.0, + "t": 615.7332763671875, + "r": 262.6666564941406, + "b": 605.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 287.0, + "t": 616.066650390625, + "r": 317.0, + "b": 604.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.6666564941406, + "t": 615.3999633789062, + "r": 371.6666564941406, + "b": 603.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.0, + "t": 614.3999633789062, + "r": 426.0, + "b": 603.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.6666564941406, + "t": 614.7332763671875, + "r": 481.6666564941406, + "b": 602.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.6666564941406, + "t": 614.066650390625, + "r": 537.0, + "b": 602.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 37.66666793823242, + "t": 598.7332763671875, + "r": 67.66666412353516, + "b": 586.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.415", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 93.66666412353516, + "t": 598.066650390625, + "r": 130.3333282470703, + "b": 586.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1.0004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 597.3999633789062, + "r": 205.0, + "b": 585.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.02482", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 233.3333282470703, + "t": 596.3999633789062, + "r": 262.6666564941406, + "b": 585.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 287.0, + "t": 596.7332763671875, + "r": 317.6666564941406, + "b": 584.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 596.066650390625, + "r": 371.6666564941406, + "b": 584.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 396.0, + "t": 595.066650390625, + "r": 424.6666564941406, + "b": 584.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.0, + "t": 595.3999633789062, + "r": 483.0, + "b": 583.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.3333435058594, + "t": 594.3999633789062, + "r": 536.6666870117188, + "b": 583.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 38.0, + "t": 578.3999633789062, + "r": 67.33333587646484, + "b": 567.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 93.66666412353516, + "t": 578.066650390625, + "r": 129.0, + "b": 567.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1.4140", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 158.3333282470703, + "t": 577.3999633789062, + "r": 204.3333282470703, + "b": 565.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.02715", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 233.0, + "t": 577.3999633789062, + "r": 263.0, + "b": 565.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 286.6666564941406, + "t": 576.3999633789062, + "r": 316.6666564941406, + "b": 565.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.007", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.3333435058594, + "t": 575.7332763671875, + "r": 371.3333435058594, + "b": 565.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 395.6666564941406, + "t": 576.066650390625, + "r": 425.0, + "b": 564.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 575.066650390625, + "r": 481.3333435058594, + "b": 564.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.0, + "t": 575.3999633789062, + "r": 537.0, + "b": 563.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 38.0, + "t": 559.066650390625, + "r": 66.66666412353516, + "b": 548.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 93.33333587646484, + "t": 558.3999633789062, + "r": 129.3333282470703, + "b": 547.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.1200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 559.3999633789062, + "r": 204.3333282470703, + "b": 545.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.07239", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 233.3333282470703, + "t": 557.066650390625, + "r": 262.6666564941406, + "b": 546.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.533", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.3333435058594, + "t": 557.3999633789062, + "r": 319.0, + "b": 545.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.090", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.3333435058594, + "t": 556.3999633789062, + "r": 370.6666564941406, + "b": 545.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.037", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 556.7332763671875, + "r": 427.6666564941406, + "b": 544.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.007", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 555.7332763671875, + "r": 480.6666564941406, + "b": 545.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.3333435058594, + "t": 555.7332763671875, + "r": 536.6666870117188, + "b": 545.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 37.0, + "t": 540.066650390625, + "r": 67.0, + "b": 528.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.66666412353516, + "t": 539.7332763671875, + "r": 128.6666717529297, + "b": 527.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2.8081", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 539.3999633789062, + "r": 204.3333282470703, + "b": 526.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.72783", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 233.0, + "t": 538.066650390625, + "r": 263.0, + "b": 526.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3.105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 538.066650390625, + "r": 318.3333435058594, + "b": 526.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.437", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 537.3999633789062, + "r": 371.0, + "b": 525.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.243", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 393.0, + "t": 537.3999633789062, + "r": 427.6666564941406, + "b": 525.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.0, + "t": 537.3999633789062, + "r": 481.0, + "b": 525.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.0, + "t": 537.3999633789062, + "r": 536.3333129882812, + "b": 525.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.003", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 37.33333206176758, + "t": 519.7332763671875, + "r": 66.66666412353516, + "b": 509.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.66666412353516, + "t": 520.3999633789062, + "r": 129.3333282470703, + "b": 508.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.1306", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 519.3999633789062, + "r": 204.3333282470703, + "b": 507.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.62474", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 232.3333282470703, + "t": 518.7332763671875, + "r": 262.3333435058594, + "b": 506.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "6.527", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.0, + "t": 517.7332763671875, + "r": 318.0, + "b": 507.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.550", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 518.066650390625, + "r": 371.0, + "b": 506.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.477", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 518.066650390625, + "r": 427.0, + "b": 506.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 451.3333435058594, + "t": 517.066650390625, + "r": 480.0, + "b": 506.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 507.0, + "t": 517.3999633789062, + "r": 536.3333129882812, + "b": 505.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.008", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 37.33333206176758, + "t": 500.39996337890625, + "r": 66.66666412353516, + "b": 489.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.750", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 93.33333587646484, + "t": 499.7333068847656, + "r": 128.6666717529297, + "b": 489.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.2833", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 500.0666198730469, + "r": 203.6666717529297, + "b": 488.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.25619", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 232.3333282470703, + "t": 499.39996337890625, + "r": 262.3333435058594, + "b": 487.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "8.585", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.0, + "t": 498.39996337890625, + "r": 318.0, + "b": 487.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.442", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 341.0, + "t": 498.7333068847656, + "r": 371.0, + "b": 486.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.582", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 498.7333068847656, + "r": 427.0, + "b": 486.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.107", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 497.7333068847656, + "r": 482.6666564941406, + "b": 487.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 506.3333435058594, + "t": 498.0666198730469, + "r": 536.3333129882812, + "b": 486.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.012", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 37.0, + "t": 481.39996337890625, + "r": 67.0, + "b": 469.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 93.0, + "t": 480.7333068847656, + "r": 129.0, + "b": 468.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.4295", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.6666717529297, + "t": 480.0666198730469, + "r": 203.6666717529297, + "b": 468.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.00662", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 232.3333282470703, + "t": 480.0666198730469, + "r": 262.3333435058594, + "b": 468.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "9.396", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 479.39996337890625, + "r": 318.3333435058594, + "b": 467.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.446", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.6666564941406, + "t": 478.39996337890625, + "r": 370.6666564941406, + "b": 467.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.618", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 478.7333068847656, + "r": 427.0, + "b": 466.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.116", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 478.7333068847656, + "r": 483.0, + "b": 466.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 506.6666564941406, + "t": 477.7333068847656, + "r": 536.0, + "b": 467.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.017", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 37.33333206176758, + "t": 461.0666198730469, + "r": 66.0, + "b": 450.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.250", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.0, + "t": 461.39996337890625, + "r": 128.6666717529297, + "b": 449.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.5702", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.3333282470703, + "t": 461.7333068847656, + "r": 203.6666717529297, + "b": 448.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.83722", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 232.3333282470703, + "t": 460.0666198730469, + "r": 262.3333435058594, + "b": 448.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "8.863", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 284.0, + "t": 459.0666198730469, + "r": 318.0, + "b": 448.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.563", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 459.39996337890625, + "r": 371.0, + "b": 447.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.599", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.6666564941406, + "t": 458.39996337890625, + "r": 426.6666564941406, + "b": 447.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.119", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 458.7333068847656, + "r": 483.0, + "b": 446.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 506.3333435058594, + "t": 458.7333068847656, + "r": 536.3333129882812, + "b": 446.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.022", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 37.33333206176758, + "t": 441.7333068847656, + "r": 66.0, + "b": 431.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.500", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.33333587646484, + "t": 442.0666198730469, + "r": 129.0, + "b": 429.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.7072", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 441.39996337890625, + "r": 203.6666717529297, + "b": 429.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-4.68668", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 232.3333282470703, + "t": 440.7333068847656, + "r": 262.3333435058594, + "b": 428.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "7.873", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.6666564941406, + "t": 440.0666198730469, + "r": 318.3333435058594, + "b": 428.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.635", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 440.0666198730469, + "r": 370.3333435058594, + "b": 428.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.567", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.0, + "t": 440.39996337890625, + "r": 427.0, + "b": 426.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.117", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 439.39996337890625, + "r": 482.3333435058594, + "b": 427.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.018", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 506.3333435058594, + "t": 439.39996337890625, + "r": 535.6666870117188, + "b": 427.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.027", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 36.33333206176758, + "t": 422.7333068847656, + "r": 66.33333587646484, + "b": 410.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.33333587646484, + "t": 422.0666198730469, + "r": 127.66666412353516, + "b": 410.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3.9721", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 421.7333068847656, + "r": 203.6666717529297, + "b": 409.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-6.38510", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 232.6666717529297, + "t": 420.39996337890625, + "r": 261.3333435058594, + "b": 409.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "5.264", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 420.7333068847656, + "r": 317.6666564941406, + "b": 408.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.602", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.6666564941406, + "t": 419.7333068847656, + "r": 369.3333435058594, + "b": 409.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.511", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 392.3333435058594, + "t": 420.0666198730469, + "r": 426.3333435058594, + "b": 408.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.097", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 420.0666198730469, + "r": 482.3333435058594, + "b": 408.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.018", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 505.6666564941406, + "t": 420.0666198730469, + "r": 535.6666870117188, + "b": 408.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.039", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 37.0, + "t": 403.39996337890625, + "r": 66.33333587646484, + "b": 391.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.33333587646484, + "t": 402.7333068847656, + "r": 128.3333282470703, + "b": 390.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.4806", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 157.0, + "t": 402.0666198730469, + "r": 203.0, + "b": 390.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-9.48737", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.6666717529297, + "t": 401.39996337890625, + "r": 261.6666564941406, + "b": 389.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "1.663", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.0, + "t": 401.39996337890625, + "r": 317.6666564941406, + "b": 389.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~0.380", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3333435058594, + "t": 400.7333068847656, + "r": 369.6666564941406, + "b": 388.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.381", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 400.7333068847656, + "r": 426.3333435058594, + "b": 388.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.058", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.0, + "t": 399.7333068847656, + "r": 482.0, + "b": 389.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.013", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 506.0, + "t": 399.7333068847656, + "r": 534.6666870117188, + "b": 389.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.061", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 36.0, + "t": 383.0666198730469, + "r": 65.33333587646484, + "b": 372.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 92.33333587646484, + "t": 382.7333068847656, + "r": 127.66666412353516, + "b": 372.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4.9688", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 153.3333282470703, + "t": 383.39996337890625, + "r": 205.6666717529297, + "b": 369.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-12.17076", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 231.6666717529297, + "t": 382.0666198730469, + "r": 261.6666564941406, + "b": 370.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.178", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 283.3333435058594, + "t": 381.0666198730469, + "r": 317.3333435058594, + "b": 370.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.333", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 339.6666564941406, + "t": 381.39996337890625, + "r": 370.3333435058594, + "b": 369.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.254", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 391.6666564941406, + "t": 381.39996337890625, + "r": 426.3333435058594, + "b": 369.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.033", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 447.6666564941406, + "t": 381.39996337890625, + "r": 482.3333435058594, + "b": 369.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "-0.009", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 503.6666564941406, + "t": 380.7333068847656, + "r": 533.6666870117188, + "b": 368.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.082", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/14", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 86.2381820678711, + "t": 627.5330200195312, + "r": 494.66448974609375, + "b": 95.32000732421875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/90" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 163.0, + "t": 622.7332763671875, + "r": 185.6666717529297, + "b": 610.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "TF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 223.0, + "t": 622.7332763671875, + "r": 249.0, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "STF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 288.6666564941406, + "t": 621.7332763671875, + "r": 299.3333435058594, + "b": 607.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3902893066406, + "t": 616.8592529296875, + "r": 357.94305419921875, + "b": 610.940673828125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "<", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 397.6666564941406, + "t": 620.7332763671875, + "r": 409.6666564941406, + "b": 606.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 457.0, + "t": 618.066650390625, + "r": 469.6666564941406, + "b": 606.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "01", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.70450592041016, + "t": 606.033447265625, + "r": 132.29550170898438, + "b": 588.7664794921875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 604.7332763671875, + "r": 191.0, + "b": 590.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 230.3333282470703, + "t": 604.066650390625, + "r": 243.0, + "b": 590.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.07037353515625, + "t": 602.2592163085938, + "r": 308.262939453125, + "b": 593.2073974609375, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.80169677734375, + "t": 602.2893676757812, + "r": 363.8649597167969, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.1350402832031, + "t": 601.6227416992188, + "r": 417.19830322265625, + "b": 591.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.4683532714844, + "t": 601.6227416992188, + "r": 477.19830322265625, + "b": 591.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.0, + "t": 583.3999633789062, + "r": 129.6666717529297, + "b": 571.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.3333282470703, + "t": 584.066650390625, + "r": 191.6666717529297, + "b": 570.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 582.7332763671875, + "r": 249.0, + "b": 570.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.0, + "t": 582.066650390625, + "r": 311.6666564941406, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 582.066650390625, + "r": 367.0, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.3333435058594, + "t": 581.3999633789062, + "r": 423.0, + "b": 569.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 581.3999633789062, + "r": 479.0, + "b": 569.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.33333587646484, + "t": 563.066650390625, + "r": 129.3333282470703, + "b": 552.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 563.7332763671875, + "r": 191.6666717529297, + "b": 551.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 562.7332763671875, + "r": 249.0, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.0, + "t": 562.7332763671875, + "r": 311.6666564941406, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 562.066650390625, + "r": 367.0, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 562.066650390625, + "r": 420.3333435058594, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 561.066650390625, + "r": 478.0, + "b": 550.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.0, + "t": 544.066650390625, + "r": 129.0, + "b": 532.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 544.3999633789062, + "r": 191.6666717529297, + "b": 532.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7072", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 543.3999633789062, + "r": 249.0, + "b": 531.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 543.3999633789062, + "r": 311.6666564941406, + "b": 531.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 542.7332763671875, + "r": 367.0, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 542.7332763671875, + "r": 420.3333435058594, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 542.7332763671875, + "r": 478.3333435058594, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.0, + "t": 524.7332763671875, + "r": 129.0, + "b": 512.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 524.7332763671875, + "r": 191.6666717529297, + "b": 512.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7072", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.6666717529297, + "t": 523.066650390625, + "r": 248.6666717529297, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.019", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 523.066650390625, + "r": 308.6666564941406, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 523.3999633789062, + "r": 365.0, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.6666564941406, + "t": 522.3999633789062, + "r": 422.0, + "b": 511.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.090", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 522.3999633789062, + "r": 478.0, + "b": 511.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.0, + "t": 504.7333068847656, + "r": 129.0, + "b": 492.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 504.7333068847656, + "r": 191.6666717529297, + "b": 492.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7070", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 504.0666198730469, + "r": 251.0, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 504.0666198730469, + "r": 309.0, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.6666564941406, + "t": 503.0666198730469, + "r": 366.6666564941406, + "b": 492.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.6666564941406, + "t": 503.0666198730469, + "r": 420.0, + "b": 492.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 503.39996337890625, + "r": 478.3333435058594, + "b": 491.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.0, + "t": 485.39996337890625, + "r": 129.0, + "b": 473.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 485.39996337890625, + "r": 190.3333282470703, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 484.7333068847656, + "r": 249.0, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 483.7333068847656, + "r": 308.6666564941406, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 484.0666198730469, + "r": 365.0, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 484.0666198730469, + "r": 420.3333435058594, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 484.0666198730469, + "r": 478.3333435058594, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.33333587646484, + "t": 465.0666198730469, + "r": 128.6666717529297, + "b": 454.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 465.39996337890625, + "r": 190.3333282470703, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.6666717529297, + "t": 464.39996337890625, + "r": 248.0, + "b": 453.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 464.7333068847656, + "r": 311.0, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 464.7333068847656, + "r": 364.3333435058594, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 464.7333068847656, + "r": 420.3333435058594, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 464.7333068847656, + "r": 480.3333435058594, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.0, + "t": 446.0666198730469, + "r": 129.0, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 446.0666198730469, + "r": 191.0, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 445.39996337890625, + "r": 251.0, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 445.39996337890625, + "r": 311.0, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 445.39996337890625, + "r": 364.3333435058594, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.070", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.0, + "t": 444.39996337890625, + "r": 422.0, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 444.7333068847656, + "r": 480.3333435058594, + "b": 432.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 98.33333587646484, + "t": 426.7333068847656, + "r": 129.0, + "b": 414.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 427.0666198730469, + "r": 191.0, + "b": 415.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 426.0666198730469, + "r": 251.0, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.028", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.6666564941406, + "t": 425.0666198730469, + "r": 310.6666564941406, + "b": 414.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 425.39996337890625, + "r": 366.3333435058594, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 425.39996337890625, + "r": 422.3333435058594, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 425.39996337890625, + "r": 480.3333435058594, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 99.33333587646484, + "t": 406.39996337890625, + "r": 128.6666717529297, + "b": 395.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 407.0666198730469, + "r": 191.0, + "b": 395.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7068", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 406.0666198730469, + "r": 251.0, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.042", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 406.0666198730469, + "r": 311.0, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.175", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 405.39996337890625, + "r": 367.0, + "b": 393.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 405.39996337890625, + "r": 420.3333435058594, + "b": 393.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 405.39996337890625, + "r": 480.3333435058594, + "b": 393.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 98.33333587646484, + "t": 387.39996337890625, + "r": 129.0, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 387.7333068847656, + "r": 191.0, + "b": 375.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7066", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 386.7333068847656, + "r": 251.0, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.058", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.6666564941406, + "t": 385.7333068847656, + "r": 310.6666564941406, + "b": 375.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.410", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 386.0666198730469, + "r": 367.0, + "b": 374.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 386.0666198730469, + "r": 422.3333435058594, + "b": 374.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 386.0666198730469, + "r": 480.3333435058594, + "b": 374.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 98.33333587646484, + "t": 368.0666198730469, + "r": 129.0, + "b": 356.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 367.39996337890625, + "r": 191.0, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.6666717529297, + "t": 366.39996337890625, + "r": 249.3333282470703, + "b": 355.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.1ll", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 366.7333068847656, + "r": 311.0, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.875", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 366.7333068847656, + "r": 366.3333435058594, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.140", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 366.7333068847656, + "r": 422.3333435058594, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 366.7333068847656, + "r": 480.3333435058594, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 98.33333587646484, + "t": 348.0666198730469, + "r": 129.0, + "b": 336.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 348.0666198730469, + "r": 191.0, + "b": 336.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7057", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.0, + "t": 348.39996337890625, + "r": 251.0, + "b": 335.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.187", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 347.39996337890625, + "r": 311.0, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.570", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.6666564941406, + "t": 346.39996337890625, + "r": 366.0, + "b": 335.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.240", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.0, + "t": 346.39996337890625, + "r": 422.0, + "b": 335.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.090", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.0, + "t": 346.39996337890625, + "r": 480.0, + "b": 335.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 98.33333587646484, + "t": 328.7333068847656, + "r": 129.0, + "b": 316.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.3333282470703, + "t": 328.0666198730469, + "r": 190.6666717529297, + "b": 317.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7049", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 328.0666198730469, + "r": 249.6666717529297, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.311", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.6666564941406, + "t": 327.0666198730469, + "r": 310.6666564941406, + "b": 316.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.360", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 327.39996337890625, + "r": 366.3333435058594, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 327.39996337890625, + "r": 422.3333435058594, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.0, + "t": 327.0666198730469, + "r": 480.0, + "b": 316.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 98.33333587646484, + "t": 289.39996337890625, + "r": 128.3333282470703, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.3333282470703, + "t": 289.39996337890625, + "r": 190.3333282470703, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 288.7333068847656, + "r": 250.3333282470703, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.582", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 288.7333068847656, + "r": 311.0, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-4.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 331.6666564941406, + "t": 288.7333068847656, + "r": 366.3333435058594, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.895", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 288.7333068847656, + "r": 422.3333435058594, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.210", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 288.7333068847656, + "r": 480.3333435058594, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 98.66666412353516, + "t": 269.0666198730469, + "r": 128.0, + "b": 258.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.3333282470703, + "t": 269.39996337890625, + "r": 191.0, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 269.39996337890625, + "r": 250.3333282470703, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.798", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.6666564941406, + "t": 268.39996337890625, + "r": 310.6666564941406, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-4.930", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.6666564941406, + "t": 268.39996337890625, + "r": 366.0, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 268.7333068847656, + "r": 422.3333435058594, + "b": 256.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.0, + "t": 268.39996337890625, + "r": 480.0, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.140", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 98.33333587646484, + "t": 250.06663513183594, + "r": 128.3333282470703, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.0, + "t": 250.73329162597656, + "r": 191.0, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6994", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 249.39996337890625, + "r": 249.6666717529297, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.081", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 249.39996337890625, + "r": 310.3333435058594, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~5.715", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 331.6666564941406, + "t": 249.39996337890625, + "r": 366.3333435058594, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.705", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 249.39996337890625, + "r": 421.6666564941406, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 249.39996337890625, + "r": 479.6666564941406, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.215", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 98.66666412353516, + "t": 229.73329162597656, + "r": 128.0, + "b": 219.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.3333282470703, + "t": 230.06663513183594, + "r": 190.3333282470703, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6969", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 230.06663513183594, + "r": 250.3333282470703, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.432", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.6666564941406, + "t": 229.06663513183594, + "r": 310.6666564941406, + "b": 218.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~6.395", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.6666564941406, + "t": 229.06663513183594, + "r": 366.0, + "b": 218.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 229.39996337890625, + "r": 421.6666564941406, + "b": 217.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.125", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 229.39996337890625, + "r": 480.3333435058594, + "b": 217.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.305", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 98.33333587646484, + "t": 210.73329162597656, + "r": 128.3333282470703, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.3333282470703, + "t": 210.73329162597656, + "r": 190.3333282470703, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6937", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.0, + "t": 209.73329162597656, + "r": 249.3333282470703, + "b": 199.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.881", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.6666564941406, + "t": 209.73329162597656, + "r": 310.6666564941406, + "b": 199.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-6.550", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 210.06663513183594, + "r": 366.3333435058594, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.945", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.0, + "t": 210.06663513183594, + "r": 421.6666564941406, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.160", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 210.06663513183594, + "r": 480.3333435058594, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 98.66666412353516, + "t": 190.39996337890625, + "r": 128.0, + "b": 179.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.3333282470703, + "t": 191.39996337890625, + "r": 190.3333282470703, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6906", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 190.73329162597656, + "r": 249.6666717529297, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.331", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 190.73329162597656, + "r": 310.3333435058594, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-6.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 190.73329162597656, + "r": 366.3333435058594, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.590", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 190.73329162597656, + "r": 421.6666564941406, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.230", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 190.73329162597656, + "r": 480.3333435058594, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.530", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 98.66666412353516, + "t": 171.06663513183594, + "r": 128.0, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.3333282470703, + "t": 171.39996337890625, + "r": 190.3333282470703, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6872", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 171.39996337890625, + "r": 250.3333282470703, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.803", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.0, + "t": 170.39996337890625, + "r": 310.0, + "b": 159.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~5.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 331.6666564941406, + "t": 171.39996337890625, + "r": 366.3333435058594, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 171.39996337890625, + "r": 421.6666564941406, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.285", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.3333435058594, + "t": 172.06663513183594, + "r": 480.3333435058594, + "b": 158.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.675", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 98.66666412353516, + "t": 151.73329162597656, + "r": 128.0, + "b": 141.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.3333282470703, + "t": 152.06663513183594, + "r": 190.3333282470703, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6835", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 152.06663513183594, + "r": 250.3333282470703, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.334", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.6666564941406, + "t": 151.06663513183594, + "r": 310.0, + "b": 140.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-3.845", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 152.06663513183594, + "r": 366.3333435058594, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~4.460", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 152.06663513183594, + "r": 421.6666564941406, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.380", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 152.06663513183594, + "r": 479.6666564941406, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.845", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 98.66666412353516, + "t": 131.73329162597656, + "r": 128.0, + "b": 121.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.3333282470703, + "t": 132.06663513183594, + "r": 190.3333282470703, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6796", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 132.06663513183594, + "r": 250.3333282470703, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.878", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 132.06663513183594, + "r": 310.3333435058594, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.445", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 331.6666564941406, + "t": 132.06663513183594, + "r": 366.3333435058594, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.585", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.3333435058594, + "t": 131.06663513183594, + "r": 421.3333435058594, + "b": 120.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.0, + "t": 132.06663513183594, + "r": 480.3333435058594, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 98.66666412353516, + "t": 111.7332992553711, + "r": 128.0, + "b": 101.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.6666717529297, + "t": 111.7332992553711, + "r": 190.0, + "b": 101.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6753", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 112.0666275024414, + "r": 250.3333282470703, + "b": 100.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~4.494", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 275.6666564941406, + "t": 112.0666275024414, + "r": 310.3333435058594, + "b": 100.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 331.6666564941406, + "t": 112.0666275024414, + "r": 365.6666564941406, + "b": 100.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.630", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.0, + "t": 112.0666275024414, + "r": 421.6666564941406, + "b": 100.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.510", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 112.0666275024414, + "r": 477.6666564941406, + "b": 100.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.300", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 26, + "num_cols": 7, + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 163.0, + "t": 622.7332763671875, + "r": 185.6666717529297, + "b": 610.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "TF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 223.0, + "t": 622.7332763671875, + "r": 249.0, + "b": 610.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "STF", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 288.6666564941406, + "t": 621.7332763671875, + "r": 299.3333435058594, + "b": 607.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "62", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 340.3902893066406, + "t": 616.8592529296875, + "r": 357.94305419921875, + "b": 610.940673828125, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "<", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 397.6666564941406, + "t": 620.7332763671875, + "r": 409.6666564941406, + "b": 606.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "66", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 457.0, + "t": 618.066650390625, + "r": 469.6666564941406, + "b": 606.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "01", + "column_header": true, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.70450592041016, + "t": 606.033447265625, + "r": 132.29550170898438, + "b": 588.7664794921875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "kAmp", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 159.0, + "t": 604.7332763671875, + "r": 191.0, + "b": 590.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "T/kA", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 230.3333282470703, + "t": 604.066650390625, + "r": 243.0, + "b": 590.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 280.07037353515625, + "t": 602.2592163085938, + "r": 308.262939453125, + "b": 593.2073974609375, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 335.80169677734375, + "t": 602.2893676757812, + "r": 363.8649597167969, + "b": 592.1771850585938, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.1350402832031, + "t": 601.6227416992188, + "r": 417.19830322265625, + "b": 591.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 449.4683532714844, + "t": 601.6227416992188, + "r": 477.19830322265625, + "b": 591.5105590820312, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "10-4", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.0, + "t": 583.3999633789062, + "r": 129.6666717529297, + "b": 571.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.3333282470703, + "t": 584.066650390625, + "r": 191.6666717529297, + "b": 570.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 582.7332763671875, + "r": 249.0, + "b": 570.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.035", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.0, + "t": 582.066650390625, + "r": 311.6666564941406, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.100", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 582.066650390625, + "r": 367.0, + "b": 570.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.3333435058594, + "t": 581.3999633789062, + "r": 423.0, + "b": 569.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 581.3999633789062, + "r": 479.0, + "b": 569.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.055", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.33333587646484, + "t": 563.066650390625, + "r": 129.3333282470703, + "b": 552.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.6666717529297, + "t": 563.7332763671875, + "r": 191.6666717529297, + "b": 551.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 562.7332763671875, + "r": 249.0, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 277.0, + "t": 562.7332763671875, + "r": 311.6666564941406, + "b": 550.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 562.066650390625, + "r": 367.0, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 562.066650390625, + "r": 420.3333435058594, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 561.066650390625, + "r": 478.0, + "b": 550.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.035", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.0, + "t": 544.066650390625, + "r": 129.0, + "b": 532.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 544.3999633789062, + "r": 191.6666717529297, + "b": 532.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7072", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 543.3999633789062, + "r": 249.0, + "b": 531.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 543.3999633789062, + "r": 311.6666564941406, + "b": 531.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 542.7332763671875, + "r": 367.0, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 542.7332763671875, + "r": 420.3333435058594, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 542.7332763671875, + "r": 478.3333435058594, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.040", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.0, + "t": 524.7332763671875, + "r": 129.0, + "b": 512.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 524.7332763671875, + "r": 191.6666717529297, + "b": 512.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7072", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.6666717529297, + "t": 523.066650390625, + "r": 248.6666717529297, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.019", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 523.066650390625, + "r": 308.6666564941406, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 523.3999633789062, + "r": 365.0, + "b": 511.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.6666564941406, + "t": 522.3999633789062, + "r": 422.0, + "b": 511.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.090", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.6666564941406, + "t": 522.3999633789062, + "r": 478.0, + "b": 511.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.0, + "t": 504.7333068847656, + "r": 129.0, + "b": 492.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 504.7333068847656, + "r": 191.6666717529297, + "b": 492.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7070", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 504.0666198730469, + "r": 251.0, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.0, + "t": 504.0666198730469, + "r": 309.0, + "b": 492.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.6666564941406, + "t": 503.0666198730469, + "r": 366.6666564941406, + "b": 492.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.6666564941406, + "t": 503.0666198730469, + "r": 420.0, + "b": 492.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 503.39996337890625, + "r": 478.3333435058594, + "b": 491.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.0, + "t": 485.39996337890625, + "r": 129.0, + "b": 473.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 485.39996337890625, + "r": 190.3333282470703, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 219.0, + "t": 484.7333068847656, + "r": 249.0, + "b": 472.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 279.3333435058594, + "t": 483.7333068847656, + "r": 308.6666564941406, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 484.0666198730469, + "r": 365.0, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 484.0666198730469, + "r": 420.3333435058594, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 448.3333435058594, + "t": 484.0666198730469, + "r": 478.3333435058594, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.33333587646484, + "t": 465.0666198730469, + "r": 128.6666717529297, + "b": 454.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 465.39996337890625, + "r": 190.3333282470703, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7071", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 218.6666717529297, + "t": 464.39996337890625, + "r": 248.0, + "b": 453.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 464.7333068847656, + "r": 311.0, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 464.7333068847656, + "r": 364.3333435058594, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 390.3333435058594, + "t": 464.7333068847656, + "r": 420.3333435058594, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 464.7333068847656, + "r": 480.3333435058594, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.0, + "t": 446.0666198730469, + "r": 129.0, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 446.0666198730469, + "r": 191.0, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 445.39996337890625, + "r": 251.0, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 445.39996337890625, + "r": 311.0, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.3333435058594, + "t": 445.39996337890625, + "r": 364.3333435058594, + "b": 433.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.070", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.0, + "t": 444.39996337890625, + "r": 422.0, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 444.7333068847656, + "r": 480.3333435058594, + "b": 432.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 98.33333587646484, + "t": 426.7333068847656, + "r": 129.0, + "b": 414.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 427.0666198730469, + "r": 191.0, + "b": 415.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 426.0666198730469, + "r": 251.0, + "b": 414.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.028", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.6666564941406, + "t": 425.0666198730469, + "r": 310.6666564941406, + "b": 414.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 425.39996337890625, + "r": 366.3333435058594, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 425.39996337890625, + "r": 422.3333435058594, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.030", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 425.39996337890625, + "r": 480.3333435058594, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 99.33333587646484, + "t": 406.39996337890625, + "r": 128.6666717529297, + "b": 395.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 407.0666198730469, + "r": 191.0, + "b": 395.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7068", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 406.0666198730469, + "r": 251.0, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.042", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 406.0666198730469, + "r": 311.0, + "b": 394.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.175", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 405.39996337890625, + "r": 367.0, + "b": 393.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 389.6666564941406, + "t": 405.39996337890625, + "r": 420.3333435058594, + "b": 393.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 405.39996337890625, + "r": 480.3333435058594, + "b": 393.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.010", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 98.33333587646484, + "t": 387.39996337890625, + "r": 129.0, + "b": 375.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 387.7333068847656, + "r": 191.0, + "b": 375.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7066", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 386.7333068847656, + "r": 251.0, + "b": 374.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.058", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.6666564941406, + "t": 385.7333068847656, + "r": 310.6666564941406, + "b": 375.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.410", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 386.0666198730469, + "r": 367.0, + "b": 374.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 386.0666198730469, + "r": 422.3333435058594, + "b": 374.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 386.0666198730469, + "r": 480.3333435058594, + "b": 374.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 98.33333587646484, + "t": 368.0666198730469, + "r": 129.0, + "b": 356.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 367.39996337890625, + "r": 191.0, + "b": 355.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.6666717529297, + "t": 366.39996337890625, + "r": 249.3333282470703, + "b": 355.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.1ll", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 366.7333068847656, + "r": 311.0, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.875", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 366.7333068847656, + "r": 366.3333435058594, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.140", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 366.7333068847656, + "r": 422.3333435058594, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 366.7333068847656, + "r": 480.3333435058594, + "b": 354.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.020", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 98.33333587646484, + "t": 348.0666198730469, + "r": 129.0, + "b": 336.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.0, + "t": 348.0666198730469, + "r": 191.0, + "b": 336.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7057", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.0, + "t": 348.39996337890625, + "r": 251.0, + "b": 335.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.187", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 347.39996337890625, + "r": 311.0, + "b": 335.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.570", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.6666564941406, + "t": 346.39996337890625, + "r": 366.0, + "b": 335.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.240", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 388.0, + "t": 346.39996337890625, + "r": 422.0, + "b": 335.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.090", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.0, + "t": 346.39996337890625, + "r": 480.0, + "b": 335.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.040", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 98.33333587646484, + "t": 328.7333068847656, + "r": 129.0, + "b": 316.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 155.3333282470703, + "t": 328.0666198730469, + "r": 190.6666717529297, + "b": 317.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7049", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 328.0666198730469, + "r": 249.6666717529297, + "b": 316.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~0.311", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.6666564941406, + "t": 327.0666198730469, + "r": 310.6666564941406, + "b": 316.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.360", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 327.39996337890625, + "r": 366.3333435058594, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 327.39996337890625, + "r": 422.3333435058594, + "b": 315.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.0, + "t": 327.0666198730469, + "r": 480.0, + "b": 316.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.055", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 98.33333587646484, + "t": 289.39996337890625, + "r": 128.3333282470703, + "b": 277.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.3333282470703, + "t": 289.39996337890625, + "r": 190.3333282470703, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 288.7333068847656, + "r": 250.3333282470703, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.582", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 288.7333068847656, + "r": 311.0, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-4.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 331.6666564941406, + "t": 288.7333068847656, + "r": 366.3333435058594, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-0.895", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 288.7333068847656, + "r": 422.3333435058594, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.210", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 288.7333068847656, + "r": 480.3333435058594, + "b": 276.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.100", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 98.66666412353516, + "t": 269.0666198730469, + "r": 128.0, + "b": 258.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.3333282470703, + "t": 269.39996337890625, + "r": 191.0, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.7014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.3333282470703, + "t": 269.39996337890625, + "r": 250.3333282470703, + "b": 257.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-0.798", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.6666564941406, + "t": 268.39996337890625, + "r": 310.6666564941406, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-4.930", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.6666564941406, + "t": 268.39996337890625, + "r": 366.0, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 268.7333068847656, + "r": 422.3333435058594, + "b": 256.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.075", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 446.0, + "t": 268.39996337890625, + "r": 480.0, + "b": 257.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.140", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 98.33333587646484, + "t": 250.06663513183594, + "r": 128.3333282470703, + "b": 238.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.0, + "t": 250.73329162597656, + "r": 191.0, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6994", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 249.39996337890625, + "r": 249.6666717529297, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.081", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 249.39996337890625, + "r": 310.3333435058594, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~5.715", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 331.6666564941406, + "t": 249.39996337890625, + "r": 366.3333435058594, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.705", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 249.39996337890625, + "r": 421.6666564941406, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 249.39996337890625, + "r": 479.6666564941406, + "b": 237.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.215", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 98.66666412353516, + "t": 229.73329162597656, + "r": 128.0, + "b": 219.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.3333282470703, + "t": 230.06663513183594, + "r": 190.3333282470703, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6969", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 230.06663513183594, + "r": 250.3333282470703, + "b": 218.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.432", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.6666564941406, + "t": 229.06663513183594, + "r": 310.6666564941406, + "b": 218.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~6.395", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.6666564941406, + "t": 229.06663513183594, + "r": 366.0, + "b": 218.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 229.39996337890625, + "r": 421.6666564941406, + "b": 217.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.125", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 229.39996337890625, + "r": 480.3333435058594, + "b": 217.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.305", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 98.33333587646484, + "t": 210.73329162597656, + "r": 128.3333282470703, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.3333282470703, + "t": 210.73329162597656, + "r": 190.3333282470703, + "b": 198.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6937", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 216.0, + "t": 209.73329162597656, + "r": 249.3333282470703, + "b": 199.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-1.881", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.6666564941406, + "t": 209.73329162597656, + "r": 310.6666564941406, + "b": 199.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-6.550", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 210.06663513183594, + "r": 366.3333435058594, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.945", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.0, + "t": 210.06663513183594, + "r": 421.6666564941406, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.160", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 210.06663513183594, + "r": 480.3333435058594, + "b": 198.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.405", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 98.66666412353516, + "t": 190.39996337890625, + "r": 128.0, + "b": 179.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.000", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.3333282470703, + "t": 191.39996337890625, + "r": 190.3333282470703, + "b": 179.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6906", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 190.73329162597656, + "r": 249.6666717529297, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.331", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 190.73329162597656, + "r": 310.3333435058594, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-6.065", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 190.73329162597656, + "r": 366.3333435058594, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.590", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 190.73329162597656, + "r": 421.6666564941406, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.230", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 190.73329162597656, + "r": 480.3333435058594, + "b": 178.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.530", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 98.66666412353516, + "t": 171.06663513183594, + "r": 128.0, + "b": 160.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.200", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.3333282470703, + "t": 171.39996337890625, + "r": 190.3333282470703, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6872", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 171.39996337890625, + "r": 250.3333282470703, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-2.803", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.0, + "t": 170.39996337890625, + "r": 310.0, + "b": 159.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~5.110", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 331.6666564941406, + "t": 171.39996337890625, + "r": 366.3333435058594, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.060", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 171.39996337890625, + "r": 421.6666564941406, + "b": 159.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.285", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.3333435058594, + "t": 172.06663513183594, + "r": 480.3333435058594, + "b": 158.73329162597656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.675", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 98.66666412353516, + "t": 151.73329162597656, + "r": 128.0, + "b": 141.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.400", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.3333282470703, + "t": 152.06663513183594, + "r": 190.3333282470703, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6835", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 152.06663513183594, + "r": 250.3333282470703, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.334", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.6666564941406, + "t": 151.06663513183594, + "r": 310.0, + "b": 140.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-3.845", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 332.3333435058594, + "t": 152.06663513183594, + "r": 366.3333435058594, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~4.460", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.6666564941406, + "t": 152.06663513183594, + "r": 421.6666564941406, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.380", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.6666564941406, + "t": 152.06663513183594, + "r": 479.6666564941406, + "b": 140.06663513183594, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.845", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 98.66666412353516, + "t": 131.73329162597656, + "r": 128.0, + "b": 121.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.600", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.3333282470703, + "t": 132.06663513183594, + "r": 190.3333282470703, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6796", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 132.06663513183594, + "r": 250.3333282470703, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-3.878", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 276.3333435058594, + "t": 132.06663513183594, + "r": 310.3333435058594, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.445", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 331.6666564941406, + "t": 132.06663513183594, + "r": 366.3333435058594, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.585", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.3333435058594, + "t": 131.06663513183594, + "r": 421.3333435058594, + "b": 120.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.440", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 445.0, + "t": 132.06663513183594, + "r": 480.3333435058594, + "b": 120.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.060", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 98.66666412353516, + "t": 111.7332992553711, + "r": 128.0, + "b": 101.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5.800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 154.6666717529297, + "t": 111.7332992553711, + "r": 190.0, + "b": 101.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.6753", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 215.6666717529297, + "t": 112.0666275024414, + "r": 250.3333282470703, + "b": 100.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "~4.494", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 275.6666564941406, + "t": 112.0666275024414, + "r": 310.3333435058594, + "b": 100.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-1.055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 331.6666564941406, + "t": 112.0666275024414, + "r": 365.6666564941406, + "b": 100.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-4.630", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 387.0, + "t": 112.0666275024414, + "r": 421.6666564941406, + "b": 100.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.510", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 443.0, + "t": 112.0666275024414, + "r": 477.6666564941406, + "b": 100.0666275024414, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-1.300", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/15", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [ + { + "page_no": 43, + "bbox": { + "l": 30.415285110473633, + "t": 626.8488159179688, + "r": 538.1113891601562, + "b": 408.6654357910156, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [ + { + "$ref": "#/texts/132" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "bbox": { + "l": 45.33333206176758, + "t": 621.066650390625, + "r": 88.33333587646484, + "b": 590.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Magnet name", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 118.0, + "t": 620.7332763671875, + "r": 161.3333282470703, + "b": 590.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "b2 Measured", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 188.3333282470703, + "t": 620.7332763671875, + "r": 235.6666717529297, + "b": 588.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "b2 Computed", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 262.0, + "t": 619.7332763671875, + "r": 305.3333435058594, + "b": 590.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "difference Msr-Cal", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.0, + "t": 621.3999633789062, + "r": 377.3333435058594, + "b": 591.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "b4 Measured", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 403.3333435058594, + "t": 622.066650390625, + "r": 452.3333435058594, + "b": 589.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "64 Computed", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 477.6666564941406, + "t": 621.7332763671875, + "r": 520.6666870117188, + "b": 591.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "difference Msr-Cal", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 43.66666793823242, + "t": 581.3999633789062, + "r": 90.33333587646484, + "b": 569.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRAOOI", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 128.6666717529297, + "t": 581.066650390625, + "r": 152.0, + "b": 570.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "42.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 200.0, + "t": 581.066650390625, + "r": 223.3333282470703, + "b": 570.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "36.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 270.3333435058594, + "t": 583.3999633789062, + "r": 298.6666564941406, + "b": 569.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "+6.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 344.6666564941406, + "t": 581.7332763671875, + "r": 365.3333435058594, + "b": 571.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-8.1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 416.6666564941406, + "t": 582.3999633789062, + "r": 438.6666564941406, + "b": 572.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-7.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 488.6666564941406, + "t": 583.066650390625, + "r": 509.3333435058594, + "b": 573.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~1l", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 43.66666793823242, + "t": 562.066650390625, + "r": 91.0, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRAOO2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 128.3333282470703, + "t": 562.066650390625, + "r": 152.3333282470703, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "39.7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 200.6666717529297, + "t": 561.7332763671875, + "r": 224.0, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "36.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 270.3333435058594, + "t": 563.3999633789062, + "r": 298.6666564941406, + "b": 549.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "+3.7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 349.0, + "t": 563.3999633789062, + "r": 367.6666564941406, + "b": 551.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "7.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 417.0, + "t": 563.3999633789062, + "r": 439.6666564941406, + "b": 551.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-7.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 489.0, + "t": 564.066650390625, + "r": 511.6666564941406, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 43.66666793823242, + "t": 542.7332763671875, + "r": 91.0, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRAOO3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 128.6666717529297, + "t": 541.7332763671875, + "r": 152.0, + "b": 531.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "41.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 200.6666717529297, + "t": 542.3999633789062, + "r": 224.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "36.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 271.6666564941406, + "t": 542.7332763671875, + "r": 298.3333435058594, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "45.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 344.6666564941406, + "t": 543.066650390625, + "r": 367.3333435058594, + "b": 532.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~7.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 416.3333435058594, + "t": 545.066650390625, + "r": 440.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-7.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 489.0, + "t": 544.7332763671875, + "r": 511.6666564941406, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 43.33333206176758, + "t": 524.066650390625, + "r": 91.66666412353516, + "b": 510.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRAOO4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 128.6666717529297, + "t": 522.3999633789062, + "r": 152.6666717529297, + "b": 511.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "34.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 200.6666717529297, + "t": 522.3999633789062, + "r": 224.0, + "b": 511.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "35.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.3333435058594, + "t": 522.3999633789062, + "r": 294.6666564941406, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~1.l", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 345.3333435058594, + "t": 523.066650390625, + "r": 367.3333435058594, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-5.2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 417.3333435058594, + "t": 523.7332763671875, + "r": 439.3333435058594, + "b": 513.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-5.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 487.0, + "t": 526.066650390625, + "r": 514.6666870117188, + "b": 511.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "+0.6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 43.66666793823242, + "t": 503.39996337890625, + "r": 91.0, + "b": 491.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRBOO5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 129.3333282470703, + "t": 502.39996337890625, + "r": 151.3333282470703, + "b": 491.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "-6.1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 201.0, + "t": 503.39996337890625, + "r": 223.6666717529297, + "b": 491.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "8.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 271.0, + "t": 504.7333068847656, + "r": 299.3333435058594, + "b": 490.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "+2.7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 344.6666564941406, + "t": 503.0666198730469, + "r": 367.3333435058594, + "b": 492.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~3.6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 417.3333435058594, + "t": 503.7333068847656, + "r": 438.6666564941406, + "b": 493.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "~4.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 487.6666564941406, + "t": 504.7333068847656, + "r": 514.3333129882812, + "b": 492.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "40.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 43.66666793823242, + "t": 484.0666198730469, + "r": 91.0, + "b": 471.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRBOO6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 130.0, + "t": 483.0666198730469, + "r": 150.6666717529297, + "b": 472.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "-7.1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 201.3333282470703, + "t": 483.0666198730469, + "r": 222.6666717529297, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-8.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 271.0, + "t": 485.0666198730469, + "r": 299.3333435058594, + "b": 471.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "+1.7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 344.3333435058594, + "t": 485.39996337890625, + "r": 368.0, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 417.3333435058594, + "t": 484.39996337890625, + "r": 438.6666564941406, + "b": 474.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "24.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 487.0, + "t": 486.7333068847656, + "r": 514.6666870117188, + "b": 472.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "+0.3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 44.33333206176758, + "t": 464.0666198730469, + "r": 91.0, + "b": 452.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRCOO7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 131.0, + "t": 464.7333068847656, + "r": 150.0, + "b": 452.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 204.0, + "t": 463.7333068847656, + "r": 221.3333282470703, + "b": 453.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 464.7333068847656, + "r": 296.3333435058594, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 345.3333435058594, + "t": 464.39996337890625, + "r": 367.3333435058594, + "b": 453.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~2.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 417.0, + "t": 465.39996337890625, + "r": 440.3333435058594, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "~2.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 492.0, + "t": 465.7333068847656, + "r": 509.3333435058594, + "b": 455.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 44.33333206176758, + "t": 444.7333068847656, + "r": 91.66666412353516, + "b": 432.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRCoO8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 131.6666717529297, + "t": 444.7333068847656, + "r": 149.6666717529297, + "b": 432.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 204.0, + "t": 444.39996337890625, + "r": 222.0, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 274.0, + "t": 444.39996337890625, + "r": 296.0, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 345.3333435058594, + "t": 445.0666198730469, + "r": 368.0, + "b": 434.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 417.6666564941406, + "t": 446.0666198730469, + "r": 440.3333435058594, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-2.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 492.0, + "t": 446.39996337890625, + "r": 509.3333435058594, + "b": 435.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 43.66666793823242, + "t": 426.0666198730469, + "r": 91.66666412353516, + "b": 412.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRDOO9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 132.3333282470703, + "t": 425.39996337890625, + "r": 150.3333282470703, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "7.3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 204.0, + "t": 424.39996337890625, + "r": 222.0, + "b": 413.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "9.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 425.39996337890625, + "r": 295.0, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 346.0, + "t": 425.0666198730469, + "r": 368.0, + "b": 414.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 418.0, + "t": 425.7333068847656, + "r": 440.0, + "b": 415.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 489.6666564941406, + "t": 427.39996337890625, + "r": 511.6666564941406, + "b": 415.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.8", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 10, + "num_cols": 7, + "grid": [ + [ + { + "bbox": { + "l": 45.33333206176758, + "t": 621.066650390625, + "r": 88.33333587646484, + "b": 590.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Magnet name", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 118.0, + "t": 620.7332763671875, + "r": 161.3333282470703, + "b": 590.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "b2 Measured", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 188.3333282470703, + "t": 620.7332763671875, + "r": 235.6666717529297, + "b": 588.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "b2 Computed", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 262.0, + "t": 619.7332763671875, + "r": 305.3333435058594, + "b": 590.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "difference Msr-Cal", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 334.0, + "t": 621.3999633789062, + "r": 377.3333435058594, + "b": 591.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "b4 Measured", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 403.3333435058594, + "t": 622.066650390625, + "r": 452.3333435058594, + "b": 589.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "64 Computed", + "column_header": true, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 477.6666564941406, + "t": 621.7332763671875, + "r": 520.6666870117188, + "b": 591.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "difference Msr-Cal", + "column_header": true, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 43.66666793823242, + "t": 581.3999633789062, + "r": 90.33333587646484, + "b": 569.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRAOOI", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 128.6666717529297, + "t": 581.066650390625, + "r": 152.0, + "b": 570.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "42.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 200.0, + "t": 581.066650390625, + "r": 223.3333282470703, + "b": 570.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "36.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 270.3333435058594, + "t": 583.3999633789062, + "r": 298.6666564941406, + "b": 569.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "+6.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 344.6666564941406, + "t": 581.7332763671875, + "r": 365.3333435058594, + "b": 571.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-8.1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 416.6666564941406, + "t": 582.3999633789062, + "r": 438.6666564941406, + "b": 572.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-7.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 488.6666564941406, + "t": 583.066650390625, + "r": 509.3333435058594, + "b": 573.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~1l", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 43.66666793823242, + "t": 562.066650390625, + "r": 91.0, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRAOO2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 128.3333282470703, + "t": 562.066650390625, + "r": 152.3333282470703, + "b": 550.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "39.7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 200.6666717529297, + "t": 561.7332763671875, + "r": 224.0, + "b": 551.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "36.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 270.3333435058594, + "t": 563.3999633789062, + "r": 298.6666564941406, + "b": 549.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "+3.7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 349.0, + "t": 563.3999633789062, + "r": 367.6666564941406, + "b": 551.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "7.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 417.0, + "t": 563.3999633789062, + "r": 439.6666564941406, + "b": 551.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-7.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 489.0, + "t": 564.066650390625, + "r": 511.6666564941406, + "b": 552.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "~0.4", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 43.66666793823242, + "t": 542.7332763671875, + "r": 91.0, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRAOO3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 128.6666717529297, + "t": 541.7332763671875, + "r": 152.0, + "b": 531.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "41.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 200.6666717529297, + "t": 542.3999633789062, + "r": 224.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "36.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 271.6666564941406, + "t": 542.7332763671875, + "r": 298.3333435058594, + "b": 530.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "45.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 344.6666564941406, + "t": 543.066650390625, + "r": 367.3333435058594, + "b": 532.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~7.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 416.3333435058594, + "t": 545.066650390625, + "r": 440.0, + "b": 531.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-7.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 489.0, + "t": 544.7332763671875, + "r": 511.6666564941406, + "b": 532.7332763671875, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.5", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 43.33333206176758, + "t": 524.066650390625, + "r": 91.66666412353516, + "b": 510.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRAOO4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 128.6666717529297, + "t": 522.3999633789062, + "r": 152.6666717529297, + "b": 511.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "34.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 200.6666717529297, + "t": 522.3999633789062, + "r": 224.0, + "b": 511.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "35.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.3333435058594, + "t": 522.3999633789062, + "r": 294.6666564941406, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "~1.l", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 345.3333435058594, + "t": 523.066650390625, + "r": 367.3333435058594, + "b": 512.3999633789062, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-5.2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 417.3333435058594, + "t": 523.7332763671875, + "r": 439.3333435058594, + "b": 513.066650390625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-5.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 487.0, + "t": 526.066650390625, + "r": 514.6666870117188, + "b": 511.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "+0.6", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 43.66666793823242, + "t": 503.39996337890625, + "r": 91.0, + "b": 491.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRBOO5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 129.3333282470703, + "t": 502.39996337890625, + "r": 151.3333282470703, + "b": 491.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "-6.1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 201.0, + "t": 503.39996337890625, + "r": 223.6666717529297, + "b": 491.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "8.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 271.0, + "t": 504.7333068847656, + "r": 299.3333435058594, + "b": 490.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "+2.7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 344.6666564941406, + "t": 503.0666198730469, + "r": 367.3333435058594, + "b": 492.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~3.6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 417.3333435058594, + "t": 503.7333068847656, + "r": 438.6666564941406, + "b": 493.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "~4.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 487.6666564941406, + "t": 504.7333068847656, + "r": 514.3333129882812, + "b": 492.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "40.4", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 43.66666793823242, + "t": 484.0666198730469, + "r": 91.0, + "b": 471.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRBOO6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 130.0, + "t": 483.0666198730469, + "r": 150.6666717529297, + "b": 472.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "-7.1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 201.3333282470703, + "t": 483.0666198730469, + "r": 222.6666717529297, + "b": 473.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "-8.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 271.0, + "t": 485.0666198730469, + "r": 299.3333435058594, + "b": 471.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "+1.7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 344.3333435058594, + "t": 485.39996337890625, + "r": 368.0, + "b": 472.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-3.7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 417.3333435058594, + "t": 484.39996337890625, + "r": 438.6666564941406, + "b": 474.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "24.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 487.0, + "t": 486.7333068847656, + "r": 514.6666870117188, + "b": 472.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "+0.3", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 44.33333206176758, + "t": 464.0666198730469, + "r": 91.0, + "b": 452.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRCOO7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 131.0, + "t": 464.7333068847656, + "r": 150.0, + "b": 452.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 204.0, + "t": 463.7333068847656, + "r": 221.3333282470703, + "b": 453.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 464.7333068847656, + "r": 296.3333435058594, + "b": 452.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 345.3333435058594, + "t": 464.39996337890625, + "r": 367.3333435058594, + "b": 453.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "~2.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 417.0, + "t": 465.39996337890625, + "r": 440.3333435058594, + "b": 453.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "~2.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 492.0, + "t": 465.7333068847656, + "r": 509.3333435058594, + "b": 455.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.0", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 44.33333206176758, + "t": 444.7333068847656, + "r": 91.66666412353516, + "b": 432.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRCoO8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 131.6666717529297, + "t": 444.7333068847656, + "r": 149.6666717529297, + "b": 432.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "0.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 204.0, + "t": 444.39996337890625, + "r": 222.0, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 274.0, + "t": 444.39996337890625, + "r": 296.0, + "b": 433.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-0.3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 345.3333435058594, + "t": 445.0666198730469, + "r": 368.0, + "b": 434.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-2.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 417.6666564941406, + "t": 446.0666198730469, + "r": 440.3333435058594, + "b": 434.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-2.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 492.0, + "t": 446.39996337890625, + "r": 509.3333435058594, + "b": 435.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.0", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "bbox": { + "l": 43.66666793823242, + "t": 426.0666198730469, + "r": 91.66666412353516, + "b": 412.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DRDOO9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 132.3333282470703, + "t": 425.39996337890625, + "r": 150.3333282470703, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "7.3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 204.0, + "t": 424.39996337890625, + "r": 222.0, + "b": 413.7333068847656, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "9.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 273.6666564941406, + "t": 425.39996337890625, + "r": 295.0, + "b": 413.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "-2.1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 346.0, + "t": 425.0666198730469, + "r": 368.0, + "b": 414.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "-1.2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 418.0, + "t": 425.7333068847656, + "r": 440.0, + "b": 415.0666198730469, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "-0.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "bbox": { + "l": 489.6666564941406, + "t": 427.39996337890625, + "r": 511.6666564941406, + "b": 415.39996337890625, + "coord_origin": "BOTTOMLEFT" + }, + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-0.8", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + } + ], + "key_value_items": [], + "pages": { + "1": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 1 + }, + "2": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 2 + }, + "3": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 3 + }, + "4": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 4 + }, + "5": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 5 + }, + "6": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 6 + }, + "7": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 7 + }, + "8": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 8 + }, + "9": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 9 + }, + "10": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 10 + }, + "11": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 11 + }, + "12": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 12 + }, + "13": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 13 + }, + "14": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 14 + }, + "15": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 15 + }, + "16": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 16 + }, + "17": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 17 + }, + "18": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 18 + }, + "19": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 19 + }, + "20": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 20 + }, + "21": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 21 + }, + "22": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 22 + }, + "23": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 23 + }, + "24": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 24 + }, + "25": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 25 + }, + "26": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 26 + }, + "27": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 27 + }, + "28": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 28 + }, + "29": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 29 + }, + "30": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 30 + }, + "31": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 31 + }, + "32": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 32 + }, + "33": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 33 + }, + "34": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 34 + }, + "35": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 35 + }, + "36": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 36 + }, + "37": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 37 + }, + "38": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 38 + }, + "39": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 39 + }, + "40": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 40 + }, + "41": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 41 + }, + "42": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 42 + }, + "43": { + "size": { + "width": 585.3599853515625, + "height": 770.3999633789062 + }, + "page_no": 43 + } + } +} \ No newline at end of file diff --git a/llm-service/JJL4WAJY5A3L4SVYJHLWTYK7OA4IFJ5A.md b/llm-service/JJL4WAJY5A3L4SVYJHLWTYK7OA4IFJ5A.md new file mode 100644 index 00000000..6dc9bc84 --- /dev/null +++ b/llm-service/JJL4WAJY5A3L4SVYJHLWTYK7OA4IFJ5A.md @@ -0,0 +1,594 @@ +BNL\_47931 AD/RHC-113 Informal Report + +## A Review of the Saturation Induced Harmonics in the 80 mm Aperture RHIC Arc Dipole Magnets + +R. Gupta, P. Thompson and P. Wanderer + +August 1992 + +R HI C P R 0 J E C T + +Brookhaven National Laboratory Associated Universities, Inc. Upton, NY 11973 + +Under Contract No. DE-AC02-76CHOO016 with the UNITED STATES DEPARTMENT OF ENERGY + +## A Review of the Saturation Induced Harmonics in the 80 mm Aperture RHIC Arc Dipole Magnets + +R. Gupta, P. Thompson and P. Wanderer + +## 1. Introduction + +In this note we shall review, at times with a sense of history, the measured and computed saturation induced harmonics in the cross section of all and short 80 mm aperture RHIC dipole magnets built so far. A somewhat similar study for a fewer magnets has been presented earlier in reference 1 . With the help of several iterations in the crOSS section, we have been able to reduce the saturation induced b2 and b4 harmonics by more then an order of magnitude. We shall briefly describe those iterations. The calculations described in this note have generally been done with the computer program POISSON. However, while comparing the calculations and measurements, we have included the results of field calculations with the code PEZD and MDP as well. The measurements are the average of up and down ramps. A small difference between the calculations and measurements has been observed consistently in the saturation induced b2 and b4 harmonics in all magnets DRAOO1 through DRA0O9. More work is still needed to the current dependence of skew quadrupole harmonic (a1) We refer to current dependence of harmonics loosely as the saturation induced harmonics; but in an actual magnet it includes other effects like the harmonics induced by the coil deformation due to lorentz forces, etc. long yoke explain + +## 2 . Measurements + +In Fig. 2.1 through 2.4, we have summarized the measured current dependence of b2, b4, b6 and a1 harmonics in the 80 mm aperture RHIC dipoles built and tested to date. We present measurements only after 2 kAmp and are the results of the averaging the up and down ramp. In order to make it easier to compare, we have shifted all harmonics to start them from a zero value at 2 kAmp. These measurements have been presented and discussed in detail earlier in various Testing and Measuring Group Notes by Wanderer? et.al. and in Magnet Division Notes by Thompson? . Fig; they + +One can note in Fig. 2.1 and Fig. 2.2 that the b2 and b4 saturation in the most recent dipole DRSGR (DRSOOG Rebuilt with saturation suppressor hole) is signifcantly lower4 then in the earliest dipole DRAI through DRA4. In DRAl the maximum measured b2 saturation till the design current of 5 kAmp was 43 unit; in contrast to that in DRSOOGR it is under 2 unit. Similarly; in DRAI the maximum measured b4 saturation till 5 kAmp current was 8.5 unit; in contrast in DRSGRit is under 0.5 unit. The b6 saturation (Fig. 2.3) had a large fluctuations in the measurements in the earlier RHIC dipoles. It may have been -1 unit in DRAl; in magnet DRSGR, it is observed to be 1.2 unit maximum + +In 2.4, we have plotted the a1 saturation in the and short dipoles. It is clear that a large magnet to magnet variation has been observed both in the and in the short dipoles. A current dependence is to be expected in the skew quadrupole harmonics (a1) at high current when the fux lines can not be contained in the iron and start going through the low carbon steel cryostat which is asymmetrically located with respect to the magnet center. However, n0 current dependence was to be expected in the earlier magnets which were located symmetrically in the cryostat and in the short dipoles which are not inside a cryostat. long Fig: long yoke they long put + +In Table 2.1 through Table 2.9, we have presented the numerical values of the harmonics plotted in 2.1 through Fig. 2.4 for each magnet DRAOOI through DRDOO9. We have not presented the short magnets as most of them were measured with a 30' coil. The 30 coil measurements in the short magnets not only reflect the measured harmonics in the straight section but also include the effects of the ends (coil length 36.9" ), particularly in the iron saturation at high current where field lines tend to move more toward the two ends. The measurements with the 9" coils in magnets DRSOO6 and DRSOO8 have been described in detail in reference 4. long Fig: + +## History of 62 Saturation in RHIC Dipoles + +Figure 2.1: Measured current dependence of b2 in various 80 mm aperture and short dipoles for RHIC. The curves are the average of the up and down ramp and for each magnets they are shifted by an amount so that start from zero at 2 kAmp. long they + + + +Figure 2.2: Measured current dependence of b4 in various 80 mm aperture and short dipoles for RHIC. The curves are the average of the up and down ramp and for each magnets are shifted by an amount 80 that start from zero at 2 kAmp. long they they + + + +## History of b6 Saturation in RHIC Dipoles + +Figure 2.3: Measured current dependence of b6 in various 80 mm aperture and short dipoles for RHIC. The curves are the average of the up and down ramp and for each magnets they are shifted by an amount s0 that start from zero at 2 kAmp. long they + + + +## History of al Saturation in RHIC Dipoles + +Figure 2.4: Measured current dependence of 01 in various 80 mm aperture and short dipoles for RHIC. The curves are the average of the up and ramp and for each magnets are shifted by an amount so that start from zero at 2 kAmp. long they down they + + + +Table 2.1: Average of the up and down ramp in the magnet DRAOOI. Moreover the harmonics are subtracted by the value of this average at 2 kAmp s0 that have a zero value at 2kAmp. Please see the following processing for the details DRAOO1.24023 27-APR-92 12.22.20 they + +| | IF | STF | 62 | 4 | 66 | @1 | +|-------|--------|--------|--------|--------|--------|--------| +| kAmp | T/kA | % | 10-4 | 10-4 | 10-4 | 10-4 | +| 1.000 | 0.7702 | 0.069 | -1.395 | 0.450 | -0.300 | 0.015 | +| 1.200 | 0.7700 | 0.049 | -1.270 | 0.440 | -0.175 | 0.010 | +| 1.400 | 0.7700 | 0.047 | -1.135 | 0.445 | -0.400 | 0.015 | +| 1.600 | 0.7699 | 0.033 | -0.905 | 0.345 | -0.440 | 0.020 | +| 1.800 | 0.7698 | 0.025 | -0.570 | 0.250 | -0.285 | 0.040 | +| 2.000 | 0.7696 | 0.000 | 0.000 | 0.000 | 0.000 | 0.000 | +| 2.200 | 0.7694 | -0.025 | 0.860 | -0.220 | -0.045 | -0.030 | +| 2.400 | 0.7695 | -0.023 | 2.080 | -0.610 | -0.055 | -0.065 | +| 2.600 | 0.7690 | -0.084 | 3.770 | -1.105 | -0.915 | -0.095 | +| 2.800 | 0.7687 | ~0.124 | 6.005 | -1.830 | 0.145 | -0.155 | +| 3.000 | 0.7680 | -0.217 | 9.005 | -2.810 | 0.250 | -0.245 | +| 3.200 | 0.7674 | -0.290 | 12.725 | ~3.710 | 0.155 | -0.325 | +| 3.400 | 0.7665 | -0.401 | 17.035 | -4.815 | 0.015 | -0.410 | +| 3.600 | 0.7652 | ~0.582 | 21.605 | -5.985 | 0.240 | -0.495 | +| 3.800 | 0.7633 | -0.825 | 26.095 | -7.015 | 0.515 | -0.580 | +| 4.000 | 0.7609 | ~1.129 | 30.430 | -7.795 | 0.320 | -0.610 | +| 4.200 | 0.7583 | -1.477 | 34.425 | -8.265 | 0.325 | -0.615 | +| 4.400 | 0.7549 | -1.910 | 37.920 | -8.430 | -0.335 | -0.615 | +| 4.600 | 0.7517 | -2.336 | 40.730 | -8.545 | -0.195 | ~0.585 | +| 4.800 | 0.7476 | -2.862 | 42.470 | -8.360 | -0.890 | -0.500 | +| 5.000 | 0.7433 | -3.421 | 42.840 | -8.120 | -0.575 | -0.355 | +| 5.200 | 0.7383 | -4.072 | 41.855 | -7.760 | -0.640 | -0.110 | +| 5.400 | 0.7328 | -4.780 | 40.095 | -7.340 | -1.210 | 0.165 | +| 5.600 | 0.7273 | ~5.497 | 38.205 | -6.925 | ~1.145 | 0.430 | +| 5.800 | 0.7215 | ~6.249 | 36.015 | ~6.655 | -0.495 | 0.665 | + +Table 2.2: Average of the up and down ramp in the magnet DRAOO2. Moreover the harmonics are subtracted by the value of this average at 2 s0 that have a zero value at 2kAmp. Please see the following processing for the details DRA002.23583 28-APR-92 09.25.43 kAmp they + +| | TF | 8TF | 62 10-4 | 64 10-4 | 66 10-4 | @1 10-4 | +|-------|--------|--------|-----------|-----------|-----------|-----------| +| kAmp | T/kA | 9 | | 0.340 | 0.150 | -0.035 | +| 1.000 | 0.7698 | 0.027 | -1.080 | | | | +| 1.200 | 0.7697 | 0.016 | -1.000 | 0.280 | 0.895 | -0.010 | +| 1.400 | 0.7695 | -0.01 | -0.935 | 0.420 | -0.430 | -0.015 | +| 1.600 | 0.7695 | -0.013 | -0.765 | 0.150 | 0.620 | 0.000 | +| 1.800 | 0.7692 | -0.049 | -0.505 | 0.175 | 1.150 | -0.015 | +| 2.000 | 0.7696 | 0 | 0.000 | 0.000 | 0.000 | 0.000 | +| 2.200 | 0.7692 | -0.05 | 0.760 | -0.250 | 0.515 | -0.005 | +| 2.400 | 0.7685 | -0.139 | 1.815 | -0.555 | 0.395 | -0.025 | +| 2.600 | 0.7686 | -0.132 | 3.345 | -1.110 | 1.035 | -0.040 | +| 2.800 | 0.7682 | 0.185 | 5.425 | -1.765 | 0.635 | -0.065 | +| 3.000 | 0.7679 | -0.22 | 8.170 | -2.460 | 0.455 | -0.085 | +| 3.200 | 0.7668 | -0.364 | 11.605 | -3.310 | 0.680 | -0.130 | +| 3.400 | 0.7657 | -0.503 | 15.610 | 4.495 | 0.800 | -0.185 | +| 3.600 | 0.7643 | -0.681 | 19.870 | ~5.470 | 1.260 | -0.240 | +| 3.800 | 0.7626 | -0.914 | 24.100 | -6.385 | 0.870 | -0.290 | +| 4.000 | 0.7605 | -1.175 | 28.200 | -7.040 | 0.245 | -0.350 | +| 4.200 | 0.7576 | -1.558 | 32.020 | -7.575 | 0.280 | -0.375 | +| 4.400 | 0.7547 | -1.94 | 35.365 | ~7.850 | 0.615 | -0.400 | +| 4.600 | 0.7508 | -2.44 | 37.960 | ~7.790 | 0.075 | -0.415 | +| 4.800 | 0.7469 | -2.95 | 39.535 | -7.750 | 0.530 | -0.385 | +| 5.000 | 0.7427 | -3.5 | 39.655 | -7.425 | -0.890 | -0.305 | + +Table 2.3: Average of the up and down ramp in the magnet DRA003. Moreover the harmonics are subtracted by the value of this average at 2 kAmp so that have a zero value at 2kAmp. Please see the following processing for the details DRAO03.22993 28-APR-92 09.36.51 they + +| | TF- | STF | 62 | 64 | 66 | @1 | +|-------|--------|--------|--------|--------|--------|--------| +| kAmp | T/kA | % | 10-4 | 10-4 | 10-4 | 10-4 | +| 1.000 | 0.7696 | 0.076 | -1.215 | 0.385 | -0.690 | -0.045 | +| 1.200 | 0.7691 | 0.015 | -1.155 | 0.405 | ~0.270 | -0.015 | +| 1.400 | 0.7693 | 0.032 | -1.035 | 0.375 | -0.195 | 0.000 | +| 1.600 | 0.7696 | 0.076 | -0.855 | 0.255 | -0.050 | 0.015 | +| 1.800 | 0.7691 | 0.016 | -0.545 | 0.215 | -0.350 | 0.005 | +| 2.000 | 0.7690 | 0.000 | 0.000 | 0.000 | 0.000 | 0.000 | +| 2.200 | 0.7691 | 0.006 | 0.850 | -0.275 | -0.065 | -0.025 | +| 2.400 | 0.7688 | -0.033 | 2.015 | -0.685 | 0.225 | -0.050 | +| 2.600 | 0.7688 | -0.026 | 3.665 | -1.180 | 0.230 | -0.085 | +| 2.800 | 0.7683 | -0.092 | 5.840 | -1.730 | 0.260 | ~0.125 | +| 3.000 | 0.7678 | -0.159 | 8.760 | -2.565 | 0.360 | -0.170 | +| 3.200 | 0.7669 | -0.280 | 12.380 | 3.545 | 0.295 | -0.240 | +| 3.400 | 0.7664 | -0.344 | 16.600 | -4.580 | 0.730 | -0.320 | +| 3.600 | 0.7649 | -0.539 | 21.080 | -5.615 | 0.650 | -0.380 | +| 3.800 | 0.7631 | ~0.769 | 25.520 | -6.600 | 0.595 | -0.415 | +| 4.000 | 0.7607 | -1.087 | 29.745 | -7.275 | 0.675 | -0.415 | +| 4.200 | 0.7578 | -1.465 | 33.640 | 7.720 | 0.395 | ~0.405 | +| 4.400 | 0.7545 | -1.884 | 37.055 | -7.930 | 0.190 | -0.365 | +| 4.600 | 0.7514 | -2.293 | 39.760 | -7.915 | 0.065 | -0.275 | +| 4.800 | 0.7473 | ~2.824 | 41.435 | -7.745 | -0.005 | ~0.105 | +| 5.000 | 0.7430 | -3.379 | 41.790 | -7.525 | -0.250 | 0.240 | +| 5.200 | 0.7379 | -4.041 | 40.780 | -7.200 | -0.325 | 0.755 | + +Table 2.4: Average of the up and down ramp in the magnet DRAOO4. Moreover the harmonics are subtracted by the value of this average at 2 kAmp so that have a zero value at 2kAmp. Please see the following processing for the details DRAOO4.24344 28-APR-92 09.42.54 they + +| I | TF | 8TF | 62 | & | 66 | 01 | +|-------|--------|--------|--------|--------|--------------|------------| +| kAmp | T/kA | % | 10-4 | 10-4 | -0.165 10 -4 | 0.000 10-4 | +| 1.000 | 0.7721 | 0.005 | -0.405 | 0.130 | | | +| 1.200 | 0.7720 | -0.011 | ~0.350 | 0.210 | ~0.050 | -0.005 | +| 1.400 | 0.7722 | 0.018 | -0.315 | 0.165 | -0.225 | -0.010 | +| 1.600 | 0.7722 | 0.013 | -0.270 | 0.100 | -0.140 | -0.005 | +| 1.800 | 0.7722 | 0.006 | -0.185 | 0.075 | -0.150 | -0.020 | +| 2.000 | 0.7721 | 0.000 | 0.000 | 0.000 | 0.000 | 0.000 | +| 2.200 | 0.7720 | -0.017 | 0.380 | -0.130 | -0.085 | -0.005 | +| 2.400 | 0.7718 | -0.045 | 1.110 | -0.355 | -0.110 | -0.005 | +| 2.600 | 0.7715 | ~0.079 | 2.245 | -0.725 | 0.085 | -0.010 | +| 2.800 | 0.7713 | -0.105 | 3.925 | -1.255 | 0.220 | -0.020 | +| 3.000 | 0.7708 | -0.174 | 6.230 | -1.900 | 0.255 | -0.030 | +| 3.200 | 0.7699 | -0.289 | 9.070 | -2.670 | 0.300 | -0.030 | +| 3.400 | 0.7691 | -0.390 | 12.230 | ~3.490 | 0.445 | -0.035 | +| 3.600 | 0.7676 | ~0.588 | 15.545 | -4.340 | 0.675 | -0.045 | +| 3.800 | 0.7660 | -0.789 | 19.010 | -5.055 | 0.315 | -0.060 | +| 4.000 | 0.7636 | -1.103 | 22.635 | -5.515 | 0.270 | -0.065 | +| 4.200 | 0.7611 | -1.422 | 26.180 | ~5.680 | 0.095 | -0.085 | +| 4.400 | 0.7580 | -1.826 | 29.350 | ~5.615 | -0.045 | -0.065 | +| 4.600 | 0.7543 | -2.301 | 31.900 | ~5.400 | -0.435 | -0.010 | +| 4.800 | 0.7502 | -2.841 | 33.680 | -5.255 | -0.625 | 0.060 | +| 5.000 | 0.7455 | -3.451 | 34.935 | -5.155 | -0.855 | 0.160 | +| 5.200 | 0.7403 | ~4.113 | 35.700 | -4.880 | -1.160 | 0.280 | +| 5.400 | 0.7349 | -4.813 | 35.940 | ~4.605 | -1.145 | 0.395 | + +Table 2.5: Average of the up and down ramp in the magnet DRBOO5. Moreover the harmonics are subtracted by the value of this average at 2 kAmp s0 that have a zero value at 2kAmp. Please see the following processing for the details DRBOO5.25013 27-APR-92 11.13.36 they + +| | IF | STF | 62 | 64 | 66 | 01 | +|-------------|---------------|---------------|--------|---------------|---------------|---------------| +| kAmp | TlkA | % | 10 4 | 10-4 | 10-4 | 0.055 10-4 | +| 1.000 | 0.7073 | 0.035 | -0.100 | ~0.075 | -0.005 | | +| 1.200 | 0.7073 | 0.029 | -0.055 | -0.030 | 0.025 | 0.035 | +| 1.400 | 0.7072 | 0.016 | -0.010 | -0.020 | 0.005 | 0.040 | +| 1.600 | 0.7072 | 0.019 | 0.000 | 0.025 | -0.090 | 0.020 | +| 1.800 | 0.7070 | -0.004 | 0.010 | -0.025 | 0.000 | 0.010 | +| 2.000 | 0.7071 | 0.000 | 0.000 | 0.000 | 0.000 | 0.000 | +| 2.200 | 0.7071 | 0.001 | -0.025 | 0.055 | 0.000 | -0.005 | +| 2.400 | 0.7069 | -0.025 | -0.045 | 0.070 | -0.045 | -0.010 | +| 2.600 | 0.7069 | -0.028 | -0.075 | -0.005 | -0.030 | -0.010 | +| 2.800 | 0.7068 | ~0.042 | -0.175 | -0.010 | 0.005 | -0.010 | +| 3.000 | 0.7066 | ~0.058 | ~0.410 | -0.015 | -0.045 | -0.020 | +| 3.200 | 0.7063 | ~0.11l | -0.875 | -0.140 | -0.025 | -0.020 | +| 3.400 | 0.7057 | -0.187 | -1.570 | -0.240 | -0.090 | -0.040 | +| 3.600 | 0.7049 | -0.311 | -2.360 | -0.440 | -0.045 | -0.055 | +| 3.800 | 0.7039 0.7029 | -0.442 -0.582 | -3.205 | ~0.670 -0.895 | -0.085 -0.210 | -0.075 -0.100 | +| 4.000 | | | ~4.080 | | | | +| 4.200 | 0.7014 | -0.798 | -4.930 | -1.245 | -0.075 | -0.140 | +| 4.400 | 0.6994 | 1.081 | ~5.715 | -1.705 | -0.110 | -0.215 | +| 4.600 | 0.6969 | -1.432 | -6.395 | -2.245 | -0.125 | -0.305 | +| 4.800 | 0.6937 | -1.881 | -6.550 | ~2.945 | -0.160 | -0.405 | +| 5.000 | 0.6906 | -2.331 | -6.065 | -3.590 | ~0.230 | -0.530 | +| 5.200 | 0.6872 | -2.803 | ~5.110 | 4.060 | -0.285 | -0.675 | +| 5.400 | 0.6835 | -3.334 | -3.845 | -4.460 | -0.380 | -0.845 | +| 5.600 5.800 | 0.6796 | -3.878 | ~2.445 | ~4.585 | 0.440 | -1.060 | +| | 0.6753 | ~4.494 | -1.055 | -4.630 | -0.510 | -1.300 | + +Table 2.6: Average of the up and down ramp in the magnet DRBOO6 . Moreover the harmonics are subtracted by the value of this average at 2 kAmp so that have a zerO value at 2kAmp. Please see the following processing for the details DRBOO6.22743 27-APR-92 14.09,46 they + +| | TF. | 8TF | 62 | & | 66 | | +|-------|--------|--------|--------|--------|--------------|--------| +| kAmp | T/kA | % | 10 -4 | 10-4 | 10 -4 | 10-4 | +| 1.000 | 0.7082 | 0.019 | -0.010 | -0.055 | -0.040 | 0.025 | +| 1.200 | 0.7082 | 0.012 | 0.015 | -0.030 | 0.060 | 0.030 | +| 1.400 | 0.7084 | 0.048 | 0.030 | 0.015 | -0.055 | 0.010 | +| 1.600 | 0.7078 | -0.047 | 0.040 | -0.040 | -0.010 | 0.020 | +| 1.800 | 0.7077 | 0.048 | 0.010 | -0.055 | 0.015 | 0.010 | +| 2.000 | 0.7081 | 0.000 | 0.000 | 0.000 | 0.000 | 0.000 | +| 2.200 | 0.7082 | 0.016 | -0.035 | -0.055 | 0.035 | -0.005 | +| 2.400 | 0.7080 | -0.019 | -0.085 | 0.000 | -0.005 | 0.010 | +| 2.600 | 0.7076 | ~0.064 | -0.165 | -0.075 | 0.045 | -0.015 | +| 2.800 | 0.7072 | -0.124 | -0.310 | -0.075 | 0.015 | -0.025 | +| 3.000 | 0.7071 | -0.144 | -0.585 | -0.135 | 0.005 | -0.030 | +| 3.200 | 0.7071 | -0.144 | -1.065 | -0.200 | -0.025 | -0.045 | +| 3.400 | 0.7068 | -0.181 | -1.765 | -0.380 | -0.065 | -0.080 | +| 3.600 | 0.7060 | -0.294 | -2.585 | -0.565 | 0.025 | -0.105 | +| 3.800 | 0.7052 | -0.407 | -3.485 | -0.750 | -0.070 0.120 | -0.155 | +| 4.000 | 0.7042 | -0.544 | -4.440 | -0.995 | | -0.225 | +| 4.200 | 0.7022 | -0.832 | -5.380 | -1.345 | -0.115 | ~0.310 | +| 4.400 | 0.7004 | -1.092 | -6.300 | -1.735 | -0.090 | -0.450 | +| 4.600 | 0.6983 | -1.387 | -7.130 | -2.310 | -0.150 | -0.590 | +| 4.800 | 0.6950 | 1.842 | 7.420 | -3.005 | -0.190 | -0.760 | +| 5.000 | 0.6917 | -2.310 | -7.055 | -3.680 | -0.215 | ~0.945 | +| 5.200 | 0.6889 | -2.711 | -6.180 | -4.225 | -0.305 | -1.185 | +| 5.400 | 0.6853 | ~3.211 | -4.990 | -4.580 | -0.335 | -1.470 | +| 5.600 | 0.6806 | -3.876 | -3.615 | -4.770 | -0.400 | -1.785 | +| 5.800 | 0.6767 | -4.438 | -2.305 | -4.795 | -0.440 | ~2.125 | + +Table 2.7: Average of the up and down ramp in the magnet DRCOO7. Moreover the harmonics are subtracted by the value of this average at 2 kAmp so that have a Zero value at 2kAmp. Please see the following processing for the details DRCOO7.23553 27-APR-92 14.36.35 they + +| | TF | STF % | 62 10-4 | 4 10-4 | 66 10-4 | 01 10-4 | +|-------|--------|---------|-----------|----------|-----------|-----------| +| kAmp | T/kA | | | -0.040 | -0.040 | -0.015 | +| 1.000 | 0.7087 | 0.050 | -0.085 | | | | +| 1.200 | 0.7086 | 0.028 | -0.025 | -0.055 | 0.075 | 0.000 | +| 1.400 | 0.7085 | 0.025 | 0.000 | -0.020 | -0.035 | 0.000 | +| 1.600 | 0.7085 | 0.020 | 0.010 | -0.020 | 0.005 | -0.005 | +| 1.800 | 0.7085 | 0.016 | 0.025 | -0.065 | 0.000 | -0.005 | +| 2.000 | 0.7084 | 0.000 | 0.000 | 0.000 | 0.000 | 0.000 | +| 2.200 | 0.7084 | 0.002 | -0.005 | -0.075 | 0.060 | 0.005 | +| 2.400 | 0.7083 | ~0.009 | -0.050 | -0.010 | -0.015 | -0.005 | +| 2.600 | 0.7081 | -0.038 | -0.100 | -0.025 | -0.045 | 0.000 | +| 2.800 | 0.7081 | -0.040 | -0.195 | -0.075 | 0.050 | -0.005 | +| 3.000 | 0.7079 | -0.070 | -0.370 | -0.100 | 0.015 | -0.005 | +| 3.200 | 0.7077 | -0.099 | -0.680 | -0.150 | -0.025 | -0.005 | +| 3.400 | 0.7073 | -0.144 | -1.100 | -0.255 | 0.015 | -0.010 | +| 3.600 | 0.7067 | -0.228 | -1.525 | -0.400 | 0.025 | -0.015 | +| 3.800 | 0.7063 | 0.293 | -1.915 | -0.540 | -0.020 | ~0.015 | +| 4.000 | 0.7053 | -0.426 | -2.250 | -0.640 | -0.075 | -0.015 | +| 4.200 | 0.7041 | -0.599 | -2.415 | -0.875 | -0.045 | -0.005 | +| 4.400 | 0.7026 | -0.818 | ~2.345 | -1.095 | -0.050 | -0.005 | +| 4.600 | 0.7005 | -1.103 | -1.800 | -1.490 | 0.015 | -0.005 | +| 4.800 | 0.6980 | -1.467 | ~0.775 | -1.950 | 0.045 | -0.020 | +| 5.000 | 0.6950 | -1.883 | 0.345 | ~2.400 | -0.050 | -0.080 | + +Table 2.8: Average of the up and down ramp in the magnet DRCO08. Moreover the harmonics are subtracted by the value of this average at 2 kAmp S0 that have a ZeIO value at 2kAmp. Please see the following processing for the details DRCOO8.25463 27-APR-92 14.57.02 they + +| I | TF | 8TF | 3 | 64 | 66 | 01 | +|-------|--------|--------|--------|--------|-------------|-------------| +| kAmp | T/kA | % | 10-4 | 10 -4 | -0.065 10-4 | -0.005 10-4 | +| 1.000 | 0.7086 | 0.035 | -0.080 | 0.060 | | | +| 1.200 | 0.7086 | 0.036 | -0.010 | -0.020 | 0.135 | 0.010 | +| 1.400 | 0.7084 | 0.018 | 0.025 | -0.030 | 0.065 | 0.010 | +| 1.600 | 0.7086 | 0.038 | 0.025 | 0.025 | -0.030 | 0.000 | +| 1.800 | 0.7084 | 0.011 | 0.015 | -0.030 | 0.075 | 0.005 | +| 2.000 | 0.7083 | 0.000 | 0.000 | 0.000 | 0.000 | 0.000 | +| 2.200 | 0.7082 | -0.014 | -0.020 | -0.025 | 0.080 | 0.000 | +| 2.400 | 0.7081 | -0.030 | -0.055 | -0.015 | 0.025 | -0.015 | +| 2.600 | 0.7081 | -0.036 | -0.110 | -0.045 | 0.060 | -0.025 | +| 2.800 | 0.7079 | -0.060 | -0.210 | -0.080 | 0.020 | -0.030 | +| 3.000 | 0.7079 | -0.061 | -0.395 | -0.095 | 0.045 | -0.040 | +| 3.200 | 0.7075 | -0.112 | -0.710 | -0.170 | 0.040 | -0.045 | +| 3.400 | 0.7072 | -0.159 | -1.140 | -0.255 | 0.005 | -0.065 | +| 3.600 | 0.7067 | -0.231 | -1.565 | -0.410 | 0.045 | -0.065 | +| 3.800 | 0.7060 | -0.323 | -1.970 | -0.550 | 0.040 | -0.075 | +| 4.000 | 0.7052 | -0.433 | -2.310 | -0.665 | -0.030 | -0.075 | +| 4.200 | 0.7041 | -0.600 | -2.505 | -0.825 | -0.070 | -0.065 | +| 4.400 | 0.7024 | -0.831 | ~2.445 | ~1.140 | 0.020 | -0.060 | +| 4.600 | 0.7004 | -1.112 | -1.915 | -1.400 | -0.045 | -0.055 | +| 4.800 | 0.6980 | -1.450 | -0.880 | -1.895 | 0.005 | -0.080 | +| 5.000 | 0.6951 | -1.868 | 0.465 | -2.370 | -0.010 | -0.120 | +| 5.200 | 0.6918 | -2.326 | 1.815 | -2.775 | -0.080 | -0.205 | + +Table 2.9: Average of the up and down ramp in the magnet DRDOO9. Moreover the harmonics are subtracted by the value of this average at 2 kAmp so that have a Zero value at 2kAmp. Please see the following processing for the details DRDOO9.101L4 30-APR-92 14.08.26 they + +| I | IF | STF | 3 | 64 | 66 | 01 | +|-------|--------|---------|--------|---------|-------|--------| +| kAmp | T/kA | % | 10-4 | 10-4 | 10-4 | 10-4 | +| 2.000 | 0.7076 | 0.000 | 0.0u0 | 0.000 | 0.000 | 0.000 | +| 2.200 | 0.7074 | -0.022 | -0.145 | -0.050 | 0.065 | -0.015 | +| 2.400 | 0.7073 | -0.032 | -0.290 | -0.060 | 0.065 | -0.010 | +| 2.600 | 0.7071 | -0.063 | -0.405 | 0.145 | 0.155 | -0.005 | +| 2.800 | 0.7069 | -0.092 | -0.480 | -0.205 | 0.120 | -0.020 | +| 3.000 | 0.7066 | ~0.134 | ~0.480 | -0.280 | 0.105 | -0.030 | +| 3.200 | 0.7063 | -0.187 | ~0.400 | -0.420 | 0.110 | -0.055 | +| 3.400 | 0.7057 | -0.266 | -0.230 | -0.475 | 0.055 | -0.110 | +| 3.600 | 0.7047 | ~-0.411 | 0.050 | '-0.650 | 0.180 | -0.185 | +| 3.800 | 0.7036 | -0.568 | 0.425 | -0.795 | 0.255 | -0.275 | +| 4.000 | 0.7021 | -0.772 | 0.960 | -0.910 | 0.325 | -0.415 | +| 4.200 | 0.7002 | -1.037 | 1.730 | -1.110 | 0.385 | -0.625 | +| 4.400 | 0.6979 | -1.368 | 2.840 | -1.270 | 0.415 | -0.985 | +| 4.600 | 0.6950 | -1.780 | 4.330 | -1.,320 | 0.610 | -1.490 | +| 4.800 | 0.6917 | -2.239 | 5.925 | -1.265 | 0.665 | -1.985 | +| 5.000 | 0.6883 | -2.731 | 7.330 | -1.195 | 0.730 | -2.545 | +| 5.200 | 0.6845 | -3.261 | 8.325 | -1.060 | 0.745 | 3.110 | +| 5.400 | 0.6805 | -3.824 | 8.730 | -1.080 | 0.735 | -3.610 | +| 5.600 | 0.6763 | ~4.418 | 8.610 | -0.985 | 0.675 | 4.085 | +| 5.800 | 0.6720 | ~5.022 | 8.175 | -0.935 | 0.655 | -4.470 | +| 6.000 | 0.6676 | ~5.647 | 7.535 | -0.870 | 0.640 | -4.810 | +| 6.200 | 0.6632 | -6.273 | 6.875 | -0.795 | 0.605 | ~5.100 | +| 6.400 | 0.6589 | -6.880 | 6.275 | -0.725 | 0.550 | ~5.285 | +| 6.600 | 0.6547 | -7.477 | 5.675 | -0.645 | 0.455 | ~5.375 | + +## 3. Calculations + +In this section we present the results of the POISSON calculations for all magnets built and tested 50 namely DRAOOI through DRDOO9. We have ignored the effect of cryostat wall on field harmonics, which is present in all magnets. The most recent short magnets are discussed in reference 4 Just as in the case of measurements, we have shifted the harmonics to start them from zero, however, in the case of calculations are made zero at zero current (i.e., for %u calculations) instead of 2 kAlong far , long they + +The magnets DRAOOI, DRAOO2 and DRAOO3 were built at BBC with an identical iron Cross section. A POISSON model for them is shown in 3.1 and the results of calculations are given in Table 3.1. These magnets have a 5 mm gap between the coil and yoke. The POISSON model is made as per the drawings obtained from BBC. Fig; + +The magnet DRAOO4 was built at BNL with some modifications in the the DRA0O3 CrOSS sectionA POISSON model for DRAOO4 is shown in 3.2 and the results of calculations are given in Table 3.2. This magnet also has a 5 mm gap between the coil and yoke. The iron yoke model is based on the drawing No. 22-242.04-4 Revision B. Fig: + +The magnets DRBOO5 and DRBOO6 were built at BNL with an identical iron crOSS section. A POISSON model for them is shown in 3.3 and the results of calculations are given in Table 3.3. These magnets have a 10 mm gap between the coil and The model is based on the drawing No. 22-398.05-5. The is made of non-magnetic stainless steel. Fig; yoke. yoke key + +The magnets DRCOO7 and DRCOO8 were built at BNL with an identical iron cross section. A POISSON model for them is shown in Fig. 3.4 and the results of calculations are given in Table 3.4. These magnets have à 10 mm gap between the coil and As in the case of DRBOO5, the iron model is based on the drawing No. 22-398.05-5. The only difference between the DRBOO5 (or DRBOO6) and DRCOO7 (or DRCOO8) is that the material is changed from non-magnetic stainless steel to low carbon magnet steel. yoke. key + +The magnet DRDOO9 was built at BNL with a new iron Cross section. A POISSON model for it is shown in 3.5 and the results of calculations are given in Table 3.5. This magnet, like all other dipoles starting from DRBOO5, has a 10 mm gap between the coil and the The POISSON model for the is based on the drawing No. 22-714.02-5 Revision A Fig; yoke. yoke + +Figure 3.1: POISSON model for the 80 mm aperture RHIC arc dipole magnets DRAOOI\_ DRAOO2 and DRAOU3 . The model is made as per the drawings obtained from BBC. + + + +Table 3.1: Results of POISSON calculations for magnets DRAOOI, DRAOO2 DRAOO3. The result file is DRA123.LOG;4. and + +| kAmp | Bo Tesla | IF T/kA | 62 10-4 | 64 10-4 | 66 10 4 | 68 10-4 | bso 10-4 | 612 10-4 | +|--------|------------|-----------|-----------|-----------|-----------|-----------|------------|------------| +| 0 | 0 | 0 | 0 | 0.000 | 0.000 | 0 | 0 | 0 | +| 2 | 1.5102 | -0.03071 | 0.237 | -0.073 | 0.022 | -0.003 | 0 | 0 | +| 3 | 2.2622 | -0.16619 | 6.257 | -1.835 | 0.405 | -0.078 | 0.014 | -0.001 | +| 4 | 2.9899 | -1.04152 | 24.994 | -6.354 | 0.732 | -0.07 | 0 | 0.008 | +| 4.5 | 3.3305 | -2.01454 | 34.027 | -7.150 | 0.209 | 0.029 | -0.01 | 0.014 | +| 5 | 3.6479 | -3.41015 | 35.953 | -6.971 | -0.449 | 0.065 | -0.015 | 0.024 | +| 5.5 | 3.9362 | -5.25105 | 32.215 | -6.131 | -0.727 | 0.116 | -0.016 | 0.037 | +| 6 | 4.2058 | 7.19666 | 27.423 | ~5.170 | -0.812 | 0.159 | -0.019 | 0.052 | +| 7 | 4.7095 | -10.9285 | 18.742 | -3.643 | ~0.899 | 0.192 | -0.03 | 0.079 | +| 8 | 5.1882 | -14.1402 | 13.319 | ~2.283 | -0.946 | 0.208 | -0.04 | 0.103 | + +Figure 3.2: POISSON model for the 80 mm aperture RHIC arc dipole magnet DRAOO4. The iron model is based on the drawing No. 22 242.04-4 Revision B. yoke + + + +Table 3.2: Results of POISSON calculations for magnet DRAOO4. The result file is DRA4.LOG;5. + +| | Bo | TF | 62 10-4 | 64 10-4 | 66 | 68 10-4 | b1o | 612 10-4 | +|-------|--------|-----------|---------------|-----------|--------|--------------|--------|------------| +| kAmp | Tesla | T/kA | | | 10-4 | | 10-4 | | +| 0.000 | 0.0000 | 0.00000 | 0.000 | 0.000 | 0.000 | 0.000 | 0.000 | 0.000 | +| 1.000 | 0.7551 | ~0.02383 | 0.041 | 0.004 | 0.003 | 0.001 | 0.000 | 0.000 | +| 2.000 | 1.5101 | -0.03165 | 0.245 | 0.063 | 0.021 | -0.003 | 0.000 | 0.000 | +| 3.000 | 2.2625 | -0.15058 | 5.678 | -1.623 | 0.363 | ~0.071 | 0.013 | -0.001 | +| 4.500 | 3.3411 | -1.70004 | 32.365 | ~5.865 | -0.018 | 0.026- | -0.015 | 0.013 | +| 5.000 | 3.6617 | ~3.04059 | 35.491 35.453 | ~5.797 | -0.798 | 0.029 -0.003 | -0.029 | 0.022 | +| 5.500 | 3.9565 | -4.75846 | | ~5.272 | -1.318 | | -0.045 | 0.033 | +| 6.000 | 4.2283 | -6.69863 | 34.234 | 4.161 | -1.473 | -0.011 | -0.056 | 0.046 | +| 7.000 | 4.7250 | -10.63282 | 25.556 | -2.493 | -1.430 | 0.046 | -0.059 | 0.075 | +| 8.000 | 5.1998 | -13.94705 | 17.941 | ~1.ll1 | -1.315 | 0.109 | -0.058 | 0.101 | + +Figure 3.3: POISSON model for the 80 mm aperture RHIC arc dipole magnets DRBOO5 and DRBOO6 . The model is based on the drawing No. 22-398.05-5. The is made of non-magnetic stainless steel. yoke key + + + +Table 3.3: Results of POISSON calculations for magnets DRBOO5 and DRBOO6. The result file is DRB5.LOG;1. + +| I kAmp | Bo | TF | 62 | 64 10-4 | 66 | 68 | 610 | b12 10-4 | +|----------|--------|----------|--------|-----------|--------|--------|--------|------------| +| | Tesla | T/kA | 10-4 | | 10-4 | 10-4 | 10-4 | | +| 0.000 | 0.0000 | 0.00000 | 0.000 | 0.000 | 0.000 | 0.000 | 0.000 | 0.000 | +| 1.000 | 0.7074 | ~0.02261 | 0.020 | 0.001 | 0.003 | 0.001 | -0.001 | 0.000 | +| 2.000 | 1.4148 | -0.02600 | -0.003 | -0.002 | 0.001 | 0.001 | 0.000 | 0.000 | +| 3.000 | 2.1218 | -0.04791 | -0.196 | -0.031 | -0.003 | -0.001 | -0.001 | 0.000 | +| 4.000 | 2.8200 | -0.36729 | -3.051 | -0.787 | -0.103 | -0.019 | -0.004 | 0.002 | +| 4.500 | 3.1541 | -0.94530 | -6.476 | -1.918 | -0.208 | -0.048 | -0.008 | 0.005 | +| 5.000 | 3.4682 | -1.97496 | -8.774 | -3.974 | -0.383 | -0.082 | -0.015 | 0.010 | +| 5.500 | 3.7665 | -3.22082 | 7.239 | ~5.422 | 0.599 | -0.101 | -0.020 | 0.017 | +| 6.000 | 4.0439 | 4.75201 | ~5.051 | ~5.753 | -0.748 | -0.121 | -0.022 | 0.026 | +| 7.000 | 4.5449 | -8.24351 | ~5.612 | -5.254 | -0.791 | -0.127 | -0.020 | 0.051 | + +Figure 3.4: POISSON model for the 80 mm aperture RHIC arc dipole magnets DRCOO7 and DRCOO8. The iron model is based on the drawing No 22-398.05-5. The is made of low carbon magnetic steel. yoke key + + + +Table 3.4: Results of POISSON calculations for magnets DRCOO7 and DRCOO8 . The result file is DRC7.log;2. + +| kAmp | Bo Tesla | TF T/kA | 62 10-4 | 64 10-4 | 66 10-4 | 68 10-4 | 61o 10 -4 | 612 10-4 | +|-------------|------------|-----------|-----------|-----------|-----------|-----------|-------------|------------| +| 0.000 | 0 | 0.00000 | 0 | 0.000 | 0.000 | 0 | 0 | 0 | +| 1.000 | 0.7074 | -0.02247 | 0.021 | 0.001 | 0.002 | 0.001 | 0 | 0 | +| 2.000 | 1.4149 | -0.02530 | 0.003 | -0.001 | 0.002 | 0.001 | -0.001 | 0 | +| 3.000 | 2.122 | -0.03943 | -0.053 | -0.006 | 0.000 | 0 | 0 | 0 | +| 4.000 | 2.824 | -0.22915 | -0.622 | -0.376 | ~0.033 | -0.007 | -0.002 | 0.001 | +| 4.500 | 3.1628 | -0.67301 | -1.444 | -1.073 | -0.064 | -0.026 | -0.004 | 0.004 | +| 5.000 5.500 | 3.4851 | -1.49560 | 0.751 | -2.393 | -0.119 | -0.038 | -0.008 | 0.008 | +| | 3.7835 | -2.78350 | 2.179 | -3.804 | -0.340 | -0.06 | 0.014 | 0.015 | +| 6.000 | 4.0558 | ~4.47243 | 1.595 | ~4.542 | -0.556 | -0.092 | -0.018 | 0.025 | +| 7.000 | 4.5525 | ~8.09129 | -1.519 | -4.469 | -0.665 | -0.108 | -0.017 | 0.05 | +| 7.500 | 4.7913 | -9.71831 | -2.708 | ~4.160 | -0.637 | -0.103 | -0.016 | 0.062 | +| 8.000 | 5.0274 | -11.18983 | -3.509 | -3.835 | -0.601 | -0.096 | -0.014 | 0.073 | + +Figure 3.5: POISSON model for the 80 mm aperture RHIC arc dipole magnet DRDOO9. The model is based on the drawing No. 22-714.02-5 Revision A yoke + + + +Table 3.5: The results of POISSON calculations for the RHIC magnet DRDOO9 . The results are stored on file DRD9.LOG;2. + +| kAmp | Bo Tesla | TF TlkA | 62 10-4 | 64 10-4 | 66 10-4 | b8 10 -4 | 610 10-4 | 10-4 b1? | +|--------|------------|-----------|-----------|-----------|-----------|------------|------------|------------| +| 0 | 0 | 0 | 0 | 0.000 | 0 | 0 | 0 | 0 | +| 1.415 | 1.0004 | -0.02482 | 0.04 | 0.004 | 0.002 | 0.001 | -0.001 | 0 | +| 2 | 1.414 | -0.02715 | 0.03 | 0.007 | 0.002 | 0.001 | 0 | 0 | +| 3 | 2.12 | -0.07239 | 0.533 | -0.090 | 0.037 | -0.007 | 0.001 | 0 | +| 4 | 2.8081 | -0.72783 | 3.105 | -0.437 | 0.243 | -0.055 | 0.003 | 0.003 | +| 4.5 | 3.1306 | -1.62474 | 6.527 | -0.550 | 0.477 | -0.095 | 0.001 | 0.008 | +| 4.75 | 3.2833 | -2.25619 | 8.585 | -0.442 | 0.582 | -0.107 | -0.005 | 0.012 | +| 5 | 3.4295 | -3.00662 | 9.396 | -0.446 | 0.618 | -0.116 | -0.01 | 0.017 | +| 5.25 | 3.5702 | -3.83722 | 8.863 | -0.563 | 0.599 | -0.119 | -0.015 | 0.022 | +| 5.5 | 3.7072 | -4.68668 | 7.873 | -0.635 | 0.567 | -0.117 | -0.018 | 0.027 | +| 6 | 3.9721 | -6.3851 | 5.264 | -0.602 | 0.511 | -0.097 | -0.018 | 0.039 | +| 7 | 4.4806 | -9.48737 | 1.663 | ~0.380 | 0.381 | -0.058 | -0.013 | 0.061 | +| 8 | 4.9688 | -12.1708 | 0.178 | -0.333 | 0.254 | -0.033 | -0.009 | 0.082 | + +## 4. Calculations versus Measurements + +In this section we compare measurements and the calculations for the current dependence of the field harmonics (b2 and b4 only) in all magnets . The calculations are done for the saturation induced harmonics with the computer codes POISSON, PEZD and MDP. Tle current dependence on the feld harmonics maj also come due to a small coil deformation as a result of the Lorentz force on the coil. This has not been included in the calculations. The b6 harmonic could not be obtained to the desired accuracy in the earlier magnets (DRAOOI through DRCO08) to make any meaningful comparison. In the latest magnet DRDO09, the agreement between the calculations and measurements for the current dependence of b6 is better than 4 unit. long long + +In Fig. 4.1 and 4.2 we have plotted computed and measured b2 and b4 as a function of current for the three magnets DRAOOI, DRAO02 and DRA003, made with the same iron cross-section. Tle calculations are made with the code POISSON, PEZD and MDP. Fig + +In 4.3 and 4.4 we have done the same comparison between the calculations and measurements for the magnet DRAOO4. The calculations are made with the code POISSON, PEZD and MDP. FigFig; + +In 4.5 and 4.6 b2 and b4 are plotted for magnets DRBOO5 and DRBOO6 for the calculations and measurements. The calculations are made with the code POISSON, PEZD and MDP. Fig; Fig. + +In the case of magnets DRCOO7 and DRCO08 the calculations are made with POISSON and PEZD The computed and measured b2 and b4 are plotted in Fig. 4.7 and Fig. 4.8. + +In 4.9 and Fig- 4.10 we have done the same comparison between the calculations and measurements for the magnet DRDOO9. The calculations are made with the code POISSON and PEZD Fig + +## Computed and measured b2 in DRAOOI , DRAOO2 and DRAOO3 + +Figure 4.1: Computed and measured b2 variation as a function of current in the 80 mm aperture RHIC afC dipole magnets DRA0OI, DRAOO2 and DRAOO3. These three magnets are made with the same iron cross section. The calculations are made with the codes POISSON, PEZD and MDP. + + + +## Computed and measured b4 in DRAOOI, DRAOO2 and DRAOO3 + +Figure 4.2: Computed and measured b4 variation as a function of current in the 80 mm aperture RHIC arc dipole magnets DRA0OI, DRAOO2 and DRAOO3 . These three magnets are made with the same iron cross section. The calculations are made with the codes POISSON, PEZD and MDP. + + + +## Computed and measured b2 in DRAOO4 + +[GUPTARHICDIPIDRA4 RESO;5 2 0PARHI81PPRA88 2E2,5592 + +Figure 4.3: Computed and measured b2 variation as a function of current in the 80 mm aperture RHIC arc dipole magnet DRAOO4. The calculations are made with the codes POISSON, PEZD and MDP. + + + +- 4 IGUPTAMEASURE RHICIDRAOO4A4 HARM:2 +- 4 +- 4 + +Table 2.5: Average of the up and down ramp in the magnet DRBOO5. Moreover the harmonics are subtracted by the value of this average at 2 s0 that have a zero value at 2kAmp. Please see the following processing for the details DRBOO5.25013 27-APR-92 11.13.36 kAmp they + +| | TF | STF | 62 | < | 66 | 01 | +|-------|--------|--------|--------|--------|--------|--------| +| kAmp | T/kA | % | 10-4 | 10-4 | 10-4 | 10-4 | +| 1.000 | 0.7073 | 0.035 | -0.100 | -0.075 | -0.005 | 0.055 | +| 1.200 | 0.7073 | 0.029 | -0.055 | -0.030 | 0.025 | 0.035 | +| 1.400 | 0.7072 | 0.016 | ~0.010 | -0.020 | 0.005 | 0.040 | +| 1.600 | 0.7072 | 0.019 | 0.000 | 0.025 | -0.090 | 0.020 | +| 1.800 | 0.7070 | -0.004 | 0.010 | -0.025 | 0.000 | 0.010 | +| 2.000 | 0.7071 | 0.000 | 0.000 | 0.000 | 0.000 | 0.000 | +| 2.200 | 0.7071 | 0.001 | -0.025 | 0.055 | 0.000 | -0.005 | +| 2.400 | 0.7069 | -0.025 | -0.045 | 0.070 | 0.045 | -0.010 | +| 2.600 | 0.7069 | -0.028 | ~0.075 | -0.005 | -0.030 | -0.010 | +| 2.800 | 0.7068 | -0.042 | -0.175 | -0.010 | 0.005 | -0.010 | +| 3.000 | 0.7066 | ~0.058 | -0.410 | -0.015 | -0.045 | -0.020 | +| 3.200 | 0.7063 | 0.1ll | -0.875 | -0.140 | -0.025 | -0.020 | +| 3.400 | 0.7057 | -0.187 | -1.570 | -0.240 | -0.090 | -0.040 | +| 3.600 | 0.7049 | ~0.311 | -2.360 | -0.440 | -0.045 | ~0.055 | +| 4.000 | 0.7029 | -0.582 | -4.080 | -0.895 | -0.210 | -0.100 | +| 4.200 | 0.7014 | -0.798 | -4.930 | -1.245 | -0.075 | -0.140 | +| 4.400 | 0.6994 | -1.081 | ~5.715 | -1.705 | -0.110 | -0.215 | +| 4.600 | 0.6969 | -1.432 | ~6.395 | -2.245 | -0.125 | -0.305 | +| 4.800 | 0.6937 | -1.881 | -6.550 | -2.945 | -0.160 | -0.405 | +| 5.000 | 0.6906 | -2.331 | -6.065 | -3.590 | -0.230 | -0.530 | +| 5.200 | 0.6872 | -2.803 | ~5.110 | -4.060 | -0.285 | -0.675 | +| 5.400 | 0.6835 | -3.334 | -3.845 | ~4.460 | -0.380 | -0.845 | +| 5.600 | 0.6796 | -3.878 | -2.445 | -4.585 | -0.440 | -1.060 | +| 5.800 | 0.6753 | ~4.494 | -1.055 | -4.630 | -0.510 | -1.300 | + +- 8 2 +- 8 2 + +## Computed and measured 64 in DRAOO4 + +- EGUPTSRHICDIPBRA884PEPRES:2 + +Figure 4.4: Computed and measured b4 variation as a function of current in the 80 mm aperture RHIC arc dipole magnet DRAOO4. The calculations are made with the codes POISSON, PE2D and MDP. + + + +- 8 [GUPTAMEASURE RHICIDRAOOZA4 HARM:2 + +## Computed and measured b2 in DRBOO5 and DRBOO6 + +Figure 4.5: Computed and measured b2 variation as a function of current in the 80 mm aperture RHIC arc dipole magnets DRBOO5 and DRBOO6. These two magnets are made with the same iron cross section. The calculations are made with the codes POISSON, PE2D and MDP . + + + +## Computed and measured b4 in DRBOO5 and DRBOO6 + +Figure 4.6: Computed and measured b4 variation as a function of current in the 80 mm aperture RHIC arc dipole magnets DRBOO5 and DRBOO6 . These two magnets are made with the same iron cross section. The calcu lations are made with the codes POISSON, PEZD and MDP. + + + +## Computed and measured b2 in DRCOO7 and DRCOO8 + +Figure 4.7: Computed and measured b2 variation as a function of current in the 80 mm aperture RHIC afC dipole magnets DRCOO7 and DRCOO8. These two magnets are made with the same iron cross section. The calcu lations are made with the codes POISSON and PEZD. + + + +## Computed and measured b4 in DRCOO7 and DRCOO8 + +Figure 4.8: Computed and measured b4 variation as a function of current in the 80 mm aperture RHIC arc dipole magnets DRCOO7 and DRCO08. These magnets are made with the same iron cross section. The calcu lations are made with the codes POISSON and PE2D\_ two + + + +## Computed and measured 62 in DRDOO9 + +Figure 4.9: Computed and measured b2 variation as a function of current in the 80 mm aperture RHIC arc dipole magnet DRDOO9. The calculations are made with the codes POISSON and PE2D- + + + +Computed and measured b4 in DRDOO9 + +Figure 4.10: Computed and measured b4 variation as a function of current in the 80 mm aperture RHIC arc dipole magnet DRDOO9. The calculations are made with the codes POISSON and PEZD + + + +## 5. DRE cross section + +For the sake of completeness we present the expected and computed harmonics in the next series of magnets DREOIl and DREO12. The only difference in the yoke design between DRDOO9 and DREOIl is the presence of a : diameter saturation suppressor hole at a radius of 7.5 cm and at an angle of 330 degree. It has been described in detail in reference 5. Computed harmonics are obtained from the POISSON calculations and the expected harmonics are obtained by first taking the measured harmonics in the magnet DRDOO9, and then empirically adding to them the differences between the calculations and measurements in DRDO09. The results are given in 5.1. long Fig; + +Figure 5.1: Expected and computed saturation induced harmonics in the dipole DRFOII with saturation suppressor hole. Computed harmonics are obtained from the POISSON calculations and the expected harmonics are obtained by first taking the measured harmonics in the magnet DRDO09, and then empirically adding to them the differences between the calculations and measurements in DRDOO9. long + + + +## 6 . Discussion + +One can see from Fig. 2.1 that we have been able t0 reduce the current dependence of the sextupole harmonic (b2) by over an order of magnitude between 2 kA and 5 kA. The value of design current in the arc dipole for RHIC operation is ~5 kA. In the first magnet DRAOO1, the maximum variation in the b2 harmonic between the 2 kA and 5 kA current was over 42 unit and in the most recent short magnet this variation is reduced to under 2 unit. In the dipole magnet DREOll, we expect this to be under 2 unit as well. Similarly one can see from 2.2 that b4 variation has also been reduced by over an order of magnitude between 2 kA and 5 kA. In the first magnet DRAOOI, the maximum variation in the b4 harmonic between the 2 kA and 5 kA current was over 8 unit and in the most recent short magnet this variation is reduced to under 1/2 unit. In the dipole magnet DREOll, we expect the current dependent variation in the b4 harmonic to be under 1/2 unit as well. In the following paragraph we shall discuss what has been done to achieve this. We shall only discuss the features which were important from the iron saturation of view only and mechanical changes in the would be ignored. long long Fig; long long design point + +DRAOOI, DRAOO2 and DRA0O3 dipoles were constructed by BBC. They had a 5mm radial gap between coil and and had a notch at the location. A small gap and a notch both give a large iron saturation and hence we had over 42 unit of b2 harmonic and -8 unit of b4 DRAOO4 had the same basic feature except for some small changes near the outer surface of iron. These changes do not alter the iron saturation significantly. pole yoke pole + +To reduce iron saturation; the radial gap between the coil and was increased from 5mm to lOmm and the coil-yoke locating notch was moved from to midplane in the magnets DRBOO5 and DRBOO6. This brought b2 saturation down from +42 unit to -6 unit and b4 saturation from -8.5 unit to -3.6 unit. As before, these are the maximum deviation between 2 kA and 5 kA. This magnet had a non-magnetic stainless steel midplane In the magnets DRCOO7 and DRCO08, the material of this was changed from non-magnetic stainless steel to magnetic low carbon steel This change reduced b2 saturation to -2.5 unit and b4 saturation to -2.4 unit. In between a short magnet was built where the 5 mm midplane notch was modified to a 5mm iron tooth That reduced b2 saturation to +8 unit and b4 to -1.1 unit. However, the tooth idea was not adopted in DRCOO7 because of its mechanical complications. yoke pole yoke key. key key key. + +Neither the midplane notch nor the tooth (better magnetically but worse mechanically) was preferred for the production magnets. It is believed that a locating notch would be better able to define the location of the coil. As mentioned earlier, notch is bad magnetically. That in itself would make an already unacceptable saturation worse\_ pole pole pole + +Therefore, a detailed study was undertaken to modify the cross section to significanty change the magnetics of the with the desired mechanical properties. After considering a large number of variations, the one chosen for DRDOO9 was the one in which the location of the bypass hole was changed. This, with a notch and stainless steel actually improved the iron saturation (in b4 harmonic) relative to DRBOO5 instead of making it worse. The b2 saturation became +7 unit and b4 -1.3 unit. yoke pole key, + +Finally a small saturation suppressor hole was added to practically eliminate all b2 and b4 saturation in DREOII cross section Before we discuss that, let uS examine the differences between the calculations and measurements as are given in Table 6.1. These calculations are done with the code POISSON and ignore cryostat. Typically, at 5 kA cryostat induced b2 is ~+1.5 unit and b4 is ~-0.1 unit. Moreover, as mentioned earlier; the calculations are done only for the saturation induced harmonics and the harmonics due to coil deformation as a result of the Lorentz force on the coil are ignored. We have also ignored a small gap (of the order of 10 mil) between the and bottom halves of the yokes. Some calculations show that this maj give as much of 2 units of b2 and 0.2 units of b4 at 5 kA they they top + +In Table 6.1, we have also given the maximum change in the measured values of b2 and b4 harmonics till 5 kA. The diference between the calculations and measurements did not bother much when the actual value of the saturation induced harmonic was However, at this stage did matter as the target to make those harmonic becamne so small. The target was to make b2 saturation less then 2 unit and b4 saturation less then ! unit. This is within the difference between the calculations and measurements Therefore, we empirically cancel out these small unexplained differences between the calculations and measurements (in this particular cross section) in arriving to an optimized location of the hole. The approach indeed worked as can be seen in Fig. 2.1 and 2.2 and described in detail in reference 4. In these figures please see curves marked for DRSGR where DRSGR represents the short dipole "DRSOO6 rebuilt with the saturation suppressor holes" large. they Fig. + +Table 6.1: The measured, computed and the difference between the two in the values of b2 and b4 harmonics at 5 kA relative to 2 kA value (i.e, value at 5 kA value at 2 kA) in RHIC magnets built to date. These calculations are done with the code POISSON and ignore cryostat. Typically, at 5 kA cryostat induced b2 is ~+1.5 unit and 64 is ~-0.1 unit. long they + +| Magnet name | b2 Measured | b2 Computed | difference Msr-Cal | b4 Measured | 64 Computed | difference Msr-Cal | +|---------------|---------------|---------------|----------------------|---------------|---------------|----------------------| +| DRAOOI | 42.8 | 36 | +6.8 | -8.1 | -7.0 | ~1l | +| DRAOO2 | 39.7 | 36 | +3.7 | 7.4 | -7.0 | ~0.4 | +| DRAOO3 | 41.8 | 36 | 45.8 | ~7.5 | -7.0 | -0.5 | +| DRAOO4 | 34.5 | 35.5 | ~1.l | -5.2 | -5.8 | +0.6 | +| DRBOO5 | -6.1 | 8.8 | +2.7 | ~3.6 | ~4.0 | 40.4 | +| DRBOO6 | -7.1 | -8.8 | +1.7 | -3.7 | 24.0 | +0.3 | +| DRCOO7 | 0.4 | 0.8 | -0.4 | ~2.4 | ~2.4 | 0.0 | +| DRCoO8 | 0.5 | 0.8 | -0.3 | -2.4 | -2.4 | 0.0 | +| DRDOO9 | 7.3 | 9.4 | -2.1 | -1.2 | -0.4 | -0.8 | + +## 7 References + +- 1. P.A. Thompson; et.al., "Iron saturation control in RHIC dipole magnets" Presented at 1991 Particle Accelerator Conference +- 2 . Testing and Measurement Group Notes describing the results of magnetic measurements. +- 3 . P.A. Thompson, Magnet Division Notes describing design and comparing calculations with measurements. +- 4 R. Gupta, "DRSOO6 with Saturation Suppressor Holes" = Magnet Division Note No. 457-16 (RHIC-MD-165), July 28, 1992. +- 5. R. Gupta, "Reducing iron saturation in arc dipoles with a saturation suppressor hole" Magnet Division Note No. 447-16 (RHIC-MD-158) June 10, 1992. \ No newline at end of file diff --git a/llm-service/JJL4WAJY5A3L4SVYJHLWTYK7OA4IFJ5A.txt b/llm-service/JJL4WAJY5A3L4SVYJHLWTYK7OA4IFJ5A.txt new file mode 100644 index 00000000..7a4013b8 --- /dev/null +++ b/llm-service/JJL4WAJY5A3L4SVYJHLWTYK7OA4IFJ5A.txt @@ -0,0 +1,165 @@ +BNL\_47931 AD/RHC-113 Informal Report + +A Review of the Saturation Induced Harmonics in the 80 mm Aperture RHIC Arc Dipole Magnets + +R. Gupta, P. Thompson and P. Wanderer + +August 1992 + +R HI C P R 0 J E C T + +Brookhaven National Laboratory Associated Universities, Inc. Upton, NY 11973 + +Under Contract No. DE-AC02-76CHOO016 with the UNITED STATES DEPARTMENT OF ENERGY + +A Review of the Saturation Induced Harmonics in the 80 mm Aperture RHIC Arc Dipole Magnets + +R. Gupta, P. Thompson and P. Wanderer + +1. Introduction + +In this note we shall review, at times with a sense of history, the measured and computed saturation induced harmonics in the cross section of all and short 80 mm aperture RHIC dipole magnets built so far. A somewhat similar study for a fewer magnets has been presented earlier in reference 1 . With the help of several iterations in the crOSS section, we have been able to reduce the saturation induced b2 and b4 harmonics by more then an order of magnitude. We shall briefly describe those iterations. The calculations described in this note have generally been done with the computer program POISSON. However, while comparing the calculations and measurements, we have included the results of field calculations with the code PEZD and MDP as well. The measurements are the average of up and down ramps. A small difference between the calculations and measurements has been observed consistently in the saturation induced b2 and b4 harmonics in all magnets DRAOO1 through DRA0O9. More work is still needed to the current dependence of skew quadrupole harmonic (a1) We refer to current dependence of harmonics loosely as the saturation induced harmonics; but in an actual magnet it includes other effects like the harmonics induced by the coil deformation due to lorentz forces, etc. long yoke explain + +2 . Measurements + +In Fig. 2.1 through 2.4, we have summarized the measured current dependence of b2, b4, b6 and a1 harmonics in the 80 mm aperture RHIC dipoles built and tested to date. We present measurements only after 2 kAmp and are the results of the averaging the up and down ramp. In order to make it easier to compare, we have shifted all harmonics to start them from a zero value at 2 kAmp. These measurements have been presented and discussed in detail earlier in various Testing and Measuring Group Notes by Wanderer? et.al. and in Magnet Division Notes by Thompson? . Fig; they + +One can note in Fig. 2.1 and Fig. 2.2 that the b2 and b4 saturation in the most recent dipole DRSGR (DRSOOG Rebuilt with saturation suppressor hole) is signifcantly lower4 then in the earliest dipole DRAI through DRA4. In DRAl the maximum measured b2 saturation till the design current of 5 kAmp was 43 unit; in contrast to that in DRSOOGR it is under 2 unit. Similarly; in DRAI the maximum measured b4 saturation till 5 kAmp current was 8.5 unit; in contrast in DRSGRit is under 0.5 unit. The b6 saturation (Fig. 2.3) had a large fluctuations in the measurements in the earlier RHIC dipoles. It may have been -1 unit in DRAl; in magnet DRSGR, it is observed to be 1.2 unit maximum + +In 2.4, we have plotted the a1 saturation in the and short dipoles. It is clear that a large magnet to magnet variation has been observed both in the and in the short dipoles. A current dependence is to be expected in the skew quadrupole harmonics (a1) at high current when the fux lines can not be contained in the iron and start going through the low carbon steel cryostat which is asymmetrically located with respect to the magnet center. However, n0 current dependence was to be expected in the earlier magnets which were located symmetrically in the cryostat and in the short dipoles which are not inside a cryostat. long Fig: long yoke they long put + +In Table 2.1 through Table 2.9, we have presented the numerical values of the harmonics plotted in 2.1 through Fig. 2.4 for each magnet DRAOOI through DRDOO9. We have not presented the short magnets as most of them were measured with a 30' coil. The 30 coil measurements in the short magnets not only reflect the measured harmonics in the straight section but also include the effects of the ends (coil length 36.9" ), particularly in the iron saturation at high current where field lines tend to move more toward the two ends. The measurements with the 9" coils in magnets DRSOO6 and DRSOO8 have been described in detail in reference 4. long Fig: + +History of 62 Saturation in RHIC Dipoles + + + +History of b6 Saturation in RHIC Dipoles + + +History of al Saturation in RHIC Dipoles + + + + + + + + + + + +3. Calculations + +In this section we present the results of the POISSON calculations for all magnets built and tested 50 namely DRAOOI through DRDOO9. We have ignored the effect of cryostat wall on field harmonics, which is present in all magnets. The most recent short magnets are discussed in reference 4 Just as in the case of measurements, we have shifted the harmonics to start them from zero, however, in the case of calculations are made zero at zero current (i.e., for %u calculations) instead of 2 kAlong far , long they + +The magnets DRAOOI, DRAOO2 and DRAOO3 were built at BBC with an identical iron Cross section. A POISSON model for them is shown in 3.1 and the results of calculations are given in Table 3.1. These magnets have a 5 mm gap between the coil and yoke. The POISSON model is made as per the drawings obtained from BBC. Fig; + +The magnet DRAOO4 was built at BNL with some modifications in the the DRA0O3 CrOSS sectionA POISSON model for DRAOO4 is shown in 3.2 and the results of calculations are given in Table 3.2. This magnet also has a 5 mm gap between the coil and yoke. The iron yoke model is based on the drawing No. 22-242.04-4 Revision B. Fig: + +The magnets DRBOO5 and DRBOO6 were built at BNL with an identical iron crOSS section. A POISSON model for them is shown in 3.3 and the results of calculations are given in Table 3.3. These magnets have a 10 mm gap between the coil and The model is based on the drawing No. 22-398.05-5. The is made of non-magnetic stainless steel. Fig; yoke. yoke key + +The magnets DRCOO7 and DRCOO8 were built at BNL with an identical iron cross section. A POISSON model for them is shown in Fig. 3.4 and the results of calculations are given in Table 3.4. These magnets have à 10 mm gap between the coil and As in the case of DRBOO5, the iron model is based on the drawing No. 22-398.05-5. The only difference between the DRBOO5 (or DRBOO6) and DRCOO7 (or DRCOO8) is that the material is changed from non-magnetic stainless steel to low carbon magnet steel. yoke. key + +The magnet DRDOO9 was built at BNL with a new iron Cross section. A POISSON model for it is shown in 3.5 and the results of calculations are given in Table 3.5. This magnet, like all other dipoles starting from DRBOO5, has a 10 mm gap between the coil and the The POISSON model for the is based on the drawing No. 22-714.02-5 Revision A Fig; yoke. yoke + + + + + + + + + + + +4. Calculations versus Measurements + +In this section we compare measurements and the calculations for the current dependence of the field harmonics (b2 and b4 only) in all magnets . The calculations are done for the saturation induced harmonics with the computer codes POISSON, PEZD and MDP. Tle current dependence on the feld harmonics maj also come due to a small coil deformation as a result of the Lorentz force on the coil. This has not been included in the calculations. The b6 harmonic could not be obtained to the desired accuracy in the earlier magnets (DRAOOI through DRCO08) to make any meaningful comparison. In the latest magnet DRDO09, the agreement between the calculations and measurements for the current dependence of b6 is better than 4 unit. long long + +In Fig. 4.1 and 4.2 we have plotted computed and measured b2 and b4 as a function of current for the three magnets DRAOOI, DRAO02 and DRA003, made with the same iron cross-section. Tle calculations are made with the code POISSON, PEZD and MDP. Fig + +In 4.3 and 4.4 we have done the same comparison between the calculations and measurements for the magnet DRAOO4. The calculations are made with the code POISSON, PEZD and MDP. FigFig; + +In 4.5 and 4.6 b2 and b4 are plotted for magnets DRBOO5 and DRBOO6 for the calculations and measurements. The calculations are made with the code POISSON, PEZD and MDP. Fig; Fig. + +In the case of magnets DRCOO7 and DRCO08 the calculations are made with POISSON and PEZD The computed and measured b2 and b4 are plotted in Fig. 4.7 and Fig. 4.8. + +In 4.9 and Fig- 4.10 we have done the same comparison between the calculations and measurements for the magnet DRDOO9. The calculations are made with the code POISSON and PEZD Fig + +Computed and measured b2 in DRAOOI , DRAOO2 and DRAOO3 + + +Computed and measured b4 in DRAOOI, DRAOO2 and DRAOO3 + + +Computed and measured b2 in DRAOO4 + +[GUPTARHICDIPIDRA4 RESO;5 2 0PARHI81PPRA88 2E2,5592 + + + + 4 IGUPTAMEASURE RHICIDRAOO4A4 HARM:2 + 4 + 4 + + + + 8 2 + 8 2 + +Computed and measured 64 in DRAOO4 + + EGUPTSRHICDIPBRA884PEPRES:2 + + + + 8 [GUPTAMEASURE RHICIDRAOOZA4 HARM:2 + +Computed and measured b2 in DRBOO5 and DRBOO6 + + +Computed and measured b4 in DRBOO5 and DRBOO6 + + +Computed and measured b2 in DRCOO7 and DRCOO8 + + +Computed and measured b4 in DRCOO7 and DRCOO8 + + +Computed and measured 62 in DRDOO9 + + +Computed and measured b4 in DRDOO9 + + +5. DRE cross section + +For the sake of completeness we present the expected and computed harmonics in the next series of magnets DREOIl and DREO12. The only difference in the yoke design between DRDOO9 and DREOIl is the presence of a : diameter saturation suppressor hole at a radius of 7.5 cm and at an angle of 330 degree. It has been described in detail in reference 5. Computed harmonics are obtained from the POISSON calculations and the expected harmonics are obtained by first taking the measured harmonics in the magnet DRDOO9, and then empirically adding to them the differences between the calculations and measurements in DRDO09. The results are given in 5.1. long Fig; + + +6 . Discussion + +One can see from Fig. 2.1 that we have been able t0 reduce the current dependence of the sextupole harmonic (b2) by over an order of magnitude between 2 kA and 5 kA. The value of design current in the arc dipole for RHIC operation is ~5 kA. In the first magnet DRAOO1, the maximum variation in the b2 harmonic between the 2 kA and 5 kA current was over 42 unit and in the most recent short magnet this variation is reduced to under 2 unit. In the dipole magnet DREOll, we expect this to be under 2 unit as well. Similarly one can see from 2.2 that b4 variation has also been reduced by over an order of magnitude between 2 kA and 5 kA. In the first magnet DRAOOI, the maximum variation in the b4 harmonic between the 2 kA and 5 kA current was over 8 unit and in the most recent short magnet this variation is reduced to under 1/2 unit. In the dipole magnet DREOll, we expect the current dependent variation in the b4 harmonic to be under 1/2 unit as well. In the following paragraph we shall discuss what has been done to achieve this. We shall only discuss the features which were important from the iron saturation of view only and mechanical changes in the would be ignored. long long Fig; long long design point + +DRAOOI, DRAOO2 and DRA0O3 dipoles were constructed by BBC. They had a 5mm radial gap between coil and and had a notch at the location. A small gap and a notch both give a large iron saturation and hence we had over 42 unit of b2 harmonic and -8 unit of b4 DRAOO4 had the same basic feature except for some small changes near the outer surface of iron. These changes do not alter the iron saturation significantly. pole yoke pole + +To reduce iron saturation; the radial gap between the coil and was increased from 5mm to lOmm and the coil-yoke locating notch was moved from to midplane in the magnets DRBOO5 and DRBOO6. This brought b2 saturation down from +42 unit to -6 unit and b4 saturation from -8.5 unit to -3.6 unit. As before, these are the maximum deviation between 2 kA and 5 kA. This magnet had a non-magnetic stainless steel midplane In the magnets DRCOO7 and DRCO08, the material of this was changed from non-magnetic stainless steel to magnetic low carbon steel This change reduced b2 saturation to -2.5 unit and b4 saturation to -2.4 unit. In between a short magnet was built where the 5 mm midplane notch was modified to a 5mm iron tooth That reduced b2 saturation to +8 unit and b4 to -1.1 unit. However, the tooth idea was not adopted in DRCOO7 because of its mechanical complications. yoke pole yoke key. key key key. + +Neither the midplane notch nor the tooth (better magnetically but worse mechanically) was preferred for the production magnets. It is believed that a locating notch would be better able to define the location of the coil. As mentioned earlier, notch is bad magnetically. That in itself would make an already unacceptable saturation worse\_ pole pole pole + +Therefore, a detailed study was undertaken to modify the cross section to significanty change the magnetics of the with the desired mechanical properties. After considering a large number of variations, the one chosen for DRDOO9 was the one in which the location of the bypass hole was changed. This, with a notch and stainless steel actually improved the iron saturation (in b4 harmonic) relative to DRBOO5 instead of making it worse. The b2 saturation became +7 unit and b4 -1.3 unit. yoke pole key, + +Finally a small saturation suppressor hole was added to practically eliminate all b2 and b4 saturation in DREOII cross section Before we discuss that, let uS examine the differences between the calculations and measurements as are given in Table 6.1. These calculations are done with the code POISSON and ignore cryostat. Typically, at 5 kA cryostat induced b2 is ~+1.5 unit and b4 is ~-0.1 unit. Moreover, as mentioned earlier; the calculations are done only for the saturation induced harmonics and the harmonics due to coil deformation as a result of the Lorentz force on the coil are ignored. We have also ignored a small gap (of the order of 10 mil) between the and bottom halves of the yokes. Some calculations show that this maj give as much of 2 units of b2 and 0.2 units of b4 at 5 kA they they top + +In Table 6.1, we have also given the maximum change in the measured values of b2 and b4 harmonics till 5 kA. The diference between the calculations and measurements did not bother much when the actual value of the saturation induced harmonic was However, at this stage did matter as the target to make those harmonic becamne so small. The target was to make b2 saturation less then 2 unit and b4 saturation less then ! unit. This is within the difference between the calculations and measurements Therefore, we empirically cancel out these small unexplained differences between the calculations and measurements (in this particular cross section) in arriving to an optimized location of the hole. The approach indeed worked as can be seen in Fig. 2.1 and 2.2 and described in detail in reference 4. In these figures please see curves marked for DRSGR where DRSGR represents the short dipole "DRSOO6 rebuilt with the saturation suppressor holes" large. they Fig. + + +7 References + + 1. P.A. Thompson; et.al., "Iron saturation control in RHIC dipole magnets" Presented at 1991 Particle Accelerator Conference + 2 . Testing and Measurement Group Notes describing the results of magnetic measurements. + 3 . P.A. Thompson, Magnet Division Notes describing design and comparing calculations with measurements. + 4 R. Gupta, "DRSOO6 with Saturation Suppressor Holes" = Magnet Division Note No. 457-16 (RHIC-MD-165), July 28, 1992. + 5. R. Gupta, "Reducing iron saturation in arc dipoles with a saturation suppressor hole" Magnet Division Note No. 447-16 (RHIC-MD-158) June 10, 1992. \ No newline at end of file diff --git a/llm-service/app/ai/indexing/base.py b/llm-service/app/ai/indexing/base.py index daa7b65d..c7e472c9 100644 --- a/llm-service/app/ai/indexing/base.py +++ b/llm-service/app/ai/indexing/base.py @@ -7,6 +7,7 @@ from .readers.csv import CSVReader from .readers.docx import DocxReader from .readers.json import JSONReader +from .readers.markdown import MdReader from .readers.pdf import PDFReader from .readers.pptx import PptxReader from .readers.simple_file import SimpleFileReader @@ -14,7 +15,7 @@ READERS: Dict[str, Type[BaseReader]] = { ".pdf": PDFReader, ".txt": SimpleFileReader, - ".md": SimpleFileReader, + ".md": MdReader, ".docx": DocxReader, ".pptx": PptxReader, ".pptm": PptxReader, diff --git a/llm-service/app/ai/indexing/readers/markdown.py b/llm-service/app/ai/indexing/readers/markdown.py new file mode 100644 index 00000000..644a372b --- /dev/null +++ b/llm-service/app/ai/indexing/readers/markdown.py @@ -0,0 +1,99 @@ +# +# CLOUDERA APPLIED MACHINE LEARNING PROTOTYPE (AMP) +# (C) Cloudera, Inc. 2024 +# All rights reserved. +# +# Applicable Open Source License: Apache 2.0 +# +# NOTE: Cloudera open source products are modular software products +# made up of hundreds of individual components, each of which was +# individually copyrighted. Each Cloudera open source product is a +# collective work under U.S. Copyright Law. Your license to use the +# collective work is as provided in your written agreement with +# Cloudera. Used apart from the collective work, this file is +# licensed for your use pursuant to the open source license +# identified above. +# +# This code is provided to you pursuant a written agreement with +# (i) Cloudera, Inc. or (ii) a third-party authorized to distribute +# this code. If you do not have a written agreement with Cloudera nor +# with an authorized and properly licensed third party, you do not +# have any rights to access nor to use this code. +# +# Absent a written agreement with Cloudera, Inc. ("Cloudera") to the +# contrary, A) CLOUDERA PROVIDES THIS CODE TO YOU WITHOUT WARRANTIES OF ANY +# KIND; (B) CLOUDERA DISCLAIMS ANY AND ALL EXPRESS AND IMPLIED +# WARRANTIES WITH RESPECT TO THIS CODE, INCLUDING BUT NOT LIMITED TO +# IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY AND +# FITNESS FOR A PARTICULAR PURPOSE; (C) CLOUDERA IS NOT LIABLE TO YOU, +# AND WILL NOT DEFEND, INDEMNIFY, NOR HOLD YOU HARMLESS FOR ANY CLAIMS +# ARISING FROM OR RELATED TO THE CODE; AND (D)WITH RESPECT TO YOUR EXERCISE +# OF ANY RIGHTS GRANTED TO YOU FOR THE CODE, CLOUDERA IS NOT LIABLE FOR ANY +# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE OR +# CONSEQUENTIAL DAMAGES INCLUDING, BUT NOT LIMITED TO, DAMAGES +# RELATED TO LOST REVENUE, LOST PROFITS, LOSS OF INCOME, LOSS OF +# BUSINESS ADVANTAGE OR UNAVAILABILITY, OR LOSS OR CORRUPTION OF +# DATA. +# + +# +# CLOUDERA APPLIED MACHINE LEARNING PROTOTYPE (AMP) +# (C) Cloudera, Inc. 2024 +# All rights reserved. +# +# Applicable Open Source License: Apache 2.0 +# +# +# This code is provided to you pursuant a written agreement with +# (i) Cloudera, Inc. or (ii) a third-party authorized to distribute +# this code. If you do not have a written agreement with Cloudera nor +# with an authorized and properly licensed third party, you do not +# have any rights to access nor to use this code. +# +# Absent a written agreement with Cloudera, Inc. ("Cloudera") to the +# contrary, A) CLOUDERA PROVIDES THIS CODE TO YOU WITHOUT WARRANTIES OF ANY +# KIND; (B) CLOUDERA DISCLAIMS ANY AND ALL EXPRESS AND IMPLIED +# WARRANTIES WITH RESPECT TO THIS CODE, INCLUDING BUT NOT LIMITED TO +# IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY AND +# FITNESS FOR A PARTICULAR PURPOSE; (C) CLOUDERA IS NOT LIABLE TO YOU, +# AND WILL NOT DEFEND, INDEMNIFY, NOR HOLD YOU HARMLESS FOR ANY CLAIMS +# ARISING FROM OR RELATED TO THE CODE; AND (D)WITH RESPECT TO YOUR EXERCISE +# OF ANY RIGHTS GRANTED TO YOU FOR THE CODE, CLOUDERA IS NOT LIABLE FOR ANY +# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE OR +# CONSEQUENTIAL DAMAGES INCLUDING, BUT NOT LIMITED TO, DAMAGES +# RELATED TO LOST REVENUE, LOST PROFITS, LOSS OF INCOME, LOSS OF +# BUSINESS ADVANTAGE OR UNAVAILABILITY, OR LOSS OR CORRUPTION OF +# DATA. +# + +from pathlib import Path +from typing import Any, List, cast + +from llama_index.core.node_parser import MarkdownNodeParser +from llama_index.core.schema import TextNode, Document, BaseNode +from llama_index.readers.file import MarkdownReader + +from .base_reader import BaseReader + + +class MdReader(BaseReader): + def __init__(self, *args: Any, **kwargs: Any) -> None: + super().__init__(*args, **kwargs) + self.inner = MarkdownReader() + + def load_chunks(self, file_path: Path) -> List[TextNode]: + with open(file_path, "r") as f: + content = f.read() + document = Document(text=content) + document.id_ = self.document_id + self._add_document_metadata(document, file_path) + + parser = MarkdownNodeParser() + nodes: list[BaseNode] = parser.get_nodes_from_documents([document]) + results : list[TextNode] = [] + for i, node in enumerate(nodes): + tn = cast(TextNode, node) + self._add_document_metadata(tn, file_path) + tn.metadata["chunk_format"] = "markdown" + results.append(tn) + return results diff --git a/llm-service/app/ai/indexing/readers/pdf.py b/llm-service/app/ai/indexing/readers/pdf.py index a68f7d7f..55504dfa 100644 --- a/llm-service/app/ai/indexing/readers/pdf.py +++ b/llm-service/app/ai/indexing/readers/pdf.py @@ -46,7 +46,7 @@ from llama_index.readers.file import PDFReader as LlamaIndexPDFReader from .base_reader import BaseReader -from .simple_file import SimpleFileReader +from .markdown import MdReader logger = logging.getLogger(__name__) @@ -92,7 +92,7 @@ class PDFReader(BaseReader): def __init__(self, *args: Any, **kwargs: Any) -> None: super().__init__(*args, **kwargs) self.inner = LlamaIndexPDFReader(return_full_document=False) - self.markdown_reader = SimpleFileReader(*args, **kwargs) + self.markdown_reader = MdReader(*args, **kwargs) def load_chunks(self, file_path: Path) -> list[TextNode]: logger.debug(f"{file_path=}") @@ -114,6 +114,7 @@ def process_with_docling(self, file_path: Path) -> list[TextNode] | None: docling_enabled = ( os.getenv("USE_ENHANCED_PDF_PROCESSING", "false").lower() == "true" ) + logger.info(f"{docling_enabled=}") if not docling_enabled: return None directory = file_path.parent diff --git a/llm-service/app/ai/indexing/summary_indexer.py b/llm-service/app/ai/indexing/summary_indexer.py index b795e180..5a59e486 100644 --- a/llm-service/app/ai/indexing/summary_indexer.py +++ b/llm-service/app/ai/indexing/summary_indexer.py @@ -57,14 +57,12 @@ NodeRelationship, ) -from app.services.models import get_noop_embedding_model - -from ...config import Settings +from app.services.models import get_noop_embedding_model, get_noop_llm_model from .base import get_reader_class +from ...config import Settings logger = logging.getLogger(__name__) - SUMMARY_PROMPT = 'Summarize the contents into less than 100 words. If an adequate summary is not possible, please return "No summary available.".' # Since we don't use anything fancy to store the summaries, it's possible that two threads @@ -76,29 +74,36 @@ class SummaryIndexer: def __init__( - self, - data_source_id: int, - splitter: SentenceSplitter, - llm: LLM, + self, + data_source_id: int, + splitter: SentenceSplitter, + llm: LLM, ): self.data_source_id = data_source_id self.splitter = splitter self.llm = llm + @staticmethod + def __database_dir(data_source_id: int) -> str: + return os.path.join(Settings().rag_databases_dir, f"doc_summary_index_{data_source_id}") + def __persist_dir(self) -> str: - return os.path.join( - Settings().rag_databases_dir, f"doc_summary_index_{self.data_source_id}" - ) + return SummaryIndexer.__database_dir(self.data_source_id) - def __persist_root_dir(self) -> str: + @staticmethod + def __persist_root_dir() -> str: return os.path.join(Settings().rag_databases_dir, "doc_summary_index_global") def __index_kwargs(self) -> Dict[str, Any]: + return SummaryIndexer.__index_configuration(self.llm) + + @staticmethod + def __index_configuration(llm: LLM) -> Dict[str, Any]: return { - "llm": self.llm, + "llm": llm, "response_synthesizer": get_response_synthesizer( response_mode=ResponseMode.TREE_SUMMARIZE, - llm=self.llm, + llm=llm, use_async=True, verbose=True, ), @@ -118,21 +123,28 @@ def __init_summary_store(self, persist_dir: str) -> DocumentSummaryIndex: def __summary_indexer(self, persist_dir: str) -> DocumentSummaryIndex: try: - storage_context = StorageContext.from_defaults( + return SummaryIndexer.__summary_indexer_with_config( persist_dir=persist_dir, + index_configuration=self.__index_kwargs(), ) - doc_summary_index: DocumentSummaryIndex = cast( - DocumentSummaryIndex, - load_index_from_storage( - storage_context=storage_context, - **self.__index_kwargs(), - ), - ) - return doc_summary_index except FileNotFoundError: doc_summary_index = self.__init_summary_store(persist_dir) return doc_summary_index + @staticmethod + def __summary_indexer_with_config(persist_dir: str, index_configuration: Dict[str, Any]) -> DocumentSummaryIndex: + storage_context = StorageContext.from_defaults( + persist_dir=persist_dir, + ) + doc_summary_index: DocumentSummaryIndex = cast( + DocumentSummaryIndex, + load_index_from_storage( + storage_context=storage_context, + **index_configuration, + ), + ) + return doc_summary_index + def index_file(self, file_path: Path, document_id: str) -> None: logger.debug(f"Creating summary for file {file_path}") @@ -159,10 +171,10 @@ def index_file(self, file_path: Path, document_id: str) -> None: logger.debug(f"Summary for file {file_path} created") def __update_global_summary_store( - self, - summary_store: DocumentSummaryIndex, - added_node_id: Optional[str] = None, - deleted_node_id: Optional[str] = None, + self, + summary_store: DocumentSummaryIndex, + added_node_id: Optional[str] = None, + deleted_node_id: Optional[str] = None, ) -> None: # Llama index doesn't seem to support updating the summary when we add more documents. # So what we do instead is re-load all the summaries for the documents already associated with the data source @@ -214,7 +226,7 @@ def __update_global_summary_store( # Delete first so that we don't accumulate trash in the summary store. try: - global_summary_store.delete_ref_doc(str(self.data_source_id)) + global_summary_store.delete_ref_doc(str(self.data_source_id), delete_from_docstore=True) except KeyError: pass global_summary_store.insert_nodes(new_nodes) @@ -234,8 +246,7 @@ def get_full_summary(self) -> Optional[str]: global_summary_store = self.__summary_indexer(global_persist_dir) document_id = str(self.data_source_id) if ( - document_id - not in global_summary_store.index_struct.doc_id_to_summary_id + document_id not in global_summary_store.index_struct.doc_id_to_summary_id ): return None return global_summary_store.get_document_summary(document_id) @@ -249,19 +260,28 @@ def delete_document(self, document_id: str) -> None: summary_store, deleted_node_id=document_id ) - summary_store.delete_ref_doc(document_id) + summary_store.delete_ref_doc(document_id, delete_from_docstore=True) summary_store.storage_context.persist(persist_dir=persist_dir) def delete_data_source(self) -> None: with _write_lock: - # We need to re-load the summary index constantly because of this delete. - # TODO: figure out a less explosive way to do this. - shutil.rmtree(self.__persist_dir(), ignore_errors=True) + SummaryIndexer.delete_data_source_by_id(self.data_source_id) - global_persist_dir = self.__persist_root_dir() - global_summary_store = self.__summary_indexer(global_persist_dir) + @staticmethod + def delete_data_source_by_id(data_source_id: int) -> None: + with _write_lock: + # TODO: figure out a less explosive way to do this. + shutil.rmtree(SummaryIndexer.__database_dir(data_source_id), ignore_errors=True) + global_persist_dir = SummaryIndexer.__persist_root_dir() + try: + global_summary_store = SummaryIndexer.__summary_indexer_with_config(global_persist_dir, + SummaryIndexer.__index_configuration( + get_noop_llm_model())) + except FileNotFoundError: + ## global summary store doesn't exist, nothing to do + return try: - global_summary_store.delete_ref_doc(str(self.data_source_id)) + global_summary_store.delete_ref_doc(str(data_source_id), delete_from_docstore=True) + global_summary_store.storage_context.persist(persist_dir=global_persist_dir) except KeyError: pass - global_summary_store.storage_context.persist(persist_dir=global_persist_dir) diff --git a/llm-service/app/ai/vector_stores/qdrant.py b/llm-service/app/ai/vector_stores/qdrant.py index 150f9747..bee7da4e 100644 --- a/llm-service/app/ai/vector_stores/qdrant.py +++ b/llm-service/app/ai/vector_stores/qdrant.py @@ -90,12 +90,11 @@ def __init__( ): self.client = client or new_qdrant_client() self.table_name = table_name - self.data_source_metadata = data_sources_metadata_api.get_metadata( - data_source_id - ) + self.data_source_id = data_source_id def get_embedding_model(self) -> BaseEmbedding: - return models.get_embedding_model(self.data_source_metadata.embedding_model) + data_source_metadata = data_sources_metadata_api.get_metadata(self.data_source_id) + return models.get_embedding_model(data_source_metadata.embedding_model) def size(self) -> Optional[int]: """If the collection does not exist, return None.""" diff --git a/llm-service/app/routers/index/data_source/__init__.py b/llm-service/app/routers/index/data_source/__init__.py index 029eb70e..ba6623f7 100644 --- a/llm-service/app/routers/index/data_source/__init__.py +++ b/llm-service/app/routers/index/data_source/__init__.py @@ -102,9 +102,7 @@ def _get_summary_indexer(data_source_id: int) -> Optional[SummaryIndexer]: @exceptions.propagates def delete(self, data_source_id: int) -> None: self.chunks_vector_store.delete() - indexer = self._get_summary_indexer(data_source_id) - if indexer: - indexer.delete_data_source() + SummaryIndexer.delete_data_source_by_id(data_source_id) @router.get( "/chunks/{chunk_id}", @@ -125,9 +123,9 @@ def chunk_contents(self, chunk_id: str) -> ChunkContentsResponse: @exceptions.propagates def delete_document(self, data_source_id: int, doc_id: str) -> None: self.chunks_vector_store.delete_document(doc_id) - indexer = self._get_summary_indexer(data_source_id) - if indexer: - indexer.delete_document(doc_id) + summary_indexer = self._get_summary_indexer(data_source_id) + if summary_indexer: + summary_indexer.delete_document(doc_id) @router.post( "/documents/{doc_id}/index", diff --git a/llm-service/app/routers/index/sessions/__init__.py b/llm-service/app/routers/index/sessions/__init__.py index cc43e723..8b6923e3 100644 --- a/llm-service/app/routers/index/sessions/__init__.py +++ b/llm-service/app/routers/index/sessions/__init__.py @@ -85,8 +85,8 @@ class RagStudioChatRequest(BaseModel): @router.post("/chat", summary="Chat with your documents in the requested datasource") @exceptions.propagates def chat( - session_id: int, - request: RagStudioChatRequest, + session_id: int, + request: RagStudioChatRequest, ) -> RagStudioChatMessage: if request.configuration.exclude_knowledge_base: return llm_talk(session_id, request) @@ -96,8 +96,8 @@ def chat( def llm_talk( - session_id: int, - request: RagStudioChatRequest, + session_id: int, + request: RagStudioChatRequest, ) -> RagStudioChatMessage: chat_response = llm_completion.completion( session_id, request.query, request.configuration @@ -105,6 +105,7 @@ def llm_talk( new_chat_message = RagStudioChatMessage( id=str(uuid.uuid4()), source_nodes=[], + inference_model=request.configuration.model_name, evaluations=[], rag_message={ "user": request.query, @@ -128,18 +129,28 @@ class RagSuggestedQuestionsResponse(BaseModel): @router.post("/suggest-questions", summary="Suggest questions with context") @exceptions.propagates def suggest_questions( - session_id: int, - request: SuggestQuestionsRequest, + session_id: int, + request: SuggestQuestionsRequest, ) -> RagSuggestedQuestionsResponse: if len(request.data_source_ids) != 1: - raise HTTPException(status_code=400, detail="Only one datasource is supported for question suggestion.") + raise HTTPException( + status_code=400, + detail="Only one datasource is supported for question suggestion.", + ) total_data_sources_size: int = sum( - map(lambda ds_id: QdrantVectorStore.for_chunks(ds_id).size() or 0, request.data_source_ids)) + map( + lambda ds_id: QdrantVectorStore.for_chunks(ds_id).size() or 0, + request.data_source_ids, + ) + ) if total_data_sources_size == 0: raise HTTPException(status_code=404, detail="Knowledge base not found.") suggested_questions = generate_suggested_questions( - request.configuration, request.data_source_ids, total_data_sources_size, session_id + request.configuration, + request.data_source_ids, + total_data_sources_size, + session_id, ) return RagSuggestedQuestionsResponse(suggested_questions=suggested_questions) diff --git a/llm-service/app/services/chat.py b/llm-service/app/services/chat.py index 85ee6fcd..0db07d38 100644 --- a/llm-service/app/services/chat.py +++ b/llm-service/app/services/chat.py @@ -66,13 +66,16 @@ def v2_chat( response_id = str(uuid.uuid4()) if len(data_source_ids) != 1: - raise HTTPException(status_code=400, detail="Only one datasource is supported for chat.") + raise HTTPException( + status_code=400, detail="Only one datasource is supported for chat." + ) data_source_id: int = data_source_ids[0] if QdrantVectorStore.for_chunks(data_source_id).size() == 0: return RagStudioChatMessage( id=response_id, source_nodes=[], + inference_model=None, rag_message={ "user": query, "assistant": "I don't have any documents to answer your question.", @@ -94,6 +97,7 @@ def v2_chat( new_chat_message = RagStudioChatMessage( id=response_id, source_nodes=response_source_nodes, + inference_model=configuration.model_name, rag_message={ "user": query, "assistant": response.response, diff --git a/llm-service/app/services/chat_store.py b/llm-service/app/services/chat_store.py index 7462650d..48dbddc6 100644 --- a/llm-service/app/services/chat_store.py +++ b/llm-service/app/services/chat_store.py @@ -37,7 +37,7 @@ # ############################################################################## import os -from typing import List, Literal +from typing import List, Literal, Optional from llama_index.core.base.llms.types import ChatMessage, MessageRole from llama_index.core.storage.chat_store import SimpleChatStore @@ -66,6 +66,7 @@ class RagContext(BaseModel): class RagStudioChatMessage(BaseModel): id: str source_nodes: list[RagPredictSourceNode] + inference_model: Optional[str] # `None` for legacy data or no chunks rag_message: dict[Literal["user", "assistant"], str] evaluations: list[Evaluation] timestamp: float @@ -101,6 +102,9 @@ def retrieve_chat_history(self, session_id: int) -> List[RagStudioChatMessage]: source_nodes=assistant_message.additional_kwargs.get( "source_nodes", [] ), + inference_model=assistant_message.additional_kwargs.get( + "inference_model", None + ), rag_message={ MessageRole.USER.value: str(user_message.content), MessageRole.ASSISTANT.value: str(assistant_message.content), @@ -158,6 +162,7 @@ def append_to_history( additional_kwargs={ "id": message.id, "source_nodes": message.source_nodes, + "inference_model": message.inference_model, "evaluations": message.evaluations, "timestamp": message.timestamp, }, diff --git a/ui/package.json b/ui/package.json index 7c9cf7e7..25b05b48 100644 --- a/ui/package.json +++ b/ui/package.json @@ -26,7 +26,9 @@ "lodash": "^4.17.21", "react": "^18.3.1", "react-chartjs-2": "^5.2.0", - "react-dom": "^18.3.1" + "react-dom": "^18.3.1", + "react-markdown": "^9.0.1", + "remark-gfm": "^4.0.0" }, "devDependencies": { "@eslint/js": "^9.14.0", diff --git a/ui/pnpm-lock.yaml b/ui/pnpm-lock.yaml index c97d0e01..91927f6f 100644 --- a/ui/pnpm-lock.yaml +++ b/ui/pnpm-lock.yaml @@ -44,6 +44,12 @@ importers: react-dom: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) + react-markdown: + specifier: ^9.0.1 + version: 9.0.1(@types/react@18.3.12)(react@18.3.1) + remark-gfm: + specifier: ^4.0.0 + version: 4.0.0 devDependencies: '@eslint/js': specifier: ^9.14.0 @@ -1035,21 +1041,36 @@ packages: '@types/babel__traverse@7.20.6': resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + '@types/eslint@9.6.1': resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==} '@types/eslint__js@8.42.3': resolution: {integrity: sha512-alfG737uhmPdnvkrLdZLcEKJ/B8s9Y4hrZ+YAdzUeoArBlSUERA2E87ROfOaS4jd/C45fzOoZzidLc1IPwLqOw==} + '@types/estree-jsx@1.0.5': + resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} + '@types/estree@1.0.6': resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + '@types/hast@3.0.4': + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + '@types/json-schema@7.0.15': resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} '@types/lodash@4.17.13': resolution: {integrity: sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==} + '@types/mdast@4.0.4': + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + + '@types/ms@0.7.34': + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + '@types/node@22.9.0': resolution: {integrity: sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==} @@ -1062,6 +1083,12 @@ packages: '@types/react@18.3.12': resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==} + '@types/unist@2.0.11': + resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} + + '@types/unist@3.0.3': + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} + '@typescript-eslint/eslint-plugin@8.14.0': resolution: {integrity: sha512-tqp8H7UWFaZj0yNO6bycd5YjMwxa6wIHOLZvWPkidwbgLCsBMetQoGj7DPuAlWa2yGO3H48xmPwjhsSPPCGU5w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -1119,6 +1146,9 @@ packages: resolution: {integrity: sha512-vG0XZo8AdTH9OE6VFRwAZldNc7qtJ/6NLGWak+BtENuEUXGZgFpihILPiBvKXvJ2nFu27XNGC6rKiwuaoMbYzQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@ungap/structured-clone@1.2.1': + resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==} + '@vitejs/plugin-react@4.3.3': resolution: {integrity: sha512-NooDe9GpHGqNns1i8XDERg0Vsg5SSYRhRxxyTGogUdkdNt47jal+fbuYi+Yfq6pzRCKXyoPcWisfxE6RIM3GKA==} engines: {node: ^14.18.0 || >=16.0.0} @@ -1266,6 +1296,9 @@ packages: babel-dead-code-elimination@1.0.6: resolution: {integrity: sha512-JxFi9qyRJpN0LjEbbjbN8g0ux71Qppn9R8Qe3k6QzHg2CaKsbUQtbn307LQGiDLGjV6JCtEFqfxzVig9MyDCHQ==} + bail@2.0.2: + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} @@ -1307,6 +1340,9 @@ packages: caniuse-lite@1.0.30001680: resolution: {integrity: sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==} + ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + chai@5.1.2: resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==} engines: {node: '>=12'} @@ -1323,6 +1359,18 @@ packages: resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + character-entities-html4@2.1.0: + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + + character-entities-legacy@3.0.0: + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + + character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + + character-reference-invalid@2.0.1: + resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} + chart.js@4.4.6: resolution: {integrity: sha512-8Y406zevUPbbIBA/HRk33khEmQPk5+cxeflWE/2rx1NJsjVWMPw/9mSP9rxHP5eqi6LNoPBVMfZHxbwLSgldYA==} engines: {pnpm: '>=8'} @@ -1369,6 +1417,9 @@ packages: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} engines: {node: '>= 0.8'} + comma-separated-tokens@2.0.3: + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + commander@12.1.0: resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} engines: {node: '>=18'} @@ -1442,6 +1493,9 @@ packages: decimal.js@10.4.3: resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + decode-named-character-reference@1.0.2: + resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} + deep-eql@5.0.2: resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} engines: {node: '>=6'} @@ -1465,6 +1519,9 @@ packages: resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} engines: {node: '>=6'} + devlop@1.1.0: + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + doctrine@2.1.0: resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} engines: {node: '>=0.10.0'} @@ -1553,6 +1610,10 @@ packages: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} + escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + eslint-config-prettier@9.1.0: resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} hasBin: true @@ -1637,6 +1698,9 @@ packages: resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} engines: {node: '>=4.0'} + estree-util-is-identifier-name@3.0.0: + resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} + estree-walker@2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} @@ -1658,6 +1722,9 @@ packages: resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==} engines: {node: '>=12.0.0'} + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} @@ -1818,6 +1885,12 @@ packages: resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} engines: {node: '>= 0.4'} + hast-util-to-jsx-runtime@2.3.2: + resolution: {integrity: sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==} + + hast-util-whitespace@3.0.0: + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} + html-encoding-sniffer@4.0.0: resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} engines: {node: '>=18'} @@ -1825,6 +1898,9 @@ packages: html-escaper@2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + html-url-attributes@3.0.1: + resolution: {integrity: sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==} + http-proxy-agent@7.0.2: resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} engines: {node: '>= 14'} @@ -1862,10 +1938,19 @@ packages: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} + inline-style-parser@0.2.4: + resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==} + internal-slot@1.0.7: resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} engines: {node: '>= 0.4'} + is-alphabetical@2.0.1: + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} + + is-alphanumerical@2.0.1: + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} + is-array-buffer@3.0.4: resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} engines: {node: '>= 0.4'} @@ -1904,6 +1989,9 @@ packages: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} + is-decimal@2.0.1: + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} + is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} @@ -1931,6 +2019,9 @@ packages: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} + is-hexadecimal@2.0.1: + resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} + is-map@2.0.3: resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} engines: {node: '>= 0.4'} @@ -1947,6 +2038,10 @@ packages: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + is-potential-custom-element-name@1.0.1: resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} @@ -2100,6 +2195,9 @@ packages: resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} engines: {node: '>=18'} + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + loose-envify@1.4.0: resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true @@ -2130,6 +2228,54 @@ packages: resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} engines: {node: '>=10'} + markdown-table@3.0.4: + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} + + mdast-util-find-and-replace@3.0.1: + resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} + + mdast-util-from-markdown@2.0.2: + resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} + + mdast-util-gfm-autolink-literal@2.0.1: + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} + + mdast-util-gfm-footnote@2.0.0: + resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} + + mdast-util-gfm-strikethrough@2.0.0: + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} + + mdast-util-gfm-table@2.0.0: + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} + + mdast-util-gfm-task-list-item@2.0.0: + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} + + mdast-util-gfm@3.0.0: + resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} + + mdast-util-mdx-expression@2.0.1: + resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==} + + mdast-util-mdx-jsx@3.1.3: + resolution: {integrity: sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==} + + mdast-util-mdxjs-esm@2.0.1: + resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} + + mdast-util-phrasing@4.1.0: + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + + mdast-util-to-hast@13.2.0: + resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} + + mdast-util-to-markdown@2.1.2: + resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} + + mdast-util-to-string@4.0.0: + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} @@ -2137,6 +2283,90 @@ packages: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} + micromark-core-commonmark@2.0.2: + resolution: {integrity: sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==} + + micromark-extension-gfm-autolink-literal@2.1.0: + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} + + micromark-extension-gfm-footnote@2.1.0: + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} + + micromark-extension-gfm-strikethrough@2.1.0: + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} + + micromark-extension-gfm-table@2.1.0: + resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==} + + micromark-extension-gfm-tagfilter@2.0.0: + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} + + micromark-extension-gfm-task-list-item@2.1.0: + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} + + micromark-extension-gfm@3.0.0: + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} + + micromark-factory-destination@2.0.1: + resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} + + micromark-factory-label@2.0.1: + resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} + + micromark-factory-space@2.0.1: + resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} + + micromark-factory-title@2.0.1: + resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} + + micromark-factory-whitespace@2.0.1: + resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} + + micromark-util-character@2.1.1: + resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} + + micromark-util-chunked@2.0.1: + resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} + + micromark-util-classify-character@2.0.1: + resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} + + micromark-util-combine-extensions@2.0.1: + resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} + + micromark-util-decode-numeric-character-reference@2.0.2: + resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} + + micromark-util-decode-string@2.0.1: + resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} + + micromark-util-encode@2.0.1: + resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} + + micromark-util-html-tag-name@2.0.1: + resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} + + micromark-util-normalize-identifier@2.0.1: + resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} + + micromark-util-resolve-all@2.0.1: + resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} + + micromark-util-sanitize-uri@2.0.1: + resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} + + micromark-util-subtokenize@2.0.3: + resolution: {integrity: sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==} + + micromark-util-symbol@2.0.1: + resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} + + micromark-util-types@2.0.1: + resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==} + + micromark@4.0.1: + resolution: {integrity: sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==} + micromatch@4.0.8: resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} engines: {node: '>=8.6'} @@ -2255,6 +2485,9 @@ packages: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} + parse-entities@4.0.2: + resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==} + parse-json@5.2.0: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} @@ -2346,6 +2579,9 @@ packages: prop-types@15.8.1: resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + property-information@6.5.0: + resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + punycode@2.3.1: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} engines: {node: '>=6'} @@ -2601,6 +2837,12 @@ packages: react-is@18.3.1: resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} + react-markdown@9.0.1: + resolution: {integrity: sha512-186Gw/vF1uRkydbsOIkcGXw7aHq0sZOCRFFjGrr7b9+nVZg4UfA4enXCaxm4fUzecU38sWfrNDitGhshuU7rdg==} + peerDependencies: + '@types/react': '>=18' + react: '>=18' + react-refresh@0.14.2: resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} engines: {node: '>=0.10.0'} @@ -2628,6 +2870,18 @@ packages: resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} engines: {node: '>= 0.4'} + remark-gfm@4.0.0: + resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==} + + remark-parse@11.0.0: + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} + + remark-rehype@11.1.1: + resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==} + + remark-stringify@11.0.0: + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} + resize-observer-polyfill@1.5.1: resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} @@ -2736,6 +2990,9 @@ packages: resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} engines: {node: '>=0.10.0'} + space-separated-tokens@2.0.2: + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + stackback@0.0.2: resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} @@ -2779,6 +3036,9 @@ packages: resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} engines: {node: '>= 0.4'} + stringify-entities@4.0.4: + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} + strip-ansi@6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} @@ -2799,6 +3059,9 @@ packages: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} + style-to-object@1.0.8: + resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==} + stylis@4.3.4: resolution: {integrity: sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==} @@ -2877,6 +3140,12 @@ packages: resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==} engines: {node: '>=18'} + trim-lines@3.0.1: + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} + + trough@2.2.0: + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + ts-api-utils@1.4.0: resolution: {integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==} engines: {node: '>=16'} @@ -2941,6 +3210,24 @@ packages: undici-types@6.19.8: resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} + unified@11.0.5: + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} + + unist-util-is@6.0.0: + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + + unist-util-position@5.0.0: + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} + + unist-util-stringify-position@4.0.0: + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + + unist-util-visit-parents@6.0.1: + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + + unist-util-visit@5.0.0: + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + unplugin@1.15.0: resolution: {integrity: sha512-jTPIs63W+DUEDW207ztbaoO7cQ4p5aVaB823LSlxpsFEU3Mykwxf3ZGC/wzxFJeZlASZYgVrWeo7LgOrqJZ8RA==} engines: {node: '>=14.0.0'} @@ -2964,6 +3251,12 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 + vfile-message@4.0.2: + resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} + + vfile@6.0.3: + resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} + vite-node@2.1.4: resolution: {integrity: sha512-kqa9v+oi4HwkG6g8ufRnb5AeplcRw8jUF6/7/Qz1qRQOXHImG8YnLbB+LLszENwFnoBl9xIf9nVdCFzNd7GQEg==} engines: {node: ^18.0.0 || >=20.0.0} @@ -3136,6 +3429,9 @@ packages: zod@3.23.8: resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} + zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + snapshots: '@adobe/css-tools@4.4.0': {} @@ -3920,6 +4216,10 @@ snapshots: dependencies: '@babel/types': 7.26.0 + '@types/debug@4.1.12': + dependencies: + '@types/ms': 0.7.34 + '@types/eslint@9.6.1': dependencies: '@types/estree': 1.0.6 @@ -3929,12 +4229,26 @@ snapshots: dependencies: '@types/eslint': 9.6.1 + '@types/estree-jsx@1.0.5': + dependencies: + '@types/estree': 1.0.6 + '@types/estree@1.0.6': {} + '@types/hast@3.0.4': + dependencies: + '@types/unist': 3.0.3 + '@types/json-schema@7.0.15': {} '@types/lodash@4.17.13': {} + '@types/mdast@4.0.4': + dependencies: + '@types/unist': 3.0.3 + + '@types/ms@0.7.34': {} + '@types/node@22.9.0': dependencies: undici-types: 6.19.8 @@ -3950,6 +4264,10 @@ snapshots: '@types/prop-types': 15.7.13 csstype: 3.1.3 + '@types/unist@2.0.11': {} + + '@types/unist@3.0.3': {} + '@typescript-eslint/eslint-plugin@8.14.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.6.3))(eslint@9.14.0)(typescript@5.6.3)': dependencies: '@eslint-community/regexpp': 4.12.1 @@ -4031,6 +4349,8 @@ snapshots: '@typescript-eslint/types': 8.14.0 eslint-visitor-keys: 3.4.3 + '@ungap/structured-clone@1.2.1': {} + '@vitejs/plugin-react@4.3.3(vite@5.4.11(@types/node@22.9.0))': dependencies: '@babel/core': 7.26.0 @@ -4279,6 +4599,8 @@ snapshots: transitivePeerDependencies: - supports-color + bail@2.0.2: {} + balanced-match@1.0.2: {} binary-extensions@2.3.0: {} @@ -4319,6 +4641,8 @@ snapshots: caniuse-lite@1.0.30001680: {} + ccount@2.0.1: {} + chai@5.1.2: dependencies: assertion-error: 2.0.1 @@ -4339,6 +4663,14 @@ snapshots: chalk@5.3.0: {} + character-entities-html4@2.1.0: {} + + character-entities-legacy@3.0.0: {} + + character-entities@2.0.2: {} + + character-reference-invalid@2.0.1: {} + chart.js@4.4.6: dependencies: '@kurkle/color': 0.3.4 @@ -4386,6 +4718,8 @@ snapshots: dependencies: delayed-stream: 1.0.0 + comma-separated-tokens@2.0.3: {} + commander@12.1.0: {} compute-scroll-into-view@3.1.0: {} @@ -4454,6 +4788,10 @@ snapshots: decimal.js@10.4.3: {} + decode-named-character-reference@1.0.2: + dependencies: + character-entities: 2.0.2 + deep-eql@5.0.2: {} deep-is@0.1.4: {} @@ -4474,6 +4812,10 @@ snapshots: dequal@2.0.3: {} + devlop@1.1.0: + dependencies: + dequal: 2.0.3 + doctrine@2.1.0: dependencies: esutils: 2.0.3 @@ -4655,6 +4997,8 @@ snapshots: escape-string-regexp@4.0.0: {} + escape-string-regexp@5.0.0: {} + eslint-config-prettier@9.1.0(eslint@9.14.0): dependencies: eslint: 9.14.0 @@ -4770,6 +5114,8 @@ snapshots: estraverse@5.3.0: {} + estree-util-is-identifier-name@3.0.0: {} + estree-walker@2.0.2: {} estree-walker@3.0.3: @@ -4794,6 +5140,8 @@ snapshots: expect-type@1.1.0: {} + extend@3.0.2: {} + fast-deep-equal@3.1.3: {} fast-diff@1.3.0: {} @@ -4950,12 +5298,38 @@ snapshots: dependencies: function-bind: 1.1.2 + hast-util-to-jsx-runtime@2.3.2: + dependencies: + '@types/estree': 1.0.6 + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + hast-util-whitespace: 3.0.0 + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.1.3 + mdast-util-mdxjs-esm: 2.0.1 + property-information: 6.5.0 + space-separated-tokens: 2.0.2 + style-to-object: 1.0.8 + unist-util-position: 5.0.0 + vfile-message: 4.0.2 + transitivePeerDependencies: + - supports-color + + hast-util-whitespace@3.0.0: + dependencies: + '@types/hast': 3.0.4 + html-encoding-sniffer@4.0.0: dependencies: whatwg-encoding: 3.1.1 html-escaper@2.0.2: {} + html-url-attributes@3.0.1: {} + http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.1 @@ -4989,12 +5363,21 @@ snapshots: indent-string@4.0.0: {} + inline-style-parser@0.2.4: {} + internal-slot@1.0.7: dependencies: es-errors: 1.3.0 hasown: 2.0.2 side-channel: 1.0.6 + is-alphabetical@2.0.1: {} + + is-alphanumerical@2.0.1: + dependencies: + is-alphabetical: 2.0.1 + is-decimal: 2.0.1 + is-array-buffer@3.0.4: dependencies: call-bind: 1.0.7 @@ -5033,6 +5416,8 @@ snapshots: dependencies: has-tostringtag: 1.0.2 + is-decimal@2.0.1: {} + is-extglob@2.1.1: {} is-finalizationregistry@1.0.2: @@ -5055,6 +5440,8 @@ snapshots: dependencies: is-extglob: 2.1.1 + is-hexadecimal@2.0.1: {} + is-map@2.0.3: {} is-negative-zero@2.0.3: {} @@ -5065,6 +5452,8 @@ snapshots: is-number@7.0.0: {} + is-plain-obj@4.1.0: {} + is-potential-custom-element-name@1.0.1: {} is-regex@1.1.4: @@ -5252,6 +5641,8 @@ snapshots: strip-ansi: 7.1.0 wrap-ansi: 9.0.0 + longest-streak@3.1.0: {} + loose-envify@1.4.0: dependencies: js-tokens: 4.0.0 @@ -5284,10 +5675,356 @@ snapshots: dependencies: semver: 7.6.3 + markdown-table@3.0.4: {} + + mdast-util-find-and-replace@3.0.1: + dependencies: + '@types/mdast': 4.0.4 + escape-string-regexp: 5.0.0 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + + mdast-util-from-markdown@2.0.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + decode-named-character-reference: 1.0.2 + devlop: 1.1.0 + mdast-util-to-string: 4.0.0 + micromark: 4.0.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-decode-string: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + unist-util-stringify-position: 4.0.0 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-autolink-literal@2.0.1: + dependencies: + '@types/mdast': 4.0.4 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-find-and-replace: 3.0.1 + micromark-util-character: 2.1.1 + + mdast-util-gfm-footnote@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + micromark-util-normalize-identifier: 2.0.1 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-strikethrough@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-table@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + markdown-table: 3.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-task-list-item@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm@3.0.0: + dependencies: + mdast-util-from-markdown: 2.0.2 + mdast-util-gfm-autolink-literal: 2.0.1 + mdast-util-gfm-footnote: 2.0.0 + mdast-util-gfm-strikethrough: 2.0.0 + mdast-util-gfm-table: 2.0.0 + mdast-util-gfm-task-list-item: 2.0.0 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-expression@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-jsx@3.1.3: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + parse-entities: 4.0.2 + stringify-entities: 4.0.4 + unist-util-stringify-position: 4.0.0 + vfile-message: 4.0.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdxjs-esm@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-phrasing@4.1.0: + dependencies: + '@types/mdast': 4.0.4 + unist-util-is: 6.0.0 + + mdast-util-to-hast@13.2.0: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@ungap/structured-clone': 1.2.1 + devlop: 1.1.0 + micromark-util-sanitize-uri: 2.0.1 + trim-lines: 3.0.1 + unist-util-position: 5.0.0 + unist-util-visit: 5.0.0 + vfile: 6.0.3 + + mdast-util-to-markdown@2.1.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + longest-streak: 3.1.0 + mdast-util-phrasing: 4.1.0 + mdast-util-to-string: 4.0.0 + micromark-util-classify-character: 2.0.1 + micromark-util-decode-string: 2.0.1 + unist-util-visit: 5.0.0 + zwitch: 2.0.4 + + mdast-util-to-string@4.0.0: + dependencies: + '@types/mdast': 4.0.4 + merge-stream@2.0.0: {} merge2@1.4.1: {} + micromark-core-commonmark@2.0.2: + dependencies: + decode-named-character-reference: 1.0.2 + devlop: 1.1.0 + micromark-factory-destination: 2.0.1 + micromark-factory-label: 2.0.1 + micromark-factory-space: 2.0.1 + micromark-factory-title: 2.0.1 + micromark-factory-whitespace: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-html-tag-name: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-subtokenize: 2.0.3 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-extension-gfm-autolink-literal@2.1.0: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-extension-gfm-footnote@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-core-commonmark: 2.0.2 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-extension-gfm-strikethrough@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-extension-gfm-table@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-extension-gfm-tagfilter@2.0.0: + dependencies: + micromark-util-types: 2.0.1 + + micromark-extension-gfm-task-list-item@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-extension-gfm@3.0.0: + dependencies: + micromark-extension-gfm-autolink-literal: 2.1.0 + micromark-extension-gfm-footnote: 2.1.0 + micromark-extension-gfm-strikethrough: 2.1.0 + micromark-extension-gfm-table: 2.1.0 + micromark-extension-gfm-tagfilter: 2.0.0 + micromark-extension-gfm-task-list-item: 2.1.0 + micromark-util-combine-extensions: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-factory-destination@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-factory-label@2.0.1: + dependencies: + devlop: 1.1.0 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-factory-space@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-types: 2.0.1 + + micromark-factory-title@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-factory-whitespace@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-util-character@2.1.1: + dependencies: + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-util-chunked@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-classify-character@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-util-combine-extensions@2.0.1: + dependencies: + micromark-util-chunked: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-util-decode-numeric-character-reference@2.0.2: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-decode-string@2.0.1: + dependencies: + decode-named-character-reference: 1.0.2 + micromark-util-character: 2.1.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-symbol: 2.0.1 + + micromark-util-encode@2.0.1: {} + + micromark-util-html-tag-name@2.0.1: {} + + micromark-util-normalize-identifier@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-resolve-all@2.0.1: + dependencies: + micromark-util-types: 2.0.1 + + micromark-util-sanitize-uri@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-encode: 2.0.1 + micromark-util-symbol: 2.0.1 + + micromark-util-subtokenize@2.0.3: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-util-symbol@2.0.1: {} + + micromark-util-types@2.0.1: {} + + micromark@4.0.1: + dependencies: + '@types/debug': 4.1.12 + debug: 4.3.7 + decode-named-character-reference: 1.0.2 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.2 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-combine-extensions: 2.0.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-encode: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-subtokenize: 2.0.3 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + transitivePeerDependencies: + - supports-color + micromatch@4.0.8: dependencies: braces: 3.0.3 @@ -5399,6 +6136,16 @@ snapshots: dependencies: callsites: 3.1.0 + parse-entities@4.0.2: + dependencies: + '@types/unist': 2.0.11 + character-entities-legacy: 3.0.0 + character-reference-invalid: 2.0.1 + decode-named-character-reference: 1.0.2 + is-alphanumerical: 2.0.1 + is-decimal: 2.0.1 + is-hexadecimal: 2.0.1 + parse-json@5.2.0: dependencies: '@babel/code-frame': 7.26.2 @@ -5473,6 +6220,8 @@ snapshots: object-assign: 4.1.1 react-is: 16.13.1 + property-information@6.5.0: {} + punycode@2.3.1: {} queue-microtask@1.2.3: {} @@ -5813,6 +6562,23 @@ snapshots: react-is@18.3.1: {} + react-markdown@9.0.1(@types/react@18.3.12)(react@18.3.1): + dependencies: + '@types/hast': 3.0.4 + '@types/react': 18.3.12 + devlop: 1.1.0 + hast-util-to-jsx-runtime: 2.3.2 + html-url-attributes: 3.0.1 + mdast-util-to-hast: 13.2.0 + react: 18.3.1 + remark-parse: 11.0.0 + remark-rehype: 11.1.1 + unified: 11.0.5 + unist-util-visit: 5.0.0 + vfile: 6.0.3 + transitivePeerDependencies: + - supports-color + react-refresh@0.14.2: {} react@18.3.1: @@ -5847,6 +6613,40 @@ snapshots: es-errors: 1.3.0 set-function-name: 2.0.2 + remark-gfm@4.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-gfm: 3.0.0 + micromark-extension-gfm: 3.0.0 + remark-parse: 11.0.0 + remark-stringify: 11.0.0 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-parse@11.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + micromark-util-types: 2.0.1 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-rehype@11.1.1: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + mdast-util-to-hast: 13.2.0 + unified: 11.0.5 + vfile: 6.0.3 + + remark-stringify@11.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-to-markdown: 2.1.2 + unified: 11.0.5 + resize-observer-polyfill@1.5.1: {} resolve-from@4.0.0: {} @@ -5979,6 +6779,8 @@ snapshots: source-map-js@1.2.1: {} + space-separated-tokens@2.0.2: {} + stackback@0.0.2: {} std-env@3.8.0: {} @@ -6044,6 +6846,11 @@ snapshots: define-properties: 1.2.1 es-object-atoms: 1.0.0 + stringify-entities@4.0.4: + dependencies: + character-entities-html4: 2.1.0 + character-entities-legacy: 3.0.0 + strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 @@ -6060,6 +6867,10 @@ snapshots: strip-json-comments@3.1.1: {} + style-to-object@1.0.8: + dependencies: + inline-style-parser: 0.2.4 + stylis@4.3.4: {} supports-color@7.2.0: @@ -6121,6 +6932,10 @@ snapshots: dependencies: punycode: 2.3.1 + trim-lines@3.0.1: {} + + trough@2.2.0: {} + ts-api-utils@1.4.0(typescript@5.6.3): dependencies: typescript: 5.6.3 @@ -6196,6 +7011,39 @@ snapshots: undici-types@6.19.8: {} + unified@11.0.5: + dependencies: + '@types/unist': 3.0.3 + bail: 2.0.2 + devlop: 1.1.0 + extend: 3.0.2 + is-plain-obj: 4.1.0 + trough: 2.2.0 + vfile: 6.0.3 + + unist-util-is@6.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-position@5.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-stringify-position@4.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-visit-parents@6.0.1: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + + unist-util-visit@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + unplugin@1.15.0: dependencies: acorn: 8.14.0 @@ -6215,6 +7063,16 @@ snapshots: dependencies: react: 18.3.1 + vfile-message@4.0.2: + dependencies: + '@types/unist': 3.0.3 + unist-util-stringify-position: 4.0.0 + + vfile@6.0.3: + dependencies: + '@types/unist': 3.0.3 + vfile-message: 4.0.2 + vite-node@2.1.4(@types/node@22.9.0): dependencies: cac: 6.7.14 @@ -6398,3 +7256,5 @@ snapshots: yocto-queue@0.1.0: {} zod@3.23.8: {} + + zwitch@2.0.4: {} diff --git a/ui/src/api/chatApi.ts b/ui/src/api/chatApi.ts index 5567e509..85a770e2 100644 --- a/ui/src/api/chatApi.ts +++ b/ui/src/api/chatApi.ts @@ -85,6 +85,7 @@ interface ChatHistoryRequestType { export interface ChatMessageType { id: string; source_nodes: SourceNode[]; + inference_model?: string; rag_message: RagMessageV2; evaluations: Evaluation[]; timestamp: number; diff --git a/ui/src/api/ragQueryApi.ts b/ui/src/api/ragQueryApi.ts index c03c9b27..35c5f84e 100644 --- a/ui/src/api/ragQueryApi.ts +++ b/ui/src/api/ragQueryApi.ts @@ -90,6 +90,7 @@ const suggestQuestionsQuery = async ( export interface ChunkMetadata { row_number?: number; page_number?: string; + chunk_format?: string; } export interface ChunkContentsResponse { diff --git a/ui/src/components/images/Images.ts b/ui/src/components/images/Images.ts index cc7ac7ea..3c009ef4 100644 --- a/ui/src/components/images/Images.ts +++ b/ui/src/components/images/Images.ts @@ -52,6 +52,7 @@ import User from "./ic-user.svg?react"; import PlusCircle from "./ic-plus-circle.svg?react"; import RagStudioProduct from "./rag-studio-product-icon.svg"; import image404 from "./404image.png"; +import Models from "./ic-models.svg?react"; const Images = { AiAssistant: AiAssistant, @@ -64,6 +65,7 @@ const Images = { DB: DB, Ghost: Ghost, History: History, + Models: Models, KnowledgeBase: KnowledgeBase, Upload: Upload, PlusCircle: PlusCircle, diff --git a/ui/src/components/images/ic-models.svg b/ui/src/components/images/ic-models.svg new file mode 100644 index 00000000..3bfbad55 --- /dev/null +++ b/ui/src/components/images/ic-models.svg @@ -0,0 +1,3 @@ + + + diff --git a/ui/src/pages/RagChatTab/ChatOutput/ChatMessages/ChatBodyController.test.tsx b/ui/src/pages/RagChatTab/ChatOutput/ChatMessages/ChatBodyController.test.tsx index c67d1c75..c7e0e385 100644 --- a/ui/src/pages/RagChatTab/ChatOutput/ChatMessages/ChatBodyController.test.tsx +++ b/ui/src/pages/RagChatTab/ChatOutput/ChatMessages/ChatBodyController.test.tsx @@ -82,6 +82,13 @@ describe("ChatBodyController", () => { })), })); + vi.mock("src/api/modelsApi.ts", () => ({ + useGetLlmModels: vi.fn(() => ({ + data: [], + isLoading: false, + })), + })); + vi.mock("src/api/summaryApi.ts", () => ({ useGetDataSourceSummary: vi.fn(() => ({ data: "Mocked summary data", diff --git a/ui/src/pages/RagChatTab/ChatOutput/ChatMessages/ChatMessage.tsx b/ui/src/pages/RagChatTab/ChatOutput/ChatMessages/ChatMessage.tsx index 7893737b..a565e064 100644 --- a/ui/src/pages/RagChatTab/ChatOutput/ChatMessages/ChatMessage.tsx +++ b/ui/src/pages/RagChatTab/ChatOutput/ChatMessages/ChatMessage.tsx @@ -40,7 +40,7 @@ import { Divider, Flex, Typography } from "antd"; import SourceNodes from "pages/RagChatTab/ChatOutput/Sources/SourceNodes.tsx"; import PendingRagOutputSkeleton from "pages/RagChatTab/ChatOutput/Loaders/PendingRagOutputSkeleton.tsx"; import { ChatMessageType, isPlaceholder } from "src/api/chatApi.ts"; -import { cdlBlue500 } from "src/cuix/variables.ts"; +import { cdlBlue500, cdlGray200 } from "src/cuix/variables.ts"; import UserQuestion from "pages/RagChatTab/ChatOutput/ChatMessages/UserQuestion.tsx"; import { Evaluations } from "pages/RagChatTab/ChatOutput/ChatMessages/Evaluations.tsx"; import Images from "src/components/images/Images.ts"; @@ -68,21 +68,36 @@ const ChatMessage = ({ gap={8} >
- + {data.source_nodes.length > 0 ? ( + + ) : ( + + )}
- + - - {data.rag_message.assistant} + + {data.rag_message.assistant.trimStart()} diff --git a/ui/src/pages/RagChatTab/ChatOutput/Sources/MetaData.tsx b/ui/src/pages/RagChatTab/ChatOutput/Sources/MetaData.tsx index b9039986..34ef5afa 100644 --- a/ui/src/pages/RagChatTab/ChatOutput/Sources/MetaData.tsx +++ b/ui/src/pages/RagChatTab/ChatOutput/Sources/MetaData.tsx @@ -37,6 +37,7 @@ ******************************************************************************/ import { Typography } from "antd"; import { ChunkContentsResponse } from "src/api/ragQueryApi.ts"; +import { SourceCardTitle } from "pages/RagChatTab/ChatOutput/Sources/SourceCard.tsx"; const MetaData = ({ metadata, @@ -63,9 +64,7 @@ const MetaData = ({ return ( <> - - Metadata - + {hasMetadata ? ( <> diff --git a/ui/src/pages/RagChatTab/ChatOutput/Sources/SourceCard.tsx b/ui/src/pages/RagChatTab/ChatOutput/Sources/SourceCard.tsx index 3193949c..24485ecc 100644 --- a/ui/src/pages/RagChatTab/ChatOutput/Sources/SourceCard.tsx +++ b/ui/src/pages/RagChatTab/ChatOutput/Sources/SourceCard.tsx @@ -40,6 +40,7 @@ import Icon from "@ant-design/icons"; import { Alert, Card, + Divider, Flex, Popover, Spin, @@ -55,6 +56,33 @@ import { useGetDocumentSummary } from "src/api/summaryApi.ts"; import DocumentationIcon from "src/cuix/icons/DocumentationIcon"; import { cdlGray600 } from "src/cuix/variables.ts"; import MetaData from "pages/RagChatTab/ChatOutput/Sources/MetaData.tsx"; +import Markdown from "react-markdown"; +import Remark from "remark-gfm"; +import "./sourceCard.css"; + +export const SourceCardTitle = ({ titleText }: { titleText: string }) => { + return ( + + {titleText} + + + ); +}; + +const CardTitle = ({ source }: { source: SourceNode }) => { + return ( + + + + {source.source_file_name} + + + + Score: {source.score} + + + ); +}; export const SourceCard = ({ source }: { source: SourceNode }) => { const { activeSession } = useContext(RagChatContext); @@ -83,26 +111,13 @@ export const SourceCard = ({ source }: { source: SourceNode }) => { onOpenChange={handleGetChunkContents} content={ - - - {source.source_file_name} - - - - Score: {source.score} - - - } + title={} bordered={false} style={{ width: 600, height: 300, overflowY: "auto" }} > - - Generated document summary - + {documentSummary.data ?? "No summary available"} @@ -126,14 +141,23 @@ export const SourceCard = ({ source }: { source: SourceNode }) => { ) : ( chunkContents.data && ( - - Extracted reference content - - - {chunkContents.data.text} - + + {chunkContents.data.metadata.chunk_format === "markdown" ? ( +
+ + {chunkContents.data.text} + +
+ ) : ( + + chunkContents.data.text + + )}
) diff --git a/ui/src/pages/RagChatTab/ChatOutput/Sources/SourceNodes.tsx b/ui/src/pages/RagChatTab/ChatOutput/Sources/SourceNodes.tsx index 1a06f571..9320c43c 100644 --- a/ui/src/pages/RagChatTab/ChatOutput/Sources/SourceNodes.tsx +++ b/ui/src/pages/RagChatTab/ChatOutput/Sources/SourceNodes.tsx @@ -36,14 +36,46 @@ * DATA. ******************************************************************************/ -import { Flex } from "antd"; +import { Flex, Typography } from "antd"; import { SourceCard } from "pages/RagChatTab/ChatOutput/Sources/SourceCard.tsx"; -import {ChatMessageType} from "src/api/chatApi.ts"; +import { ChatMessageType } from "src/api/chatApi.ts"; +import { WarningTwoTone } from "@ant-design/icons"; +import { cdlOrange050, cdlOrange500 } from "src/cuix/variables.ts"; +import { useGetLlmModels } from "src/api/modelsApi.ts"; const SourceNodes = ({ data }: { data: ChatMessageType }) => { + const { data: inferenceModels } = useGetLlmModels(); + const nodes = data.source_nodes.map((node) => ( )); + + const modelName = () => { + if (!data.inference_model) { + return "the model"; + } + const model = inferenceModels + ?.filter((model) => model.model_id === data.inference_model) + .pop(); + return model?.name ?? "the model"; + }; + + if (nodes.length === 0) { + return ( + + + + This answer is provided directly by{" "} + + {modelName()} + {" "} + and does not reference the Knowledge Base. + + + ); + } return ( {nodes} diff --git a/ui/src/pages/RagChatTab/ChatOutput/Sources/sourceCard.css b/ui/src/pages/RagChatTab/ChatOutput/Sources/sourceCard.css new file mode 100644 index 00000000..b2e4605a --- /dev/null +++ b/ui/src/pages/RagChatTab/ChatOutput/Sources/sourceCard.css @@ -0,0 +1,53 @@ +/* + * CLOUDERA APPLIED MACHINE LEARNING PROTOTYPE (AMP) + * (C) Cloudera, Inc. 2024 + * All rights reserved. + * + * Applicable Open Source License: Apache 2.0 + * + * NOTE: Cloudera open source products are modular software products + * made up of hundreds of individual components, each of which was + * individually copyrighted. Each Cloudera open source product is a + * collective work under U.S. Copyright Law. Your license to use the + * collective work is as provided in your written agreement with + * Cloudera. Used apart from the collective work, this file is + * licensed for your use pursuant to the open source license + * identified above. + * + * This code is provided to you pursuant a written agreement with + * (i) Cloudera, Inc. or (ii) a third-party authorized to distribute + * this code. If you do not have a written agreement with Cloudera nor + * with an authorized and properly licensed third party, you do not + * have any rights to access nor to use this code. + * + * Absent a written agreement with Cloudera, Inc. ("Cloudera") to the + * contrary, A) CLOUDERA PROVIDES THIS CODE TO YOU WITHOUT WARRANTIES OF ANY + * KIND; (B) CLOUDERA DISCLAIMS ANY AND ALL EXPRESS AND IMPLIED + * WARRANTIES WITH RESPECT TO THIS CODE, INCLUDING BUT NOT LIMITED TO + * IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE; (C) CLOUDERA IS NOT LIABLE TO YOU, + * AND WILL NOT DEFEND, INDEMNIFY, NOR HOLD YOU HARMLESS FOR ANY CLAIMS + * ARISING FROM OR RELATED TO THE CODE; AND (D)WITH RESPECT TO YOUR EXERCISE + * OF ANY RIGHTS GRANTED TO YOU FOR THE CODE, CLOUDERA IS NOT LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE OR + * CONSEQUENTIAL DAMAGES INCLUDING, BUT NOT LIMITED TO, DAMAGES + * RELATED TO LOST REVENUE, LOST PROFITS, LOSS OF INCOME, LOSS OF + * BUSINESS ADVANTAGE OR UNAVAILABILITY, OR LOSS OR CORRUPTION OF + * DATA. + */ + +.styled-markdown table { + border: 1px solid #838b92; + border-collapse: collapse; +} +.styled-markdown table td { + border: 1px solid #838b92; + padding: 4px; +} +.styled-markdown table th { + padding: 4px; + border: 1px solid #838b92; +} +.styled-markdown table thead { + border-bottom: 2px solid #838b92; +} \ No newline at end of file