Fix table-to-scan alignment and preserve unresolved exports
Browse filesRepeated, irregular and unlabelled printed-page sequences caused the `tables` config to attach some exported tables to the wrong scan. This PR matches each existing table against its report's page ALTO, separates tables that had been conflated onto one image, and preserves ambiguous items explicitly.
- 451 table items move to different scans; 3,529 retain their original scan; 106 remain unresolved in a side artifact with their original CSVs.
- Repaired rows: train 2,520, validation 302, test 327 (3,149 total; 3,980 attached table items). All 4,086 original IDs/CSV payloads and report split assignments are conserved across the config and unresolved artifact.
- Three replacement Parquet shards, source/decision ledgers, a local-only UV reproduction script, and corrected card wording. The default corpus and licences are unchanged. This is an alignment repair, not a transcription or image-resolution upgrade.
Validation covers all 288 reports/24,052 page ALTO documents, schema/provenance/split/payload invariants, all embedded JPEGs, and replay of the published scorer. All six previously identified wrong-scan items are corrected and 24 previously aligned items retain their scans. A fresh risk-enriched sample of 58 tables plus eight low-margin train/validation moves was inspected against source images. Two low-margin items were retained through explicitly documented agent visual adjudications; thresholds were not tuned to rescue them.
The card now states the limits clearly: ALTO agreement and agent spot checks do not make these machine-extracted CSVs gold labels, and the attached tables may not exhaustively annotate a page. See `audits/table-alignment-2026-09-09/README.md` for counts, thresholds, sampling caveats and exact per-table decisions.
Base revision: `1a726bbb3a8dc8f3499cf2db0a983865ab6fd2b6`. Open for dataset-owner review; no merge is performed.
- README.md +54 -27
- audits/table-alignment-2026-09-09/README.md +90 -0
- audits/table-alignment-2026-09-09/additional-visual-checks.json +77 -0
- audits/table-alignment-2026-09-09/adjudications.json +12 -0
- audits/table-alignment-2026-09-09/decisions.jsonl +0 -0
- audits/table-alignment-2026-09-09/fresh-visual-checks.json +608 -0
- audits/table-alignment-2026-09-09/regression-checks.json +251 -0
- audits/table-alignment-2026-09-09/source-alto.jsonl +0 -0
- audits/table-alignment-2026-09-09/source-manifests.json +1730 -0
- audits/table-alignment-2026-09-09/summary.json +59 -0
- audits/table-alignment-2026-09-09/unresolved.jsonl +0 -0
- audits/table-alignment-2026-09-09/validation.json +44 -0
- scripts/repair_table_alignment.py +492 -0
- tables/test-00000-of-00001.parquet +2 -2
- tables/train-00000-of-00001.parquet +2 -2
- tables/validation-00000-of-00001.parquet +2 -2
|
@@ -46,16 +46,16 @@ dataset_info:
|
|
| 46 |
dtype: string
|
| 47 |
splits:
|
| 48 |
- name: train
|
| 49 |
-
num_bytes:
|
| 50 |
-
num_examples:
|
| 51 |
- name: validation
|
| 52 |
-
num_bytes:
|
| 53 |
-
num_examples:
|
| 54 |
- name: test
|
| 55 |
-
num_bytes:
|
| 56 |
-
num_examples:
|
| 57 |
-
download_size:
|
| 58 |
-
dataset_size:
|
| 59 |
configs:
|
| 60 |
- config_name: default
|
| 61 |
data_files:
|
|
@@ -82,7 +82,7 @@ historical public-health records — dense statistical tables, mixed layouts, ce
|
|
| 82 |
| config | rows | what |
|
| 83 |
|---|---|---|
|
| 84 |
| `default` | 391,964 pages / 4,886 reports | every **page image** + its report's OCR text + licence |
|
| 85 |
-
| `tables` | 3,
|
| 86 |
|
| 87 |
```python
|
| 88 |
from datasets import load_dataset
|
|
@@ -90,7 +90,7 @@ from datasets import load_dataset
|
|
| 90 |
# full corpus (stream — it's ~110 GB)
|
| 91 |
ds = load_dataset("biglam/londons-pulse-moh", split="train", streaming=True)
|
| 92 |
|
| 93 |
-
# tables subset (small; image +
|
| 94 |
tab = load_dataset("biglam/londons-pulse-moh", "tables", split="test")
|
| 95 |
```
|
| 96 |
|
|
@@ -114,39 +114,65 @@ tab = load_dataset("biglam/londons-pulse-moh", "tables", split="test")
|
|
| 114 |
|
| 115 |
## `tables` config — columns
|
| 116 |
|
| 117 |
-
One row per
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
`table_ground_truth`.
|
| 122 |
|
| 123 |
| column | type | description |
|
| 124 |
|---|---|---|
|
| 125 |
| `image` | `Image` | the page scan |
|
| 126 |
| `page_type` | `string` | `"table"` |
|
| 127 |
| `table_ground_truth` | `string` | JSON list of `{table_id, csv}` — the extracted table(s) on that page |
|
| 128 |
-
| `n_tables_on_page` | `int32` | number of tables on the page |
|
| 129 |
-
| `b_number`, `page_index`, `printed_page` | | report id, scan index,
|
| 130 |
| `source_collection`, `label_source`, `split`, `signals` | | provenance (`label_source="table-export"`) |
|
| 131 |
|
| 132 |
-
|
| 133 |
-
|
| 134 |
-
|
| 135 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 136 |
|
| 137 |
> [!NOTE]
|
| 138 |
-
> **
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 139 |
|
| 140 |
## Provenance & reproducibility
|
| 141 |
|
| 142 |
- **Images**: Wellcome [IIIF Presentation v2 API](https://iiif.wellcomecollection.org/),
|
| 143 |
-
keyed on each report's b-number
|
|
|
|
|
|
|
| 144 |
- **Text** (`default`): the bulk `Fulltext.zip` corpus from
|
| 145 |
[wellcomelibrary.org/moh](https://wellcomelibrary.org/moh/), joined on b-number.
|
| 146 |
- **Tables** (`tables`): Wellcome's `All_Report_Tables` export (~275k machine-extracted
|
| 147 |
-
tables)
|
| 148 |
-
|
| 149 |
-
|
|
|
|
|
|
|
|
|
|
| 150 |
|
| 151 |
## Licence
|
| 152 |
|
|
@@ -168,4 +194,5 @@ Images: `iiif.wellcomecollection.org` · Text/tables: `wellcomelibrary.org/moh`.
|
|
| 168 |
|
| 169 |
Historical OCR/VLM evaluation, document layout analysis, page-type classification, and
|
| 170 |
structured extraction from century-old public-health tables (disease incidence, mortality).
|
| 171 |
-
The `tables` config
|
|
|
|
|
|
| 46 |
dtype: string
|
| 47 |
splits:
|
| 48 |
- name: train
|
| 49 |
+
num_bytes: 448527779
|
| 50 |
+
num_examples: 2520
|
| 51 |
- name: validation
|
| 52 |
+
num_bytes: 52884161
|
| 53 |
+
num_examples: 302
|
| 54 |
- name: test
|
| 55 |
+
num_bytes: 56707410
|
| 56 |
+
num_examples: 327
|
| 57 |
+
download_size: 554397290
|
| 58 |
+
dataset_size: 558119350
|
| 59 |
configs:
|
| 60 |
- config_name: default
|
| 61 |
data_files:
|
|
|
|
| 82 |
| config | rows | what |
|
| 83 |
|---|---|---|
|
| 84 |
| `default` | 391,964 pages / 4,886 reports | every **page image** + its report's OCR text + licence |
|
| 85 |
+
| `tables` | 3,149 pages / 288 reports | selected page images paired with 3,980 machine-extracted tables; silver labels for page-type training and exploratory table-extraction evaluation |
|
| 86 |
|
| 87 |
```python
|
| 88 |
from datasets import load_dataset
|
|
|
|
| 90 |
# full corpus (stream — it's ~110 GB)
|
| 91 |
ds = load_dataset("biglam/londons-pulse-moh", split="train", streaming=True)
|
| 92 |
|
| 93 |
+
# tables subset (small; image + silver table targets)
|
| 94 |
tab = load_dataset("biglam/londons-pulse-moh", "tables", split="test")
|
| 95 |
```
|
| 96 |
|
|
|
|
| 114 |
|
| 115 |
## `tables` config — columns
|
| 116 |
|
| 117 |
+
One row per scan with at least one matched table from Wellcome's machine-extracted
|
| 118 |
+
export. The attached tables are a **selected subset**, not an exhaustive annotation of
|
| 119 |
+
every table visible on the page. The CSV content remains uncorrected silver data.
|
| 120 |
+
Use for `table` page-type training or exploratory OCR/VLM evaluation with that limitation.
|
|
|
|
| 121 |
|
| 122 |
| column | type | description |
|
| 123 |
|---|---|---|
|
| 124 |
| `image` | `Image` | the page scan |
|
| 125 |
| `page_type` | `string` | `"table"` |
|
| 126 |
| `table_ground_truth` | `string` | JSON list of `{table_id, csv}` — the extracted table(s) on that page |
|
| 127 |
+
| `n_tables_on_page` | `int32` | number of attached export tables; may be fewer than the tables visible on the page |
|
| 128 |
+
| `b_number`, `page_index`, `printed_page` | | report id, 1-based scan index, original numeric printed-page value (nullable when regrouped values differ); exact export labels are in `signals.export_page_labels` |
|
| 129 |
| `source_collection`, `label_source`, `split`, `signals` | | provenance (`label_source="table-export"`) |
|
| 130 |
|
| 131 |
+
The original selection spans all 12 decades. Train/validation/test assignments remain
|
| 132 |
+
grouped by report, with no report shared across splits. After the September 2026 alignment
|
| 133 |
+
repair there are 2,520 / 302 / 327 rows respectively. Page counts increased because tables
|
| 134 |
+
previously conflated by repeated printed-page numbers now occupy separate scans.
|
| 135 |
+
|
| 136 |
+
Alignment uses each table's content against **every page's ALTO in its report**;
|
| 137 |
+
numeric canvas labels alone do not decide the match. The automated rule requires
|
| 138 |
+
IDF-weighted token containment ≥0.70, a margin ≥0.10 over the next-best scan, and at least
|
| 139 |
+
eight distinct content tokens. Two low-margin matches were retained after explicitly
|
| 140 |
+
recorded agent visual checks. These scores measure agreement with source OCR, not the
|
| 141 |
+
probability of a correct annotation. Limited image checks supplement the automated pass;
|
| 142 |
+
the entire dataset has not been manually verified.
|
| 143 |
+
|
| 144 |
+
The [alignment audit](audits/table-alignment-2026-09-09/README.md) accounts for all 4,086
|
| 145 |
+
original table items: 3,529 retained on their original scan, 451 moved, and 106 unresolved.
|
| 146 |
+
Unresolved items are excluded from the image/table config and preserved with their original
|
| 147 |
+
CSV content in [unresolved.jsonl](audits/table-alignment-2026-09-09/unresolved.jsonl).
|
| 148 |
+
Table IDs, CSV strings and original report split assignments are conserved across the
|
| 149 |
+
config and that side artifact. The `default` corpus is unchanged.
|
| 150 |
|
| 151 |
> [!NOTE]
|
| 152 |
+
> **Target quality — silver, not gold.** These tables were extracted by OCR/table recognition,
|
| 153 |
+
> not hand-transcribed. Known errors include incorrect digits, lost fractions, noisy captions
|
| 154 |
+
> and labels, flattened headers, shifted or missing cells, and inconsistent nil markers.
|
| 155 |
+
> Correcting the scan association does **not** correct those errors. Neither exact numeric
|
| 156 |
+
> scoring nor fuzzy text matching by itself accounts for this noise. Use an independently
|
| 157 |
+
> reviewed reference set for headline evaluation results. The original CSV strings, including
|
| 158 |
+
> any literal escaped line endings, are preserved; the repair script interprets those escapes
|
| 159 |
+
> only when parsing content for alignment.
|
| 160 |
|
| 161 |
## Provenance & reproducibility
|
| 162 |
|
| 163 |
- **Images**: Wellcome [IIIF Presentation v2 API](https://iiif.wellcomecollection.org/),
|
| 164 |
+
keyed on each report's b-number. `default` uses native resolution; `tables` retains the
|
| 165 |
+
existing approximate 800/1,000-pixel width convention, including for replacement scans.
|
| 166 |
+
Actual dimensions (including IIIF rounding differences) are recorded in `signals.image_size`.
|
| 167 |
- **Text** (`default`): the bulk `Fulltext.zip` corpus from
|
| 168 |
[wellcomelibrary.org/moh](https://wellcomelibrary.org/moh/), joined on b-number.
|
| 169 |
- **Tables** (`tables`): Wellcome's `All_Report_Tables` export (~275k machine-extracted
|
| 170 |
+
tables). The original numeric-label resolver conflated duplicate and irregular printed
|
| 171 |
+
page labels. The [repair script](scripts/repair_table_alignment.py) performs report-wide
|
| 172 |
+
ALTO content matching and preserves the original export payloads.
|
| 173 |
+
- `signals` records the manifest and image service for each page. In `tables` it also
|
| 174 |
+
records the canvas label, export-page labels, image dimensions, source dataset revision
|
| 175 |
+
and alignment audit location. Per-table decisions and source checksums are in the audit.
|
| 176 |
|
| 177 |
## Licence
|
| 178 |
|
|
|
|
| 194 |
|
| 195 |
Historical OCR/VLM evaluation, document layout analysis, page-type classification, and
|
| 196 |
structured extraction from century-old public-health tables (disease incidence, mortality).
|
| 197 |
+
The `tables` config provides candidate material for image→table extraction evaluation;
|
| 198 |
+
reliable headline results require independently reviewed references.
|
|
@@ -0,0 +1,90 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Tables alignment repair — September 2026
|
| 2 |
+
|
| 3 |
+
Source dataset: `biglam/londons-pulse-moh` at revision
|
| 4 |
+
`1a726bbb3a8dc8f3499cf2db0a983865ab6fd2b6`.
|
| 5 |
+
|
| 6 |
+
The previous numeric canvas-label lookup could overwrite duplicate labels and assign tables
|
| 7 |
+
from later, unlabelled sections to an earlier page with the same printed number. Irregular
|
| 8 |
+
labels also failed that lookup. This repair matches each of the existing table items against
|
| 9 |
+
all canvas ALTO texts in its report, then groups accepted items by the selected scan.
|
| 10 |
+
It changes only the `tables` shards and associated documentation; the default corpus,
|
| 11 |
+
CSV payloads, source licences and report-to-split assignments remain unchanged.
|
| 12 |
+
|
| 13 |
+
## Coverage and decisions
|
| 14 |
+
|
| 15 |
+
- 288 reports, 24,052 canvases, 4,086 distinct original table IDs.
|
| 16 |
+
- All source manifests and ALTO documents were fetched and parsed. Seven ALTO documents
|
| 17 |
+
have invalid XML block nesting or page attributes. For those, every complete `String`
|
| 18 |
+
element was parsed separately, with the count checked against the source text. The
|
| 19 |
+
original XML checksums and fallback parser are recorded in `source-alto.jsonl`.
|
| 20 |
+
- 3,529 table items retained their scan, 451 moved, and 106 remain unresolved.
|
| 21 |
+
- The resulting 3,980 attached table items occupy 3,149 page rows. Some original rows
|
| 22 |
+
contained tables from multiple scans, so separating them increases the row count.
|
| 23 |
+
|
| 24 |
+
| Split | Original rows | Repaired rows | Retained table items | Moved | Unresolved |
|
| 25 |
+
|---|---:|---:|---:|---:|---:|
|
| 26 |
+
| train | 2,422 | 2,520 | 2,875 | 320 | 78 |
|
| 27 |
+
| validation | 279 | 302 | 330 | 43 | 13 |
|
| 28 |
+
| test | 299 | 327 | 324 | 88 | 15 |
|
| 29 |
+
|
| 30 |
+
`decisions.jsonl` records every original table ID, original split/row/scan, selected scan
|
| 31 |
+
(or null), original CSV SHA-256, scores and top candidates. `unresolved.jsonl` additionally
|
| 32 |
+
preserves the original CSV for every excluded item. No unresolved item is paired with a
|
| 33 |
+
guessed image. Exclusion indicates insufficient alignment evidence, not necessarily an
|
| 34 |
+
incorrect original association. Two low-margin items were retained through explicit agent visual adjudications in
|
| 35 |
+
`adjudications.json`: one from the earlier regression sample and one from the fresh sample.
|
| 36 |
+
|
| 37 |
+
## Matching rule
|
| 38 |
+
|
| 39 |
+
The CSV is parsed with `csv.reader`; only a scoring copy interprets source literal escaped
|
| 40 |
+
line endings and quotes. The initial table identifier and `Page` rows are excluded.
|
| 41 |
+
Tokens are lowercase ASCII alphanumeric runs of length greater than one; `nil` is omitted.
|
| 42 |
+
No numeric multiplier is used. For a report with N canvases, token weight is
|
| 43 |
+
`1 + log((N + 1) / (document_frequency + 1))`. Containment is the sum of weights of table
|
| 44 |
+
tokens present in a page, divided by all table-token weights.
|
| 45 |
+
|
| 46 |
+
The automated acceptance rule is containment ≥0.70, margin over the second-best page ≥0.10,
|
| 47 |
+
and at least eight distinct table tokens. This rule was fixed after inspecting a preliminary
|
| 48 |
+
20-report/250-table distribution, before checking the previously audited sample and the
|
| 49 |
+
fresh test sample. The two explicit visual adjudications do not alter the thresholds.
|
| 50 |
+
No new table transcriptions were generated; original CSV strings were preserved.
|
| 51 |
+
|
| 52 |
+
ALTO and exported tables are both source OCR. Their agreement is useful alignment evidence,
|
| 53 |
+
not independent proof of transcription accuracy, grid correctness or annotation completeness.
|
| 54 |
+
An attached table list need not include every table in its scan.
|
| 55 |
+
|
| 56 |
+
## Validation
|
| 57 |
+
|
| 58 |
+
The six previously identified wrong-scan table items all moved away from their erroneous
|
| 59 |
+
scans. Of 24 previously aligned items, 23 passed automatically without moving; the remaining
|
| 60 |
+
one retained its scan after agent visual inspection of its caption and distinctive values.
|
| 61 |
+
These are development/regression checks, not a population error-rate estimate.
|
| 62 |
+
|
| 63 |
+
Eight additional accepted moves from distinct train/validation reports were checked against
|
| 64 |
+
the actual output images, choosing low-margin cases. All eight images contained the selected
|
| 65 |
+
table; captions/dates and distinctive values matched. Evidence is in `additional-visual-checks.json`.
|
| 66 |
+
Visual checks are agent reviews, not human-certified gold transcription.
|
| 67 |
+
|
| 68 |
+
A fresh, risk-enriched test sample contained 30 original rows (20 previously flagged and
|
| 69 |
+
10 unflagged), excluding rows containing any of the earlier 30 audited table items. Those
|
| 70 |
+
rows contain 58 tables on 44 candidate images. Before visual adjudication, the fixed rule
|
| 71 |
+
accepted 32 moves and 25 unchanged matches, with one unresolved candidate. Independent
|
| 72 |
+
agent image reviews found all 58 candidates aligned; the unresolved low-margin candidate
|
| 73 |
+
was then retained by explicit adjudication. This is not 58 automatic successes, a random
|
| 74 |
+
population estimate, or human-certified gold. See `fresh-visual-checks.json` for selection,
|
| 75 |
+
individual evidence and the before/after distinction.
|
| 76 |
+
|
| 77 |
+
Further validation details and invariants are recorded in `validation.json`.
|
| 78 |
+
|
| 79 |
+
## Reproduction and source receipts
|
| 80 |
+
|
| 81 |
+
Run `uv run scripts/repair_table_alignment.py --work-dir /path/with/several-GB-free`.
|
| 82 |
+
The script downloads only the pinned source card and tables shards, caches source ALTO in
|
| 83 |
+
gzip form, and writes replacement shards and ledgers locally. It never uploads. An
|
| 84 |
+
`--offline-build` option uses a complete existing score/image cache. The script's `--help`
|
| 85 |
+
describes these options. Raw source endpoints are live; compare the manifest/ALTO checksum
|
| 86 |
+
ledgers with this run before claiming an exact reproduction.
|
| 87 |
+
|
| 88 |
+
Unchanged page images keep their original bytes. Replacement scans use the source row's
|
| 89 |
+
existing image width; this is not an image-resolution upgrade. Image and canvas provenance
|
| 90 |
+
are in each row's `signals`. `summary.json` records split sizes and artifact byte counts.
|
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"selection": "Eight low-margin accepted moves from different train/validation reports; sorted by margin with one table per report. Selected after thresholds were frozen.",
|
| 3 |
+
"checks": [
|
| 4 |
+
{
|
| 5 |
+
"table_id": "10199552300080000",
|
| 6 |
+
"b_number": "b19955236",
|
| 7 |
+
"scan": 9,
|
| 8 |
+
"split": "train",
|
| 9 |
+
"reviewer": "agent-visual-review",
|
| 10 |
+
"page_contains_table": true,
|
| 11 |
+
"evidence": "Contracts table, April 1872/February 1873, Manuelle granite prices and Hobbs road-watering match."
|
| 12 |
+
},
|
| 13 |
+
{
|
| 14 |
+
"table_id": "10182513400850041",
|
| 15 |
+
"b_number": "b18251341",
|
| 16 |
+
"scan": 86,
|
| 17 |
+
"split": "validation",
|
| 18 |
+
"reviewer": "agent-visual-review",
|
| 19 |
+
"page_contains_table": true,
|
| 20 |
+
"evidence": "St Pancras Schedule B dated August 29 1857; Peritonitis 1, Ascites 2, Ileus 1 match."
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"table_id": "10199528300910037",
|
| 24 |
+
"b_number": "b19952831",
|
| 25 |
+
"scan": 92,
|
| 26 |
+
"split": "train",
|
| 27 |
+
"reviewer": "agent-visual-review",
|
| 28 |
+
"page_contains_table": true,
|
| 29 |
+
"evidence": "Vestry employment table: Battersea 12, Bermondsey 6, Camberwell 13 and their holiday/wet-weather entries match."
|
| 30 |
+
},
|
| 31 |
+
{
|
| 32 |
+
"table_id": "10182541800610028",
|
| 33 |
+
"b_number": "b18254184",
|
| 34 |
+
"scan": 62,
|
| 35 |
+
"split": "train",
|
| 36 |
+
"reviewer": "agent-visual-review",
|
| 37 |
+
"page_contains_table": true,
|
| 38 |
+
"evidence": "St Marylebone Table V dated February 27 1904; Measles 4, Whooping Cough 2, Diphtheria 2 match."
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"table_id": "10198833400700049",
|
| 42 |
+
"b_number": "b19883341",
|
| 43 |
+
"scan": 71,
|
| 44 |
+
"split": "train",
|
| 45 |
+
"reviewer": "agent-visual-review",
|
| 46 |
+
"page_contains_table": true,
|
| 47 |
+
"evidence": "London Hospital Table IX dated October 1 1859; brought-forward total46 and smallpox total2 match."
|
| 48 |
+
},
|
| 49 |
+
{
|
| 50 |
+
"table_id": "10199544600240007",
|
| 51 |
+
"b_number": "b19954463",
|
| 52 |
+
"scan": 21,
|
| 53 |
+
"split": "train",
|
| 54 |
+
"reviewer": "agent-visual-review",
|
| 55 |
+
"page_contains_table": true,
|
| 56 |
+
"evidence": "Lewisham receipts/expenditure year ending March25 1874: cash5835/14/4, bookkeeper21/2/3, General Purposes10212/13/11 match."
|
| 57 |
+
},
|
| 58 |
+
{
|
| 59 |
+
"table_id": "10182541900730029",
|
| 60 |
+
"b_number": "b18254196",
|
| 61 |
+
"scan": 74,
|
| 62 |
+
"split": "train",
|
| 63 |
+
"reviewer": "agent-visual-review",
|
| 64 |
+
"page_contains_table": true,
|
| 65 |
+
"evidence": "St Marylebone Table III dated March4 1905: Measles4, Scarlet Fever2, Whooping Cough2 match."
|
| 66 |
+
},
|
| 67 |
+
{
|
| 68 |
+
"table_id": "10182513500350020",
|
| 69 |
+
"b_number": "b18251353",
|
| 70 |
+
"scan": 36,
|
| 71 |
+
"split": "train",
|
| 72 |
+
"reviewer": "agent-visual-review",
|
| 73 |
+
"page_contains_table": true,
|
| 74 |
+
"evidence": "St Pancras Schedule B dated December26 1857: Measles16, Scarlatina12, Hooping Cough14 match; original CSV retains OCR errors."
|
| 75 |
+
}
|
| 76 |
+
]
|
| 77 |
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"10182507101080033": {
|
| 3 |
+
"scan": 109,
|
| 4 |
+
"method": "agent-visual-review",
|
| 5 |
+
"reason": "Rates table for 1901-2 with Clapham, Putney, Streatham, Tooting and Wandsworth matches scan109: relief of poor1s10d each; total rates7s1d/7s1d/7s2d/6s11d/7s3-and-a-half-d. Source fraction transcription remains imperfect. This fresh-sample candidate was unresolved automatically (margin0.072), then retained after independent agent image review."
|
| 6 |
+
},
|
| 7 |
+
"10199535100160005": {
|
| 8 |
+
"scan": 14,
|
| 9 |
+
"method": "agent-visual-review",
|
| 10 |
+
"reason": "FINANCE COMMITTEE table matches scan 14: meetings total 16; Bennell 4/1/3/4 total 12; Chamberlen 6/0/3/5 total 14; Easton 1/2/2/5 total 10; June 1881 retirement/election notes also match. Low automated margin reflects similar neighbouring table content."
|
| 11 |
+
}
|
| 12 |
+
}
|
|
The diff for this file is too large to render.
See raw diff
|
|
|
|
@@ -0,0 +1,608 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"selection": {
|
| 3 |
+
"seed": 20260909,
|
| 4 |
+
"original_test_rows": 30,
|
| 5 |
+
"previously_flagged_rows": 20,
|
| 6 |
+
"unflagged_rows": 10,
|
| 7 |
+
"excluded_original_audit_30_tables": true,
|
| 8 |
+
"table_items": 58,
|
| 9 |
+
"distinct_candidate_images": 44,
|
| 10 |
+
"scope": "Purposive risk-enriched test sample; alignment only, not population error estimate or transcription accuracy."
|
| 11 |
+
},
|
| 12 |
+
"automated_decisions_before_visual_adjudication": {
|
| 13 |
+
"moved": 32,
|
| 14 |
+
"retained": 25,
|
| 15 |
+
"unresolved": 1
|
| 16 |
+
},
|
| 17 |
+
"candidate_visual_results": {
|
| 18 |
+
"aligned": 58,
|
| 19 |
+
"misaligned": 0
|
| 20 |
+
},
|
| 21 |
+
"post_review_adjudication": {
|
| 22 |
+
"table_id": "10182507101080033",
|
| 23 |
+
"decision": "retain original scan109",
|
| 24 |
+
"reason": "Automated low-margin candidate confirmed by independent agent visual review; threshold unchanged."
|
| 25 |
+
},
|
| 26 |
+
"checks": [
|
| 27 |
+
{
|
| 28 |
+
"table_id": "10182486700070001",
|
| 29 |
+
"verdict": "aligned",
|
| 30 |
+
"evidence": "Printed page4 shows birth excess1867=3365,1866=2873,1865=2712 through1862=2363 below births table.",
|
| 31 |
+
"reviewer": "independent-agent-visual-review",
|
| 32 |
+
"b_number": "b18248676",
|
| 33 |
+
"scan": 8,
|
| 34 |
+
"original_scan": 8,
|
| 35 |
+
"risk_flag": true
|
| 36 |
+
},
|
| 37 |
+
{
|
| 38 |
+
"table_id": "10182486700070000",
|
| 39 |
+
"verdict": "aligned",
|
| 40 |
+
"evidence": "Births table on printed page4: first quarter west474/485/959, east556/456/1012; grand total7374.",
|
| 41 |
+
"reviewer": "independent-agent-visual-review",
|
| 42 |
+
"b_number": "b18248676",
|
| 43 |
+
"scan": 8,
|
| 44 |
+
"original_scan": 8,
|
| 45 |
+
"risk_flag": true
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"table_id": "10182486700110005",
|
| 49 |
+
"verdict": "aligned",
|
| 50 |
+
"evidence": "Bottom fever table printed page8:1860 deaths76/cases152,1866 125/353,1867 97/223.",
|
| 51 |
+
"reviewer": "independent-agent-visual-review",
|
| 52 |
+
"b_number": "b18248676",
|
| 53 |
+
"scan": 12,
|
| 54 |
+
"original_scan": 12,
|
| 55 |
+
"risk_flag": true
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"table_id": "10182486700110004",
|
| 59 |
+
"verdict": "aligned",
|
| 60 |
+
"evidence": "Middle whooping cough table:1860 92/304,1861 209/529,1867 115/330.",
|
| 61 |
+
"reviewer": "independent-agent-visual-review",
|
| 62 |
+
"b_number": "b18248676",
|
| 63 |
+
"scan": 12,
|
| 64 |
+
"original_scan": 12,
|
| 65 |
+
"risk_flag": true
|
| 66 |
+
},
|
| 67 |
+
{
|
| 68 |
+
"table_id": "10182486700110003",
|
| 69 |
+
"verdict": "aligned",
|
| 70 |
+
"evidence": "Top scarlet fever table:1860 135/253,1863 392/672,1867 144/641.",
|
| 71 |
+
"reviewer": "independent-agent-visual-review",
|
| 72 |
+
"b_number": "b18248676",
|
| 73 |
+
"scan": 12,
|
| 74 |
+
"original_scan": 12,
|
| 75 |
+
"risk_flag": true
|
| 76 |
+
},
|
| 77 |
+
{
|
| 78 |
+
"table_id": "10182486700230012",
|
| 79 |
+
"verdict": "aligned",
|
| 80 |
+
"evidence": "TableIII Dec30 1866\u2013Jan26 1867; houses123/123/120/77 total443 and water supplied7/4/2/7 total20.",
|
| 81 |
+
"reviewer": "independent-agent-visual-review",
|
| 82 |
+
"b_number": "b18248676",
|
| 83 |
+
"scan": 24,
|
| 84 |
+
"original_scan": 8,
|
| 85 |
+
"risk_flag": true
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"table_id": "10182486700230011",
|
| 89 |
+
"verdict": "aligned",
|
| 90 |
+
"evidence": "TableII four weeks ending Jan26 1867; smallpox1/1/25/5/2 total34; grand totals94/12/964/667/550/195=2482.",
|
| 91 |
+
"reviewer": "independent-agent-visual-review",
|
| 92 |
+
"b_number": "b18248676",
|
| 93 |
+
"scan": 24,
|
| 94 |
+
"original_scan": 8,
|
| 95 |
+
"risk_flag": true
|
| 96 |
+
},
|
| 97 |
+
{
|
| 98 |
+
"table_id": "10182486700310018",
|
| 99 |
+
"verdict": "aligned",
|
| 100 |
+
"evidence": "TableIII Feb24\u2013Mar30 1867; houses147/172/96 total415; traps40/13/5=58.",
|
| 101 |
+
"reviewer": "independent-agent-visual-review",
|
| 102 |
+
"b_number": "b18248676",
|
| 103 |
+
"scan": 32,
|
| 104 |
+
"original_scan": 8,
|
| 105 |
+
"risk_flag": true
|
| 106 |
+
},
|
| 107 |
+
{
|
| 108 |
+
"table_id": "10182486700310017",
|
| 109 |
+
"verdict": "aligned",
|
| 110 |
+
"evidence": "TableII five weeks ending Mar30 1867; smallpox43/5/5=53; grand totals126/17/1190/1029/709/273=3344.",
|
| 111 |
+
"reviewer": "independent-agent-visual-review",
|
| 112 |
+
"b_number": "b18248676",
|
| 113 |
+
"scan": 32,
|
| 114 |
+
"original_scan": 8,
|
| 115 |
+
"risk_flag": true
|
| 116 |
+
},
|
| 117 |
+
{
|
| 118 |
+
"table_id": "10182486700350021",
|
| 119 |
+
"verdict": "aligned",
|
| 120 |
+
"evidence": "Table III Mar31\u2013Apr27 1867: houses164/305=469; traps28/19=47; water16/5=21.",
|
| 121 |
+
"reviewer": "independent-agent-visual-review",
|
| 122 |
+
"b_number": "b18248676",
|
| 123 |
+
"scan": 36,
|
| 124 |
+
"original_scan": 12,
|
| 125 |
+
"risk_flag": true
|
| 126 |
+
},
|
| 127 |
+
{
|
| 128 |
+
"table_id": "10182486700350020",
|
| 129 |
+
"verdict": "aligned",
|
| 130 |
+
"evidence": "Table II four weeks ending Apr27 1867; smallpox35/4/9=48; grand totals84/29/812/750/582/232=2489.",
|
| 131 |
+
"reviewer": "independent-agent-visual-review",
|
| 132 |
+
"b_number": "b18248676",
|
| 133 |
+
"scan": 36,
|
| 134 |
+
"original_scan": 12,
|
| 135 |
+
"risk_flag": true
|
| 136 |
+
},
|
| 137 |
+
{
|
| 138 |
+
"table_id": "10182486700550034",
|
| 139 |
+
"verdict": "aligned",
|
| 140 |
+
"evidence": "Table I deaths five weeks ending Sept28 1867: all causes west146/east187 total333, respiratory total31 and bronchitis18.",
|
| 141 |
+
"reviewer": "independent-agent-visual-review",
|
| 142 |
+
"b_number": "b18248676",
|
| 143 |
+
"scan": 56,
|
| 144 |
+
"original_scan": 8,
|
| 145 |
+
"risk_flag": true
|
| 146 |
+
},
|
| 147 |
+
{
|
| 148 |
+
"table_id": "10182507101080033",
|
| 149 |
+
"verdict": "aligned",
|
| 150 |
+
"evidence": "Landscape rates table for1901\u20132, Clapham/Putney/Streatham/Tooting/Wandsworth; relief of poor1s10d each and total rates7s1d/7s1d/7s2d/6s11d/7s3\u00bdd. CSV fraction transcription imperfect, page alignment clear.",
|
| 151 |
+
"reviewer": "independent-agent-visual-review",
|
| 152 |
+
"b_number": "b18250713",
|
| 153 |
+
"scan": 109,
|
| 154 |
+
"original_scan": 109,
|
| 155 |
+
"risk_flag": true
|
| 156 |
+
},
|
| 157 |
+
{
|
| 158 |
+
"table_id": "10182507101180042",
|
| 159 |
+
"verdict": "aligned",
|
| 160 |
+
"evidence": "Statement of Contracts continued, printed119: June24 1903 W.E.Mason sanitary fittings Tooting Broadway; July8 F.J.Coxhead river wall Wandsworth; Jan6 1904 John Hollway old iron and George Rowe four slop vans.",
|
| 161 |
+
"reviewer": "independent-agent-visual-review",
|
| 162 |
+
"b_number": "b18250713",
|
| 163 |
+
"scan": 119,
|
| 164 |
+
"original_scan": 119,
|
| 165 |
+
"risk_flag": false
|
| 166 |
+
},
|
| 167 |
+
{
|
| 168 |
+
"table_id": "10199535100590031",
|
| 169 |
+
"verdict": "aligned",
|
| 170 |
+
"evidence": "General Permanent Works Account continued, March 31 1882; brought-forward 9276 10 10 and 5723 11 3, Glenthorne Road 387 6 5, balance 1862 15 3 all visible. Alignment only; minor CSV OCR/cell differences not audited.",
|
| 171 |
+
"reviewer": "independent-agent-visual-review",
|
| 172 |
+
"b_number": "b19953513",
|
| 173 |
+
"scan": 57,
|
| 174 |
+
"original_scan": 55,
|
| 175 |
+
"risk_flag": true
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"table_id": "10199556700100004",
|
| 179 |
+
"verdict": "aligned",
|
| 180 |
+
"evidence": "Contracts for Performance of Special Works; Silwood Street / William Webb 25 February 1878, price 430 and completed quantity 230; Luxford Street / Charles Kent February 1879, 178 matches. Alignment only.",
|
| 181 |
+
"reviewer": "independent-agent-visual-review",
|
| 182 |
+
"b_number": "b19955674",
|
| 183 |
+
"scan": 8,
|
| 184 |
+
"original_scan": 8,
|
| 185 |
+
"risk_flag": true
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"table_id": "10199556700420018",
|
| 189 |
+
"verdict": "aligned",
|
| 190 |
+
"evidence": "Lower Table No.5 matches caption 1869\u20131878 and 1879; Scarlet Fever 1870=124, average25.8,1879=76; total1879=188 and London12256 visible. Alignment only, not full cell verification.",
|
| 191 |
+
"reviewer": "independent-agent-visual-review",
|
| 192 |
+
"b_number": "b19955674",
|
| 193 |
+
"scan": 40,
|
| 194 |
+
"original_scan": 8,
|
| 195 |
+
"risk_flag": true
|
| 196 |
+
},
|
| 197 |
+
{
|
| 198 |
+
"table_id": "10199556700420017",
|
| 199 |
+
"verdict": "aligned",
|
| 200 |
+
"evidence": "Upper Table No.4 mortality 1879; Zymotic188/6.7/207, Pulmonary213/6.3/235, Convulsive62/1.9/76 visible. Alignment only.",
|
| 201 |
+
"reviewer": "independent-agent-visual-review",
|
| 202 |
+
"b_number": "b19955674",
|
| 203 |
+
"scan": 40,
|
| 204 |
+
"original_scan": 8,
|
| 205 |
+
"risk_flag": true
|
| 206 |
+
},
|
| 207 |
+
{
|
| 208 |
+
"table_id": "10199553300660025",
|
| 209 |
+
"verdict": "aligned",
|
| 210 |
+
"evidence": "Both Defects of Unmetered and Metered Lamps tables visible, year ending March31 1883. Upper sequence34,23,3,1,25,100,51,85,457,19,32,247,455 and lower ending6,11 match. Alignment only.",
|
| 211 |
+
"reviewer": "independent-agent-visual-review",
|
| 212 |
+
"b_number": "b19955339",
|
| 213 |
+
"scan": 66,
|
| 214 |
+
"original_scan": 68,
|
| 215 |
+
"risk_flag": true
|
| 216 |
+
},
|
| 217 |
+
{
|
| 218 |
+
"table_id": "10199556700070001",
|
| 219 |
+
"verdict": "aligned",
|
| 220 |
+
"evidence": "General Abstract of Works year ending25March1880, paving/general purposes; Paving Jobbing320 10 0, ditto182 7 8, Watering201 8 8 and Dust780 visible. CSV has minor monetary transcription differences; pairing clear, not cell audit.",
|
| 221 |
+
"reviewer": "independent-agent-visual-review",
|
| 222 |
+
"b_number": "b19955674",
|
| 223 |
+
"scan": 5,
|
| 224 |
+
"original_scan": 5,
|
| 225 |
+
"risk_flag": true
|
| 226 |
+
},
|
| 227 |
+
{
|
| 228 |
+
"table_id": "10199556700390015",
|
| 229 |
+
"verdict": "aligned",
|
| 230 |
+
"evidence": "Bottom TableNo2 annual birth/mortality/death rates1879 and10years; 1879 row41.3,21.7,23.7,15.5,44.2,114; 1869 ends45.2,49 visible. Alignment only.",
|
| 231 |
+
"reviewer": "independent-agent-visual-review",
|
| 232 |
+
"b_number": "b19955674",
|
| 233 |
+
"scan": 37,
|
| 234 |
+
"original_scan": 5,
|
| 235 |
+
"risk_flag": true
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"table_id": "10199556700080002",
|
| 239 |
+
"verdict": "aligned",
|
| 240 |
+
"evidence": "General Abstract of Works Lighting Rate ending25March1880; Surrey/South Metropolitan Gas2166 4 1, lamp columns26 2 0, Sugg20 10 0, sundries46 12 0 visible. Scan includes fractional pennies omitted in CSV; pairing clear, no cell accuracy certification.",
|
| 241 |
+
"reviewer": "independent-agent-visual-review",
|
| 242 |
+
"b_number": "b19955674",
|
| 243 |
+
"scan": 6,
|
| 244 |
+
"original_scan": 6,
|
| 245 |
+
"risk_flag": true
|
| 246 |
+
},
|
| 247 |
+
{
|
| 248 |
+
"table_id": "10199552400810024",
|
| 249 |
+
"verdict": "aligned",
|
| 250 |
+
"evidence": "TableII Deaths July5\u2013September27 1873; July5 row ends5,5,15,1,33, Aug2 total47 and total row diarrhea70/phthisis89/bronchitis39/other192/violent27/total464 visible. Alignment only.",
|
| 251 |
+
"reviewer": "independent-agent-visual-review",
|
| 252 |
+
"b_number": "b19955248",
|
| 253 |
+
"scan": 79,
|
| 254 |
+
"original_scan": 16,
|
| 255 |
+
"risk_flag": true
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"table_id": "10199552400730018",
|
| 259 |
+
"verdict": "aligned",
|
| 260 |
+
"evidence": "TableII thirteen weeks endingJune28 1873; April5 row phthisis9,bronchitis9,other17,violent3,total42; total row7,1,7,30,6,5,3 and95,79,219,24,476 visible. Alignment only.",
|
| 261 |
+
"reviewer": "independent-agent-visual-review",
|
| 262 |
+
"b_number": "b19955248",
|
| 263 |
+
"scan": 71,
|
| 264 |
+
"original_scan": 16,
|
| 265 |
+
"risk_flag": true
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"table_id": "10199552400870031",
|
| 269 |
+
"verdict": "aligned",
|
| 270 |
+
"evidence": "TableII thirteen weeks endingChristmas1873; Oct4 ends4,5,13,total26; Nov8 ends12,12,28,3,58; total row78,115,209,21,480 visible. CSV minor week/number transcription errors do not alter page alignment.",
|
| 271 |
+
"reviewer": "independent-agent-visual-review",
|
| 272 |
+
"b_number": "b19955248",
|
| 273 |
+
"scan": 85,
|
| 274 |
+
"original_scan": 16,
|
| 275 |
+
"risk_flag": true
|
| 276 |
+
},
|
| 277 |
+
{
|
| 278 |
+
"table_id": "10199552400820025",
|
| 279 |
+
"verdict": "aligned",
|
| 280 |
+
"evidence": "TableIII Paddington quarter endingSeptember27 1873; brought-forward168,19,54,58,35,10,344; diarrhea63 under5,total67; bottom totals215,27,70,78,60,14,464 visible. Alignment only; dense table not cell-by-cell audited.",
|
| 281 |
+
"reviewer": "independent-agent-visual-review",
|
| 282 |
+
"b_number": "b19955248",
|
| 283 |
+
"scan": 80,
|
| 284 |
+
"original_scan": 17,
|
| 285 |
+
"risk_flag": true
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"table_id": "10199552400740019",
|
| 289 |
+
"verdict": "aligned",
|
| 290 |
+
"evidence": "TableIII Paddington quarter endingJune28 1873; brought-forward144,12,67,66,63,8,360; Whooping Cough29+1=30; Bronchitis15,2,10,13,3,total43; bottom age totals182,16,86,89,88,15 visible. CSV final total appears mistranscribed; page alignment clear.",
|
| 291 |
+
"reviewer": "independent-agent-visual-review",
|
| 292 |
+
"b_number": "b19955248",
|
| 293 |
+
"scan": 72,
|
| 294 |
+
"original_scan": 17,
|
| 295 |
+
"risk_flag": true
|
| 296 |
+
},
|
| 297 |
+
{
|
| 298 |
+
"table_id": "10199552400880032",
|
| 299 |
+
"verdict": "aligned",
|
| 300 |
+
"evidence": "TableIII Paddington quarter endingDecember25 1873; Measles14, Whooping Cough11, Fever1/6/2/3 total12; Consumption4/2/26/14/4 total50 and Bronchitis total66 visible. CSV contains apparent cell OCR errors; alignment only.",
|
| 301 |
+
"reviewer": "independent-agent-visual-review",
|
| 302 |
+
"b_number": "b19955248",
|
| 303 |
+
"scan": 86,
|
| 304 |
+
"original_scan": 17,
|
| 305 |
+
"risk_flag": true
|
| 306 |
+
},
|
| 307 |
+
{
|
| 308 |
+
"table_id": "10199552400800023",
|
| 309 |
+
"verdict": "aligned",
|
| 310 |
+
"evidence": "TableI births/deaths July5\u2013September27 1873; July5=45,20,18,13,63,33 and total531,318,182,146,713,464 visible. Alignment only.",
|
| 311 |
+
"reviewer": "independent-agent-visual-review",
|
| 312 |
+
"b_number": "b19955248",
|
| 313 |
+
"scan": 78,
|
| 314 |
+
"original_scan": 15,
|
| 315 |
+
"risk_flag": true
|
| 316 |
+
},
|
| 317 |
+
{
|
| 318 |
+
"table_id": "10199552400860030",
|
| 319 |
+
"verdict": "aligned",
|
| 320 |
+
"evidence": "TableI October4\u2013December27 1873 with Mean Temper column; Oct4=32,17,11,9,43,26,57.2; total500,310,168,170,668,480 visible. Alignment only; source/cell inconsistencies not adjudicated.",
|
| 321 |
+
"reviewer": "independent-agent-visual-review",
|
| 322 |
+
"b_number": "b19955248",
|
| 323 |
+
"scan": 84,
|
| 324 |
+
"original_scan": 15,
|
| 325 |
+
"risk_flag": true
|
| 326 |
+
},
|
| 327 |
+
{
|
| 328 |
+
"table_id": "10199552400720017",
|
| 329 |
+
"verdict": "aligned",
|
| 330 |
+
"evidence": "TableI April5\u2013June28 1873; April5=43,20,20,22,63,42; June28=41,22,16,7,57,29; total487,301,186,175,673,476 visible. Alignment only.",
|
| 331 |
+
"reviewer": "independent-agent-visual-review",
|
| 332 |
+
"b_number": "b19955248",
|
| 333 |
+
"scan": 70,
|
| 334 |
+
"original_scan": 15,
|
| 335 |
+
"risk_flag": true
|
| 336 |
+
},
|
| 337 |
+
{
|
| 338 |
+
"table_id": "10198834200390013",
|
| 339 |
+
"verdict": "aligned",
|
| 340 |
+
"evidence": "London weekly comparison July6\u2013September28; diarrhea54,115,170,196 sequence, temperature61.9/60.0/59.2 and London deaths1130,1262,1230 visible; final Whitechapel46 matches. Alignment only.",
|
| 341 |
+
"reviewer": "independent-agent-visual-review",
|
| 342 |
+
"b_number": "b19883420",
|
| 343 |
+
"scan": 40,
|
| 344 |
+
"original_scan": 8,
|
| 345 |
+
"risk_flag": true
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"table_id": "10198834200590022",
|
| 349 |
+
"verdict": "aligned",
|
| 350 |
+
"evidence": "London weekly comparison Oct5\u2013Dec28; diarrhea78,59,37,27; first temperature48.2,rain0.05,London1182,Whitechapel36; Dec14 London1700/Whitechapel52 visible. Alignment only.",
|
| 351 |
+
"reviewer": "independent-agent-visual-review",
|
| 352 |
+
"b_number": "b19883420",
|
| 353 |
+
"scan": 60,
|
| 354 |
+
"original_scan": 8,
|
| 355 |
+
"risk_flag": true
|
| 356 |
+
},
|
| 357 |
+
{
|
| 358 |
+
"table_id": "10198824600120006",
|
| 359 |
+
"verdict": "aligned",
|
| 360 |
+
"evidence": "Table3 Birth and Death Rates Carshalton1922\u20131947; 1922 population14,240/rates19.7,8.8,50,10.6; 1932 population32,280/rates15.05,7.9,47.3,3.89;1947 population61,270/rates17.0,7.8,22.8,0.0 visible. CSV OCR mistakes remain; pairing clear.",
|
| 361 |
+
"reviewer": "independent-agent-visual-review",
|
| 362 |
+
"b_number": "b19882464",
|
| 363 |
+
"scan": 13,
|
| 364 |
+
"original_scan": 13,
|
| 365 |
+
"risk_flag": false
|
| 366 |
+
},
|
| 367 |
+
{
|
| 368 |
+
"table_id": "10199559600190012",
|
| 369 |
+
"verdict": "aligned",
|
| 370 |
+
"evidence": "TableNo9 StGeorge the Martyr Southwark year endingMarch25 1885; Zymotic143,151,294 with age sequence104,82,40,19,11; Tubercular73,69,142 and Brain/Nerves128,82,210 visible. Dense lower CSV rows are visibly garbled/shifted; this confirms page alignment, not OCR/cell quality.",
|
| 371 |
+
"reviewer": "independent-agent-visual-review",
|
| 372 |
+
"b_number": "b19955960",
|
| 373 |
+
"scan": 17,
|
| 374 |
+
"original_scan": 17,
|
| 375 |
+
"risk_flag": false
|
| 376 |
+
},
|
| 377 |
+
{
|
| 378 |
+
"table_id": "10199531803580124",
|
| 379 |
+
"verdict": "aligned",
|
| 380 |
+
"evidence": "Upper Samaritan Gift table on printed page 353; 79 people at 0 10 0 giving 39 10 0, 171 at 0 5 0 giving 42 15 0, 466 recipients and total 131 5 0 visible. Alignment only; some CSV stray characters remain.",
|
| 381 |
+
"reviewer": "independent-agent-visual-review",
|
| 382 |
+
"b_number": "b19953185",
|
| 383 |
+
"scan": 359,
|
| 384 |
+
"original_scan": 359,
|
| 385 |
+
"risk_flag": false
|
| 386 |
+
},
|
| 387 |
+
{
|
| 388 |
+
"table_id": "10199531803580125",
|
| 389 |
+
"verdict": "aligned",
|
| 390 |
+
"evidence": "Lower Special Gifts table; Harriott Smith 30 0 0, Michael Arnott 1 10 0, Thomas Hunt 2 13 4, William Matthew 5 12 4, total 60 15 8 visible. Alignment only.",
|
| 391 |
+
"reviewer": "independent-agent-visual-review",
|
| 392 |
+
"b_number": "b19953185",
|
| 393 |
+
"scan": 359,
|
| 394 |
+
"original_scan": 359,
|
| 395 |
+
"risk_flag": false
|
| 396 |
+
},
|
| 397 |
+
{
|
| 398 |
+
"table_id": "10199559600230016",
|
| 399 |
+
"verdict": "aligned",
|
| 400 |
+
"evidence": "Removal of Nuisances continued, Inspector John Edwards; Apartments disinfected 94, Yards paved 143, Houses cleansed throughout 147, Yards limewashed 183, Water to closets 193 and total 1497 visible. Alignment only.",
|
| 401 |
+
"reviewer": "independent-agent-visual-review",
|
| 402 |
+
"b_number": "b19955960",
|
| 403 |
+
"scan": 21,
|
| 404 |
+
"original_scan": 21,
|
| 405 |
+
"risk_flag": false
|
| 406 |
+
},
|
| 407 |
+
{
|
| 408 |
+
"table_id": "10198222401650066",
|
| 409 |
+
"verdict": "aligned",
|
| 410 |
+
"evidence": "Milk-sampling table on printed page 80: quarters have 147/115/71/112 samples; first two non-genuine counts 2/4 and adulteration 1.3/3.9 match.",
|
| 411 |
+
"reviewer": "independent-agent-visual-review",
|
| 412 |
+
"b_number": "b19822248",
|
| 413 |
+
"scan": 166,
|
| 414 |
+
"original_scan": 167,
|
| 415 |
+
"risk_flag": true
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"table_id": "10198222400810035",
|
| 419 |
+
"verdict": "aligned",
|
| 420 |
+
"evidence": "Statistical report for 1928, printed page 38: 1927/1928 attendances 5809/5728, new persons 678/705, sisters' home visits 2744/2339.",
|
| 421 |
+
"reviewer": "independent-agent-visual-review",
|
| 422 |
+
"b_number": "b19822248",
|
| 423 |
+
"scan": 82,
|
| 424 |
+
"original_scan": 83,
|
| 425 |
+
"risk_flag": true
|
| 426 |
+
},
|
| 427 |
+
{
|
| 428 |
+
"table_id": "10198222400810036",
|
| 429 |
+
"verdict": "aligned",
|
| 430 |
+
"evidence": "Lower All New Persons Examined table on printed page 38: Contacts 19/7/263, Other New Persons 119/17/280/416, totals 138/24/543/705. CSV contact total transcription imperfect but page identity clear.",
|
| 431 |
+
"reviewer": "independent-agent-visual-review",
|
| 432 |
+
"b_number": "b19822248",
|
| 433 |
+
"scan": 82,
|
| 434 |
+
"original_scan": 83,
|
| 435 |
+
"risk_flag": true
|
| 436 |
+
},
|
| 437 |
+
{
|
| 438 |
+
"table_id": "10198222400200007",
|
| 439 |
+
"verdict": "aligned",
|
| 440 |
+
"evidence": "Ward death table below marriages on printed page 7: Moorfields 30/23/53 and 13.3/81.1; Hoxton 127/121/248; totals 763/618/1381 and 13.8/78.",
|
| 441 |
+
"reviewer": "independent-agent-visual-review",
|
| 442 |
+
"b_number": "b19822248",
|
| 443 |
+
"scan": 21,
|
| 444 |
+
"original_scan": 22,
|
| 445 |
+
"risk_flag": true
|
| 446 |
+
},
|
| 447 |
+
{
|
| 448 |
+
"table_id": "10198222400200006",
|
| 449 |
+
"verdict": "aligned",
|
| 450 |
+
"evidence": "Marriages table on printed page 7 with Shoreditch/London rates: 1920 1194/23.6/21.9; 1923 873/16.6/17.3; 1928 1033/20.6/18.9.",
|
| 451 |
+
"reviewer": "independent-agent-visual-review",
|
| 452 |
+
"b_number": "b19822248",
|
| 453 |
+
"scan": 21,
|
| 454 |
+
"original_scan": 22,
|
| 455 |
+
"risk_flag": true
|
| 456 |
+
},
|
| 457 |
+
{
|
| 458 |
+
"table_id": "10197942800250011",
|
| 459 |
+
"verdict": "aligned",
|
| 460 |
+
"evidence": "Landscape Birth/Death Rates table, 1898\u20131902 and six localities. Dagenham 1898 31.9/16.5, 1902 35.8/11.08; Havering 1902 13.6/11.4; Rainham/Wennington 1902 35.2/17.1 match.",
|
| 461 |
+
"reviewer": "independent-agent-visual-review",
|
| 462 |
+
"b_number": "b19794289",
|
| 463 |
+
"scan": 26,
|
| 464 |
+
"original_scan": 26,
|
| 465 |
+
"risk_flag": true
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"table_id": "10198222401350054",
|
| 469 |
+
"verdict": "aligned",
|
| 470 |
+
"evidence": "Printed page 65, Cases Confined at Home: midwife+doctor 19/2.5; midwife only 495/65.8; doctor+untrained woman 126/16.8; student+untrained woman 101/14.9.",
|
| 471 |
+
"reviewer": "independent-agent-visual-review",
|
| 472 |
+
"b_number": "b19822248",
|
| 473 |
+
"scan": 136,
|
| 474 |
+
"original_scan": 137,
|
| 475 |
+
"risk_flag": true
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"table_id": "10182507103680165",
|
| 479 |
+
"verdict": "aligned",
|
| 480 |
+
"evidence": "Printed page 109, Parish of Clapham North Ward, Table XLI house-to-house inspections. Pitcairn Street 39/18/46.15, Robertson Street 105/53/50.47; totals 830/467/56.26 and families 134/266/143/689.",
|
| 481 |
+
"reviewer": "independent-agent-visual-review",
|
| 482 |
+
"b_number": "b18250713",
|
| 483 |
+
"scan": 369,
|
| 484 |
+
"original_scan": 109,
|
| 485 |
+
"risk_flag": true
|
| 486 |
+
},
|
| 487 |
+
{
|
| 488 |
+
"table_id": "10198222400160002",
|
| 489 |
+
"verdict": "aligned",
|
| 490 |
+
"evidence": "Landscape London/Shoreditch birth-death comparison for year ending 31 December 1928: London population 4469000 and birth rate15.9, Shoreditch100200/20.9; Moorfields3990 and infant mortality81; Acton11480 and infant mortality114.",
|
| 491 |
+
"reviewer": "independent-agent-visual-review",
|
| 492 |
+
"b_number": "b19822248",
|
| 493 |
+
"scan": 17,
|
| 494 |
+
"original_scan": 18,
|
| 495 |
+
"risk_flag": true
|
| 496 |
+
},
|
| 497 |
+
{
|
| 498 |
+
"table_id": "10198222400100000",
|
| 499 |
+
"verdict": "aligned",
|
| 500 |
+
"evidence": "Printed page2 Statistical Summary1928: area662.5acres, estimated population101200, marriages1033; births legitimate1031/985/2016 and illegitimate40/35/75; deaths1381 and infant deaths164.",
|
| 501 |
+
"reviewer": "independent-agent-visual-review",
|
| 502 |
+
"b_number": "b19822248",
|
| 503 |
+
"scan": 11,
|
| 504 |
+
"original_scan": 12,
|
| 505 |
+
"risk_flag": true
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"table_id": "10198760600520037",
|
| 509 |
+
"verdict": "aligned",
|
| 510 |
+
"evidence": "Landscape Aural Clinic table, printed51: new/old columns and disease groups match. Acute suppurative otitis totals3/3, Opinion on Tonsils totals43/14, Nasal Conditions34/31; total row38/17 under treatment and124/82 overall.",
|
| 511 |
+
"reviewer": "independent-agent-visual-review",
|
| 512 |
+
"b_number": "b19876063",
|
| 513 |
+
"scan": 53,
|
| 514 |
+
"original_scan": 53,
|
| 515 |
+
"risk_flag": true
|
| 516 |
+
},
|
| 517 |
+
{
|
| 518 |
+
"table_id": "10197869401210077",
|
| 519 |
+
"verdict": "aligned",
|
| 520 |
+
"evidence": "Printed page118 Table XVI(C), beds for tuberculosis: Croydon Borough Sanatorium North Cheam94 adult pulmonary/94 total; Mayday Hospital Thornton Heath64 with shared pulmonary/non-pulmonary-use note.",
|
| 521 |
+
"reviewer": "independent-agent-visual-review",
|
| 522 |
+
"b_number": "b19786943",
|
| 523 |
+
"scan": 122,
|
| 524 |
+
"original_scan": 122,
|
| 525 |
+
"risk_flag": false
|
| 526 |
+
},
|
| 527 |
+
{
|
| 528 |
+
"table_id": "10197869401210078",
|
| 529 |
+
"verdict": "aligned",
|
| 530 |
+
"evidence": "Same page lower Table XVI(D), residential treatment/observation: doubtful cases totals4/29/30/1/2; pulmonary totals122/269/206/51/134; grand totals161/329/273/53/164.",
|
| 531 |
+
"reviewer": "independent-agent-visual-review",
|
| 532 |
+
"b_number": "b19786943",
|
| 533 |
+
"scan": 122,
|
| 534 |
+
"original_scan": 122,
|
| 535 |
+
"risk_flag": false
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"table_id": "10197942800260012",
|
| 539 |
+
"verdict": "aligned",
|
| 540 |
+
"evidence": "Printed page27 zymotic deaths table with Dagenham/Havering/Upminster/Hornchurch/Rainham/Great Warley. Smallpox subsequent columns1/2/3/3, diphtheria Rainham2/Great Warley1, enteric Dagenham3/Hornchurch3 match; CSV differs in some Dagenham cells but page identity is clear.",
|
| 541 |
+
"reviewer": "independent-agent-visual-review",
|
| 542 |
+
"b_number": "b19794289",
|
| 543 |
+
"scan": 27,
|
| 544 |
+
"original_scan": 27,
|
| 545 |
+
"risk_flag": false
|
| 546 |
+
},
|
| 547 |
+
{
|
| 548 |
+
"table_id": "10197855600060002",
|
| 549 |
+
"verdict": "aligned",
|
| 550 |
+
"evidence": "Printed page7 Bromley five-year rates1894\u20131898. Infectious diseases1.68/1.02/2.5/1.16/2.15; diarrhoea .42/.73/.39/.66/1.40; children-under5 all causes3.9/3.9/4.6/3.2/5.0.",
|
| 551 |
+
"reviewer": "independent-agent-visual-review",
|
| 552 |
+
"b_number": "b19785562",
|
| 553 |
+
"scan": 7,
|
| 554 |
+
"original_scan": 7,
|
| 555 |
+
"risk_flag": false
|
| 556 |
+
},
|
| 557 |
+
{
|
| 558 |
+
"table_id": "10198760600530038",
|
| 559 |
+
"verdict": "aligned",
|
| 560 |
+
"evidence": "Printed page52 treatment for uncleanliness: school nurses93 visits, examinations17376, infected315 (asterisk footnote), percentage1.8; caption and three-value table match.",
|
| 561 |
+
"reviewer": "independent-agent-visual-review",
|
| 562 |
+
"b_number": "b19876063",
|
| 563 |
+
"scan": 54,
|
| 564 |
+
"original_scan": 54,
|
| 565 |
+
"risk_flag": false
|
| 566 |
+
},
|
| 567 |
+
{
|
| 568 |
+
"table_id": "10198760600530039",
|
| 569 |
+
"verdict": "aligned",
|
| 570 |
+
"evidence": "Printed page52 immediately below uncleanliness counts: five-year percentages1936=2.3,1937=1.7,1938=1.5,1939=1.5,1940=1.8.",
|
| 571 |
+
"reviewer": "independent-agent-visual-review",
|
| 572 |
+
"b_number": "b19876063",
|
| 573 |
+
"scan": 54,
|
| 574 |
+
"original_scan": 54,
|
| 575 |
+
"risk_flag": false
|
| 576 |
+
},
|
| 577 |
+
{
|
| 578 |
+
"table_id": "10182516300250024",
|
| 579 |
+
"verdict": "aligned",
|
| 580 |
+
"evidence": "Bottom Tubercular Diseases table on printed page20: Regent's Park121/3.0/157.5, Gray's Inn Lane110/3.5/149.6; St Pancras642/2.6/131.7.",
|
| 581 |
+
"reviewer": "independent-agent-visual-review",
|
| 582 |
+
"b_number": "b18251638",
|
| 583 |
+
"scan": 26,
|
| 584 |
+
"original_scan": 26,
|
| 585 |
+
"risk_flag": false
|
| 586 |
+
},
|
| 587 |
+
{
|
| 588 |
+
"table_id": "10182516300250023",
|
| 589 |
+
"verdict": "aligned",
|
| 590 |
+
"evidence": "Middle Pulmonary Diseases table on printed page20: Regent's Park154/3.9/200.5, Somers Town205/5.9/232.9, Kentish Town326/3.5/202.7; total1013/4.2/207.7.",
|
| 591 |
+
"reviewer": "independent-agent-visual-review",
|
| 592 |
+
"b_number": "b18251638",
|
| 593 |
+
"scan": 26,
|
| 594 |
+
"original_scan": 26,
|
| 595 |
+
"risk_flag": false
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"table_id": "10182516300250022",
|
| 599 |
+
"verdict": "aligned",
|
| 600 |
+
"evidence": "Top Puerperal Fever on printed page20, nine deaths/six fewer than1885. Subdistrict deaths Regent's Park0, Tottenham Court1, Gray's Inn Lane0, Somers Town4, Camden2, Kentish2, total St Pancras9.",
|
| 601 |
+
"reviewer": "independent-agent-visual-review",
|
| 602 |
+
"b_number": "b18251638",
|
| 603 |
+
"scan": 26,
|
| 604 |
+
"original_scan": 26,
|
| 605 |
+
"risk_flag": false
|
| 606 |
+
}
|
| 607 |
+
]
|
| 608 |
+
}
|
|
@@ -0,0 +1,251 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"scope": "Regression against earlier 30-table agent image audit; not a new blinded sample or human-certified transcription.",
|
| 3 |
+
"prior_aligned_retained": 24,
|
| 4 |
+
"prior_wrong_scan_corrected": 6,
|
| 5 |
+
"checks": [
|
| 6 |
+
{
|
| 7 |
+
"table_id": "10198222400830037",
|
| 8 |
+
"prior_agent_review_aligned": false,
|
| 9 |
+
"old_scan": 85,
|
| 10 |
+
"final_scan": 84,
|
| 11 |
+
"final_decision": "moved",
|
| 12 |
+
"visual_adjudication": null
|
| 13 |
+
},
|
| 14 |
+
{
|
| 15 |
+
"table_id": "10199535100910056",
|
| 16 |
+
"prior_agent_review_aligned": true,
|
| 17 |
+
"old_scan": 89,
|
| 18 |
+
"final_scan": 89,
|
| 19 |
+
"final_decision": "retained",
|
| 20 |
+
"visual_adjudication": null
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"table_id": "10182534900600087",
|
| 24 |
+
"prior_agent_review_aligned": true,
|
| 25 |
+
"old_scan": 61,
|
| 26 |
+
"final_scan": 61,
|
| 27 |
+
"final_decision": "retained",
|
| 28 |
+
"visual_adjudication": null
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"table_id": "10182447500490031",
|
| 32 |
+
"prior_agent_review_aligned": true,
|
| 33 |
+
"old_scan": 50,
|
| 34 |
+
"final_scan": 50,
|
| 35 |
+
"final_decision": "retained",
|
| 36 |
+
"visual_adjudication": null
|
| 37 |
+
},
|
| 38 |
+
{
|
| 39 |
+
"table_id": "10197869701010077",
|
| 40 |
+
"prior_agent_review_aligned": true,
|
| 41 |
+
"old_scan": 102,
|
| 42 |
+
"final_scan": 102,
|
| 43 |
+
"final_decision": "retained",
|
| 44 |
+
"visual_adjudication": null
|
| 45 |
+
},
|
| 46 |
+
{
|
| 47 |
+
"table_id": "10199552400890033",
|
| 48 |
+
"prior_agent_review_aligned": false,
|
| 49 |
+
"old_scan": 18,
|
| 50 |
+
"final_scan": 87,
|
| 51 |
+
"final_decision": "moved",
|
| 52 |
+
"visual_adjudication": null
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"table_id": "10182534900740103",
|
| 56 |
+
"prior_agent_review_aligned": true,
|
| 57 |
+
"old_scan": 75,
|
| 58 |
+
"final_scan": 75,
|
| 59 |
+
"final_decision": "retained",
|
| 60 |
+
"visual_adjudication": null
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"table_id": "10198222400600023",
|
| 64 |
+
"prior_agent_review_aligned": false,
|
| 65 |
+
"old_scan": 62,
|
| 66 |
+
"final_scan": 61,
|
| 67 |
+
"final_decision": "moved",
|
| 68 |
+
"visual_adjudication": null
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"table_id": "10197942800050003",
|
| 72 |
+
"prior_agent_review_aligned": true,
|
| 73 |
+
"old_scan": 6,
|
| 74 |
+
"final_scan": 6,
|
| 75 |
+
"final_decision": "retained",
|
| 76 |
+
"visual_adjudication": null
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"table_id": "10199535100160005",
|
| 80 |
+
"prior_agent_review_aligned": true,
|
| 81 |
+
"old_scan": 14,
|
| 82 |
+
"final_scan": 14,
|
| 83 |
+
"final_decision": "retained",
|
| 84 |
+
"visual_adjudication": {
|
| 85 |
+
"scan": 14,
|
| 86 |
+
"method": "agent-visual-review",
|
| 87 |
+
"reason": "FINANCE COMMITTEE table matches scan 14: meetings total 16; Bennell 4/1/3/4 total 12; Chamberlen 6/0/3/5 total 14; Easton 1/2/2/5 total 10; June 1881 retirement/election notes also match. Low automated margin reflects similar neighbouring table content."
|
| 88 |
+
}
|
| 89 |
+
},
|
| 90 |
+
{
|
| 91 |
+
"table_id": "10199553300060000",
|
| 92 |
+
"prior_agent_review_aligned": true,
|
| 93 |
+
"old_scan": 6,
|
| 94 |
+
"final_scan": 6,
|
| 95 |
+
"final_decision": "retained",
|
| 96 |
+
"visual_adjudication": null
|
| 97 |
+
},
|
| 98 |
+
{
|
| 99 |
+
"table_id": "10182447500120007",
|
| 100 |
+
"prior_agent_review_aligned": true,
|
| 101 |
+
"old_scan": 13,
|
| 102 |
+
"final_scan": 13,
|
| 103 |
+
"final_decision": "retained",
|
| 104 |
+
"visual_adjudication": null
|
| 105 |
+
},
|
| 106 |
+
{
|
| 107 |
+
"table_id": "10199553301450073",
|
| 108 |
+
"prior_agent_review_aligned": false,
|
| 109 |
+
"old_scan": 3,
|
| 110 |
+
"final_scan": 145,
|
| 111 |
+
"final_decision": "moved",
|
| 112 |
+
"visual_adjudication": null
|
| 113 |
+
},
|
| 114 |
+
{
|
| 115 |
+
"table_id": "10199534500110002",
|
| 116 |
+
"prior_agent_review_aligned": true,
|
| 117 |
+
"old_scan": 9,
|
| 118 |
+
"final_scan": 9,
|
| 119 |
+
"final_decision": "retained",
|
| 120 |
+
"visual_adjudication": null
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"table_id": "10200569100490040",
|
| 124 |
+
"prior_agent_review_aligned": true,
|
| 125 |
+
"old_scan": 50,
|
| 126 |
+
"final_scan": 50,
|
| 127 |
+
"final_decision": "retained",
|
| 128 |
+
"visual_adjudication": null
|
| 129 |
+
},
|
| 130 |
+
{
|
| 131 |
+
"table_id": "10199552400660009",
|
| 132 |
+
"prior_agent_review_aligned": false,
|
| 133 |
+
"old_scan": 24,
|
| 134 |
+
"final_scan": 64,
|
| 135 |
+
"final_decision": "moved",
|
| 136 |
+
"visual_adjudication": null
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"table_id": "10197869700300017",
|
| 140 |
+
"prior_agent_review_aligned": true,
|
| 141 |
+
"old_scan": 31,
|
| 142 |
+
"final_scan": 31,
|
| 143 |
+
"final_decision": "retained",
|
| 144 |
+
"visual_adjudication": null
|
| 145 |
+
},
|
| 146 |
+
{
|
| 147 |
+
"table_id": "10199535100600032",
|
| 148 |
+
"prior_agent_review_aligned": true,
|
| 149 |
+
"old_scan": 58,
|
| 150 |
+
"final_scan": 58,
|
| 151 |
+
"final_decision": "retained",
|
| 152 |
+
"visual_adjudication": null
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"table_id": "10197900900170009",
|
| 156 |
+
"prior_agent_review_aligned": true,
|
| 157 |
+
"old_scan": 18,
|
| 158 |
+
"final_scan": 18,
|
| 159 |
+
"final_decision": "retained",
|
| 160 |
+
"visual_adjudication": null
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"table_id": "10199556700210011",
|
| 164 |
+
"prior_agent_review_aligned": true,
|
| 165 |
+
"old_scan": 19,
|
| 166 |
+
"final_scan": 19,
|
| 167 |
+
"final_decision": "retained",
|
| 168 |
+
"visual_adjudication": null
|
| 169 |
+
},
|
| 170 |
+
{
|
| 171 |
+
"table_id": "10200569100700064",
|
| 172 |
+
"prior_agent_review_aligned": true,
|
| 173 |
+
"old_scan": 71,
|
| 174 |
+
"final_scan": 71,
|
| 175 |
+
"final_decision": "retained",
|
| 176 |
+
"visual_adjudication": null
|
| 177 |
+
},
|
| 178 |
+
{
|
| 179 |
+
"table_id": "10197869401600122",
|
| 180 |
+
"prior_agent_review_aligned": true,
|
| 181 |
+
"old_scan": 161,
|
| 182 |
+
"final_scan": 161,
|
| 183 |
+
"final_decision": "retained",
|
| 184 |
+
"visual_adjudication": null
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"table_id": "10200569100230014",
|
| 188 |
+
"prior_agent_review_aligned": true,
|
| 189 |
+
"old_scan": 24,
|
| 190 |
+
"final_scan": 24,
|
| 191 |
+
"final_decision": "retained",
|
| 192 |
+
"visual_adjudication": null
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"table_id": "10198222401310052",
|
| 196 |
+
"prior_agent_review_aligned": false,
|
| 197 |
+
"old_scan": 133,
|
| 198 |
+
"final_scan": 132,
|
| 199 |
+
"final_decision": "moved",
|
| 200 |
+
"visual_adjudication": null
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"table_id": "10197855600180005",
|
| 204 |
+
"prior_agent_review_aligned": true,
|
| 205 |
+
"old_scan": 19,
|
| 206 |
+
"final_scan": 19,
|
| 207 |
+
"final_decision": "retained",
|
| 208 |
+
"visual_adjudication": null
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"table_id": "10198799500460023",
|
| 212 |
+
"prior_agent_review_aligned": true,
|
| 213 |
+
"old_scan": 47,
|
| 214 |
+
"final_scan": 47,
|
| 215 |
+
"final_decision": "retained",
|
| 216 |
+
"visual_adjudication": null
|
| 217 |
+
},
|
| 218 |
+
{
|
| 219 |
+
"table_id": "10198774100230020",
|
| 220 |
+
"prior_agent_review_aligned": true,
|
| 221 |
+
"old_scan": 24,
|
| 222 |
+
"final_scan": 24,
|
| 223 |
+
"final_decision": "retained",
|
| 224 |
+
"visual_adjudication": null
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"table_id": "10197869401790141",
|
| 228 |
+
"prior_agent_review_aligned": true,
|
| 229 |
+
"old_scan": 180,
|
| 230 |
+
"final_scan": 180,
|
| 231 |
+
"final_decision": "retained",
|
| 232 |
+
"visual_adjudication": null
|
| 233 |
+
},
|
| 234 |
+
{
|
| 235 |
+
"table_id": "10200569100090000",
|
| 236 |
+
"prior_agent_review_aligned": true,
|
| 237 |
+
"old_scan": 10,
|
| 238 |
+
"final_scan": 10,
|
| 239 |
+
"final_decision": "retained",
|
| 240 |
+
"visual_adjudication": null
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"table_id": "10199556700060000",
|
| 244 |
+
"prior_agent_review_aligned": true,
|
| 245 |
+
"old_scan": 4,
|
| 246 |
+
"final_scan": 4,
|
| 247 |
+
"final_decision": "retained",
|
| 248 |
+
"visual_adjudication": null
|
| 249 |
+
}
|
| 250 |
+
]
|
| 251 |
+
}
|
|
The diff for this file is too large to render.
See raw diff
|
|
|
|
@@ -0,0 +1,1730 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"b_number": "b17997173",
|
| 4 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b17997173",
|
| 5 |
+
"sha256": "48919b970e88f5c86977ed6a4100d95f055ddcc9d904bab4f32c6b8732dd7534",
|
| 6 |
+
"canvases": 40
|
| 7 |
+
},
|
| 8 |
+
{
|
| 9 |
+
"b_number": "b17997409",
|
| 10 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b17997409",
|
| 11 |
+
"sha256": "15d12e580f5a21b1f0c1aa08b345b1ac31cabe66830dbbb98a44d1a3d1629b12",
|
| 12 |
+
"canvases": 100
|
| 13 |
+
},
|
| 14 |
+
{
|
| 15 |
+
"b_number": "b17997902",
|
| 16 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b17997902",
|
| 17 |
+
"sha256": "4d1d273f48d1a4a187e0fa5edb785889c19f360a405f2f4e3e001e8633310c1e",
|
| 18 |
+
"canvases": 46
|
| 19 |
+
},
|
| 20 |
+
{
|
| 21 |
+
"b_number": "b17997987",
|
| 22 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b17997987",
|
| 23 |
+
"sha256": "89c142cfb0d32ed655b56512b217ef6cbce4ee70237e53fe3dcd5d69b9533a2c",
|
| 24 |
+
"canvases": 108
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"b_number": "b17998189",
|
| 28 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b17998189",
|
| 29 |
+
"sha256": "24c861e4e6c1b8bd6d6f8954ea9f339203ea53564628946cbd0efa764d61bf4a",
|
| 30 |
+
"canvases": 18
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"b_number": "b17999066",
|
| 34 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b17999066",
|
| 35 |
+
"sha256": "388f951037499fcc9b4e740d4e410749ecc109e3875331e8926c7d5669c876c2",
|
| 36 |
+
"canvases": 198
|
| 37 |
+
},
|
| 38 |
+
{
|
| 39 |
+
"b_number": "b17999406",
|
| 40 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b17999406",
|
| 41 |
+
"sha256": "74e13834972d172f539331930c748857e4a1675067fff8b67e19767dd7e5877e",
|
| 42 |
+
"canvases": 34
|
| 43 |
+
},
|
| 44 |
+
{
|
| 45 |
+
"b_number": "b18019225",
|
| 46 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18019225",
|
| 47 |
+
"sha256": "22fddd7f61d4a04ec39e3e57b6e2e2c5d0d6aa5a75a17b20c3967008e4c97b2c",
|
| 48 |
+
"canvases": 219
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"b_number": "b18038311",
|
| 52 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18038311",
|
| 53 |
+
"sha256": "5dff880ec6b8ea06c854607a8f97d46025d37167c802049600af504615bd5a36",
|
| 54 |
+
"canvases": 176
|
| 55 |
+
},
|
| 56 |
+
{
|
| 57 |
+
"b_number": "b18039492",
|
| 58 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18039492",
|
| 59 |
+
"sha256": "ca75f13e260700451c3bc75564241f9619d699ec5569cb3098a6be30d2b36b6a",
|
| 60 |
+
"canvases": 26
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"b_number": "b18039790",
|
| 64 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18039790",
|
| 65 |
+
"sha256": "b9c580311cad0cb872bbdf330d9e41d9b39a7a02c5a23443ec515e4e6b269499",
|
| 66 |
+
"canvases": 69
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"b_number": "b18043471",
|
| 70 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18043471",
|
| 71 |
+
"sha256": "40eb791ae8cd00dc4d602fd76e4269bb3357107a762190647cf94d02fcc0e6b1",
|
| 72 |
+
"canvases": 126
|
| 73 |
+
},
|
| 74 |
+
{
|
| 75 |
+
"b_number": "b18043501",
|
| 76 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18043501",
|
| 77 |
+
"sha256": "8b0977beff32fc0c51b9b6738045200e675ae7d7f874ed22f93ed5c2846444d8",
|
| 78 |
+
"canvases": 274
|
| 79 |
+
},
|
| 80 |
+
{
|
| 81 |
+
"b_number": "b18043586",
|
| 82 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18043586",
|
| 83 |
+
"sha256": "969e5950f1aaa47b613d46b17cddbc28a745e082c79c76030e7492bf6ea38a29",
|
| 84 |
+
"canvases": 191
|
| 85 |
+
},
|
| 86 |
+
{
|
| 87 |
+
"b_number": "b18044372",
|
| 88 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18044372",
|
| 89 |
+
"sha256": "e83d193e6a6d2d27f8764855995a0c635b412b7e66e29bc27c4aedace3e87854",
|
| 90 |
+
"canvases": 143
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"b_number": "b18047154",
|
| 94 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18047154",
|
| 95 |
+
"sha256": "ebc9111d5139e9c3386da44a8de96171d1e2a5931099e910e962622d1f9a80de",
|
| 96 |
+
"canvases": 224
|
| 97 |
+
},
|
| 98 |
+
{
|
| 99 |
+
"b_number": "b18047257",
|
| 100 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18047257",
|
| 101 |
+
"sha256": "10238d1140613dd6fb0adb505016c6525bf3b7a1c6ec4bad844842f704685591",
|
| 102 |
+
"canvases": 398
|
| 103 |
+
},
|
| 104 |
+
{
|
| 105 |
+
"b_number": "b18106687",
|
| 106 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18106687",
|
| 107 |
+
"sha256": "0b7039c090dcd43d75b08535e0244db80c4b1e3dbf3f6121ac5c25b23a3024ea",
|
| 108 |
+
"canvases": 132
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"b_number": "b18108672",
|
| 112 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18108672",
|
| 113 |
+
"sha256": "a35ce227ee54ad852ac2d9f5579b845b336410d5c7bfca587270029a77462448",
|
| 114 |
+
"canvases": 56
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"b_number": "b18108702",
|
| 118 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18108702",
|
| 119 |
+
"sha256": "87d0c0d113b5ae78c2a4ec89d037a6ae9b0704a7c7019c2dd0f5ec5f64910d1f",
|
| 120 |
+
"canvases": 60
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"b_number": "b18111269",
|
| 124 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18111269",
|
| 125 |
+
"sha256": "673b216782f162469d0e3df3b7a4e2144ebd4bf016559f04be5e125a32ebb675",
|
| 126 |
+
"canvases": 141
|
| 127 |
+
},
|
| 128 |
+
{
|
| 129 |
+
"b_number": "b18116449",
|
| 130 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18116449",
|
| 131 |
+
"sha256": "2f6e5af92925c41336eb29444262f5f58f977b5a9fff7fa086702a29454e3d33",
|
| 132 |
+
"canvases": 84
|
| 133 |
+
},
|
| 134 |
+
{
|
| 135 |
+
"b_number": "b18116656",
|
| 136 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18116656",
|
| 137 |
+
"sha256": "af50bd74130e11c8b740b1ec97051ae19d2cf357696eac39a31738ab5a4129df",
|
| 138 |
+
"canvases": 58
|
| 139 |
+
},
|
| 140 |
+
{
|
| 141 |
+
"b_number": "b18117181",
|
| 142 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18117181",
|
| 143 |
+
"sha256": "7a28c5e1d37f7b294436a1b1d2d054e976651882b5bc5d27180354904e0b064c",
|
| 144 |
+
"canvases": 14
|
| 145 |
+
},
|
| 146 |
+
{
|
| 147 |
+
"b_number": "b18117302",
|
| 148 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18117302",
|
| 149 |
+
"sha256": "da1060eda4e6802f1fa3e238b3e1192b52920f24583a9c2f2aac4b224167b134",
|
| 150 |
+
"canvases": 23
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"b_number": "b18120568",
|
| 154 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18120568",
|
| 155 |
+
"sha256": "8a683874477789ca1e28dde33be0730b30a91755a77a655be8e307e5caf524ec",
|
| 156 |
+
"canvases": 64
|
| 157 |
+
},
|
| 158 |
+
{
|
| 159 |
+
"b_number": "b18218684",
|
| 160 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18218684",
|
| 161 |
+
"sha256": "4a3ce0d61cf79165e8047e8e23b283ae59c5e14d29b2e81aace84fa0f41a86ef",
|
| 162 |
+
"canvases": 126
|
| 163 |
+
},
|
| 164 |
+
{
|
| 165 |
+
"b_number": "b18218957",
|
| 166 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18218957",
|
| 167 |
+
"sha256": "9e6346a48dac00ab1cf9df2f2424f743c944cc3c89dda505b8fd08f45016f5bb",
|
| 168 |
+
"canvases": 68
|
| 169 |
+
},
|
| 170 |
+
{
|
| 171 |
+
"b_number": "b18219317",
|
| 172 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18219317",
|
| 173 |
+
"sha256": "22e473f8cce6145f73c5c4c126553d02e55fb4d4d87062e701ba91f8529bd771",
|
| 174 |
+
"canvases": 20
|
| 175 |
+
},
|
| 176 |
+
{
|
| 177 |
+
"b_number": "b18219457",
|
| 178 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18219457",
|
| 179 |
+
"sha256": "f46b273bb5dfd59f1ab530f037adb943a3f252b7131921471cdddeb0b8ed00c7",
|
| 180 |
+
"canvases": 111
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"b_number": "b18219962",
|
| 184 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18219962",
|
| 185 |
+
"sha256": "cca7a3eea19b0617385abd04cf15381a95319e4e8e81732456aac6009224c21a",
|
| 186 |
+
"canvases": 70
|
| 187 |
+
},
|
| 188 |
+
{
|
| 189 |
+
"b_number": "b18220198",
|
| 190 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18220198",
|
| 191 |
+
"sha256": "8f67a29fc1802161f559e65a1f8e82c444f5fbe8f5566b5d136b6f55983d0d93",
|
| 192 |
+
"canvases": 154
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"b_number": "b18220307",
|
| 196 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18220307",
|
| 197 |
+
"sha256": "626a988effecf56eaf9204f24391a4939e06cdd22b9a4e6d2a420c8489d5a2c2",
|
| 198 |
+
"canvases": 92
|
| 199 |
+
},
|
| 200 |
+
{
|
| 201 |
+
"b_number": "b18220368",
|
| 202 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18220368",
|
| 203 |
+
"sha256": "f119344e2eb370f499c62009a519ee2e8ce86dc1b0e28c16bb86464a4a3bc90f",
|
| 204 |
+
"canvases": 126
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"b_number": "b18221580",
|
| 208 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18221580",
|
| 209 |
+
"sha256": "5c236ff355451ee47011cea7ecedf756e84954506e74a34876904a389b48908d",
|
| 210 |
+
"canvases": 116
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"b_number": "b18222109",
|
| 214 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18222109",
|
| 215 |
+
"sha256": "9d9836b721dca9b77fa1ceb29f3d4ae84facd8ca3d418ef5c3fee2ae24083098",
|
| 216 |
+
"canvases": 54
|
| 217 |
+
},
|
| 218 |
+
{
|
| 219 |
+
"b_number": "b18235591",
|
| 220 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18235591",
|
| 221 |
+
"sha256": "2639a8d402f221111eea5357e2b3ec6594ea86e03b577fcb4fff7873ddb407a1",
|
| 222 |
+
"canvases": 86
|
| 223 |
+
},
|
| 224 |
+
{
|
| 225 |
+
"b_number": "b18235724",
|
| 226 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18235724",
|
| 227 |
+
"sha256": "486078085053d29a3b3c0d43443fd87003ed479c3f66a9c0570fff45fbc899b9",
|
| 228 |
+
"canvases": 18
|
| 229 |
+
},
|
| 230 |
+
{
|
| 231 |
+
"b_number": "b18235803",
|
| 232 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18235803",
|
| 233 |
+
"sha256": "578ab325f9ee908188784e9cdb2ffc2347b6df7b97b1b70915afd806263887bc",
|
| 234 |
+
"canvases": 80
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"b_number": "b18236236",
|
| 238 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18236236",
|
| 239 |
+
"sha256": "b794cf2ebe24cdc54489d6fa2d43f8cff8743869c9097af1aba7142fac7faaa6",
|
| 240 |
+
"canvases": 146
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"b_number": "b18236376",
|
| 244 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18236376",
|
| 245 |
+
"sha256": "a73bdbd716d7ee42c9910531bbabd7a621e7f4eda50e9b701eb0fedc66f0f9e0",
|
| 246 |
+
"canvases": 10
|
| 247 |
+
},
|
| 248 |
+
{
|
| 249 |
+
"b_number": "b18237101",
|
| 250 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18237101",
|
| 251 |
+
"sha256": "605870881ed4cb84e85d8b924d813628da07a2fe829103cde079f9a98a030c47",
|
| 252 |
+
"canvases": 50
|
| 253 |
+
},
|
| 254 |
+
{
|
| 255 |
+
"b_number": "b18237691",
|
| 256 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18237691",
|
| 257 |
+
"sha256": "1e449639032189d4a8a5e97d65144e0137cbb35a49a80accd66d8cf76b264f28",
|
| 258 |
+
"canvases": 90
|
| 259 |
+
},
|
| 260 |
+
{
|
| 261 |
+
"b_number": "b18238683",
|
| 262 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18238683",
|
| 263 |
+
"sha256": "19c31bb3b4c526ca1b229491fb5bf1392e08e2161cae29b89c876d36708d36f3",
|
| 264 |
+
"canvases": 68
|
| 265 |
+
},
|
| 266 |
+
{
|
| 267 |
+
"b_number": "b18238786",
|
| 268 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18238786",
|
| 269 |
+
"sha256": "20a14cf5fb3b5b5217bb30ec180696710cde7cedd68a91177ac83899305ee3d5",
|
| 270 |
+
"canvases": 104
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"b_number": "b18238968",
|
| 274 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18238968",
|
| 275 |
+
"sha256": "6e733268b363152966fd1bbde06917f0702788db700c8c89db52a7b9d24ec9e6",
|
| 276 |
+
"canvases": 55
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"b_number": "b18239596",
|
| 280 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18239596",
|
| 281 |
+
"sha256": "f2683518bc6bd60eaa3ad70c4b5950df127c706f7ebac753c02a76a618d2efdb",
|
| 282 |
+
"canvases": 99
|
| 283 |
+
},
|
| 284 |
+
{
|
| 285 |
+
"b_number": "b18239717",
|
| 286 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18239717",
|
| 287 |
+
"sha256": "d7586a96f34c08686594ca142b61da66979e3871ca070521c8a37581db304b89",
|
| 288 |
+
"canvases": 23
|
| 289 |
+
},
|
| 290 |
+
{
|
| 291 |
+
"b_number": "b18239729",
|
| 292 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18239729",
|
| 293 |
+
"sha256": "acdfae9a6c4310cb5a4f6e5b0d97686c8eb2484cbf1a7f2553fdb14fcb439cad",
|
| 294 |
+
"canvases": 23
|
| 295 |
+
},
|
| 296 |
+
{
|
| 297 |
+
"b_number": "b18239894",
|
| 298 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18239894",
|
| 299 |
+
"sha256": "bae0e5e220faf391993a0cadb29523ba6b24f9584ab61045d33b7ba822098f46",
|
| 300 |
+
"canvases": 95
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"b_number": "b18244750",
|
| 304 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18244750",
|
| 305 |
+
"sha256": "5e2a7076c1c2b1871a174f7f2e0e2a5cc317ea2e75df440736f166962ba75fc3",
|
| 306 |
+
"canvases": 64
|
| 307 |
+
},
|
| 308 |
+
{
|
| 309 |
+
"b_number": "b18245122",
|
| 310 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18245122",
|
| 311 |
+
"sha256": "8f5307b145eed3de950cf8f61bcef3f02feb0ccdb9f0281a88455ed956a8a1fa",
|
| 312 |
+
"canvases": 98
|
| 313 |
+
},
|
| 314 |
+
{
|
| 315 |
+
"b_number": "b18245626",
|
| 316 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18245626",
|
| 317 |
+
"sha256": "a55ea7d3a8daafc9506da261783a05b410cc859c48d98e3f07ed47a82be0a49d",
|
| 318 |
+
"canvases": 26
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"b_number": "b18245870",
|
| 322 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18245870",
|
| 323 |
+
"sha256": "e8853b7bf7d797b9a9b41d158e0ae5baad6eb36d7a3da498e2c1ab90959187f1",
|
| 324 |
+
"canvases": 291
|
| 325 |
+
},
|
| 326 |
+
{
|
| 327 |
+
"b_number": "b18245973",
|
| 328 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18245973",
|
| 329 |
+
"sha256": "1b2199240e01ce65f944c358b9de403fe8147f59d2b0f1e2a5e5c8a4702a883a",
|
| 330 |
+
"canvases": 129
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"b_number": "b18246369",
|
| 334 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18246369",
|
| 335 |
+
"sha256": "45cde8dd277bd9c986bfcc7497d3d4492aaf08f0c18d1cc18d51a30d447c551b",
|
| 336 |
+
"canvases": 66
|
| 337 |
+
},
|
| 338 |
+
{
|
| 339 |
+
"b_number": "b18246461",
|
| 340 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18246461",
|
| 341 |
+
"sha256": "fc904c4fb1da67f9d62233956b4b78a5ca9cc5072674fb32fda33a27b6ba0cb8",
|
| 342 |
+
"canvases": 204
|
| 343 |
+
},
|
| 344 |
+
{
|
| 345 |
+
"b_number": "b18246552",
|
| 346 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18246552",
|
| 347 |
+
"sha256": "19aec8e3dc56e292095cc9bc9ee454d0072835ea85f889711618cd1336786552",
|
| 348 |
+
"canvases": 114
|
| 349 |
+
},
|
| 350 |
+
{
|
| 351 |
+
"b_number": "b18247039",
|
| 352 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18247039",
|
| 353 |
+
"sha256": "7e89e9eacd62ea0536619d4de0d24f75b408c236d737bb4d44080e3684036317",
|
| 354 |
+
"canvases": 46
|
| 355 |
+
},
|
| 356 |
+
{
|
| 357 |
+
"b_number": "b18247325",
|
| 358 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18247325",
|
| 359 |
+
"sha256": "83df4a067793e01b89979fc9e6eb70bf6ef98317eed78bff5f9aebfcab9c10d5",
|
| 360 |
+
"canvases": 34
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"b_number": "b18247404",
|
| 364 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18247404",
|
| 365 |
+
"sha256": "255d9b4eed66f3daf9d7113f13c8532f46df5786ea3f5a32f5e28a86830d525b",
|
| 366 |
+
"canvases": 166
|
| 367 |
+
},
|
| 368 |
+
{
|
| 369 |
+
"b_number": "b18247489",
|
| 370 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18247489",
|
| 371 |
+
"sha256": "8dff99847117507c4986d5fa340ba62620468666ccd6a45d9d34ec77c4d2988d",
|
| 372 |
+
"canvases": 26
|
| 373 |
+
},
|
| 374 |
+
{
|
| 375 |
+
"b_number": "b18247507",
|
| 376 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18247507",
|
| 377 |
+
"sha256": "6f23fb870e5213ffcd3329ff840eb604c07e20b12128dc9a23ac4fe4dac060f8",
|
| 378 |
+
"canvases": 25
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"b_number": "b18247635",
|
| 382 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18247635",
|
| 383 |
+
"sha256": "7e872501b9821ef6a653e70ac124fe8dbdf6e9b725c9b9eff61afd2db30af0da",
|
| 384 |
+
"canvases": 20
|
| 385 |
+
},
|
| 386 |
+
{
|
| 387 |
+
"b_number": "b18248317",
|
| 388 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18248317",
|
| 389 |
+
"sha256": "ca80782b793e7272beafbab6b23fbcc1897731a3c606285d4b32b88e5f02ac62",
|
| 390 |
+
"canvases": 112
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"b_number": "b18248676",
|
| 394 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18248676",
|
| 395 |
+
"sha256": "77b75dfeec601e4093343fbb766334d0055ff89dd2bc22b9993d5a5315902917",
|
| 396 |
+
"canvases": 70
|
| 397 |
+
},
|
| 398 |
+
{
|
| 399 |
+
"b_number": "b18248792",
|
| 400 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18248792",
|
| 401 |
+
"sha256": "5a61d4a7d360b9ea0d4233254d1cc1bae212a75db44671736a6e5b0185c91bf7",
|
| 402 |
+
"canvases": 18
|
| 403 |
+
},
|
| 404 |
+
{
|
| 405 |
+
"b_number": "b18248986",
|
| 406 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18248986",
|
| 407 |
+
"sha256": "f1f0dd71c9c5adc91c3540fb3e7719d0e23db043233922dbc176cfaf3929c887",
|
| 408 |
+
"canvases": 68
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"b_number": "b18249048",
|
| 412 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18249048",
|
| 413 |
+
"sha256": "7e524e2b9052a612fb877293d0615c54507e9ec2a2f77379a42921b7911a59f7",
|
| 414 |
+
"canvases": 36
|
| 415 |
+
},
|
| 416 |
+
{
|
| 417 |
+
"b_number": "b18249425",
|
| 418 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18249425",
|
| 419 |
+
"sha256": "6b0c038941f0648b7b32b5a7828a045264f17f6a76db50f78008daf878d286f3",
|
| 420 |
+
"canvases": 104
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"b_number": "b18249450",
|
| 424 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18249450",
|
| 425 |
+
"sha256": "0d2d0fa3cde2c34b0e0f1a02173e4fb12719292c3f0542de08239ff314bff42d",
|
| 426 |
+
"canvases": 104
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"b_number": "b18249991",
|
| 430 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18249991",
|
| 431 |
+
"sha256": "725dcbf791887e80390b7c1afd45bf4f51c401df5b906e131eb94503c423f6a4",
|
| 432 |
+
"canvases": 90
|
| 433 |
+
},
|
| 434 |
+
{
|
| 435 |
+
"b_number": "b18250051",
|
| 436 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18250051",
|
| 437 |
+
"sha256": "8c303732af8b90500d02ced7ef9dec41a6e4d9d8e3687cccb722e1752051b74b",
|
| 438 |
+
"canvases": 8
|
| 439 |
+
},
|
| 440 |
+
{
|
| 441 |
+
"b_number": "b18250385",
|
| 442 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18250385",
|
| 443 |
+
"sha256": "3d349e56a70669c9dc5bdc588dbed9c73d30155ef9d89df3266d259c0d1a888b",
|
| 444 |
+
"canvases": 56
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"b_number": "b18250403",
|
| 448 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18250403",
|
| 449 |
+
"sha256": "ee66c949bf1c94f7420b764ce564d80c73bd0e3796f0b3b6a8f7a0c38ccbaf75",
|
| 450 |
+
"canvases": 52
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"b_number": "b18250440",
|
| 454 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18250440",
|
| 455 |
+
"sha256": "d81492b164954c81331401add545e2fb9501c724d42b8b932cdc624d58831ea4",
|
| 456 |
+
"canvases": 66
|
| 457 |
+
},
|
| 458 |
+
{
|
| 459 |
+
"b_number": "b18250488",
|
| 460 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18250488",
|
| 461 |
+
"sha256": "970cef26937c9d39577c69871a6f80f3afca254c81652aa73c77e22a5b12f0b8",
|
| 462 |
+
"canvases": 74
|
| 463 |
+
},
|
| 464 |
+
{
|
| 465 |
+
"b_number": "b18250579",
|
| 466 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18250579",
|
| 467 |
+
"sha256": "9ef68c3bcf90ad1da3a058414878eaaccab5d833334fee22fa4852a8adfac210",
|
| 468 |
+
"canvases": 116
|
| 469 |
+
},
|
| 470 |
+
{
|
| 471 |
+
"b_number": "b18250713",
|
| 472 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18250713",
|
| 473 |
+
"sha256": "485678f76ca0b4d5582d9028c9094979eda5c86d52c89c17b22663d356d83224",
|
| 474 |
+
"canvases": 462
|
| 475 |
+
},
|
| 476 |
+
{
|
| 477 |
+
"b_number": "b18251018",
|
| 478 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18251018",
|
| 479 |
+
"sha256": "7ef08000a90e360c2b3ebfa4c34ee7fdafe1c07c9a465ea494d76367d65a5488",
|
| 480 |
+
"canvases": 20
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"b_number": "b18251183",
|
| 484 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18251183",
|
| 485 |
+
"sha256": "98bb6307e5f2be6b8e5e43689917b4ae995e26de9ab6e1c94e9086b2d442c178",
|
| 486 |
+
"canvases": 54
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"b_number": "b18251213",
|
| 490 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18251213",
|
| 491 |
+
"sha256": "77e5a8179e89a6a8c580810d8f3da415725203dfa69adda478ae64cbad616594",
|
| 492 |
+
"canvases": 56
|
| 493 |
+
},
|
| 494 |
+
{
|
| 495 |
+
"b_number": "b18251341",
|
| 496 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18251341",
|
| 497 |
+
"sha256": "07fcdc46b66cadd629db5bb4d15779e1bdffc92b1f14121ba1e2c5d0f4a567ce",
|
| 498 |
+
"canvases": 104
|
| 499 |
+
},
|
| 500 |
+
{
|
| 501 |
+
"b_number": "b18251353",
|
| 502 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18251353",
|
| 503 |
+
"sha256": "678c6bb3a541c1fc6a601e31783a7fcdfcb94d58fe64f0c5f9d1e67bdf0a47ad",
|
| 504 |
+
"canvases": 54
|
| 505 |
+
},
|
| 506 |
+
{
|
| 507 |
+
"b_number": "b18251377",
|
| 508 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18251377",
|
| 509 |
+
"sha256": "8f1850984cce997d1b5bf8c4243c8312e3c7c629d130fd9e040e9731f74d6685",
|
| 510 |
+
"canvases": 18
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"b_number": "b18251419",
|
| 514 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18251419",
|
| 515 |
+
"sha256": "d56d8b92527962b3843f4d28320212c70058c305bf8bcadc1248f3017ee9aacc",
|
| 516 |
+
"canvases": 18
|
| 517 |
+
},
|
| 518 |
+
{
|
| 519 |
+
"b_number": "b18251547",
|
| 520 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18251547",
|
| 521 |
+
"sha256": "e35041ae1305705d934088e792726529ea543a40b45be461bcce748cdf0cd4c3",
|
| 522 |
+
"canvases": 12
|
| 523 |
+
},
|
| 524 |
+
{
|
| 525 |
+
"b_number": "b18251559",
|
| 526 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18251559",
|
| 527 |
+
"sha256": "0ac40111678dd0f8f57709137352a9c20a88c4f95af10e6ea06e80872004d8ef",
|
| 528 |
+
"canvases": 18
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"b_number": "b18251560",
|
| 532 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18251560",
|
| 533 |
+
"sha256": "97da0073d30d2226ff8553dce48c9ba371d54a954f7c376656277d78d64e36fd",
|
| 534 |
+
"canvases": 22
|
| 535 |
+
},
|
| 536 |
+
{
|
| 537 |
+
"b_number": "b18251638",
|
| 538 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18251638",
|
| 539 |
+
"sha256": "4b5c99c76e4d56556285b50ed4b18042ca09b7ddac034257fcb3d4a5c58811c1",
|
| 540 |
+
"canvases": 78
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"b_number": "b18251663",
|
| 544 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18251663",
|
| 545 |
+
"sha256": "347d95ba2c2cde4042735fb33a82ae95c34d44abff0cd8ffea3851c911c3273f",
|
| 546 |
+
"canvases": 80
|
| 547 |
+
},
|
| 548 |
+
{
|
| 549 |
+
"b_number": "b18251973",
|
| 550 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18251973",
|
| 551 |
+
"sha256": "5f33672bee30cbcc659124e04353075c8bd972ae75954d62abfba72eea13355f",
|
| 552 |
+
"canvases": 152
|
| 553 |
+
},
|
| 554 |
+
{
|
| 555 |
+
"b_number": "b18252631",
|
| 556 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18252631",
|
| 557 |
+
"sha256": "f11a7e42a30eae05fe88546e9d26fc4a219c4385f059f3faf37567734457b059",
|
| 558 |
+
"canvases": 46
|
| 559 |
+
},
|
| 560 |
+
{
|
| 561 |
+
"b_number": "b18252953",
|
| 562 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18252953",
|
| 563 |
+
"sha256": "3fd18347ed7ead4ba7fd7c4661221861151bd0791d66a73c705d4c7d6af7b4ca",
|
| 564 |
+
"canvases": 170
|
| 565 |
+
},
|
| 566 |
+
{
|
| 567 |
+
"b_number": "b18253076",
|
| 568 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18253076",
|
| 569 |
+
"sha256": "6dc9bdad9842f3bd3033bd583796e3a0270e80e1fab02efecff7814fcac7cc0c",
|
| 570 |
+
"canvases": 127
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"b_number": "b18253490",
|
| 574 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18253490",
|
| 575 |
+
"sha256": "52fd7f05639001be0aa94bc96a92873123aa24916efc7c7fdb06693ca659afa4",
|
| 576 |
+
"canvases": 96
|
| 577 |
+
},
|
| 578 |
+
{
|
| 579 |
+
"b_number": "b18253660",
|
| 580 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18253660",
|
| 581 |
+
"sha256": "6831937b75e28feebe8614a4cd002ee360fb312fde524dd616f3ef13ded490dc",
|
| 582 |
+
"canvases": 30
|
| 583 |
+
},
|
| 584 |
+
{
|
| 585 |
+
"b_number": "b18253763",
|
| 586 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18253763",
|
| 587 |
+
"sha256": "9a94394ce2aa3a46e8dabbc09bfc229b0dcac69003325eb86486ce171d93b3f8",
|
| 588 |
+
"canvases": 42
|
| 589 |
+
},
|
| 590 |
+
{
|
| 591 |
+
"b_number": "b18253933",
|
| 592 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18253933",
|
| 593 |
+
"sha256": "363731328e24441f6aa8d94ff1d00d12d43f21cb7a7c32fd217d91d9f6b23695",
|
| 594 |
+
"canvases": 24
|
| 595 |
+
},
|
| 596 |
+
{
|
| 597 |
+
"b_number": "b18253957",
|
| 598 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18253957",
|
| 599 |
+
"sha256": "4ceaad7a6ab4fc59582f7d3c15bd2016eb906c60141936c0baa28aba3957e941",
|
| 600 |
+
"canvases": 32
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"b_number": "b18253970",
|
| 604 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18253970",
|
| 605 |
+
"sha256": "8092ff57da6c5c2a579f0080efc31422a13b31c93312d46d8a15bca5d9352ea3",
|
| 606 |
+
"canvases": 32
|
| 607 |
+
},
|
| 608 |
+
{
|
| 609 |
+
"b_number": "b18254135",
|
| 610 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18254135",
|
| 611 |
+
"sha256": "a37fdb0a11f30136ee24d4c815f2e41db06349e3e5ac288ca5f46f978d67b424",
|
| 612 |
+
"canvases": 132
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"b_number": "b18254184",
|
| 616 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18254184",
|
| 617 |
+
"sha256": "99ded82f03e1814e29eb0d827bdb52eba21c88d94da218440eaf16eecacacc13",
|
| 618 |
+
"canvases": 207
|
| 619 |
+
},
|
| 620 |
+
{
|
| 621 |
+
"b_number": "b18254196",
|
| 622 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18254196",
|
| 623 |
+
"sha256": "baf4095f51b5c316c77eb7212352e2f843a7ccf53e30990715e0e83419ea741d",
|
| 624 |
+
"canvases": 206
|
| 625 |
+
},
|
| 626 |
+
{
|
| 627 |
+
"b_number": "b18254378",
|
| 628 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b18254378",
|
| 629 |
+
"sha256": "864e6224112a98eba6edcf131b45c9f9705b70e1a936ca6a7e7540e11fc363f5",
|
| 630 |
+
"canvases": 88
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"b_number": "b19783371",
|
| 634 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19783371",
|
| 635 |
+
"sha256": "5f4f1b8d651d3245bb32df2ce7aa2f869a6f8289b200277aec62af96af49b966",
|
| 636 |
+
"canvases": 36
|
| 637 |
+
},
|
| 638 |
+
{
|
| 639 |
+
"b_number": "b19783681",
|
| 640 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19783681",
|
| 641 |
+
"sha256": "8da950aa9522665d4658cae94e858c9ea3b44ee209d6739e6643af32b935b807",
|
| 642 |
+
"canvases": 122
|
| 643 |
+
},
|
| 644 |
+
{
|
| 645 |
+
"b_number": "b19783930",
|
| 646 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19783930",
|
| 647 |
+
"sha256": "5d393f2c3fd917e22896251ff9b5506ba499c8db4cfab6ec2caf257b962a0b32",
|
| 648 |
+
"canvases": 150
|
| 649 |
+
},
|
| 650 |
+
{
|
| 651 |
+
"b_number": "b19783991",
|
| 652 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19783991",
|
| 653 |
+
"sha256": "17f9f95b80d8ff22b48975d563929a797b1d58bd3d87262972c7f9583198aaf0",
|
| 654 |
+
"canvases": 18
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"b_number": "b19784004",
|
| 658 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19784004",
|
| 659 |
+
"sha256": "610dc4920acf9782cfafe7f4c99dddc278dbfd2a13b8868dfc4103072258ee85",
|
| 660 |
+
"canvases": 28
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"b_number": "b19784053",
|
| 664 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19784053",
|
| 665 |
+
"sha256": "87ab1ec5faa130d3b7e16e647cda7c0f222fc533e2bb31c6633745904aa9c1bc",
|
| 666 |
+
"canvases": 82
|
| 667 |
+
},
|
| 668 |
+
{
|
| 669 |
+
"b_number": "b19784132",
|
| 670 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19784132",
|
| 671 |
+
"sha256": "b480f13ff7040ac0b0480f0f2c336c8422267688b27b7b97e7eced2d547182ad",
|
| 672 |
+
"canvases": 30
|
| 673 |
+
},
|
| 674 |
+
{
|
| 675 |
+
"b_number": "b19784946",
|
| 676 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19784946",
|
| 677 |
+
"sha256": "68e2f202e8888c38c7eb7138a6767cb326cfaac8b5bd903f1b936c8e3c12b18b",
|
| 678 |
+
"canvases": 36
|
| 679 |
+
},
|
| 680 |
+
{
|
| 681 |
+
"b_number": "b19785227",
|
| 682 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19785227",
|
| 683 |
+
"sha256": "6b6bd51d1213d843fc83f06619e29cb6e622f303cedbbc513009ee0b714a893c",
|
| 684 |
+
"canvases": 70
|
| 685 |
+
},
|
| 686 |
+
{
|
| 687 |
+
"b_number": "b19785288",
|
| 688 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19785288",
|
| 689 |
+
"sha256": "b79110cc66cfe20d285ab3553b956f5acb9ab7ad870c8c26e7541ae2ebac2c7d",
|
| 690 |
+
"canvases": 74
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"b_number": "b19785562",
|
| 694 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19785562",
|
| 695 |
+
"sha256": "2a0e4a63e4db320024d861ff8968e8b9089a052233ad3fa4dee782ea69438330",
|
| 696 |
+
"canvases": 22
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"b_number": "b19785719",
|
| 700 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19785719",
|
| 701 |
+
"sha256": "57aab517308e861f1b1f007f62060f9baab3683abca79fe7eca94d2a06043956",
|
| 702 |
+
"canvases": 50
|
| 703 |
+
},
|
| 704 |
+
{
|
| 705 |
+
"b_number": "b19786086",
|
| 706 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19786086",
|
| 707 |
+
"sha256": "6a38632d4701114f851b89761ae903c31c2542e667ac04fcaaf095759ff7b7e4",
|
| 708 |
+
"canvases": 24
|
| 709 |
+
},
|
| 710 |
+
{
|
| 711 |
+
"b_number": "b19786220",
|
| 712 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19786220",
|
| 713 |
+
"sha256": "74f05a8198fcd40f1557f88b36f763558e80718ae6b155c6607dca03466d70ea",
|
| 714 |
+
"canvases": 54
|
| 715 |
+
},
|
| 716 |
+
{
|
| 717 |
+
"b_number": "b19786529",
|
| 718 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19786529",
|
| 719 |
+
"sha256": "eea0da0a562b1c0a962c35d8941f80a0b58e6657287a186407f21a1b4026e23e",
|
| 720 |
+
"canvases": 42
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"b_number": "b19786785",
|
| 724 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19786785",
|
| 725 |
+
"sha256": "f14fdf3fa165c18679106bdce347a67afd9c9bd4379e59886ade09ab576ba09e",
|
| 726 |
+
"canvases": 142
|
| 727 |
+
},
|
| 728 |
+
{
|
| 729 |
+
"b_number": "b19786943",
|
| 730 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19786943",
|
| 731 |
+
"sha256": "c3c0a481efc82ae196915d8c5abc5894cb45effa12d08353e116a34ce8e52553",
|
| 732 |
+
"canvases": 330
|
| 733 |
+
},
|
| 734 |
+
{
|
| 735 |
+
"b_number": "b19786979",
|
| 736 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19786979",
|
| 737 |
+
"sha256": "7f86dd1aa95b4b9377dd61c7ad7c0126ca6a13b7c066331736ba263c41e243a6",
|
| 738 |
+
"canvases": 132
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"b_number": "b19787066",
|
| 742 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19787066",
|
| 743 |
+
"sha256": "e49589eac4210b3297d8c17418555e4500fd36f1cf2d56163a3b03aa07a60f99",
|
| 744 |
+
"canvases": 168
|
| 745 |
+
},
|
| 746 |
+
{
|
| 747 |
+
"b_number": "b19787650",
|
| 748 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19787650",
|
| 749 |
+
"sha256": "3d55a9db8d68b38889df506a1b63922fcb35731310b96f1ad82d3dc76f3dd8d7",
|
| 750 |
+
"canvases": 88
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"b_number": "b19787881",
|
| 754 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19787881",
|
| 755 |
+
"sha256": "805aa687e3dbe9fad64bbbf69f1ba2b9b4bb3e7d49169bd0dd4446112737659d",
|
| 756 |
+
"canvases": 84
|
| 757 |
+
},
|
| 758 |
+
{
|
| 759 |
+
"b_number": "b19788095",
|
| 760 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19788095",
|
| 761 |
+
"sha256": "ae918658795dea5c83eab56ac14b7e58204f8a26c63eb4801742d6cdd8f85253",
|
| 762 |
+
"canvases": 46
|
| 763 |
+
},
|
| 764 |
+
{
|
| 765 |
+
"b_number": "b19788769",
|
| 766 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19788769",
|
| 767 |
+
"sha256": "793dcd93f64121a7ebc741fe9c85ceda228ca4401ff6186461560bed0611f553",
|
| 768 |
+
"canvases": 52
|
| 769 |
+
},
|
| 770 |
+
{
|
| 771 |
+
"b_number": "b19788794",
|
| 772 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19788794",
|
| 773 |
+
"sha256": "219e59324ac0bf2a1c317c866c9b0a492f89323ecc98189b73f45e7b0698a157",
|
| 774 |
+
"canvases": 52
|
| 775 |
+
},
|
| 776 |
+
{
|
| 777 |
+
"b_number": "b19789245",
|
| 778 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19789245",
|
| 779 |
+
"sha256": "6b1942e26df7dc54d5c174bbb66776e4d8b22affbce62347f382d7f70dfb9307",
|
| 780 |
+
"canvases": 142
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"b_number": "b19789506",
|
| 784 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19789506",
|
| 785 |
+
"sha256": "e306a4f2c611a632f7b692116965e433dec5c5c4d6dac6655918119f62294e89",
|
| 786 |
+
"canvases": 44
|
| 787 |
+
},
|
| 788 |
+
{
|
| 789 |
+
"b_number": "b19789695",
|
| 790 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19789695",
|
| 791 |
+
"sha256": "96c6736af41d7ec9da0ad45ee0acfb67d592199a76b82ec4cefb7b0185c53ef9",
|
| 792 |
+
"canvases": 50
|
| 793 |
+
},
|
| 794 |
+
{
|
| 795 |
+
"b_number": "b19790090",
|
| 796 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19790090",
|
| 797 |
+
"sha256": "78f654846a8264b761c9c6360ce8633b6fbb3492dc8d3e2eec26cc35cece4ed5",
|
| 798 |
+
"canvases": 72
|
| 799 |
+
},
|
| 800 |
+
{
|
| 801 |
+
"b_number": "b19790338",
|
| 802 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19790338",
|
| 803 |
+
"sha256": "f973273b73dae10ab2cb2c46b789cbd0d373424b66bdb72645c2ceba70ec0fc6",
|
| 804 |
+
"canvases": 52
|
| 805 |
+
},
|
| 806 |
+
{
|
| 807 |
+
"b_number": "b19791173",
|
| 808 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19791173",
|
| 809 |
+
"sha256": "c912720c105e97f04a8ca566fdec7dae447cfbc25d6bdef14f54010942e89b90",
|
| 810 |
+
"canvases": 118
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"b_number": "b19791215",
|
| 814 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19791215",
|
| 815 |
+
"sha256": "5544db692b86cf66ae64760257065861dd2e68b509cfc92dbb838a56bcd5ceaa",
|
| 816 |
+
"canvases": 118
|
| 817 |
+
},
|
| 818 |
+
{
|
| 819 |
+
"b_number": "b19791653",
|
| 820 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19791653",
|
| 821 |
+
"sha256": "085a5632593de9388b26702b1ff037fc107862050947403b72d344749f1c8d02",
|
| 822 |
+
"canvases": 40
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"b_number": "b19791860",
|
| 826 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19791860",
|
| 827 |
+
"sha256": "87f9745c14adc9b86de6332b4cfcd675e42729e8bd06e425060da2148b30a209",
|
| 828 |
+
"canvases": 68
|
| 829 |
+
},
|
| 830 |
+
{
|
| 831 |
+
"b_number": "b19792025",
|
| 832 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19792025",
|
| 833 |
+
"sha256": "efc9f0ca9f50ae9fbd6d80285bdc5519bb37451a4ed7cd003672018658551d67",
|
| 834 |
+
"canvases": 122
|
| 835 |
+
},
|
| 836 |
+
{
|
| 837 |
+
"b_number": "b19792232",
|
| 838 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19792232",
|
| 839 |
+
"sha256": "917229fe0ad897cd673e4de27f93c3166d6ab096698e3d0454efcf1e53f63a74",
|
| 840 |
+
"canvases": 52
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"b_number": "b19792700",
|
| 844 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19792700",
|
| 845 |
+
"sha256": "1f709570b84c64ab1af5d7aaf3e75273c506759d726f80ce0aba1d03b76e6e4e",
|
| 846 |
+
"canvases": 42
|
| 847 |
+
},
|
| 848 |
+
{
|
| 849 |
+
"b_number": "b19793467",
|
| 850 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19793467",
|
| 851 |
+
"sha256": "b67845208696faa2a0d77aafcd89280a62d48aeee2a3396bff6b2944c65a6a0e",
|
| 852 |
+
"canvases": 56
|
| 853 |
+
},
|
| 854 |
+
{
|
| 855 |
+
"b_number": "b19794071",
|
| 856 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19794071",
|
| 857 |
+
"sha256": "61938722789f80bb98f0f6b96b4bb784e7a30152227e26d9ba534a635248d489",
|
| 858 |
+
"canvases": 42
|
| 859 |
+
},
|
| 860 |
+
{
|
| 861 |
+
"b_number": "b19794101",
|
| 862 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19794101",
|
| 863 |
+
"sha256": "f960b1e739c2c26b84b4d2b97b375e6277c9d4910706f1358ca8c08566d4a3c9",
|
| 864 |
+
"canvases": 36
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"b_number": "b19794289",
|
| 868 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19794289",
|
| 869 |
+
"sha256": "74ce5384de7cde71cd4025496f1920fec8a9443c59a8cf442d6db018e407f853",
|
| 870 |
+
"canvases": 36
|
| 871 |
+
},
|
| 872 |
+
{
|
| 873 |
+
"b_number": "b19794344",
|
| 874 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19794344",
|
| 875 |
+
"sha256": "a6075ab802cc18c2d111404fd95275d5855c0157171ea4f63421b988ef6903b0",
|
| 876 |
+
"canvases": 46
|
| 877 |
+
},
|
| 878 |
+
{
|
| 879 |
+
"b_number": "b19794538",
|
| 880 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19794538",
|
| 881 |
+
"sha256": "c0aa4253a157598d67dc1c08bedf447da3a651af02f46edd666192afa6ca1f08",
|
| 882 |
+
"canvases": 32
|
| 883 |
+
},
|
| 884 |
+
{
|
| 885 |
+
"b_number": "b19795026",
|
| 886 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19795026",
|
| 887 |
+
"sha256": "41a2572e19a11b4a9760da09af3fa3328e83baec72fbd82074e26c62a28d4cbe",
|
| 888 |
+
"canvases": 38
|
| 889 |
+
},
|
| 890 |
+
{
|
| 891 |
+
"b_number": "b19796171",
|
| 892 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19796171",
|
| 893 |
+
"sha256": "890ce0b202bd0db4d6ff38852c48f11e05ba67664f9a1cb30ace2f394e612d03",
|
| 894 |
+
"canvases": 16
|
| 895 |
+
},
|
| 896 |
+
{
|
| 897 |
+
"b_number": "b19796559",
|
| 898 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19796559",
|
| 899 |
+
"sha256": "3d61573dc242ce9a63a8e804d98a759fb78fb23693b836483b52c26a12c4fb5f",
|
| 900 |
+
"canvases": 51
|
| 901 |
+
},
|
| 902 |
+
{
|
| 903 |
+
"b_number": "b19796717",
|
| 904 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19796717",
|
| 905 |
+
"sha256": "9aad0e6fe9702ff5639cf69b2d24b127bf55ff7df35832e82ce91a340e3bcda0",
|
| 906 |
+
"canvases": 157
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"b_number": "b19821384",
|
| 910 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19821384",
|
| 911 |
+
"sha256": "a7381fb264787e90b6e75f53c4daf06e7700e2e358d411fccf6def9b7a5fc26f",
|
| 912 |
+
"canvases": 72
|
| 913 |
+
},
|
| 914 |
+
{
|
| 915 |
+
"b_number": "b19821797",
|
| 916 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19821797",
|
| 917 |
+
"sha256": "47feae08ad75f49a06ff65329436287696f9a3a69cdc4c5a4a22ffe1108f61fe",
|
| 918 |
+
"canvases": 168
|
| 919 |
+
},
|
| 920 |
+
{
|
| 921 |
+
"b_number": "b19821967",
|
| 922 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19821967",
|
| 923 |
+
"sha256": "3448abfd20560d8768062147b05cd94e8e3c32ff6810ec7e4cf2ace9d16985ff",
|
| 924 |
+
"canvases": 40
|
| 925 |
+
},
|
| 926 |
+
{
|
| 927 |
+
"b_number": "b19821979",
|
| 928 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19821979",
|
| 929 |
+
"sha256": "7223b2cb91c1985e2af4b8619640f0a482ea59bf7effe6ae3983b96f0a3d824b",
|
| 930 |
+
"canvases": 74
|
| 931 |
+
},
|
| 932 |
+
{
|
| 933 |
+
"b_number": "b19821980",
|
| 934 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19821980",
|
| 935 |
+
"sha256": "9fb40adb38c5895b1b08d8a39b7d02467d61a81a5638a4152d06dc97c0b57ab8",
|
| 936 |
+
"canvases": 64
|
| 937 |
+
},
|
| 938 |
+
{
|
| 939 |
+
"b_number": "b19822121",
|
| 940 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19822121",
|
| 941 |
+
"sha256": "14dd2a01b72161a7ca22986792d2da9299477209149ac57a585b462f88c4e318",
|
| 942 |
+
"canvases": 88
|
| 943 |
+
},
|
| 944 |
+
{
|
| 945 |
+
"b_number": "b19822248",
|
| 946 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19822248",
|
| 947 |
+
"sha256": "8e1b07cbff5fa04bafbc8f3fdb2b4f05c7f56520577630a6c15526937954b81c",
|
| 948 |
+
"canvases": 181
|
| 949 |
+
},
|
| 950 |
+
{
|
| 951 |
+
"b_number": "b19822467",
|
| 952 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19822467",
|
| 953 |
+
"sha256": "04b1592dee400162affd72042125546f9b7ac31713b3fc85d1e8c72c000694bb",
|
| 954 |
+
"canvases": 54
|
| 955 |
+
},
|
| 956 |
+
{
|
| 957 |
+
"b_number": "b19822765",
|
| 958 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19822765",
|
| 959 |
+
"sha256": "0caa37a06c7759b8f4a36f359eb139dac9ffadcce901e8b08e2e0630aa8ce714",
|
| 960 |
+
"canvases": 191
|
| 961 |
+
},
|
| 962 |
+
{
|
| 963 |
+
"b_number": "b19822789",
|
| 964 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19822789",
|
| 965 |
+
"sha256": "a3f79f0b22da9f623c5eb4aff2f6c734e0367bc385122fae78df05f48205a0db",
|
| 966 |
+
"canvases": 72
|
| 967 |
+
},
|
| 968 |
+
{
|
| 969 |
+
"b_number": "b19822820",
|
| 970 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19822820",
|
| 971 |
+
"sha256": "aefdadae7bc9ebd2d149e7150769a0710a5f4ced63a747aecc6a3a223a0f0156",
|
| 972 |
+
"canvases": 108
|
| 973 |
+
},
|
| 974 |
+
{
|
| 975 |
+
"b_number": "b19822911",
|
| 976 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19822911",
|
| 977 |
+
"sha256": "b955f00f38a30f36ac282ef90558df01e8477fd17163b304899362429aeb7261",
|
| 978 |
+
"canvases": 118
|
| 979 |
+
},
|
| 980 |
+
{
|
| 981 |
+
"b_number": "b19823058",
|
| 982 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19823058",
|
| 983 |
+
"sha256": "82867310f0a53bfdc42657b7ee98056a2afcb509f904b322e643e12a5a10aff2",
|
| 984 |
+
"canvases": 70
|
| 985 |
+
},
|
| 986 |
+
{
|
| 987 |
+
"b_number": "b19823071",
|
| 988 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19823071",
|
| 989 |
+
"sha256": "97ad22b59862c10b592ef8a4f270daf15113adbdb22936ba3d5ce0c2d9194047",
|
| 990 |
+
"canvases": 70
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"b_number": "b19823113",
|
| 994 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19823113",
|
| 995 |
+
"sha256": "afe0101b8b9f01c01217b7db3804e1cfe2c0ac23484fe116b5585579aa19b8e7",
|
| 996 |
+
"canvases": 80
|
| 997 |
+
},
|
| 998 |
+
{
|
| 999 |
+
"b_number": "b19823538",
|
| 1000 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19823538",
|
| 1001 |
+
"sha256": "018215673d88b4eceef5a80ca1212dcc03893c4c269918796937bbfb96ba7948",
|
| 1002 |
+
"canvases": 114
|
| 1003 |
+
},
|
| 1004 |
+
{
|
| 1005 |
+
"b_number": "b19823770",
|
| 1006 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19823770",
|
| 1007 |
+
"sha256": "d5d12dd0331d44c8f51840e3cba865050874293d8ccd3f0ffc198f2ab0c95316",
|
| 1008 |
+
"canvases": 42
|
| 1009 |
+
},
|
| 1010 |
+
{
|
| 1011 |
+
"b_number": "b19823782",
|
| 1012 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19823782",
|
| 1013 |
+
"sha256": "71bf4f086dc9876e1b454a93c6fbec5064b37c0da47964232983519a4eb6defb",
|
| 1014 |
+
"canvases": 58
|
| 1015 |
+
},
|
| 1016 |
+
{
|
| 1017 |
+
"b_number": "b19823939",
|
| 1018 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19823939",
|
| 1019 |
+
"sha256": "aba8b3bfcb6970bf8d7d3db7267da71cbaacecced9bc7b1d915849ac5bc45172",
|
| 1020 |
+
"canvases": 26
|
| 1021 |
+
},
|
| 1022 |
+
{
|
| 1023 |
+
"b_number": "b19823940",
|
| 1024 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19823940",
|
| 1025 |
+
"sha256": "d1b3d78e3d414684473bd382f56c7dbca4569b939816b4f329a7db1e7243e272",
|
| 1026 |
+
"canvases": 30
|
| 1027 |
+
},
|
| 1028 |
+
{
|
| 1029 |
+
"b_number": "b19824166",
|
| 1030 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19824166",
|
| 1031 |
+
"sha256": "5e3ffbc326f2c9ec486f7b43edd5858f77588a8a74bf02765acd8b7fa44ccb20",
|
| 1032 |
+
"canvases": 82
|
| 1033 |
+
},
|
| 1034 |
+
{
|
| 1035 |
+
"b_number": "b19824178",
|
| 1036 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19824178",
|
| 1037 |
+
"sha256": "61334aed70b24f938521fc5a4384d414ab073e161117e26bc76580e9eecad24c",
|
| 1038 |
+
"canvases": 79
|
| 1039 |
+
},
|
| 1040 |
+
{
|
| 1041 |
+
"b_number": "b19824269",
|
| 1042 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19824269",
|
| 1043 |
+
"sha256": "9e4b6a2dd45022adef38c573909429a7ddc8faa8dd1a03eb82d2d95602f7a756",
|
| 1044 |
+
"canvases": 251
|
| 1045 |
+
},
|
| 1046 |
+
{
|
| 1047 |
+
"b_number": "b19874455",
|
| 1048 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19874455",
|
| 1049 |
+
"sha256": "4e3726761aa9b76405a4e462315da12a09e9e23c6b714693d078f46dcab05641",
|
| 1050 |
+
"canvases": 48
|
| 1051 |
+
},
|
| 1052 |
+
{
|
| 1053 |
+
"b_number": "b19874741",
|
| 1054 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19874741",
|
| 1055 |
+
"sha256": "11a2e6961f7309de0e90cddfbd3deb6dddb633c40af5303dcbfa1c44413a31f4",
|
| 1056 |
+
"canvases": 114
|
| 1057 |
+
},
|
| 1058 |
+
{
|
| 1059 |
+
"b_number": "b19875186",
|
| 1060 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19875186",
|
| 1061 |
+
"sha256": "c64706ee3da6fb9e91673a5f29d06bfacc2013e58fb352155d03db8ac021ea6c",
|
| 1062 |
+
"canvases": 100
|
| 1063 |
+
},
|
| 1064 |
+
{
|
| 1065 |
+
"b_number": "b19875381",
|
| 1066 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19875381",
|
| 1067 |
+
"sha256": "dfb4ff01d3ecb074f61d85e4fdf48afcbea804253f5eac0beeb262d48d79acb2",
|
| 1068 |
+
"canvases": 38
|
| 1069 |
+
},
|
| 1070 |
+
{
|
| 1071 |
+
"b_number": "b19875393",
|
| 1072 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19875393",
|
| 1073 |
+
"sha256": "71323c5888c7b2110d3d5675cee4d7d354e68b6483276dc6bbd92b9eb0b41db3",
|
| 1074 |
+
"canvases": 68
|
| 1075 |
+
},
|
| 1076 |
+
{
|
| 1077 |
+
"b_number": "b19875472",
|
| 1078 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19875472",
|
| 1079 |
+
"sha256": "f2a814c22fe05a003d42186df0aab41b3e29c55c350933cdb1885a9417ce5e57",
|
| 1080 |
+
"canvases": 38
|
| 1081 |
+
},
|
| 1082 |
+
{
|
| 1083 |
+
"b_number": "b19875605",
|
| 1084 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19875605",
|
| 1085 |
+
"sha256": "41161eb81f932b4d4e33eaf0f29cc30823d5794fdb1e95d474638b29da56bbf7",
|
| 1086 |
+
"canvases": 26
|
| 1087 |
+
},
|
| 1088 |
+
{
|
| 1089 |
+
"b_number": "b19875642",
|
| 1090 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19875642",
|
| 1091 |
+
"sha256": "c7f9739a43a9972f65c02a11606a4727abfa24811ae4a07b96ccef7ea4f7a1e5",
|
| 1092 |
+
"canvases": 26
|
| 1093 |
+
},
|
| 1094 |
+
{
|
| 1095 |
+
"b_number": "b19875666",
|
| 1096 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19875666",
|
| 1097 |
+
"sha256": "e46f21f26d5ad896417629b46845759a3b08b4999405264ac480866a016d9c04",
|
| 1098 |
+
"canvases": 30
|
| 1099 |
+
},
|
| 1100 |
+
{
|
| 1101 |
+
"b_number": "b19875782",
|
| 1102 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19875782",
|
| 1103 |
+
"sha256": "1473d7a6f05941656c2aab9e9dbc7b20a1e0b0434509f6cedb0ebcd53e541f66",
|
| 1104 |
+
"canvases": 98
|
| 1105 |
+
},
|
| 1106 |
+
{
|
| 1107 |
+
"b_number": "b19875927",
|
| 1108 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19875927",
|
| 1109 |
+
"sha256": "69995054836dcfe0dde9aa3d8741cdfb4ef4a7b820e5a4a7e0ce973546d6c733",
|
| 1110 |
+
"canvases": 188
|
| 1111 |
+
},
|
| 1112 |
+
{
|
| 1113 |
+
"b_number": "b19876063",
|
| 1114 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19876063",
|
| 1115 |
+
"sha256": "a492d8a934c149c3303e4f86f8cb7fcdb2cf46f23e58ac650cc76a59890ebe67",
|
| 1116 |
+
"canvases": 66
|
| 1117 |
+
},
|
| 1118 |
+
{
|
| 1119 |
+
"b_number": "b19876488",
|
| 1120 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19876488",
|
| 1121 |
+
"sha256": "14a56726bc8a7f8599cfc5efa83dc79848b35151d98441e61492ce2d110ccec4",
|
| 1122 |
+
"canvases": 94
|
| 1123 |
+
},
|
| 1124 |
+
{
|
| 1125 |
+
"b_number": "b19877122",
|
| 1126 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19877122",
|
| 1127 |
+
"sha256": "023c390652b66f7e8ff805860fec295c151f7caf310741dce5ae0b6da1521733",
|
| 1128 |
+
"canvases": 84
|
| 1129 |
+
},
|
| 1130 |
+
{
|
| 1131 |
+
"b_number": "b19877419",
|
| 1132 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19877419",
|
| 1133 |
+
"sha256": "b60f42375f7f970c219204867051446fc12c412af0eec00b7890d7acc482486b",
|
| 1134 |
+
"canvases": 48
|
| 1135 |
+
},
|
| 1136 |
+
{
|
| 1137 |
+
"b_number": "b19877468",
|
| 1138 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19877468",
|
| 1139 |
+
"sha256": "13501e4e52bb223c48697035399f836520b1acfd1236d5974378669f68c88441",
|
| 1140 |
+
"canvases": 124
|
| 1141 |
+
},
|
| 1142 |
+
{
|
| 1143 |
+
"b_number": "b19878072",
|
| 1144 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19878072",
|
| 1145 |
+
"sha256": "80b2bd924c9303efba82e5b29186b9081e2b2aa16fbd36af5bd9e9cdf68832d0",
|
| 1146 |
+
"canvases": 66
|
| 1147 |
+
},
|
| 1148 |
+
{
|
| 1149 |
+
"b_number": "b19878345",
|
| 1150 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19878345",
|
| 1151 |
+
"sha256": "34e9689674bf7d4842e553e5f7507711f45abf8351fc7e23df832ca497422de4",
|
| 1152 |
+
"canvases": 40
|
| 1153 |
+
},
|
| 1154 |
+
{
|
| 1155 |
+
"b_number": "b19878448",
|
| 1156 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19878448",
|
| 1157 |
+
"sha256": "605d043a1b884459afa808e5d5b267b0545eb5b2020f05dd6cb68ada50fee399",
|
| 1158 |
+
"canvases": 46
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"b_number": "b19878722",
|
| 1162 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19878722",
|
| 1163 |
+
"sha256": "4d914dfc3193f6bd8996f14443d04497d40bca095367e8526fdb9da9ffe4e29a",
|
| 1164 |
+
"canvases": 70
|
| 1165 |
+
},
|
| 1166 |
+
{
|
| 1167 |
+
"b_number": "b19879829",
|
| 1168 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19879829",
|
| 1169 |
+
"sha256": "471ab37565b795fea2b3b5926017db964ffa568d775b3b2eb65d0c7d769fbab7",
|
| 1170 |
+
"canvases": 14
|
| 1171 |
+
},
|
| 1172 |
+
{
|
| 1173 |
+
"b_number": "b19879957",
|
| 1174 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19879957",
|
| 1175 |
+
"sha256": "a539c736fa3afa8a9203d440b2a610bf3c0eb3300f605819e9ce96db014b7f17",
|
| 1176 |
+
"canvases": 50
|
| 1177 |
+
},
|
| 1178 |
+
{
|
| 1179 |
+
"b_number": "b19880182",
|
| 1180 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19880182",
|
| 1181 |
+
"sha256": "fd8d833414e7ce25a24d88b9b81e2ee79ff31f2a21190ea624517da99e1627f2",
|
| 1182 |
+
"canvases": 180
|
| 1183 |
+
},
|
| 1184 |
+
{
|
| 1185 |
+
"b_number": "b19880868",
|
| 1186 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19880868",
|
| 1187 |
+
"sha256": "1a6fbba828c62d78d2b607925f378667016784bee331f7210e67336165629d64",
|
| 1188 |
+
"canvases": 94
|
| 1189 |
+
},
|
| 1190 |
+
{
|
| 1191 |
+
"b_number": "b19881228",
|
| 1192 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19881228",
|
| 1193 |
+
"sha256": "a14b8c1a1ac1f696a80363b92fb5a920b1857b181cf392360b738b2b2ecce3b3",
|
| 1194 |
+
"canvases": 62
|
| 1195 |
+
},
|
| 1196 |
+
{
|
| 1197 |
+
"b_number": "b19881721",
|
| 1198 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19881721",
|
| 1199 |
+
"sha256": "6a64ec7082c6980944c210c89850cbe188dd8f23425195bff7a6dbd23110db3f",
|
| 1200 |
+
"canvases": 122
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"b_number": "b19881824",
|
| 1204 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19881824",
|
| 1205 |
+
"sha256": "eb9d9398521d6253fc0c76c95cef344c29166e1f2bcbcdc81cab5192c48542a0",
|
| 1206 |
+
"canvases": 100
|
| 1207 |
+
},
|
| 1208 |
+
{
|
| 1209 |
+
"b_number": "b19882063",
|
| 1210 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19882063",
|
| 1211 |
+
"sha256": "6b9b02d037ed04933765edc8ca7ac44b12a80cd421efe466513e9229c81a33a3",
|
| 1212 |
+
"canvases": 76
|
| 1213 |
+
},
|
| 1214 |
+
{
|
| 1215 |
+
"b_number": "b19882178",
|
| 1216 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19882178",
|
| 1217 |
+
"sha256": "a395ba7c1824cc4729ec146f642569a8e426e5662660d8454e82de4b8c163872",
|
| 1218 |
+
"canvases": 68
|
| 1219 |
+
},
|
| 1220 |
+
{
|
| 1221 |
+
"b_number": "b19882464",
|
| 1222 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19882464",
|
| 1223 |
+
"sha256": "c309136b82d447f41a09862dd6b57e5bf1114e360fc4fd5e44eefb4ef76e124f",
|
| 1224 |
+
"canvases": 72
|
| 1225 |
+
},
|
| 1226 |
+
{
|
| 1227 |
+
"b_number": "b19882737",
|
| 1228 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19882737",
|
| 1229 |
+
"sha256": "9d129667b050bd74dc4035667144a7fe144b54b98b6823dfb6bff9160c11e75f",
|
| 1230 |
+
"canvases": 76
|
| 1231 |
+
},
|
| 1232 |
+
{
|
| 1233 |
+
"b_number": "b19882920",
|
| 1234 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19882920",
|
| 1235 |
+
"sha256": "abd8c1d56f65aaf32dc731be443e92e18c856c4806587c4b973445ae2d1dce0a",
|
| 1236 |
+
"canvases": 69
|
| 1237 |
+
},
|
| 1238 |
+
{
|
| 1239 |
+
"b_number": "b19883249",
|
| 1240 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19883249",
|
| 1241 |
+
"sha256": "a6ebb5cb36658fcc1741c150a643bdf4381ca80d0b2fd37fe58660b01b4f8b56",
|
| 1242 |
+
"canvases": 46
|
| 1243 |
+
},
|
| 1244 |
+
{
|
| 1245 |
+
"b_number": "b19883316",
|
| 1246 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19883316",
|
| 1247 |
+
"sha256": "6ef8241216d9e5a43053a88b23c67e864d3c7a4a6dec6c72f0992817d9e2628a",
|
| 1248 |
+
"canvases": 32
|
| 1249 |
+
},
|
| 1250 |
+
{
|
| 1251 |
+
"b_number": "b19883341",
|
| 1252 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19883341",
|
| 1253 |
+
"sha256": "2def473972f2dd9a9673fe3ce8484de657718a349559e8fbae35b9e9932fc747",
|
| 1254 |
+
"canvases": 96
|
| 1255 |
+
},
|
| 1256 |
+
{
|
| 1257 |
+
"b_number": "b19883420",
|
| 1258 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19883420",
|
| 1259 |
+
"sha256": "a5fae1e9f99e5c0266149edf56ab409f026beb01ef12eccc967c85b2230f6342",
|
| 1260 |
+
"canvases": 78
|
| 1261 |
+
},
|
| 1262 |
+
{
|
| 1263 |
+
"b_number": "b19883493",
|
| 1264 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19883493",
|
| 1265 |
+
"sha256": "ac018379589da2e799974b7a13976a8c1dbc4924c58362351087724190c6aa04",
|
| 1266 |
+
"canvases": 64
|
| 1267 |
+
},
|
| 1268 |
+
{
|
| 1269 |
+
"b_number": "b19883663",
|
| 1270 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19883663",
|
| 1271 |
+
"sha256": "6bd2bdf6e1f3ad4d067777ccc0886cb890d6b2b9555502a6a38c96a295eae74b",
|
| 1272 |
+
"canvases": 46
|
| 1273 |
+
},
|
| 1274 |
+
{
|
| 1275 |
+
"b_number": "b19883766",
|
| 1276 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19883766",
|
| 1277 |
+
"sha256": "703824963bbae1663654b4a769cc27118026017e072ca7c50197cd367ea988e8",
|
| 1278 |
+
"canvases": 64
|
| 1279 |
+
},
|
| 1280 |
+
{
|
| 1281 |
+
"b_number": "b19883900",
|
| 1282 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19883900",
|
| 1283 |
+
"sha256": "f19e91765f2b5015a3b1d362d321e1171251677b997aacfd73622961387a8b0e",
|
| 1284 |
+
"canvases": 52
|
| 1285 |
+
},
|
| 1286 |
+
{
|
| 1287 |
+
"b_number": "b19884242",
|
| 1288 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19884242",
|
| 1289 |
+
"sha256": "5d977952d0c7872406282676dcbb96cae0825af5c850183818e23425f1401bb3",
|
| 1290 |
+
"canvases": 84
|
| 1291 |
+
},
|
| 1292 |
+
{
|
| 1293 |
+
"b_number": "b19884461",
|
| 1294 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19884461",
|
| 1295 |
+
"sha256": "0f139bb8b9eae5a9cf312e6707cf8b90e1a756ac9bba3e70f795d66eb368f07c",
|
| 1296 |
+
"canvases": 98
|
| 1297 |
+
},
|
| 1298 |
+
{
|
| 1299 |
+
"b_number": "b19884485",
|
| 1300 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19884485",
|
| 1301 |
+
"sha256": "52d1de506ab9fa8a19536e233b13367c3c121bffcda042c70e44c0ea5c1b330b",
|
| 1302 |
+
"canvases": 90
|
| 1303 |
+
},
|
| 1304 |
+
{
|
| 1305 |
+
"b_number": "b19884965",
|
| 1306 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19884965",
|
| 1307 |
+
"sha256": "f450a5adb63de0911ee7a9def3a4858d511c4a5f550b3b1cd8c9f8554f9b19c0",
|
| 1308 |
+
"canvases": 19
|
| 1309 |
+
},
|
| 1310 |
+
{
|
| 1311 |
+
"b_number": "b19885519",
|
| 1312 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19885519",
|
| 1313 |
+
"sha256": "9f0ddaacafd7b96bfee15ba88a2825b62407585509b92df0ca4127f94369a618",
|
| 1314 |
+
"canvases": 161
|
| 1315 |
+
},
|
| 1316 |
+
{
|
| 1317 |
+
"b_number": "b19952594",
|
| 1318 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19952594",
|
| 1319 |
+
"sha256": "c8dd1962c1500740f23627158305942a935023bf27267a14196fe4894f203295",
|
| 1320 |
+
"canvases": 44
|
| 1321 |
+
},
|
| 1322 |
+
{
|
| 1323 |
+
"b_number": "b19952636",
|
| 1324 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19952636",
|
| 1325 |
+
"sha256": "0feb8cb1d4ab34ce9856beb12148de033adc13169f76895d3ad689c929e0bf76",
|
| 1326 |
+
"canvases": 35
|
| 1327 |
+
},
|
| 1328 |
+
{
|
| 1329 |
+
"b_number": "b19952739",
|
| 1330 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19952739",
|
| 1331 |
+
"sha256": "fc41067e9573d47a17cf3750d22f6a2128f27985c1faf17106b7928fa071a55a",
|
| 1332 |
+
"canvases": 108
|
| 1333 |
+
},
|
| 1334 |
+
{
|
| 1335 |
+
"b_number": "b19952831",
|
| 1336 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19952831",
|
| 1337 |
+
"sha256": "a1a443f202911e0186417eb2036ce2d7f4ba059c3e58800de4f876cc7d920e9c",
|
| 1338 |
+
"canvases": 186
|
| 1339 |
+
},
|
| 1340 |
+
{
|
| 1341 |
+
"b_number": "b19952867",
|
| 1342 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19952867",
|
| 1343 |
+
"sha256": "dee4e8da40c9290f47813ffeb6e2609239a15c87d3f28bcf2fb75cd5a6c9e19f",
|
| 1344 |
+
"canvases": 70
|
| 1345 |
+
},
|
| 1346 |
+
{
|
| 1347 |
+
"b_number": "b19952880",
|
| 1348 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19952880",
|
| 1349 |
+
"sha256": "6c9e770400e1b56cad28b999faebb1cd93ab993e763d6bd299e8e60eac142370",
|
| 1350 |
+
"canvases": 58
|
| 1351 |
+
},
|
| 1352 |
+
{
|
| 1353 |
+
"b_number": "b19953057",
|
| 1354 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19953057",
|
| 1355 |
+
"sha256": "59f429660f040adf7eebf01c816830c95efc5023de8df4cd80af68f175dfe832",
|
| 1356 |
+
"canvases": 213
|
| 1357 |
+
},
|
| 1358 |
+
{
|
| 1359 |
+
"b_number": "b19953070",
|
| 1360 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19953070",
|
| 1361 |
+
"sha256": "0ec4256f6ddf14dc462604cac2055f6f34482e46aa81e64bc7418eb4531db093",
|
| 1362 |
+
"canvases": 190
|
| 1363 |
+
},
|
| 1364 |
+
{
|
| 1365 |
+
"b_number": "b19953185",
|
| 1366 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19953185",
|
| 1367 |
+
"sha256": "ff297e81e05ab0494d06e6c105bcbc57cd7270c2b656c6c25dedea26ade0d074",
|
| 1368 |
+
"canvases": 389
|
| 1369 |
+
},
|
| 1370 |
+
{
|
| 1371 |
+
"b_number": "b19953331",
|
| 1372 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19953331",
|
| 1373 |
+
"sha256": "1dcba3e5eca01ed14668604ff60037b4239b388a153a89dbe5d0d6016c51d243",
|
| 1374 |
+
"canvases": 22
|
| 1375 |
+
},
|
| 1376 |
+
{
|
| 1377 |
+
"b_number": "b19953343",
|
| 1378 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19953343",
|
| 1379 |
+
"sha256": "995f68d4ef86f0b206e38915be0058ca2cacc807f5d790d9f39478b6b6153ad6",
|
| 1380 |
+
"canvases": 20
|
| 1381 |
+
},
|
| 1382 |
+
{
|
| 1383 |
+
"b_number": "b19953458",
|
| 1384 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19953458",
|
| 1385 |
+
"sha256": "537785c544a45ebd1e0180d349f3adb5e0a489fef7ad088830f7221f195e5d0d",
|
| 1386 |
+
"canvases": 24
|
| 1387 |
+
},
|
| 1388 |
+
{
|
| 1389 |
+
"b_number": "b19953471",
|
| 1390 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19953471",
|
| 1391 |
+
"sha256": "03757c8dc3eefd45c9b66b042a8487cfd40eaebdadc94f9cfd49d55ddff259d0",
|
| 1392 |
+
"canvases": 58
|
| 1393 |
+
},
|
| 1394 |
+
{
|
| 1395 |
+
"b_number": "b19953501",
|
| 1396 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19953501",
|
| 1397 |
+
"sha256": "7ce985d1b01da1f5b10c95d0f12f33034e1e030a55b3671a53a962918cedd0d5",
|
| 1398 |
+
"canvases": 86
|
| 1399 |
+
},
|
| 1400 |
+
{
|
| 1401 |
+
"b_number": "b19953513",
|
| 1402 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19953513",
|
| 1403 |
+
"sha256": "ff34f5c9f1060027e4a07676e726f1eabb86d94308a8f17f3f15cb58c83ffc97",
|
| 1404 |
+
"canvases": 96
|
| 1405 |
+
},
|
| 1406 |
+
{
|
| 1407 |
+
"b_number": "b19953690",
|
| 1408 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19953690",
|
| 1409 |
+
"sha256": "e294f4e19ceca96df6aaef3d97e76af2393fd013bd5b498f352f9a90cea6dde7",
|
| 1410 |
+
"canvases": 43
|
| 1411 |
+
},
|
| 1412 |
+
{
|
| 1413 |
+
"b_number": "b19953823",
|
| 1414 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19953823",
|
| 1415 |
+
"sha256": "73cbcf6d5de59a871fa2939ac4735f41387fc17ec56cd4ed789ed7ad048d83fd",
|
| 1416 |
+
"canvases": 50
|
| 1417 |
+
},
|
| 1418 |
+
{
|
| 1419 |
+
"b_number": "b19953860",
|
| 1420 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19953860",
|
| 1421 |
+
"sha256": "9ff791002bab220471ca1b69d72c52cfc431323009754e2510b3d70ed47d5675",
|
| 1422 |
+
"canvases": 84
|
| 1423 |
+
},
|
| 1424 |
+
{
|
| 1425 |
+
"b_number": "b19953896",
|
| 1426 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19953896",
|
| 1427 |
+
"sha256": "06ca997859274ce60ecfa2347f958943a5b33162bc031d2d14ccc78fe6bec706",
|
| 1428 |
+
"canvases": 178
|
| 1429 |
+
},
|
| 1430 |
+
{
|
| 1431 |
+
"b_number": "b19954001",
|
| 1432 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19954001",
|
| 1433 |
+
"sha256": "3d797dcc6f618dba726eb31fe63f37f3528ccc509d6be1d222d0af901057d61a",
|
| 1434 |
+
"canvases": 41
|
| 1435 |
+
},
|
| 1436 |
+
{
|
| 1437 |
+
"b_number": "b19954037",
|
| 1438 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19954037",
|
| 1439 |
+
"sha256": "91e10e7a0c439330ab50e910a6f4e558dfbd888a3ab0db10a4f2c731f7ce3365",
|
| 1440 |
+
"canvases": 38
|
| 1441 |
+
},
|
| 1442 |
+
{
|
| 1443 |
+
"b_number": "b19954049",
|
| 1444 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19954049",
|
| 1445 |
+
"sha256": "932b50acbe8ce8d982c369bba311d93e8595f9a62efd0ff3376884f125e61593",
|
| 1446 |
+
"canvases": 37
|
| 1447 |
+
},
|
| 1448 |
+
{
|
| 1449 |
+
"b_number": "b19954116",
|
| 1450 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19954116",
|
| 1451 |
+
"sha256": "429598d0f2b8150466ad4b72803bfed94ef34d649a252d8febec1ff06f1d8565",
|
| 1452 |
+
"canvases": 43
|
| 1453 |
+
},
|
| 1454 |
+
{
|
| 1455 |
+
"b_number": "b19954177",
|
| 1456 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19954177",
|
| 1457 |
+
"sha256": "694427243b6def49f3963ad024347d55ec9582ff061577677834bb7e5d4ed944",
|
| 1458 |
+
"canvases": 39
|
| 1459 |
+
},
|
| 1460 |
+
{
|
| 1461 |
+
"b_number": "b19954220",
|
| 1462 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19954220",
|
| 1463 |
+
"sha256": "90b87d2676988b9f6101c7185e47b451e6b1189f3f7389e90cf6a1eae385f3df",
|
| 1464 |
+
"canvases": 124
|
| 1465 |
+
},
|
| 1466 |
+
{
|
| 1467 |
+
"b_number": "b19954244",
|
| 1468 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19954244",
|
| 1469 |
+
"sha256": "9f8a83b01cffe303c22fc17fa1150a5efaeb17722d7a356fecc1425fd6e7d1f3",
|
| 1470 |
+
"canvases": 96
|
| 1471 |
+
},
|
| 1472 |
+
{
|
| 1473 |
+
"b_number": "b19954311",
|
| 1474 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19954311",
|
| 1475 |
+
"sha256": "5dff4407c94267df2d4621553e5972735b3d52f5fa129e5b2fa861ee13c201ef",
|
| 1476 |
+
"canvases": 43
|
| 1477 |
+
},
|
| 1478 |
+
{
|
| 1479 |
+
"b_number": "b19954359",
|
| 1480 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19954359",
|
| 1481 |
+
"sha256": "7ea1c42ace21ac4c92ae044e474b12cc3020349fb730765051f74c6daffc39ad",
|
| 1482 |
+
"canvases": 27
|
| 1483 |
+
},
|
| 1484 |
+
{
|
| 1485 |
+
"b_number": "b19954402",
|
| 1486 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19954402",
|
| 1487 |
+
"sha256": "82b4251e1c8eb97421e3c038f2cc45c728fd5644cb494f549eb5d89e3c92452e",
|
| 1488 |
+
"canvases": 34
|
| 1489 |
+
},
|
| 1490 |
+
{
|
| 1491 |
+
"b_number": "b19954463",
|
| 1492 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19954463",
|
| 1493 |
+
"sha256": "04d16623e7f4b915f5c01677d07a11d516dd20e16a3ed7ceb63d4b91456ac8a7",
|
| 1494 |
+
"canvases": 85
|
| 1495 |
+
},
|
| 1496 |
+
{
|
| 1497 |
+
"b_number": "b19954475",
|
| 1498 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19954475",
|
| 1499 |
+
"sha256": "5c0cb3351658f582dfca3c0bcfb77aee85f1992b34ad44cb8b92fe4e178f4d13",
|
| 1500 |
+
"canvases": 154
|
| 1501 |
+
},
|
| 1502 |
+
{
|
| 1503 |
+
"b_number": "b19954980",
|
| 1504 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19954980",
|
| 1505 |
+
"sha256": "45f870da7c813d0c1a279481cc4cc114839af58772043e331577718c61b9d486",
|
| 1506 |
+
"canvases": 57
|
| 1507 |
+
},
|
| 1508 |
+
{
|
| 1509 |
+
"b_number": "b19955121",
|
| 1510 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19955121",
|
| 1511 |
+
"sha256": "e3cc358deca925e9aade8550b138fa657ea66f78a6dbc2ac761d98b7c12dec66",
|
| 1512 |
+
"canvases": 46
|
| 1513 |
+
},
|
| 1514 |
+
{
|
| 1515 |
+
"b_number": "b19955236",
|
| 1516 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19955236",
|
| 1517 |
+
"sha256": "96be89a33924dc0ff7b6f475aa522dfd61bad7ada057c75d15c643baf4d5ebad",
|
| 1518 |
+
"canvases": 99
|
| 1519 |
+
},
|
| 1520 |
+
{
|
| 1521 |
+
"b_number": "b19955248",
|
| 1522 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19955248",
|
| 1523 |
+
"sha256": "2bb7ae6d0c35da7f06ac8c48e1d322ac7223b345593df14dd4aca34e8261c93b",
|
| 1524 |
+
"canvases": 91
|
| 1525 |
+
},
|
| 1526 |
+
{
|
| 1527 |
+
"b_number": "b19955339",
|
| 1528 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19955339",
|
| 1529 |
+
"sha256": "5ef95a3b8d80c2edd85a990e6af8b158d9a781e8b2777bd104201e26f0a4306b",
|
| 1530 |
+
"canvases": 149
|
| 1531 |
+
},
|
| 1532 |
+
{
|
| 1533 |
+
"b_number": "b19955534",
|
| 1534 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19955534",
|
| 1535 |
+
"sha256": "3ac479b71ac8ecb51df2761b814a29de144970fe1b047fe2285c7c4a014916bf",
|
| 1536 |
+
"canvases": 32
|
| 1537 |
+
},
|
| 1538 |
+
{
|
| 1539 |
+
"b_number": "b19955662",
|
| 1540 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19955662",
|
| 1541 |
+
"sha256": "db47e5bd65c07327a5e7f834c24a5361189aa0b6a08eea7710054f605f1757cc",
|
| 1542 |
+
"canvases": 52
|
| 1543 |
+
},
|
| 1544 |
+
{
|
| 1545 |
+
"b_number": "b19955674",
|
| 1546 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19955674",
|
| 1547 |
+
"sha256": "f9e3fb9f9ed6ca5b447a5a3d686534dc4dfd429591d67b08dbb7f7c405ca99b3",
|
| 1548 |
+
"canvases": 44
|
| 1549 |
+
},
|
| 1550 |
+
{
|
| 1551 |
+
"b_number": "b19955935",
|
| 1552 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19955935",
|
| 1553 |
+
"sha256": "19d8c27c53165586e10bc25454f03a389a3b7ccc08475f22ecb21f660217d78d",
|
| 1554 |
+
"canvases": 52
|
| 1555 |
+
},
|
| 1556 |
+
{
|
| 1557 |
+
"b_number": "b19955960",
|
| 1558 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19955960",
|
| 1559 |
+
"sha256": "dd2ca46842878b99c5802cfd9fb29dba819df8078593942d31d065b77c9ca124",
|
| 1560 |
+
"canvases": 62
|
| 1561 |
+
},
|
| 1562 |
+
{
|
| 1563 |
+
"b_number": "b19955996",
|
| 1564 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19955996",
|
| 1565 |
+
"sha256": "743cb4ec1f230dc9a6187350c5b63783d52b3fab9739cd13f2082729f9e65c52",
|
| 1566 |
+
"canvases": 74
|
| 1567 |
+
},
|
| 1568 |
+
{
|
| 1569 |
+
"b_number": "b19956083",
|
| 1570 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19956083",
|
| 1571 |
+
"sha256": "960c68056000908a4023febd5e23bbce0c036c7c66bda4100c2155a65ebdae4b",
|
| 1572 |
+
"canvases": 107
|
| 1573 |
+
},
|
| 1574 |
+
{
|
| 1575 |
+
"b_number": "b19956307",
|
| 1576 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19956307",
|
| 1577 |
+
"sha256": "98eedd8946dc6ef8f048605721da189cec285df1adfe8b21df59f5f4c688ea88",
|
| 1578 |
+
"canvases": 56
|
| 1579 |
+
},
|
| 1580 |
+
{
|
| 1581 |
+
"b_number": "b19956733",
|
| 1582 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19956733",
|
| 1583 |
+
"sha256": "5de8b238e08649dad54c4b51e2261ea7e0d0abc651ee664932bc19893fd32600",
|
| 1584 |
+
"canvases": 102
|
| 1585 |
+
},
|
| 1586 |
+
{
|
| 1587 |
+
"b_number": "b19957099",
|
| 1588 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19957099",
|
| 1589 |
+
"sha256": "07feeaeadb35daa6b2298fa8d808fa9c9ab9f0910d882ff13794ade0dfc03c4a",
|
| 1590 |
+
"canvases": 55
|
| 1591 |
+
},
|
| 1592 |
+
{
|
| 1593 |
+
"b_number": "b19957129",
|
| 1594 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19957129",
|
| 1595 |
+
"sha256": "a0d168d1cbb439a2b25612d72369f24348804c319b0f37d7f148455f94488630",
|
| 1596 |
+
"canvases": 79
|
| 1597 |
+
},
|
| 1598 |
+
{
|
| 1599 |
+
"b_number": "b19957154",
|
| 1600 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19957154",
|
| 1601 |
+
"sha256": "6c8148a3b0d9c7a5fa898863cd12de64b66e2a44995fe27a36a881b0f32144ef",
|
| 1602 |
+
"canvases": 68
|
| 1603 |
+
},
|
| 1604 |
+
{
|
| 1605 |
+
"b_number": "b19957166",
|
| 1606 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19957166",
|
| 1607 |
+
"sha256": "c93a1a12adb7a2734e31a9a6216b5776d610a2348b6c97d99085078dd302499a",
|
| 1608 |
+
"canvases": 83
|
| 1609 |
+
},
|
| 1610 |
+
{
|
| 1611 |
+
"b_number": "b19957208",
|
| 1612 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19957208",
|
| 1613 |
+
"sha256": "260cdf30951bb7a84e3e777265ee2481f42d0971a19601b837365b41e8ded62b",
|
| 1614 |
+
"canvases": 49
|
| 1615 |
+
},
|
| 1616 |
+
{
|
| 1617 |
+
"b_number": "b19969090",
|
| 1618 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19969090",
|
| 1619 |
+
"sha256": "231f81a9594fc6ec154ee462f3ea06710b94ff8eafa668c39a93946812312742",
|
| 1620 |
+
"canvases": 32
|
| 1621 |
+
},
|
| 1622 |
+
{
|
| 1623 |
+
"b_number": "b19969181",
|
| 1624 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19969181",
|
| 1625 |
+
"sha256": "3e8a0a61d987d2b1724eb1a03fa2c35a77ae8221f0f526403840aa27ade4f7f2",
|
| 1626 |
+
"canvases": 36
|
| 1627 |
+
},
|
| 1628 |
+
{
|
| 1629 |
+
"b_number": "b19969351",
|
| 1630 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19969351",
|
| 1631 |
+
"sha256": "c27f399c9ccbde9b63719f83699daeb6711dbeb1829cefce13ca7ff3dd6ed36a",
|
| 1632 |
+
"canvases": 8
|
| 1633 |
+
},
|
| 1634 |
+
{
|
| 1635 |
+
"b_number": "b19970341",
|
| 1636 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19970341",
|
| 1637 |
+
"sha256": "1811a9e4a538470df59062ce7b56fc00a1ce5ef67727847e63cb6ae3120c0fa6",
|
| 1638 |
+
"canvases": 76
|
| 1639 |
+
},
|
| 1640 |
+
{
|
| 1641 |
+
"b_number": "b19970353",
|
| 1642 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19970353",
|
| 1643 |
+
"sha256": "6f1198db167841e3ea96ada52dcfe8983716d61a36e9b0da435c2571e07a0006",
|
| 1644 |
+
"canvases": 52
|
| 1645 |
+
},
|
| 1646 |
+
{
|
| 1647 |
+
"b_number": "b19970420",
|
| 1648 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19970420",
|
| 1649 |
+
"sha256": "f1bbfa1fcfab41f36a3c449bc9d134ad8ffe348f9ccfca18cdc4cb24910398e2",
|
| 1650 |
+
"canvases": 58
|
| 1651 |
+
},
|
| 1652 |
+
{
|
| 1653 |
+
"b_number": "b19971011",
|
| 1654 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19971011",
|
| 1655 |
+
"sha256": "9be8d8b53c57067939f516b8910582954c27e8f3be7cb27707f6ab62347d5937",
|
| 1656 |
+
"canvases": 64
|
| 1657 |
+
},
|
| 1658 |
+
{
|
| 1659 |
+
"b_number": "b19975831",
|
| 1660 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19975831",
|
| 1661 |
+
"sha256": "7aa4c425d143f4dcaae544dba0c22fcbfe0a7b4a1d69b072d67314b3ab33cab0",
|
| 1662 |
+
"canvases": 22
|
| 1663 |
+
},
|
| 1664 |
+
{
|
| 1665 |
+
"b_number": "b19975879",
|
| 1666 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19975879",
|
| 1667 |
+
"sha256": "d4dc3a8788c88f782bc25c931c6b93174eae4d826c8b7ab88d85b929cb38b183",
|
| 1668 |
+
"canvases": 20
|
| 1669 |
+
},
|
| 1670 |
+
{
|
| 1671 |
+
"b_number": "b19975922",
|
| 1672 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19975922",
|
| 1673 |
+
"sha256": "42924078e6a757f3932852c2f66cc47b10ca3c46f0a0bfb788309a37ffe2f98a",
|
| 1674 |
+
"canvases": 40
|
| 1675 |
+
},
|
| 1676 |
+
{
|
| 1677 |
+
"b_number": "b19975946",
|
| 1678 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19975946",
|
| 1679 |
+
"sha256": "ce73f38a87cb725eb9989415e9923b527812933edf1c76fb913131486801bf0c",
|
| 1680 |
+
"canvases": 22
|
| 1681 |
+
},
|
| 1682 |
+
{
|
| 1683 |
+
"b_number": "b19976112",
|
| 1684 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b19976112",
|
| 1685 |
+
"sha256": "ce537d54c619195d38ca28911175dddb5bed760a653a33e7e7a5729880cf4085",
|
| 1686 |
+
"canvases": 68
|
| 1687 |
+
},
|
| 1688 |
+
{
|
| 1689 |
+
"b_number": "b20056102",
|
| 1690 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b20056102",
|
| 1691 |
+
"sha256": "8d450917704ee92f18d8e9f7d1af3802b3ccd8fa15f507ee37f3ae07ae88a486",
|
| 1692 |
+
"canvases": 70
|
| 1693 |
+
},
|
| 1694 |
+
{
|
| 1695 |
+
"b_number": "b20056308",
|
| 1696 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b20056308",
|
| 1697 |
+
"sha256": "44f8420bd579225b3691d75e117f1e7dbb8669b86a3456de5dbe24d070de4ebf",
|
| 1698 |
+
"canvases": 137
|
| 1699 |
+
},
|
| 1700 |
+
{
|
| 1701 |
+
"b_number": "b20056448",
|
| 1702 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b20056448",
|
| 1703 |
+
"sha256": "a957b99d2273b77d603dee2c9d4ea58e7379c6c8aa7de0135be8a475f04975f2",
|
| 1704 |
+
"canvases": 365
|
| 1705 |
+
},
|
| 1706 |
+
{
|
| 1707 |
+
"b_number": "b20056916",
|
| 1708 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b20056916",
|
| 1709 |
+
"sha256": "9011a6b37b972b0e8476415fb0f8d8ff8ea6d5780198582c9f91ca9e98d3ca28",
|
| 1710 |
+
"canvases": 148
|
| 1711 |
+
},
|
| 1712 |
+
{
|
| 1713 |
+
"b_number": "b20057064",
|
| 1714 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b20057064",
|
| 1715 |
+
"sha256": "b276e8f985f04954864a1b37c0e69fd95f2a92129e0814e1270fd22e4ce33ed5",
|
| 1716 |
+
"canvases": 323
|
| 1717 |
+
},
|
| 1718 |
+
{
|
| 1719 |
+
"b_number": "b20274713",
|
| 1720 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b20274713",
|
| 1721 |
+
"sha256": "9e6e7844282ce52355481bd9c84dcd27b57788e24011042f05e1aa11bcc80987",
|
| 1722 |
+
"canvases": 24
|
| 1723 |
+
},
|
| 1724 |
+
{
|
| 1725 |
+
"b_number": "b20274944",
|
| 1726 |
+
"manifest_url": "https://iiif.wellcomecollection.org/presentation/v2/b20274944",
|
| 1727 |
+
"sha256": "376680a820d781128124a3a47d48c03dfa8e5baf7017432ee50ed61e65c84925",
|
| 1728 |
+
"canvases": 27
|
| 1729 |
+
}
|
| 1730 |
+
]
|
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"source_repo": "biglam/londons-pulse-moh",
|
| 3 |
+
"source_revision": "1a726bbb3a8dc8f3499cf2db0a983865ab6fd2b6",
|
| 4 |
+
"thresholds": {
|
| 5 |
+
"min_containment": 0.7,
|
| 6 |
+
"min_margin": 0.1,
|
| 7 |
+
"min_distinct_tokens": 8
|
| 8 |
+
},
|
| 9 |
+
"coverage": {
|
| 10 |
+
"reports": 288,
|
| 11 |
+
"canvases": 24052,
|
| 12 |
+
"table_items": 4086
|
| 13 |
+
},
|
| 14 |
+
"decisions": {
|
| 15 |
+
"retained": 3529,
|
| 16 |
+
"moved": 451,
|
| 17 |
+
"unresolved": 106
|
| 18 |
+
},
|
| 19 |
+
"splits": {
|
| 20 |
+
"train": {
|
| 21 |
+
"num_examples": 2520,
|
| 22 |
+
"num_bytes": 448527779,
|
| 23 |
+
"parquet_bytes": 445529382,
|
| 24 |
+
"original_rows": 2422
|
| 25 |
+
},
|
| 26 |
+
"validation": {
|
| 27 |
+
"num_examples": 302,
|
| 28 |
+
"num_bytes": 52884161,
|
| 29 |
+
"parquet_bytes": 52549259,
|
| 30 |
+
"original_rows": 279
|
| 31 |
+
},
|
| 32 |
+
"test": {
|
| 33 |
+
"num_examples": 327,
|
| 34 |
+
"num_bytes": 56707410,
|
| 35 |
+
"parquet_bytes": 56318649,
|
| 36 |
+
"original_rows": 299
|
| 37 |
+
}
|
| 38 |
+
},
|
| 39 |
+
"by_split": {
|
| 40 |
+
"train": {
|
| 41 |
+
"retained": 2875,
|
| 42 |
+
"moved": 320,
|
| 43 |
+
"unresolved": 78
|
| 44 |
+
},
|
| 45 |
+
"validation": {
|
| 46 |
+
"retained": 330,
|
| 47 |
+
"unresolved": 13,
|
| 48 |
+
"moved": 43
|
| 49 |
+
},
|
| 50 |
+
"test": {
|
| 51 |
+
"retained": 324,
|
| 52 |
+
"moved": 88,
|
| 53 |
+
"unresolved": 15
|
| 54 |
+
}
|
| 55 |
+
},
|
| 56 |
+
"download_size": 554397290,
|
| 57 |
+
"dataset_size": 558119350,
|
| 58 |
+
"corrected_images_fetched": 369
|
| 59 |
+
}
|
|
The diff for this file is too large to render.
See raw diff
|
|
|
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"checks_passed": [
|
| 3 |
+
"All 4086 IDs/CSV SHA-256/splits/reports conserved across repaired config and unresolved artifact",
|
| 4 |
+
"Pinned source payloads match independently recovered historical audit metadata",
|
| 5 |
+
"No duplicate page keys or table IDs; no report crosses splits",
|
| 6 |
+
"All three Arrow schemas identical to source, including image metadata",
|
| 7 |
+
"All 3149 embedded JPEGs fully decoded; dimensions match provenance",
|
| 8 |
+
"Original bytes retained for every unchanged image scan",
|
| 9 |
+
"Per-row table counts and ledger-to-scan mappings consistent",
|
| 10 |
+
"Card split row/byte metadata and default config mapping verified",
|
| 11 |
+
"24052 source ALTO receipts; no source fetch gaps"
|
| 12 |
+
],
|
| 13 |
+
"splits": {
|
| 14 |
+
"train": {
|
| 15 |
+
"rows": 2520,
|
| 16 |
+
"table_items": 3195,
|
| 17 |
+
"bytes": 448527779
|
| 18 |
+
},
|
| 19 |
+
"validation": {
|
| 20 |
+
"rows": 302,
|
| 21 |
+
"table_items": 373,
|
| 22 |
+
"bytes": 52884161
|
| 23 |
+
},
|
| 24 |
+
"test": {
|
| 25 |
+
"rows": 327,
|
| 26 |
+
"table_items": 412,
|
| 27 |
+
"bytes": 56707410
|
| 28 |
+
}
|
| 29 |
+
},
|
| 30 |
+
"image_width_counts": {
|
| 31 |
+
"800": 308,
|
| 32 |
+
"801": 3,
|
| 33 |
+
"1000": 2703,
|
| 34 |
+
"1001": 133,
|
| 35 |
+
"1002": 2
|
| 36 |
+
},
|
| 37 |
+
"nullable_printed_page_rows": 0,
|
| 38 |
+
"rows_with_changed_table_payload_or_new_scan": 511,
|
| 39 |
+
"decisions": {
|
| 40 |
+
"retained": 3529,
|
| 41 |
+
"moved": 451,
|
| 42 |
+
"unresolved": 106
|
| 43 |
+
}
|
| 44 |
+
}
|
|
@@ -0,0 +1,492 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# /// script
|
| 2 |
+
# requires-python = ">=3.12"
|
| 3 |
+
# dependencies = ["huggingface_hub==1.30.0", "pyarrow==25.0.1", "httpx==0.28.1", "pillow==12.3.0"]
|
| 4 |
+
# ///
|
| 5 |
+
"""Reproduce the September 2026 tables-only alignment repair locally.
|
| 6 |
+
|
| 7 |
+
Usage: uv run repair_table_alignment.py --work-dir /path/with/several-GB-free
|
| 8 |
+
Uses the pinned original tables shards and all 24,052 page ALTO documents
|
| 9 |
+
from their IIIF manifests. Raw ALTO is gzip-cached. No model inference or upload.
|
| 10 |
+
The source IIIF/ALTO endpoints are live; compare source checksum ledgers when
|
| 11 |
+
reproducing an older run. CSV strings and report-to-split assignments are preserved.
|
| 12 |
+
"""
|
| 13 |
+
|
| 14 |
+
import argparse
|
| 15 |
+
import csv
|
| 16 |
+
import gzip
|
| 17 |
+
import hashlib
|
| 18 |
+
import io
|
| 19 |
+
import json
|
| 20 |
+
import math
|
| 21 |
+
import re
|
| 22 |
+
import time
|
| 23 |
+
from collections import Counter, defaultdict
|
| 24 |
+
from concurrent.futures import ThreadPoolExecutor
|
| 25 |
+
from pathlib import Path
|
| 26 |
+
|
| 27 |
+
import httpx
|
| 28 |
+
import pyarrow as pa
|
| 29 |
+
import pyarrow.parquet as pq
|
| 30 |
+
from huggingface_hub import snapshot_download
|
| 31 |
+
from PIL import Image
|
| 32 |
+
|
| 33 |
+
ROOT = Path("moh-alignment-work")
|
| 34 |
+
CACHE = ROOT / "cache"
|
| 35 |
+
CLIENT = httpx.Client(
|
| 36 |
+
follow_redirects=True,
|
| 37 |
+
timeout=60,
|
| 38 |
+
headers={"User-Agent": "moh-table-alignment-repair/1.0"},
|
| 39 |
+
)
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
def cached(url, path):
|
| 43 |
+
path.parent.mkdir(parents=True, exist_ok=True)
|
| 44 |
+
if path.with_suffix(path.suffix + ".gz").exists():
|
| 45 |
+
return gzip.decompress(path.with_suffix(path.suffix + ".gz").read_bytes())
|
| 46 |
+
if not path.exists():
|
| 47 |
+
for attempt in range(4):
|
| 48 |
+
try:
|
| 49 |
+
r = CLIENT.get(url)
|
| 50 |
+
r.raise_for_status()
|
| 51 |
+
if path.suffix == ".xml":
|
| 52 |
+
path.with_suffix(".xml.gz").write_bytes(
|
| 53 |
+
gzip.compress(r.content, compresslevel=5, mtime=0)
|
| 54 |
+
)
|
| 55 |
+
return r.content
|
| 56 |
+
path.write_bytes(r.content)
|
| 57 |
+
break
|
| 58 |
+
except (httpx.HTTPError, OSError):
|
| 59 |
+
if attempt == 3:
|
| 60 |
+
raise
|
| 61 |
+
time.sleep(1 + attempt)
|
| 62 |
+
return path.read_bytes()
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
def rows():
|
| 66 |
+
return [
|
| 67 |
+
dict(r, source_row=i)
|
| 68 |
+
for split in ["train", "validation", "test"]
|
| 69 |
+
for i, r in enumerate(
|
| 70 |
+
pq.read_table(
|
| 71 |
+
ROOT / "base" / "tables" / f"{split}-00000-of-00001.parquet",
|
| 72 |
+
columns=[
|
| 73 |
+
"b_number",
|
| 74 |
+
"page_index",
|
| 75 |
+
"printed_page",
|
| 76 |
+
"table_ground_truth",
|
| 77 |
+
"split",
|
| 78 |
+
"signals",
|
| 79 |
+
"n_tables_on_page",
|
| 80 |
+
],
|
| 81 |
+
).to_pylist()
|
| 82 |
+
)
|
| 83 |
+
]
|
| 84 |
+
|
| 85 |
+
|
| 86 |
+
def canvases(b):
|
| 87 |
+
m = json.loads(
|
| 88 |
+
cached(
|
| 89 |
+
f"https://iiif.wellcomecollection.org/presentation/v2/{b}",
|
| 90 |
+
CACHE / "manifest" / f"{b}.json",
|
| 91 |
+
)
|
| 92 |
+
)
|
| 93 |
+
return [c for s in m.get("sequences", []) for c in s.get("canvases", [])]
|
| 94 |
+
|
| 95 |
+
|
| 96 |
+
def table_cells(raw):
|
| 97 |
+
# Published strings carry literal backslash escapes; interpret for scoring only.
|
| 98 |
+
if "\\r\\n" in raw and "\r\n" not in raw:
|
| 99 |
+
raw = raw.replace("\\r\\n", "\n").replace("\\n", "\n").replace('\\"', '"')
|
| 100 |
+
return list(csv.reader(io.StringIO(raw)))
|
| 101 |
+
|
| 102 |
+
|
| 103 |
+
def tokens(text):
|
| 104 |
+
return {
|
| 105 |
+
x
|
| 106 |
+
for x in re.findall(r"[a-z0-9]+", text.lower())
|
| 107 |
+
if len(x) > 1 and x not in {"nil"}
|
| 108 |
+
}
|
| 109 |
+
|
| 110 |
+
|
| 111 |
+
def alto_phase():
|
| 112 |
+
import xml.etree.ElementTree as ET
|
| 113 |
+
|
| 114 |
+
rs = rows()
|
| 115 |
+
jobs = []
|
| 116 |
+
for b in sorted({r["b_number"] for r in rs}):
|
| 117 |
+
for i, c in enumerate(canvases(b), 1):
|
| 118 |
+
sa = c.get("seeAlso", [])
|
| 119 |
+
sa = [sa] if isinstance(sa, dict) else sa
|
| 120 |
+
urls = [x.get("@id") for x in sa if "alto" in x.get("@id", "")]
|
| 121 |
+
if urls:
|
| 122 |
+
jobs.append((b, i, urls[0]))
|
| 123 |
+
|
| 124 |
+
def one(job):
|
| 125 |
+
b, i, url = job
|
| 126 |
+
out = CACHE / "tokens" / b / f"{i:04}.json"
|
| 127 |
+
if out.exists():
|
| 128 |
+
return
|
| 129 |
+
try:
|
| 130 |
+
raw = cached(url, CACHE / "alto" / b / f"{i:04}.xml")
|
| 131 |
+
parser = "xml"
|
| 132 |
+
try:
|
| 133 |
+
root = ET.fromstring(raw)
|
| 134 |
+
texts = [
|
| 135 |
+
s.attrib["CONTENT"]
|
| 136 |
+
for s in root.iter()
|
| 137 |
+
if s.tag.endswith("}String") and "CONTENT" in s.attrib
|
| 138 |
+
]
|
| 139 |
+
except ET.ParseError:
|
| 140 |
+
# Some source files have broken block nesting or Page attributes.
|
| 141 |
+
# Parse each complete String element without editing its attributes.
|
| 142 |
+
tags = re.findall(rb"<String\b[^>]*/>", raw)
|
| 143 |
+
assert len(tags) == raw.count(b"<String ")
|
| 144 |
+
texts = [ET.fromstring(tag).attrib["CONTENT"] for tag in tags]
|
| 145 |
+
parser = "individual-string-elements"
|
| 146 |
+
out.parent.mkdir(parents=True, exist_ok=True)
|
| 147 |
+
out.write_text(
|
| 148 |
+
json.dumps(
|
| 149 |
+
{
|
| 150 |
+
"url": url,
|
| 151 |
+
"sha256": hashlib.sha256(raw).hexdigest(),
|
| 152 |
+
"tokens": sorted(tokens(" ".join(texts))),
|
| 153 |
+
"strings": len(texts),
|
| 154 |
+
"parser": parser,
|
| 155 |
+
}
|
| 156 |
+
)
|
| 157 |
+
)
|
| 158 |
+
except (httpx.HTTPError, OSError, ET.ParseError, AssertionError) as e:
|
| 159 |
+
raise RuntimeError(f"Incomplete source evidence: {b} scan {i}") from e
|
| 160 |
+
|
| 161 |
+
print("ALTO JOBS", len(jobs), flush=True)
|
| 162 |
+
with ThreadPoolExecutor(max_workers=12) as pool:
|
| 163 |
+
for i, _ in enumerate(pool.map(one, jobs), 1):
|
| 164 |
+
if i % 500 == 0:
|
| 165 |
+
print("ALTO DONE", i, "/", len(jobs), flush=True)
|
| 166 |
+
|
| 167 |
+
|
| 168 |
+
def score_phase():
|
| 169 |
+
rs = rows()
|
| 170 |
+
by_b = defaultdict(list)
|
| 171 |
+
for r in rs:
|
| 172 |
+
by_b[r["b_number"]].append(r)
|
| 173 |
+
result = []
|
| 174 |
+
for b, rr in by_b.items():
|
| 175 |
+
cs = canvases(b)
|
| 176 |
+
paths = [CACHE / "tokens" / b / f"{i:04}.json" for i in range(1, len(cs) + 1)]
|
| 177 |
+
if not all(p.exists() for p in paths):
|
| 178 |
+
raise RuntimeError(
|
| 179 |
+
f"Missing source ALTO for {b}; refusing to score incomplete reports"
|
| 180 |
+
)
|
| 181 |
+
docs = [json.loads(p.read_text()) for p in paths]
|
| 182 |
+
sets = [set(d["tokens"]) for d in docs]
|
| 183 |
+
df = Counter(t for ts in sets for t in ts)
|
| 184 |
+
n = len(sets)
|
| 185 |
+
for r in rr:
|
| 186 |
+
for tab in json.loads(r["table_ground_truth"]):
|
| 187 |
+
cells = table_cells(tab["csv"])
|
| 188 |
+
ts = tokens(" ".join(c for row in cells[2:] for c in row))
|
| 189 |
+
weights = {t: math.log((n + 1) / (df[t] + 1)) + 1 for t in sorted(ts)}
|
| 190 |
+
den = sum(weights.values())
|
| 191 |
+
scores = [
|
| 192 |
+
sum(w for t, w in weights.items() if t in ss) / den if den else 0
|
| 193 |
+
for ss in sets
|
| 194 |
+
]
|
| 195 |
+
order = sorted(range(n), key=lambda i: (-scores[i], i))
|
| 196 |
+
best = order[0]
|
| 197 |
+
second = order[1] if n > 1 else best
|
| 198 |
+
result.append(
|
| 199 |
+
{
|
| 200 |
+
"b_number": b,
|
| 201 |
+
"table_id": tab["table_id"],
|
| 202 |
+
"split": r["split"],
|
| 203 |
+
"source_row": r["source_row"],
|
| 204 |
+
"old_scan": r["page_index"],
|
| 205 |
+
"printed_page": r["printed_page"],
|
| 206 |
+
"export_page": cells[1][1]
|
| 207 |
+
if len(cells) > 1 and len(cells[1]) > 1
|
| 208 |
+
else None,
|
| 209 |
+
"best_scan": best + 1,
|
| 210 |
+
"score": scores[best],
|
| 211 |
+
"second_scan": second + 1,
|
| 212 |
+
"second_score": scores[second],
|
| 213 |
+
"margin": scores[best] - scores[second],
|
| 214 |
+
"old_score": scores[r["page_index"] - 1],
|
| 215 |
+
"tokens": len(ts),
|
| 216 |
+
"top": [[i + 1, round(scores[i], 5)] for i in order[:5]],
|
| 217 |
+
"candidate_count": n,
|
| 218 |
+
}
|
| 219 |
+
)
|
| 220 |
+
(ROOT / "scores.json").write_text(json.dumps(result, indent=2))
|
| 221 |
+
print(
|
| 222 |
+
"SCORED",
|
| 223 |
+
len(result),
|
| 224 |
+
"reports",
|
| 225 |
+
len({r["b_number"] for r in result}),
|
| 226 |
+
flush=True,
|
| 227 |
+
)
|
| 228 |
+
|
| 229 |
+
|
| 230 |
+
REV = "1a726bbb3a8dc8f3499cf2db0a983865ab6fd2b6"
|
| 231 |
+
OUT = ROOT / "upload"
|
| 232 |
+
AUDIT = OUT / "audits" / "table-alignment-2026-09-09"
|
| 233 |
+
THRESHOLD = 0.70
|
| 234 |
+
MARGIN = 0.10
|
| 235 |
+
MIN_TOKENS = 8
|
| 236 |
+
|
| 237 |
+
ADJUDICATIONS = {
|
| 238 |
+
"10182507101080033": {
|
| 239 |
+
"scan": 109,
|
| 240 |
+
"method": "agent-visual-review",
|
| 241 |
+
"reason": "Rates table for 1901-2 with Clapham, Putney, Streatham, Tooting and Wandsworth matches scan109: relief of poor1s10d each; total rates7s1d/7s1d/7s2d/6s11d/7s3-and-a-half-d. Source fraction transcription remains imperfect. This fresh-sample candidate was unresolved automatically (margin0.072), then retained after independent agent image review.",
|
| 242 |
+
},
|
| 243 |
+
"10199535100160005": {
|
| 244 |
+
"scan": 14,
|
| 245 |
+
"method": "agent-visual-review",
|
| 246 |
+
"reason": "FINANCE COMMITTEE table matches scan 14: meetings total 16; Bennell 4/1/3/4 total 12; Chamberlen 6/0/3/5 total 14; Easton 1/2/2/5 total 10; June 1881 retirement/election notes also match. Low automated margin reflects similar neighbouring table content.",
|
| 247 |
+
},
|
| 248 |
+
}
|
| 249 |
+
|
| 250 |
+
|
| 251 |
+
def accepted(score):
|
| 252 |
+
if score["table_id"] in ADJUDICATIONS:
|
| 253 |
+
assert score["best_scan"] == ADJUDICATIONS[score["table_id"]]["scan"]
|
| 254 |
+
return True
|
| 255 |
+
return (
|
| 256 |
+
score["score"] >= THRESHOLD
|
| 257 |
+
and score["margin"] >= MARGIN
|
| 258 |
+
and score["tokens"] >= MIN_TOKENS
|
| 259 |
+
)
|
| 260 |
+
|
| 261 |
+
|
| 262 |
+
def build():
|
| 263 |
+
AUDIT.mkdir(parents=True, exist_ok=True)
|
| 264 |
+
(OUT / "tables").mkdir(exist_ok=True)
|
| 265 |
+
inputs = {
|
| 266 |
+
s: pq.read_table(ROOT / "base" / "tables" / f"{s}-00000-of-00001.parquet")
|
| 267 |
+
for s in ["train", "validation", "test"]
|
| 268 |
+
}
|
| 269 |
+
original = {s: t.to_pylist() for s, t in inputs.items()}
|
| 270 |
+
scores = json.loads((ROOT / "scores.json").read_text())
|
| 271 |
+
assert len(scores) == 4086
|
| 272 |
+
sm = {s["table_id"]: s for s in scores}
|
| 273 |
+
assert len(sm) == 4086
|
| 274 |
+
groups = defaultdict(list)
|
| 275 |
+
ledger = []
|
| 276 |
+
unresolved = []
|
| 277 |
+
seen = set()
|
| 278 |
+
images = {}
|
| 279 |
+
for split, rs in original.items():
|
| 280 |
+
for ri, r in enumerate(rs):
|
| 281 |
+
images[(split, r["b_number"], r["page_index"])] = r["image"]
|
| 282 |
+
for tab in json.loads(r["table_ground_truth"]):
|
| 283 |
+
tid = tab["table_id"]
|
| 284 |
+
assert tid not in seen
|
| 285 |
+
seen.add(tid)
|
| 286 |
+
s = sm[tid]
|
| 287 |
+
assert (s["b_number"], s["split"], s["source_row"], s["old_scan"]) == (
|
| 288 |
+
r["b_number"],
|
| 289 |
+
split,
|
| 290 |
+
ri,
|
| 291 |
+
r["page_index"],
|
| 292 |
+
)
|
| 293 |
+
keep = accepted(s)
|
| 294 |
+
new = s["best_scan"] if keep else None
|
| 295 |
+
entry = {
|
| 296 |
+
**s,
|
| 297 |
+
"new_scan": new,
|
| 298 |
+
"decision": ("retained" if new == s["old_scan"] else "moved")
|
| 299 |
+
if keep
|
| 300 |
+
else "unresolved",
|
| 301 |
+
"csv_sha256": hashlib.sha256(tab["csv"].encode()).hexdigest(),
|
| 302 |
+
}
|
| 303 |
+
if tid in ADJUDICATIONS:
|
| 304 |
+
entry["adjudication"] = ADJUDICATIONS[tid]
|
| 305 |
+
if keep:
|
| 306 |
+
token_doc = json.loads(
|
| 307 |
+
(
|
| 308 |
+
CACHE / "tokens" / r["b_number"] / f"{new:04}.json"
|
| 309 |
+
).read_text()
|
| 310 |
+
)
|
| 311 |
+
entry.update(
|
| 312 |
+
alto_url=token_doc["url"], alto_sha256=token_doc["sha256"]
|
| 313 |
+
)
|
| 314 |
+
groups[(split, r["b_number"], new)].append((r, tab, entry))
|
| 315 |
+
else:
|
| 316 |
+
entry["reason"] = [
|
| 317 |
+
name
|
| 318 |
+
for name, bad in [
|
| 319 |
+
("low_containment", s["score"] < THRESHOLD),
|
| 320 |
+
("ambiguous_candidates", s["margin"] < MARGIN),
|
| 321 |
+
("sparse_content", s["tokens"] < MIN_TOKENS),
|
| 322 |
+
]
|
| 323 |
+
if bad
|
| 324 |
+
]
|
| 325 |
+
unresolved.append({**entry, "csv": tab["csv"]})
|
| 326 |
+
ledger.append(entry)
|
| 327 |
+
|
| 328 |
+
def image_for(item):
|
| 329 |
+
key, parts = item
|
| 330 |
+
_split, b, scan = key
|
| 331 |
+
if key in images:
|
| 332 |
+
return key, images[key]
|
| 333 |
+
source_im = Image.open(io.BytesIO(parts[0][0]["image"]["bytes"]))
|
| 334 |
+
width = source_im.width
|
| 335 |
+
c = canvases(b)[scan - 1]
|
| 336 |
+
service = c["images"][0]["resource"]["service"]
|
| 337 |
+
service = (service[0] if isinstance(service, list) else service)["@id"]
|
| 338 |
+
url = f"{service}/full/{width},/0/default.jpg"
|
| 339 |
+
raw = cached(url, CACHE / "images" / b / f"{scan:04}-{width}.jpg")
|
| 340 |
+
im = Image.open(io.BytesIO(raw))
|
| 341 |
+
im.verify()
|
| 342 |
+
return key, {"bytes": raw, "path": f"{b}_{scan:04}.jpg"}
|
| 343 |
+
|
| 344 |
+
missing = [(k, v) for k, v in groups.items() if k not in images]
|
| 345 |
+
print("FETCH CORRECTED IMAGES", len(missing), flush=True)
|
| 346 |
+
with ThreadPoolExecutor(max_workers=8) as pool:
|
| 347 |
+
for i, (k, v) in enumerate(pool.map(image_for, missing), 1):
|
| 348 |
+
images[k] = v
|
| 349 |
+
if i % 25 == 0:
|
| 350 |
+
print("IMAGES", i, "/", len(missing), flush=True)
|
| 351 |
+
output = defaultdict(list)
|
| 352 |
+
for (split, b, scan), parts in groups.items():
|
| 353 |
+
r = dict(parts[0][0])
|
| 354 |
+
tabs = [x[1] for x in parts]
|
| 355 |
+
c = canvases(b)[scan - 1]
|
| 356 |
+
service = c["images"][0]["resource"]["service"]
|
| 357 |
+
service = (service[0] if isinstance(service, list) else service)["@id"]
|
| 358 |
+
labels = sorted(
|
| 359 |
+
{x[2]["export_page"] for x in parts if x[2]["export_page"] is not None}
|
| 360 |
+
)
|
| 361 |
+
printed = {x[0]["printed_page"] for x in parts}
|
| 362 |
+
im = images[(split, b, scan)]
|
| 363 |
+
dims = Image.open(io.BytesIO(im["bytes"])).size
|
| 364 |
+
signals = json.loads(r["signals"])
|
| 365 |
+
signals.update(
|
| 366 |
+
{
|
| 367 |
+
"img_size": dims[0],
|
| 368 |
+
"image_size": list(dims),
|
| 369 |
+
"manifest_url": f"https://iiif.wellcomecollection.org/presentation/v2/{b}",
|
| 370 |
+
"image_service_id": service,
|
| 371 |
+
"canvas_id": c["@id"],
|
| 372 |
+
"canvas_label": str(c.get("label", "")),
|
| 373 |
+
"image_native_size": [c["width"], c["height"]],
|
| 374 |
+
"export_page_labels": labels,
|
| 375 |
+
"alignment_method": "report-wide-alto-idf-v1",
|
| 376 |
+
"alignment_audit": "audits/table-alignment-2026-09-09",
|
| 377 |
+
"source_revision": REV,
|
| 378 |
+
}
|
| 379 |
+
)
|
| 380 |
+
r.update(
|
| 381 |
+
image=im,
|
| 382 |
+
table_ground_truth=json.dumps(tabs, ensure_ascii=False),
|
| 383 |
+
n_tables_on_page=len(tabs),
|
| 384 |
+
page_index=scan,
|
| 385 |
+
printed_page=next(iter(printed)) if len(printed) == 1 else None,
|
| 386 |
+
signals=json.dumps(signals, ensure_ascii=False),
|
| 387 |
+
)
|
| 388 |
+
output[split].append(r)
|
| 389 |
+
sizes = {}
|
| 390 |
+
for split, rs in output.items():
|
| 391 |
+
table = pa.Table.from_pylist(rs, schema=inputs[split].schema)
|
| 392 |
+
path = OUT / "tables" / f"{split}-00000-of-00001.parquet"
|
| 393 |
+
pq.write_table(table, path, compression="snappy", row_group_size=100)
|
| 394 |
+
sizes[split] = {
|
| 395 |
+
"num_examples": table.num_rows,
|
| 396 |
+
"num_bytes": pq.read_table(path).nbytes,
|
| 397 |
+
"parquet_bytes": path.stat().st_size,
|
| 398 |
+
"original_rows": inputs[split].num_rows,
|
| 399 |
+
}
|
| 400 |
+
for name, values in [("decisions.jsonl", ledger), ("unresolved.jsonl", unresolved)]:
|
| 401 |
+
(AUDIT / name).write_text(
|
| 402 |
+
"".join(json.dumps(v, ensure_ascii=False) + "\n" for v in values)
|
| 403 |
+
)
|
| 404 |
+
summary = {
|
| 405 |
+
"source_repo": "biglam/londons-pulse-moh",
|
| 406 |
+
"source_revision": REV,
|
| 407 |
+
"thresholds": {
|
| 408 |
+
"min_containment": THRESHOLD,
|
| 409 |
+
"min_margin": MARGIN,
|
| 410 |
+
"min_distinct_tokens": MIN_TOKENS,
|
| 411 |
+
},
|
| 412 |
+
"coverage": {
|
| 413 |
+
"reports": len({s["b_number"] for s in scores}),
|
| 414 |
+
"canvases": sum(len(canvases(b)) for b in {s["b_number"] for s in scores}),
|
| 415 |
+
"table_items": len(scores),
|
| 416 |
+
},
|
| 417 |
+
"decisions": dict(Counter(x["decision"] for x in ledger)),
|
| 418 |
+
"splits": sizes,
|
| 419 |
+
"by_split": {
|
| 420 |
+
s: dict(Counter(x["decision"] for x in ledger if x["split"] == s))
|
| 421 |
+
for s in inputs
|
| 422 |
+
},
|
| 423 |
+
"download_size": sum(x["parquet_bytes"] for x in sizes.values()),
|
| 424 |
+
"dataset_size": sum(x["num_bytes"] for x in sizes.values()),
|
| 425 |
+
"corrected_images_fetched": len(missing),
|
| 426 |
+
}
|
| 427 |
+
(AUDIT / "adjudications.json").write_text(
|
| 428 |
+
json.dumps(ADJUDICATIONS, indent=2) + "\n"
|
| 429 |
+
)
|
| 430 |
+
(AUDIT / "summary.json").write_text(json.dumps(summary, indent=2) + "\n")
|
| 431 |
+
manifests = [
|
| 432 |
+
{
|
| 433 |
+
"b_number": b,
|
| 434 |
+
"manifest_url": f"https://iiif.wellcomecollection.org/presentation/v2/{b}",
|
| 435 |
+
"sha256": hashlib.sha256(
|
| 436 |
+
(CACHE / "manifest" / f"{b}.json").read_bytes()
|
| 437 |
+
).hexdigest(),
|
| 438 |
+
"canvases": len(canvases(b)),
|
| 439 |
+
}
|
| 440 |
+
for b in sorted({s["b_number"] for s in scores})
|
| 441 |
+
]
|
| 442 |
+
alto_sources = []
|
| 443 |
+
for b in sorted({s["b_number"] for s in scores}):
|
| 444 |
+
for path in sorted((CACHE / "tokens" / b).glob("*.json")):
|
| 445 |
+
doc = json.loads(path.read_text())
|
| 446 |
+
alto_sources.append(
|
| 447 |
+
{
|
| 448 |
+
"b_number": b,
|
| 449 |
+
"scan": int(path.stem),
|
| 450 |
+
"url": doc["url"],
|
| 451 |
+
"sha256": doc["sha256"],
|
| 452 |
+
"strings": doc["strings"],
|
| 453 |
+
"parser": doc.get("parser", "xml"),
|
| 454 |
+
}
|
| 455 |
+
)
|
| 456 |
+
(AUDIT / "source-alto.jsonl").write_text(
|
| 457 |
+
"".join(json.dumps(x) + "\n" for x in alto_sources)
|
| 458 |
+
)
|
| 459 |
+
(AUDIT / "source-manifests.json").write_text(json.dumps(manifests, indent=2) + "\n")
|
| 460 |
+
print(json.dumps(summary, indent=2), flush=True)
|
| 461 |
+
|
| 462 |
+
|
| 463 |
+
def main():
|
| 464 |
+
global ROOT, CACHE, OUT, AUDIT
|
| 465 |
+
ap = argparse.ArgumentParser(description=__doc__)
|
| 466 |
+
ap.add_argument("--work-dir", type=Path, required=True)
|
| 467 |
+
ap.add_argument(
|
| 468 |
+
"--offline-build",
|
| 469 |
+
action="store_true",
|
| 470 |
+
help="Reuse existing complete scores and image cache",
|
| 471 |
+
)
|
| 472 |
+
args = ap.parse_args()
|
| 473 |
+
ROOT = args.work_dir.resolve()
|
| 474 |
+
CACHE = ROOT / "cache"
|
| 475 |
+
OUT = ROOT / "upload"
|
| 476 |
+
AUDIT = OUT / "audits" / "table-alignment-2026-09-09"
|
| 477 |
+
CACHE.mkdir(parents=True, exist_ok=True)
|
| 478 |
+
if not args.offline_build:
|
| 479 |
+
snapshot_download(
|
| 480 |
+
"biglam/londons-pulse-moh",
|
| 481 |
+
repo_type="dataset",
|
| 482 |
+
revision=REV,
|
| 483 |
+
allow_patterns=["README.md", "tables/*"],
|
| 484 |
+
local_dir=ROOT / "base",
|
| 485 |
+
)
|
| 486 |
+
alto_phase()
|
| 487 |
+
score_phase()
|
| 488 |
+
build()
|
| 489 |
+
|
| 490 |
+
|
| 491 |
+
if __name__ == "__main__":
|
| 492 |
+
main()
|
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f03cc55b68384a84baa601554ff374dd2ffccb04d0e9b55cf52129dd54a99543
|
| 3 |
+
size 56318649
|
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:88285f1f073b34dedf3736e8538ce3e5a12f552fb22e261e948315851cad5f68
|
| 3 |
+
size 445529382
|
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:515d6cf8a6e292ac18926c558d775a8e6e2474a219269fa482a5c1970df24e0f
|
| 3 |
+
size 52549259
|