diff --git a/DATASET_CARD.md b/DATASET_CARD.md index 7e03e46b35778256e2876ca84e0d09ee60f8700e..8e36d4c78fa2ab9af3ed34451455bcaea9716367 100644 --- a/DATASET_CARD.md +++ b/DATASET_CARD.md @@ -43,7 +43,8 @@ Five open-weight models. Four architectures. The best one scored 83%. The larges | Component | Path | Format | Count | |---|---|---|---| | Invoices (text) | `output/invoices/` | Markdown | 200 | -| Invoices (visual) | `output/pdf/` | PDF | 200 | +| Invoices (visual, PDF) | `output/pdf/` | PDF | 200 | +| Invoices (visual, PNG) | `output/png/` | PNG | 200 | | Ground truth | `output/ground_truth/` | JSON | 200 | | Manifest | `output/manifest.csv` | CSV | 1 | | Distribution summary | `output/summary.json` | JSON | 1 | @@ -142,7 +143,7 @@ A plain-text rendering of a European B2B invoice. Company names are fictional (P ### Invoice (PDF) -The same invoice, rendered as a styled single-page PDF with a line-item table, header block, and summary section. German number formatting (`1.234,56`), Swiss formatting (`1'234.56`), and English formatting (`1,234.56`) are all preserved visually — the model must read the numbers from the rendered document, not from parsed text. +The same invoice, rendered as a styled single-page PDF (and converted to 200 DPI PNG) with a line-item table, header block, and summary section. The PNG versions are the recommended input for vision models — most inference engines (including Ollama) accept PNG/JPG but not PDF. German number formatting (`1.234,56`), Swiss formatting (`1'234.56`), and English formatting (`1,234.56`) are all preserved visually — the model must read the numbers from the rendered document, not from parsed text. Use the PDF versions to benchmark multimodal and vision-language models on document understanding. The text versions test reading comprehension; the PDF versions test whether the model can extract the same information when it has to *see* the invoice instead of *read* it. diff --git a/README.md b/README.md index 7e03e46b35778256e2876ca84e0d09ee60f8700e..8e36d4c78fa2ab9af3ed34451455bcaea9716367 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,8 @@ Five open-weight models. Four architectures. The best one scored 83%. The larges | Component | Path | Format | Count | |---|---|---|---| | Invoices (text) | `output/invoices/` | Markdown | 200 | -| Invoices (visual) | `output/pdf/` | PDF | 200 | +| Invoices (visual, PDF) | `output/pdf/` | PDF | 200 | +| Invoices (visual, PNG) | `output/png/` | PNG | 200 | | Ground truth | `output/ground_truth/` | JSON | 200 | | Manifest | `output/manifest.csv` | CSV | 1 | | Distribution summary | `output/summary.json` | JSON | 1 | @@ -142,7 +143,7 @@ A plain-text rendering of a European B2B invoice. Company names are fictional (P ### Invoice (PDF) -The same invoice, rendered as a styled single-page PDF with a line-item table, header block, and summary section. German number formatting (`1.234,56`), Swiss formatting (`1'234.56`), and English formatting (`1,234.56`) are all preserved visually — the model must read the numbers from the rendered document, not from parsed text. +The same invoice, rendered as a styled single-page PDF (and converted to 200 DPI PNG) with a line-item table, header block, and summary section. The PNG versions are the recommended input for vision models — most inference engines (including Ollama) accept PNG/JPG but not PDF. German number formatting (`1.234,56`), Swiss formatting (`1'234.56`), and English formatting (`1,234.56`) are all preserved visually — the model must read the numbers from the rendered document, not from parsed text. Use the PDF versions to benchmark multimodal and vision-language models on document understanding. The text versions test reading comprehension; the PDF versions test whether the model can extract the same information when it has to *see* the invoice instead of *read* it. diff --git a/experiment-notes-07.md b/experiment-notes-07.md index 28042e75b4867e7854689dd1ef64268375df4c2f..d189f4de7c9119252f9a3ed4338daa1aa0bae672 100644 --- a/experiment-notes-07.md +++ b/experiment-notes-07.md @@ -17,6 +17,8 @@ Three sizes, one vendor, one architecture lineage: All three are multimodal — they natively accept image input. Vision capabilities survive GGUF quantisation (requires mmproj projector file alongside the model). +**Important: Ollama only accepts PNG, JPG, and WebP as image input. Not PDF.** This is an Ollama limitation, not a model limitation — the Gemma 4 vision encoder works on pixel data, so any raster image format works, but Ollama's API doesn't handle PDF-to-image conversion. Invoices must be converted to PNG before being fed to the model. The PDF versions exist for distribution (HuggingFace dataset) and for other inference engines that might handle PDFs natively. For our Ollama-based benchmark, the pipeline is: Markdown → PDF (styled rendering) → PNG (for the model). + ### Quantisation levels For each model, test at: @@ -36,16 +38,23 @@ This is **weight quantisation** — the model's learned parameters are stored at Weight quantisation is permanent: you download a smaller file, it loads into less memory, and every inference uses the compressed weights. KV cache quantisation is dynamic: the model weights stay full precision, but the memory of the conversation is compressed on the fly. They solve different problems. Weight quantisation = "make the model smaller." KV cache quantisation = "make the conversation cheaper." They can be combined. ### Input format -The 200 existing synthetic invoices from article 06, rendered as PDF images. A rendering script will produce styled PNG/PDF versions with visual variation: +The 200 existing synthetic invoices from article 06, rendered as styled PDFs and converted to PNG (200 DPI) for model input. Three formats exist in the dataset: -- Different visual templates (3-5 styles) -- Different fonts -- Table vs paragraph layout preserved from the original corpus -- German/Swiss/English number formatting preserved -- Some with slight rotation (simulating a scan) -- Some at lower resolution (simulating a phone photo) +- **Markdown** (`output/invoices/`) — plain text, used in article 06 +- **PDF** (`output/pdf/`) — styled single-page documents with tables, headers, formatted numbers +- **PNG** (`output/png/`) — 200 DPI raster images converted from PDF, actual input to Ollama + +Visual properties preserved across formats: +- Table vs paragraph layout from the original corpus +- German/Swiss/English number formatting preserved visually - All with the same cent-perfect ground truth from article 06 +Future variation (not yet implemented): +- Multiple visual templates (3-5 styles) +- Different fonts +- Slight rotation (simulating a scan) +- Lower resolution variants (simulating a phone photo) + ### Evaluation conditions Same two conditions as article 06: - **Autopilot:** model sees the image, reports the total @@ -200,8 +209,8 @@ Why this matters for the article: the reader who reads "quantisation makes AI ch ## Open Questions -1. **Rendering script:** How to convert Markdown invoices to styled PDFs/PNGs? Options: WeasyPrint, Puppeteer, matplotlib. Need 3-5 visual templates with controlled variation. -2. **Ollama vision support:** Confirmed that Ollama supports Gemma 4 multimodal. Need to test: does `ollama run gemma4:31b` accept image input out of the box? What's the syntax? +1. ~~**Rendering script:** How to convert Markdown invoices to styled PDFs/PNGs?~~ **DONE.** ReportLab for MD→PDF, pdf2image/poppler for PDF→PNG. 200 PDFs + 200 PNGs generated. Single visual template for now — multiple templates are a future extension. +2. ~~**Ollama vision support:**~~ **RESOLVED.** Ollama supports Gemma 4 multimodal. Syntax: pass PNG/JPG file paths in the `images` field of the API call or drag files in interactive mode. **PDFs are NOT accepted** — must convert to PNG first. The Python API: `ollama.chat(model='gemma4:e4b', messages=[{'role': 'user', 'content': '...', 'images': ['path.png']}])`. 3. **MoE quantisation quality:** Research says "expert-shift" can corrupt routing. Is this observable on invoices? The German comma disaster from article 06 could get worse if the routing sends German-formatted numbers to the wrong expert. 4. **Benchmark harness:** Can we adapt `run_benchmark.py` from article 06? Need to add image input path, keep everything else (scoring, CSV output, conditions B and C). 5. **Timeline:** Rendering script → test runs on 10 invoices → full runs → analysis → article. Two weekends? diff --git a/output/png/INV-2026-0001.png b/output/png/INV-2026-0001.png new file mode 100644 index 0000000000000000000000000000000000000000..e5d28b75da4c8b9b60f44dc08f1bd2d034dfbdaa --- /dev/null +++ b/output/png/INV-2026-0001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04297778908b5bffd3c9a4288eed25403998b6f74fde1d5d2d68c18069e45f65 +size 202487 diff --git a/output/png/INV-2026-0002.png b/output/png/INV-2026-0002.png new file mode 100644 index 0000000000000000000000000000000000000000..7b558476e90e5d55af8c6ae1fa35df3164a93d80 --- /dev/null +++ b/output/png/INV-2026-0002.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96b8cd7593ad8f739e3421a6f5ddd381c0c296f311aed8d59746a0560c1e987d +size 187747 diff --git a/output/png/INV-2026-0003.png b/output/png/INV-2026-0003.png new file mode 100644 index 0000000000000000000000000000000000000000..71bcc237c3cf525ab57e2c61586c254bb3e65d8e --- /dev/null +++ b/output/png/INV-2026-0003.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca21a441e2711e8752b7a26aed1057a62195fb1e67492758ab6c72de5e35a5ad +size 155216 diff --git a/output/png/INV-2026-0004.png b/output/png/INV-2026-0004.png new file mode 100644 index 0000000000000000000000000000000000000000..0c50c6f1e584bfe0644d44a1804e3e06a0d457a5 --- /dev/null +++ b/output/png/INV-2026-0004.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:038f836290efbcf5c7256f3f38e31fd7d4acd3b2701811e41d7e6c610aeadf01 +size 157293 diff --git a/output/png/INV-2026-0005.png b/output/png/INV-2026-0005.png new file mode 100644 index 0000000000000000000000000000000000000000..2ff04f2efd51d97107e57e9fef137d7a88c61b43 --- /dev/null +++ b/output/png/INV-2026-0005.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2283dacb74968b42c131f0ba3a9bc0f7d0d59fa5896cae2b5ed1ee404cf3d3 +size 119012 diff --git a/output/png/INV-2026-0006.png b/output/png/INV-2026-0006.png new file mode 100644 index 0000000000000000000000000000000000000000..bcb158952c47674d8692449ba128132792a24fcd --- /dev/null +++ b/output/png/INV-2026-0006.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e64a1a99d8f969bc55840adf8ebe00be1df673a1e5b56d0848c02174a003304 +size 143692 diff --git a/output/png/INV-2026-0007.png b/output/png/INV-2026-0007.png new file mode 100644 index 0000000000000000000000000000000000000000..41bc14a8e42c8a3ec88e8b54d4e757db117b2226 --- /dev/null +++ b/output/png/INV-2026-0007.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a3d5f9e4adc9d23b523a60f8604b3ab2919103719a13ade55e394900f01dd5 +size 154102 diff --git a/output/png/INV-2026-0008.png b/output/png/INV-2026-0008.png new file mode 100644 index 0000000000000000000000000000000000000000..80ef7854638e154bcc7e7f8e8b4e3f6e6ee2d3e1 --- /dev/null +++ b/output/png/INV-2026-0008.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d110cf3696deee811e7553b15d0fd35fd9180e448cab0826061086f94735db4d +size 178655 diff --git a/output/png/INV-2026-0009.png b/output/png/INV-2026-0009.png new file mode 100644 index 0000000000000000000000000000000000000000..fee28774106863ed8618e3e61c6719c47b9a9643 --- /dev/null +++ b/output/png/INV-2026-0009.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecc70a5a0a2e467865af4e449861c6137cff3171d9aac2b08dbb3e3a6496e3b6 +size 158338 diff --git a/output/png/INV-2026-0010.png b/output/png/INV-2026-0010.png new file mode 100644 index 0000000000000000000000000000000000000000..4804ed87c60a1707de6876e87818c62e2d137bc4 --- /dev/null +++ b/output/png/INV-2026-0010.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c13ac259c76ae90734657431e0117d5c230847ad57138541d291bdaeb4d13280 +size 203834 diff --git a/output/png/INV-2026-0011.png b/output/png/INV-2026-0011.png new file mode 100644 index 0000000000000000000000000000000000000000..b40d076a21540e38e4d5a205ece9cd461fb17f47 --- /dev/null +++ b/output/png/INV-2026-0011.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb4b73a5e10da77f38cf84b397c28181f06b282fbe8b7f7c1a0ff6090386903 +size 118975 diff --git a/output/png/INV-2026-0012.png b/output/png/INV-2026-0012.png new file mode 100644 index 0000000000000000000000000000000000000000..5d037ff8af694727dccbde151d56b3268e706882 --- /dev/null +++ b/output/png/INV-2026-0012.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d88dca954f9ecaaca3a9a39705e4693adb5276cd2db7d827cf02aadc3c12d523 +size 151885 diff --git a/output/png/INV-2026-0013.png b/output/png/INV-2026-0013.png new file mode 100644 index 0000000000000000000000000000000000000000..7a9d0029fb4f5e0a63aa68c1ec9621394c1761fe --- /dev/null +++ b/output/png/INV-2026-0013.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63397d120f8187dabd0a586923950b98e2aae1b6c05813190cdf280ef4dbac03 +size 110562 diff --git a/output/png/INV-2026-0014.png b/output/png/INV-2026-0014.png new file mode 100644 index 0000000000000000000000000000000000000000..20f25eb94281d2c173117f4c9cfb71f7d69dc674 --- /dev/null +++ b/output/png/INV-2026-0014.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76ff5982433db6dea45465e5c7113a8239012a81adb85610567da1b67414406e +size 135359 diff --git a/output/png/INV-2026-0015.png b/output/png/INV-2026-0015.png new file mode 100644 index 0000000000000000000000000000000000000000..b1574139b209310802d4329b42202aaf75a712d1 --- /dev/null +++ b/output/png/INV-2026-0015.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4420e8a241c9540df1b15ec28005ddc41a0769b9f2d3a4aac47c885bf919cd2 +size 171122 diff --git a/output/png/INV-2026-0016.png b/output/png/INV-2026-0016.png new file mode 100644 index 0000000000000000000000000000000000000000..41e352974fea52c224362698da8fbc6e6e7e1089 --- /dev/null +++ b/output/png/INV-2026-0016.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a81dc9b56e605a7018bcecca0b6d6898a95cbdaa754dea059bec8aa3d3574c +size 160580 diff --git a/output/png/INV-2026-0017.png b/output/png/INV-2026-0017.png new file mode 100644 index 0000000000000000000000000000000000000000..b0f5032f16082304765f41d277d84b017cc1e322 --- /dev/null +++ b/output/png/INV-2026-0017.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:060768edced3d3e4d53c65a47a3c0409592e93322e287ea08cc2cf3185f5f76d +size 167093 diff --git a/output/png/INV-2026-0018.png b/output/png/INV-2026-0018.png new file mode 100644 index 0000000000000000000000000000000000000000..8b38cc9640e41543df486a521e76cc1fc1037bf0 --- /dev/null +++ b/output/png/INV-2026-0018.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b05d57d2a7298235b953399bd6c852b265762f104e8b16212c1e87066780b6c5 +size 172272 diff --git a/output/png/INV-2026-0019.png b/output/png/INV-2026-0019.png new file mode 100644 index 0000000000000000000000000000000000000000..52586decdc2c784eb9fc23b4e7f694e773c7f5f5 --- /dev/null +++ b/output/png/INV-2026-0019.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c169f6cdb50c0e95423de6608b8f40c28d89a75b4cba0e6fde710253095dad3 +size 164257 diff --git a/output/png/INV-2026-0020.png b/output/png/INV-2026-0020.png new file mode 100644 index 0000000000000000000000000000000000000000..dcbe567ce203717df7df1e6684dffa7a9beb1868 --- /dev/null +++ b/output/png/INV-2026-0020.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40434228090e13610183559d616b3a0547d87d0caab4176bfd9c78bdbc564163 +size 184803 diff --git a/output/png/INV-2026-0021.png b/output/png/INV-2026-0021.png new file mode 100644 index 0000000000000000000000000000000000000000..93fa6b3feb80a6ae5aaa8e68b761e36557ad6964 --- /dev/null +++ b/output/png/INV-2026-0021.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1f937d36b0f9e1bad7c4b9c2c1984256be709ce843ce6614fae061db988192d +size 162955 diff --git a/output/png/INV-2026-0022.png b/output/png/INV-2026-0022.png new file mode 100644 index 0000000000000000000000000000000000000000..b6a29facdd5adfa7047c770f1b0cf2ba76606cbc --- /dev/null +++ b/output/png/INV-2026-0022.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62e0c172e54afd6ebf32b6f3bd647e552d8a90d2ffe48129f787c6a4064832ea +size 200129 diff --git a/output/png/INV-2026-0023.png b/output/png/INV-2026-0023.png new file mode 100644 index 0000000000000000000000000000000000000000..2478a191498d03636e59fbc830cc42ae99503acd --- /dev/null +++ b/output/png/INV-2026-0023.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05c5fcd8f961de64e3a045012600d2f8d1b018adc6b9a98d9093421523b00729 +size 192455 diff --git a/output/png/INV-2026-0024.png b/output/png/INV-2026-0024.png new file mode 100644 index 0000000000000000000000000000000000000000..e31d459f7f833dbbf836f39c0833e9b8a3b998ab --- /dev/null +++ b/output/png/INV-2026-0024.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ae45787faa9773d843bd07f6de0537c66a449aeca04c3d66dc9538c52feacf +size 122139 diff --git a/output/png/INV-2026-0025.png b/output/png/INV-2026-0025.png new file mode 100644 index 0000000000000000000000000000000000000000..f6f1e6db2e38b1b39c337d8dbfb75baa4555faca --- /dev/null +++ b/output/png/INV-2026-0025.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:289b25990aa72f6ff32ab863a904c3a3f2c33f7737fdb189fc56fc5a5295869d +size 127336 diff --git a/output/png/INV-2026-0026.png b/output/png/INV-2026-0026.png new file mode 100644 index 0000000000000000000000000000000000000000..08ca4d330237e08a3fa61564197c3581744b2ed5 --- /dev/null +++ b/output/png/INV-2026-0026.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0ded8c990ae5c64efd8429c6eae37e051aea8b800257e579e88ff7ae5c51be5 +size 179830 diff --git a/output/png/INV-2026-0027.png b/output/png/INV-2026-0027.png new file mode 100644 index 0000000000000000000000000000000000000000..cb31e81af4fbb279f3ceae67914f3e3dbb0d3d26 --- /dev/null +++ b/output/png/INV-2026-0027.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e6c54a3c0621ae81df8eb9ef94da7e4c90e8aced36fb3dd8d6fa3c32d84859 +size 156993 diff --git a/output/png/INV-2026-0028.png b/output/png/INV-2026-0028.png new file mode 100644 index 0000000000000000000000000000000000000000..13ba1bc418aaa27ffbb4d7db0d4ffaf4b32e2ffa --- /dev/null +++ b/output/png/INV-2026-0028.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:007e36ceb7be588ac8822e16cbb38fde8b56efba77c7dc71758df2d0038e30e8 +size 141114 diff --git a/output/png/INV-2026-0029.png b/output/png/INV-2026-0029.png new file mode 100644 index 0000000000000000000000000000000000000000..5019e5dcdec2a38233735df102ed13c0faead74f --- /dev/null +++ b/output/png/INV-2026-0029.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9e44439aa7fd8aac592c8e638499235514a96fbd8bd00915e9846e7a0f2c9f7 +size 117007 diff --git a/output/png/INV-2026-0030.png b/output/png/INV-2026-0030.png new file mode 100644 index 0000000000000000000000000000000000000000..053af0d90f1d67f94fa1ccb63d989c3a010d4f5d --- /dev/null +++ b/output/png/INV-2026-0030.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be018039b2db9a84a22f03f3e9e66e2e990432fb88c8a99752df04e64eb6295d +size 175455 diff --git a/output/png/INV-2026-0031.png b/output/png/INV-2026-0031.png new file mode 100644 index 0000000000000000000000000000000000000000..3a33bc12bb0fb7fee684f99ca21a9fde2ab8fe6f --- /dev/null +++ b/output/png/INV-2026-0031.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d3e6803a0035033de7853049904e87144d1468f0b9be74679bfe7f7bdd3f145 +size 136877 diff --git a/output/png/INV-2026-0032.png b/output/png/INV-2026-0032.png new file mode 100644 index 0000000000000000000000000000000000000000..ab659c648f4e0f965d5419a1acc5437a6be6d162 --- /dev/null +++ b/output/png/INV-2026-0032.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2f1b62c9051fd977e347c06b9c1eb6cd74b9fa08a0ad897f19f58f64882fdbe +size 186843 diff --git a/output/png/INV-2026-0033.png b/output/png/INV-2026-0033.png new file mode 100644 index 0000000000000000000000000000000000000000..7a5a4a3ebe154a7fe6895385cc3ada713db799c2 --- /dev/null +++ b/output/png/INV-2026-0033.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c8cb9d41f8556847b5dd02e6d6444705010496f0ab3b6d784fed85a05ce1d27 +size 168024 diff --git a/output/png/INV-2026-0034.png b/output/png/INV-2026-0034.png new file mode 100644 index 0000000000000000000000000000000000000000..101626da21ebdea08f3d5d095ac9eabeb514bf28 --- /dev/null +++ b/output/png/INV-2026-0034.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13876f2064096ea12c0e050f30b2a6ca518b5f8f33585b78426c3b658af54de6 +size 152833 diff --git a/output/png/INV-2026-0035.png b/output/png/INV-2026-0035.png new file mode 100644 index 0000000000000000000000000000000000000000..740f0f25909bda50dbbca9d7b76ebf6e2e8de28f --- /dev/null +++ b/output/png/INV-2026-0035.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa6284e3a4c29a71a7e44aa1836185072ee3b9a5fd87523c208442731257b503 +size 134518 diff --git a/output/png/INV-2026-0036.png b/output/png/INV-2026-0036.png new file mode 100644 index 0000000000000000000000000000000000000000..e5fc51652608d2f1a5f256839a57949746b4f6e8 --- /dev/null +++ b/output/png/INV-2026-0036.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5a8a124bd71b7d5937528c575dc89a503c8237d68c062640f1f3a9561ffb924 +size 160947 diff --git a/output/png/INV-2026-0037.png b/output/png/INV-2026-0037.png new file mode 100644 index 0000000000000000000000000000000000000000..ba58f99565071a6173a4edc4e50fcb2434b44e3e --- /dev/null +++ b/output/png/INV-2026-0037.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f53d265ccbfaac7da4305647283983de2bee9e264cd5f61f82344ecd9a229b48 +size 160415 diff --git a/output/png/INV-2026-0038.png b/output/png/INV-2026-0038.png new file mode 100644 index 0000000000000000000000000000000000000000..7dfc669cacb984af0e9940cb9aa4daeeb4c05ea4 --- /dev/null +++ b/output/png/INV-2026-0038.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e47719885810f16fe11f937c4054c378bdc74c26765ac465c4084254b2ee74a5 +size 181420 diff --git a/output/png/INV-2026-0039.png b/output/png/INV-2026-0039.png new file mode 100644 index 0000000000000000000000000000000000000000..9883f89e3d189ee18d20b84d330b210314c7d86d --- /dev/null +++ b/output/png/INV-2026-0039.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:807f2f6487fba6dc77f7fe1dd709b14d286ee4cf13577ac7ff5d7c1fb306943d +size 122912 diff --git a/output/png/INV-2026-0040.png b/output/png/INV-2026-0040.png new file mode 100644 index 0000000000000000000000000000000000000000..7f2b937fc5986523e05fcc86cdadf38679be3130 --- /dev/null +++ b/output/png/INV-2026-0040.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d88413c629ffcae1c7d4b4d72ffca22d47344dc0b1ba9359a8a216dc97947969 +size 164218 diff --git a/output/png/INV-2026-0041.png b/output/png/INV-2026-0041.png new file mode 100644 index 0000000000000000000000000000000000000000..7d37c02cb27dc82fc5229caaf2acef8e06e0f68e --- /dev/null +++ b/output/png/INV-2026-0041.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d29a597691305054a0b7cd7d6c5ca4e7ae5106f3914f6e2c02b7c03228ef0356 +size 162936 diff --git a/output/png/INV-2026-0042.png b/output/png/INV-2026-0042.png new file mode 100644 index 0000000000000000000000000000000000000000..c006f0f531d5c6fbd72779f82b062d6874b54d72 --- /dev/null +++ b/output/png/INV-2026-0042.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a24f9e95fdf3c6bd7b0853d06fefcd29b9e781295b647b81d0f19067deec152e +size 151008 diff --git a/output/png/INV-2026-0043.png b/output/png/INV-2026-0043.png new file mode 100644 index 0000000000000000000000000000000000000000..f1f5771c9bf3956462242d4334b35bb15db827bd --- /dev/null +++ b/output/png/INV-2026-0043.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:852967643801467f0e27d1778f186024a4bd6f2bd9754628b75585447693dc26 +size 178792 diff --git a/output/png/INV-2026-0044.png b/output/png/INV-2026-0044.png new file mode 100644 index 0000000000000000000000000000000000000000..702c64c9ccd559e00ec9fa766fa9a8965452b38d --- /dev/null +++ b/output/png/INV-2026-0044.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c9f6ba62de8e3f634caa4b63cec6285c1bcfe80c07e8679e78bee41f259278 +size 164352 diff --git a/output/png/INV-2026-0045.png b/output/png/INV-2026-0045.png new file mode 100644 index 0000000000000000000000000000000000000000..709232f7e0967e11b3da03fa761ad28411f4396d --- /dev/null +++ b/output/png/INV-2026-0045.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0254279755de80323f5c66730e8faa3ae41695818219dfc0ece4fd4f4e31f782 +size 165754 diff --git a/output/png/INV-2026-0046.png b/output/png/INV-2026-0046.png new file mode 100644 index 0000000000000000000000000000000000000000..c395e4a0f07f3102788de754b74dc09201e4c39a --- /dev/null +++ b/output/png/INV-2026-0046.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6eb9d26bd6946cbee06cebc9a5f0185e875884f8258eded3275498c8173a954 +size 173373 diff --git a/output/png/INV-2026-0047.png b/output/png/INV-2026-0047.png new file mode 100644 index 0000000000000000000000000000000000000000..523376abc4e6c3f943e0d1889f539de2b6d7ea13 --- /dev/null +++ b/output/png/INV-2026-0047.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f6baa3f040766c7d2ff76bae5cdc4c418e20ae6d48282af46b87f7b0135f200 +size 127248 diff --git a/output/png/INV-2026-0048.png b/output/png/INV-2026-0048.png new file mode 100644 index 0000000000000000000000000000000000000000..282d76426189aa426b1ba45d87a72daf3ee363c7 --- /dev/null +++ b/output/png/INV-2026-0048.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:860d719a5ffa9d538551f2f7f0d1a0ddb9324448ad621006d884e7174bdb6e76 +size 137713 diff --git a/output/png/INV-2026-0049.png b/output/png/INV-2026-0049.png new file mode 100644 index 0000000000000000000000000000000000000000..bbe2dfb293283809daf61cf5d6079b1b0458c4ea --- /dev/null +++ b/output/png/INV-2026-0049.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745e95f84c74fb5f6a18c917aa91c7a3aa8322f78f6d0b73d99b5a600c7d8c7a +size 133946 diff --git a/output/png/INV-2026-0050.png b/output/png/INV-2026-0050.png new file mode 100644 index 0000000000000000000000000000000000000000..fc06704c08dff891549dd65a58f2b38eaa60cb88 --- /dev/null +++ b/output/png/INV-2026-0050.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b6fd11eaa6b8ec3a5265808b47809403a66d27f2b8f30946de08d7218b84bc9 +size 131903 diff --git a/output/png/INV-2026-0051.png b/output/png/INV-2026-0051.png new file mode 100644 index 0000000000000000000000000000000000000000..5d05f9bc0a4f2702a6328148594c9adafba24df1 --- /dev/null +++ b/output/png/INV-2026-0051.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45af377276976bf82525ea4b9191cc3a52261ed33d4b5ade05ed7a046c2a737c +size 153561 diff --git a/output/png/INV-2026-0052.png b/output/png/INV-2026-0052.png new file mode 100644 index 0000000000000000000000000000000000000000..ef71fa25901550bae3c2e37251eb81d3172b8ce2 --- /dev/null +++ b/output/png/INV-2026-0052.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63f8c4765f07528575898017715985d43bf1ede22854836c26e5f7775ca874f5 +size 212187 diff --git a/output/png/INV-2026-0053.png b/output/png/INV-2026-0053.png new file mode 100644 index 0000000000000000000000000000000000000000..db4feeac9dd7ae0f2d0ef71a7db83637d1337a64 --- /dev/null +++ b/output/png/INV-2026-0053.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdb1c3b57e7a536e21f866bb72f910516611b1282ca06dfd630fbcc17b6b882b +size 157136 diff --git a/output/png/INV-2026-0054.png b/output/png/INV-2026-0054.png new file mode 100644 index 0000000000000000000000000000000000000000..12a7793a251af87f9c5fb737ce4c3ea3d259e44e --- /dev/null +++ b/output/png/INV-2026-0054.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c550995e1622898fd91fa3477426cb087ce30b55cf11311e43a6017da18d1c45 +size 160403 diff --git a/output/png/INV-2026-0055.png b/output/png/INV-2026-0055.png new file mode 100644 index 0000000000000000000000000000000000000000..b83bcf7dbfc95994aea9847f7bed9966af61b49b --- /dev/null +++ b/output/png/INV-2026-0055.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3abb373f25d41ed88e1239136fc657210cebf02eadc18f394b41fdcc914b5f52 +size 184555 diff --git a/output/png/INV-2026-0056.png b/output/png/INV-2026-0056.png new file mode 100644 index 0000000000000000000000000000000000000000..18948a48ba10dcdb857079625bc216587d87de78 --- /dev/null +++ b/output/png/INV-2026-0056.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85542845d52ba921150a880fc9ff52ee98239bff9cf55d6aef9bf5656fbe0389 +size 195869 diff --git a/output/png/INV-2026-0057.png b/output/png/INV-2026-0057.png new file mode 100644 index 0000000000000000000000000000000000000000..a1f1a387f90da22835e017cbe1d1aeb1c438ea94 --- /dev/null +++ b/output/png/INV-2026-0057.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b6466ed3dbe27050c1f00b920d1111896346ca1e5a07915055a81d8db49c643 +size 182718 diff --git a/output/png/INV-2026-0058.png b/output/png/INV-2026-0058.png new file mode 100644 index 0000000000000000000000000000000000000000..7839e79499f881cd63762086b28ad9b4f6764508 --- /dev/null +++ b/output/png/INV-2026-0058.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0bd2dc154c48f024af86de7002d17855c8e64ddeed7ef63673a65115e2ecc24 +size 140213 diff --git a/output/png/INV-2026-0059.png b/output/png/INV-2026-0059.png new file mode 100644 index 0000000000000000000000000000000000000000..a4e20d5b74bd4671a6b4f3101e323f4b0d43f105 --- /dev/null +++ b/output/png/INV-2026-0059.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e78235281225d1c0be7fd3170a8ec7c40112b35230954447d6df3806e547a5f2 +size 165575 diff --git a/output/png/INV-2026-0060.png b/output/png/INV-2026-0060.png new file mode 100644 index 0000000000000000000000000000000000000000..9824ca7307caffe1f2b6548bec90177434312548 --- /dev/null +++ b/output/png/INV-2026-0060.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3f64642535173a4ab8ae181a94ab8f489fc072b2f9669df8baaafc1abd024a +size 140769 diff --git a/output/png/INV-2026-0061.png b/output/png/INV-2026-0061.png new file mode 100644 index 0000000000000000000000000000000000000000..4328bb4be3f325c670d2a582ba21733083b00fe4 --- /dev/null +++ b/output/png/INV-2026-0061.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b51fc00ba98e6857a9cd9bb51d57b081822baa1be73fc108e8c1b6e993bbf5 +size 179054 diff --git a/output/png/INV-2026-0062.png b/output/png/INV-2026-0062.png new file mode 100644 index 0000000000000000000000000000000000000000..5e14acb5fa6cd0f50c55daf4be7cd79fe355a31d --- /dev/null +++ b/output/png/INV-2026-0062.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e735ed8e6a0427b5d7a704f30e9a5acb658f526518af87e0c5aa49c71d2b9a8 +size 194679 diff --git a/output/png/INV-2026-0063.png b/output/png/INV-2026-0063.png new file mode 100644 index 0000000000000000000000000000000000000000..9a7e3f4bd28b14697ee2122bc23c753b1dc50e28 --- /dev/null +++ b/output/png/INV-2026-0063.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3813c5d1e8dbee2881c7c9348ed127aba56ad6e7c51ae04d1bdf0160d8a20e93 +size 134397 diff --git a/output/png/INV-2026-0064.png b/output/png/INV-2026-0064.png new file mode 100644 index 0000000000000000000000000000000000000000..0df5fedcfd4dbbd82f1dfdae5817ef9a45033efa --- /dev/null +++ b/output/png/INV-2026-0064.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4929e6db87991878f83d5e2e8cfaa60a9c7429e7f1609a9dafc03216abb0839c +size 199668 diff --git a/output/png/INV-2026-0065.png b/output/png/INV-2026-0065.png new file mode 100644 index 0000000000000000000000000000000000000000..fe29db86e4fc53bff5f536285a8a9fb0cc177630 --- /dev/null +++ b/output/png/INV-2026-0065.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddeb08a1bab8b99efb5b482e43fbaad252bb84ead7e26a3f00f0455d2f01dc8e +size 192200 diff --git a/output/png/INV-2026-0066.png b/output/png/INV-2026-0066.png new file mode 100644 index 0000000000000000000000000000000000000000..47897e9f2bb3f33a7e9b3934fe1fef339a78eee2 --- /dev/null +++ b/output/png/INV-2026-0066.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b92697d4fd88b45c161a9582426e10ddfe84fcfa9f5fcf5a771a7ba36e16222a +size 139069 diff --git a/output/png/INV-2026-0067.png b/output/png/INV-2026-0067.png new file mode 100644 index 0000000000000000000000000000000000000000..522b10e9d72d2b0de964768ab76b4f6402bfe64c --- /dev/null +++ b/output/png/INV-2026-0067.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb12e12fd916c93830781c4081d6bf9da08c6fb509267208bf48c71834945d9 +size 154176 diff --git a/output/png/INV-2026-0068.png b/output/png/INV-2026-0068.png new file mode 100644 index 0000000000000000000000000000000000000000..d4489da94c5ef01b109690cd1059f1c77196f48d --- /dev/null +++ b/output/png/INV-2026-0068.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e6e963d79b3bbc3ac5bb5b101806612d42537c56f9a1434970bfabaabcc259 +size 217649 diff --git a/output/png/INV-2026-0069.png b/output/png/INV-2026-0069.png new file mode 100644 index 0000000000000000000000000000000000000000..16ad69b8135a47759ba28705cd90b5673456182d --- /dev/null +++ b/output/png/INV-2026-0069.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:775ac6ae41e01ac9171881a7378b0216b0594e957b88f29866c2c012f7ba168c +size 185702 diff --git a/output/png/INV-2026-0070.png b/output/png/INV-2026-0070.png new file mode 100644 index 0000000000000000000000000000000000000000..a2718baee48cda3e5dbcf3d763101fe89cf4550b --- /dev/null +++ b/output/png/INV-2026-0070.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5cf5a7901796a6b60c423909dfd280e0511bd8f0db09497181fd17d2d1882eb +size 148365 diff --git a/output/png/INV-2026-0071.png b/output/png/INV-2026-0071.png new file mode 100644 index 0000000000000000000000000000000000000000..e4fad3f93c8a0d72e5efede76765e7686a22427e --- /dev/null +++ b/output/png/INV-2026-0071.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a28318f6e98a3a1e6e61abd1f7fd30e7092201caaf90a12fb93bf9f4caa8b11 +size 176797 diff --git a/output/png/INV-2026-0072.png b/output/png/INV-2026-0072.png new file mode 100644 index 0000000000000000000000000000000000000000..0213ff04fd4b96b8fedd366c12015f42e0746dfc --- /dev/null +++ b/output/png/INV-2026-0072.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6bf6c5cd787bbb79f8ec10af62f5a0002ddafdb19a2655636d534b7634e03ea +size 123251 diff --git a/output/png/INV-2026-0073.png b/output/png/INV-2026-0073.png new file mode 100644 index 0000000000000000000000000000000000000000..a5a1e8421224a4c4fc003a921b6e6b9b478335b4 --- /dev/null +++ b/output/png/INV-2026-0073.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3d71cc01e118535c38f502c6bc237fa12a95076e087b61fe3753b347c62db41 +size 117449 diff --git a/output/png/INV-2026-0074.png b/output/png/INV-2026-0074.png new file mode 100644 index 0000000000000000000000000000000000000000..8ae15d061a41439f225def6d75c6a85119747a11 --- /dev/null +++ b/output/png/INV-2026-0074.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c0374526a3dc49ff5228a4d61826a7681db79ef57572fb684a0133eba4fc764 +size 146911 diff --git a/output/png/INV-2026-0075.png b/output/png/INV-2026-0075.png new file mode 100644 index 0000000000000000000000000000000000000000..0928af969523a9fb9e3be399158a7dcc0bad3f72 --- /dev/null +++ b/output/png/INV-2026-0075.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d3a2e657c914927f5cc0e048c42915f86f698d44d8effe5e84f9541ba22ab16 +size 182678 diff --git a/output/png/INV-2026-0076.png b/output/png/INV-2026-0076.png new file mode 100644 index 0000000000000000000000000000000000000000..41c4263dd505f904ca68cf51224232f4b551a424 --- /dev/null +++ b/output/png/INV-2026-0076.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68afbd09339d23dd19e4346b4d90ca87cde832d73a90d9be8f5ad6fef2fccc08 +size 207109 diff --git a/output/png/INV-2026-0077.png b/output/png/INV-2026-0077.png new file mode 100644 index 0000000000000000000000000000000000000000..fc25fd55f1b170d2bda8db78e33dd4162f2e1c60 --- /dev/null +++ b/output/png/INV-2026-0077.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eb8394b28e6de6fd9b89f66acc795b8aff1b7f1999647f423ba47e839544635 +size 141939 diff --git a/output/png/INV-2026-0078.png b/output/png/INV-2026-0078.png new file mode 100644 index 0000000000000000000000000000000000000000..9a5479696db784768107a3c3279983d95a98b718 --- /dev/null +++ b/output/png/INV-2026-0078.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24958272f7623f145689d2cd7aa5a3679b49b6a78d8e08c1ddb29dfa8ed7372a +size 158804 diff --git a/output/png/INV-2026-0079.png b/output/png/INV-2026-0079.png new file mode 100644 index 0000000000000000000000000000000000000000..c678497e70af43acaf6f11c26c60080e92abc130 --- /dev/null +++ b/output/png/INV-2026-0079.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc15f3bfc8be0db508507fcf388fd0cf7518ad41fd5b47c6ea45a6a4e56e2b3c +size 176088 diff --git a/output/png/INV-2026-0080.png b/output/png/INV-2026-0080.png new file mode 100644 index 0000000000000000000000000000000000000000..ae9492c4784243ee770efa906c62eac14b370c12 --- /dev/null +++ b/output/png/INV-2026-0080.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa5e392664fafcf717c0f68c37e97774ad1dacd3ba211a686f88ebf896e3fa56 +size 157307 diff --git a/output/png/INV-2026-0081.png b/output/png/INV-2026-0081.png new file mode 100644 index 0000000000000000000000000000000000000000..3e79be97182b8b470420fd0547a838c7de84a7af --- /dev/null +++ b/output/png/INV-2026-0081.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:452d24cf0f30a65e96fd5a358f3e9e3b557600dea88ff3a3aec10068d0599d56 +size 138714 diff --git a/output/png/INV-2026-0082.png b/output/png/INV-2026-0082.png new file mode 100644 index 0000000000000000000000000000000000000000..06b5b30d834e92a652cad507e3ef64885c178752 --- /dev/null +++ b/output/png/INV-2026-0082.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e76e343e5168e42044f7669dbd5a79fec8c6999cfa5885330d7c9f26c6462d4 +size 144033 diff --git a/output/png/INV-2026-0083.png b/output/png/INV-2026-0083.png new file mode 100644 index 0000000000000000000000000000000000000000..f1589cd7722215dc810b4012080f0e131f63b3e5 --- /dev/null +++ b/output/png/INV-2026-0083.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e02e9e00b7a9cab71ef615ac3d5be3da9c164527df4951eff73ba7e76db588f +size 177851 diff --git a/output/png/INV-2026-0084.png b/output/png/INV-2026-0084.png new file mode 100644 index 0000000000000000000000000000000000000000..4e053088a8584eaf25fbe04ea5587bb9dd21cd34 --- /dev/null +++ b/output/png/INV-2026-0084.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4fb0090e6c1a3d3b6f4b6bb876b8c184c77f3d698aa48f5bbf612fe93f8bad +size 172728 diff --git a/output/png/INV-2026-0085.png b/output/png/INV-2026-0085.png new file mode 100644 index 0000000000000000000000000000000000000000..07d9cc7c48e480bb7bc61a398be82d4236c9fa2b --- /dev/null +++ b/output/png/INV-2026-0085.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf51bc948ea6cdbb067369b311964caa3f83ba2ada732314dc94080e3b2e20c9 +size 187674 diff --git a/output/png/INV-2026-0086.png b/output/png/INV-2026-0086.png new file mode 100644 index 0000000000000000000000000000000000000000..dd8eb953a97a34ac909e42ed4a931b9286d0e801 --- /dev/null +++ b/output/png/INV-2026-0086.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40176fc139e54201904bf010e87b97c7b70816e4447a0653f00b295311ac311 +size 120896 diff --git a/output/png/INV-2026-0087.png b/output/png/INV-2026-0087.png new file mode 100644 index 0000000000000000000000000000000000000000..d3b0deddfadc771c252ebfc8d87ed4af91d58b75 --- /dev/null +++ b/output/png/INV-2026-0087.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8447ecbe338288b27f26d34b82961333879b1d9db98da04ec09e329440aa748 +size 136712 diff --git a/output/png/INV-2026-0088.png b/output/png/INV-2026-0088.png new file mode 100644 index 0000000000000000000000000000000000000000..5a361d7bf8bb92cfbb92b6dc3775ea64b5af5f69 --- /dev/null +++ b/output/png/INV-2026-0088.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea6f0ee96804fdfe7f37b49e8104f935e9e2e67a21d9a28f85776df431723d9a +size 152022 diff --git a/output/png/INV-2026-0089.png b/output/png/INV-2026-0089.png new file mode 100644 index 0000000000000000000000000000000000000000..21a9acbbbea778084abfb535616e51d66a98e5b1 --- /dev/null +++ b/output/png/INV-2026-0089.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4eb6f6fd001f40d5f1c5be93b57a735cae44e88dafc2c62528acab73c50b973 +size 132021 diff --git a/output/png/INV-2026-0090.png b/output/png/INV-2026-0090.png new file mode 100644 index 0000000000000000000000000000000000000000..bbde56c728ae4edb064eed6bba8e8cd023dd51c8 --- /dev/null +++ b/output/png/INV-2026-0090.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64968d1a576822f4c08c56be8d3b654ac0f0acffe962c15a422fd8d82228118c +size 138316 diff --git a/output/png/INV-2026-0091.png b/output/png/INV-2026-0091.png new file mode 100644 index 0000000000000000000000000000000000000000..5ffed110cc325a1d38d6310269df28aa9b47147b --- /dev/null +++ b/output/png/INV-2026-0091.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e11dc45a8e7750efb6c21a8c3024091ebe43154672dc464aa281a851cc645706 +size 170876 diff --git a/output/png/INV-2026-0092.png b/output/png/INV-2026-0092.png new file mode 100644 index 0000000000000000000000000000000000000000..e3369c54b244edb8aa371043eba1cc5cdba20a2d --- /dev/null +++ b/output/png/INV-2026-0092.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af9ff88797d1d195e1a931b1d97f395d05321c269018ba336b737b8ada410ee +size 183889 diff --git a/output/png/INV-2026-0093.png b/output/png/INV-2026-0093.png new file mode 100644 index 0000000000000000000000000000000000000000..d2dd7269c3d41c0896ea831c2d1ceb31bef2d381 --- /dev/null +++ b/output/png/INV-2026-0093.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67bf0e065203ea67fc1a0502b54b98a487c85ede150e2419d77d2e6892ea9db5 +size 151622 diff --git a/output/png/INV-2026-0094.png b/output/png/INV-2026-0094.png new file mode 100644 index 0000000000000000000000000000000000000000..7cd4da328c6ec048b76d23613b961594891458d7 --- /dev/null +++ b/output/png/INV-2026-0094.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01ab55db832e242d6a3bf08898b75683dbbb05f310c47c73e3249116fdc72f52 +size 149496 diff --git a/output/png/INV-2026-0095.png b/output/png/INV-2026-0095.png new file mode 100644 index 0000000000000000000000000000000000000000..19c649ab61c544cef701db13f415834f97a0e1f2 --- /dev/null +++ b/output/png/INV-2026-0095.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3f319d7afceff0de20a25fb3f511ca2bf71beee972c1e484ed831affae34b0 +size 134610 diff --git a/output/png/INV-2026-0096.png b/output/png/INV-2026-0096.png new file mode 100644 index 0000000000000000000000000000000000000000..94c312b5accd4ad46be0a9c926a78a5a9c48f4b2 --- /dev/null +++ b/output/png/INV-2026-0096.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c8a707acc8e21da9cf73def222f03dfa137ee7ab9f8fb23130174e16c339f4b +size 164690 diff --git a/output/png/INV-2026-0097.png b/output/png/INV-2026-0097.png new file mode 100644 index 0000000000000000000000000000000000000000..43eb84c766edb89b183dc44f3efe9807b9ffe95d --- /dev/null +++ b/output/png/INV-2026-0097.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6438f044eb91730066bfe706247d84a4993fd4e298d6f3cac1e28eb3cd2357c3 +size 171464 diff --git a/output/png/INV-2026-0098.png b/output/png/INV-2026-0098.png new file mode 100644 index 0000000000000000000000000000000000000000..d7b25c382fba26263fc3e3cbe1380595735689aa --- /dev/null +++ b/output/png/INV-2026-0098.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:647fbb6f495439ba3a4a5e526d294e390a67262a720965b5750faeeaa6f2d06a +size 170814 diff --git a/output/png/INV-2026-0099.png b/output/png/INV-2026-0099.png new file mode 100644 index 0000000000000000000000000000000000000000..f5726d18bae50c5a9c2f59e956cf3f42fbb8028f --- /dev/null +++ b/output/png/INV-2026-0099.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b384e3251ad885c043d22f973f3f0ca64778adeb60834e47e9dcc1aff918135e +size 118374 diff --git a/output/png/INV-2026-0100.png b/output/png/INV-2026-0100.png new file mode 100644 index 0000000000000000000000000000000000000000..4d46a8f83214a7c59c5e19a4c930c38d32b8aabb --- /dev/null +++ b/output/png/INV-2026-0100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74c0299c86fa813cc4aee0e71650a6ec3d411795aacd72e5569d2debcf11084b +size 178913 diff --git a/output/png/INV-2026-0101.png b/output/png/INV-2026-0101.png new file mode 100644 index 0000000000000000000000000000000000000000..e8acf72d6990780496813b5f91fc0fe7ff2fab44 --- /dev/null +++ b/output/png/INV-2026-0101.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32c9137d1104d573e75d053078d096da4a420ba64daf40ef22e7f19140228ef8 +size 172309 diff --git a/output/png/INV-2026-0102.png b/output/png/INV-2026-0102.png new file mode 100644 index 0000000000000000000000000000000000000000..ed6006aae1584b03da723781320e9fd22769494d --- /dev/null +++ b/output/png/INV-2026-0102.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed836eeddaf6a18ddc765f27c7cea4c7c64b1409a0c10cac2da18204b6963aa4 +size 194872 diff --git a/output/png/INV-2026-0103.png b/output/png/INV-2026-0103.png new file mode 100644 index 0000000000000000000000000000000000000000..d283bef2fb044c55fa7fc6c17ad013cdd829ba9b --- /dev/null +++ b/output/png/INV-2026-0103.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e69d3b76b639c20e2d71877189417ab059dd94440e01c6c2baf0b6238a6afaed +size 147296 diff --git a/output/png/INV-2026-0104.png b/output/png/INV-2026-0104.png new file mode 100644 index 0000000000000000000000000000000000000000..6058b7d7d17db1dd623a9fc1652a68043109bb03 --- /dev/null +++ b/output/png/INV-2026-0104.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde259da6b678a6d3e06132ebddf6f437699192045c9cf55fd3c04a723f35c7a +size 141613 diff --git a/output/png/INV-2026-0105.png b/output/png/INV-2026-0105.png new file mode 100644 index 0000000000000000000000000000000000000000..7b34228511977075ce0aeedd7c91a237263d0a74 --- /dev/null +++ b/output/png/INV-2026-0105.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f3163993a05a2133005fe3a7f20b0fec938b67d5e944652f90ec6967bc39ca0 +size 201011 diff --git a/output/png/INV-2026-0106.png b/output/png/INV-2026-0106.png new file mode 100644 index 0000000000000000000000000000000000000000..7606214659c5d8179cdc62197994af954d224a69 --- /dev/null +++ b/output/png/INV-2026-0106.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e693e2429ef12a85c65d73cf4d379e7c30f813c0e72e86e1cc7c63813da0e00a +size 149046 diff --git a/output/png/INV-2026-0107.png b/output/png/INV-2026-0107.png new file mode 100644 index 0000000000000000000000000000000000000000..9a041cfed52ce658339f6dde2b5f7d4372669f52 --- /dev/null +++ b/output/png/INV-2026-0107.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9ce77e04f8fe31b725b9652ad07430501aab84179aabe53f4d0f08929ceeca9 +size 171782 diff --git a/output/png/INV-2026-0108.png b/output/png/INV-2026-0108.png new file mode 100644 index 0000000000000000000000000000000000000000..9b0ef84e6e8e3365901795475be4aad9736d600f --- /dev/null +++ b/output/png/INV-2026-0108.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cc01d4fccfedef0d0b8af1c8f390f3b57f50710e51b15275e0f9ff352da62c8 +size 116773 diff --git a/output/png/INV-2026-0109.png b/output/png/INV-2026-0109.png new file mode 100644 index 0000000000000000000000000000000000000000..18fc96f0b8099bedcf958727cbcc5b4f4af8d5db --- /dev/null +++ b/output/png/INV-2026-0109.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:890ad0605beee191dbd63b3b63112f4330dab778bf7709c07efbd36b20aacbe4 +size 180345 diff --git a/output/png/INV-2026-0110.png b/output/png/INV-2026-0110.png new file mode 100644 index 0000000000000000000000000000000000000000..20ca6abec7eb5f33b1a4d94955f13e0471b31e46 --- /dev/null +++ b/output/png/INV-2026-0110.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2f837bedf5ade84c592f2d2a465bc3ad21f178d774c5f8866958546bee86bb6 +size 153523 diff --git a/output/png/INV-2026-0111.png b/output/png/INV-2026-0111.png new file mode 100644 index 0000000000000000000000000000000000000000..c249b011182b7a1d3df1eda99df99705d737d451 --- /dev/null +++ b/output/png/INV-2026-0111.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06d68b2e8eeb11db38a1ca1e25ec831c35c723d63a7e38a02efc923fc19c7a6b +size 148423 diff --git a/output/png/INV-2026-0112.png b/output/png/INV-2026-0112.png new file mode 100644 index 0000000000000000000000000000000000000000..a1b2c835fb9d29574ba249104573eeac0a16c295 --- /dev/null +++ b/output/png/INV-2026-0112.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08556ec5fb77dcb2a5231b7852b315c242af5665d4a245431652fa8688934801 +size 152567 diff --git a/output/png/INV-2026-0113.png b/output/png/INV-2026-0113.png new file mode 100644 index 0000000000000000000000000000000000000000..f5569b011e0288cd6cdf41efa084b29a8045c927 --- /dev/null +++ b/output/png/INV-2026-0113.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a4d69edf9fdaa52b46089e7aa2ed202b65a28fb9f41365191b2319136c52a2 +size 208762 diff --git a/output/png/INV-2026-0114.png b/output/png/INV-2026-0114.png new file mode 100644 index 0000000000000000000000000000000000000000..b5f483d35073eb7c6da2ba7c991977acd8b1efb8 --- /dev/null +++ b/output/png/INV-2026-0114.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dd44fd75636905feea15d719e3cfd3e5f730a3fe7ff60247d09be727639597c +size 141312 diff --git a/output/png/INV-2026-0115.png b/output/png/INV-2026-0115.png new file mode 100644 index 0000000000000000000000000000000000000000..d2422a312145f7a7ed24292c2e2ff41b38a2ecba --- /dev/null +++ b/output/png/INV-2026-0115.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c995c95ba7f831e3d7361bf1cd2e9aff1a10811b0ea6bbf9852e2b96a8c0dfe +size 153868 diff --git a/output/png/INV-2026-0116.png b/output/png/INV-2026-0116.png new file mode 100644 index 0000000000000000000000000000000000000000..7b7a6b487127898a2b6a64d9b5be27c1f9a1aeb6 --- /dev/null +++ b/output/png/INV-2026-0116.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80533d0420c874dd5f965f30cd12d7bf85b59c48c3cce848a699f6c1e41d22f +size 129544 diff --git a/output/png/INV-2026-0117.png b/output/png/INV-2026-0117.png new file mode 100644 index 0000000000000000000000000000000000000000..6c7f252b52bb941982782a03faed3148dd04c71f --- /dev/null +++ b/output/png/INV-2026-0117.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b3890e2da7e46ae21b0b30b88dfe7a8ad479c58e72167759563ec95bacc663c +size 200005 diff --git a/output/png/INV-2026-0118.png b/output/png/INV-2026-0118.png new file mode 100644 index 0000000000000000000000000000000000000000..79d38417794d87cb507634048af58f32b0af768d --- /dev/null +++ b/output/png/INV-2026-0118.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f44afb87f4239bc64c9db5b3186799dd80e101f260a116c8398feed66bc7eebf +size 163808 diff --git a/output/png/INV-2026-0119.png b/output/png/INV-2026-0119.png new file mode 100644 index 0000000000000000000000000000000000000000..d6f662680965c9c02db0fb86105c7cb5e56be3a0 --- /dev/null +++ b/output/png/INV-2026-0119.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8f047ff4501fa18b16e889178d6c2d1ee2d58e61c03d9db60666b83a0502a4 +size 174753 diff --git a/output/png/INV-2026-0120.png b/output/png/INV-2026-0120.png new file mode 100644 index 0000000000000000000000000000000000000000..33d25981edf512c0a9799c014c045f4e0a093b05 --- /dev/null +++ b/output/png/INV-2026-0120.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6564d550ea4f4235e1d16a54dec1886b4bbec64ae94539721e796f94dd9110e5 +size 162828 diff --git a/output/png/INV-2026-0121.png b/output/png/INV-2026-0121.png new file mode 100644 index 0000000000000000000000000000000000000000..31568d2d8505b6082bdd56c4b9c7f10ac71631b8 --- /dev/null +++ b/output/png/INV-2026-0121.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66940d574de626d2cef290372af7eb62baa60e2e6a17ce8e4646da12bffac6c2 +size 133597 diff --git a/output/png/INV-2026-0122.png b/output/png/INV-2026-0122.png new file mode 100644 index 0000000000000000000000000000000000000000..088bd6f0a6d73ab7cb74dc0cd5e17aa41b7693c6 --- /dev/null +++ b/output/png/INV-2026-0122.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a72d94b811210a93a463bd2d0b2dfb89a599f7cd3bff617a5f39945dafd7071 +size 165670 diff --git a/output/png/INV-2026-0123.png b/output/png/INV-2026-0123.png new file mode 100644 index 0000000000000000000000000000000000000000..c6d7324ecf544ef0ec7824ddc696583f51ebfd31 --- /dev/null +++ b/output/png/INV-2026-0123.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd27fe185d6d30c0326a3a64066f43cac84af1bcebe9330d2e7b62bcc6af65bc +size 129942 diff --git a/output/png/INV-2026-0124.png b/output/png/INV-2026-0124.png new file mode 100644 index 0000000000000000000000000000000000000000..a0f5fe1d52f25d61dd671b2dcb36391b4d99a3bc --- /dev/null +++ b/output/png/INV-2026-0124.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b5b28591ee02dd256b0f551c22ad0f6c95d821b37a7dee30d46b01e4be4191 +size 188379 diff --git a/output/png/INV-2026-0125.png b/output/png/INV-2026-0125.png new file mode 100644 index 0000000000000000000000000000000000000000..4e587ec718e4ba8d560870b42f19cd6687becbae --- /dev/null +++ b/output/png/INV-2026-0125.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c44a0da43a8cc8aecda0f4607b5d85ba27f2d4b4507e8e9235894db9285b046b +size 187777 diff --git a/output/png/INV-2026-0126.png b/output/png/INV-2026-0126.png new file mode 100644 index 0000000000000000000000000000000000000000..b6638d877636a4496b1bc6db13db7c59c1d51f8a --- /dev/null +++ b/output/png/INV-2026-0126.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7c1f33d7f087cd8a1480236aad748b4b1125b2b3f8f0531d3b20ace922408dd +size 149151 diff --git a/output/png/INV-2026-0127.png b/output/png/INV-2026-0127.png new file mode 100644 index 0000000000000000000000000000000000000000..b0a9fe8bde4bec9908000ce62821ff00c24f5815 --- /dev/null +++ b/output/png/INV-2026-0127.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8d62040e5f618ba9f6abc64518fe92a089396713f8409c887ab0b8be07453e2 +size 189116 diff --git a/output/png/INV-2026-0128.png b/output/png/INV-2026-0128.png new file mode 100644 index 0000000000000000000000000000000000000000..ba5482e263aacb89751cbcfa77411959d6a55981 --- /dev/null +++ b/output/png/INV-2026-0128.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0eca431b37a696c644e7f09d435a1ee1f6b46c099f39db8c53b9bb43e5c6f22 +size 141056 diff --git a/output/png/INV-2026-0129.png b/output/png/INV-2026-0129.png new file mode 100644 index 0000000000000000000000000000000000000000..13ca50437305b980c1f65623d7ad935ecd9cd9ec --- /dev/null +++ b/output/png/INV-2026-0129.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55840398c3438e431a24c9638010bd65f3a2c39eb40d9c3cc89f5e902f9b22c4 +size 163220 diff --git a/output/png/INV-2026-0130.png b/output/png/INV-2026-0130.png new file mode 100644 index 0000000000000000000000000000000000000000..18d35c60ac2d955a2af279022c760743628ee1fc --- /dev/null +++ b/output/png/INV-2026-0130.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b5f80ecae78422186b173eaa2b4f86faa1c2214068c43ec4528f55ffb87199 +size 205701 diff --git a/output/png/INV-2026-0131.png b/output/png/INV-2026-0131.png new file mode 100644 index 0000000000000000000000000000000000000000..db271df8d005241dfc704fc952970e0059806716 --- /dev/null +++ b/output/png/INV-2026-0131.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76ca9bd3792379ce6b543d3b41f6df5ac97a56a24026c8ea4b3ad17c800836cf +size 143718 diff --git a/output/png/INV-2026-0132.png b/output/png/INV-2026-0132.png new file mode 100644 index 0000000000000000000000000000000000000000..faa7dccbcbf6ce622d64182fd7d722f73a4a979d --- /dev/null +++ b/output/png/INV-2026-0132.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c40b97c3cd8adfbfa8478a11d09b88c249f4568ec3dc3a4e6ba61e7433870bc +size 140042 diff --git a/output/png/INV-2026-0133.png b/output/png/INV-2026-0133.png new file mode 100644 index 0000000000000000000000000000000000000000..74017eaa91fe7ef5f41e2b740d134967df425f68 --- /dev/null +++ b/output/png/INV-2026-0133.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37ea792afa2c7068f54c43530d43a0712a5f4fa4b6cf7a2b9aabf8c205abec81 +size 172565 diff --git a/output/png/INV-2026-0134.png b/output/png/INV-2026-0134.png new file mode 100644 index 0000000000000000000000000000000000000000..6e071187e259ae089b7ea0ed4c290368edd43a95 --- /dev/null +++ b/output/png/INV-2026-0134.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:244f77ae997e56e7c0e5a7a1a8d13f4243fd941392f98f44d438acfaac8308eb +size 183752 diff --git a/output/png/INV-2026-0135.png b/output/png/INV-2026-0135.png new file mode 100644 index 0000000000000000000000000000000000000000..97ece531fa1448cb5192eae8f6dd42055176b6a0 --- /dev/null +++ b/output/png/INV-2026-0135.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36e31ad2ce88040d0e5016f74f3071ce692b6348d959bb6a4979a16b4d3dc411 +size 185077 diff --git a/output/png/INV-2026-0136.png b/output/png/INV-2026-0136.png new file mode 100644 index 0000000000000000000000000000000000000000..7c22e846ea3a22e88c887b031325d0f026b3d674 --- /dev/null +++ b/output/png/INV-2026-0136.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b0a6abcc179fa609a98a7aa34afcbf21c50607cbc4952218c9301a77ab6cfac +size 181029 diff --git a/output/png/INV-2026-0137.png b/output/png/INV-2026-0137.png new file mode 100644 index 0000000000000000000000000000000000000000..4a1b670465f6ab0f07e54dbc0bb659f516781341 --- /dev/null +++ b/output/png/INV-2026-0137.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e979d115bb6ed662a6ca305edacf5201d8ab9b52ce54f6ed1ca4de5e958ddae +size 120573 diff --git a/output/png/INV-2026-0138.png b/output/png/INV-2026-0138.png new file mode 100644 index 0000000000000000000000000000000000000000..bb83f0a500a98bc3aa914de4fada7fa0464370db --- /dev/null +++ b/output/png/INV-2026-0138.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3332b8eb12bf27c952d36a405539838947a3e6ae6f57a8da1ad6d009f42dd143 +size 139579 diff --git a/output/png/INV-2026-0139.png b/output/png/INV-2026-0139.png new file mode 100644 index 0000000000000000000000000000000000000000..2498d5eaf8a314303e13beb9e5873c37d412ce29 --- /dev/null +++ b/output/png/INV-2026-0139.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48e039e7b7ebb35590a2c30513a60d4cec09176fbc5b8db48f4bb34c23b1448a +size 167899 diff --git a/output/png/INV-2026-0140.png b/output/png/INV-2026-0140.png new file mode 100644 index 0000000000000000000000000000000000000000..76f9751132d2a9e94a11cf03e57c13e2b83a3324 --- /dev/null +++ b/output/png/INV-2026-0140.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56146b8672fbb145911cf89df5a66d3ff2953e7a35c57b733de82c1f55a7b239 +size 148707 diff --git a/output/png/INV-2026-0141.png b/output/png/INV-2026-0141.png new file mode 100644 index 0000000000000000000000000000000000000000..b503eb29130881229e696f716dafe9737753af47 --- /dev/null +++ b/output/png/INV-2026-0141.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25c70cc535b2dd0bba159fd9f4db38961e965e94e7cfb119ae28b2c35314a457 +size 170891 diff --git a/output/png/INV-2026-0142.png b/output/png/INV-2026-0142.png new file mode 100644 index 0000000000000000000000000000000000000000..2961f5324bc5b5e54b6e413c480223ef5b2d366d --- /dev/null +++ b/output/png/INV-2026-0142.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55295e51a977f769087181e03600d20dcd99a7f94ad576faba49f09e2c241611 +size 198252 diff --git a/output/png/INV-2026-0143.png b/output/png/INV-2026-0143.png new file mode 100644 index 0000000000000000000000000000000000000000..8e571d0464cbf9e04fc1fb43ad6fce5c907ba2d5 --- /dev/null +++ b/output/png/INV-2026-0143.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b4ee7e8890a460ebfeaf9e4072007b9716dc43a2fe68995a7e8a077bd2cfd7 +size 142630 diff --git a/output/png/INV-2026-0144.png b/output/png/INV-2026-0144.png new file mode 100644 index 0000000000000000000000000000000000000000..a63997e26bb7e3db8d57d5848fb7dd291c288f4d --- /dev/null +++ b/output/png/INV-2026-0144.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d19574e7f9bec63660f4296acd2ad94a1d06bb21de33ad2bc4087a7b9d3d98b2 +size 166919 diff --git a/output/png/INV-2026-0145.png b/output/png/INV-2026-0145.png new file mode 100644 index 0000000000000000000000000000000000000000..9c97c8d33738308530f9bb09f8ead756443bfbdc --- /dev/null +++ b/output/png/INV-2026-0145.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5744a7ba1915cb7cfca4841a49411ddd09a5c6c7e2ef12a09f47111f43cb923 +size 193508 diff --git a/output/png/INV-2026-0146.png b/output/png/INV-2026-0146.png new file mode 100644 index 0000000000000000000000000000000000000000..a82935d61b951385bcf5810780e21ccd7836b04f --- /dev/null +++ b/output/png/INV-2026-0146.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d470e4d5e211b39ef61e0ca07c79ba5bfb06832c12833509dacfa9dde9fb8ae3 +size 185129 diff --git a/output/png/INV-2026-0147.png b/output/png/INV-2026-0147.png new file mode 100644 index 0000000000000000000000000000000000000000..3aec14761c463b747a6ed548f8513bec9949ba15 --- /dev/null +++ b/output/png/INV-2026-0147.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5703f9a70e7f8a52206b37cc44dd871835d9b945b10e7d4b456b8a98ff64463d +size 164367 diff --git a/output/png/INV-2026-0148.png b/output/png/INV-2026-0148.png new file mode 100644 index 0000000000000000000000000000000000000000..ec336da1b7dbb3136e96dfd1a08391d91cbcbaa0 --- /dev/null +++ b/output/png/INV-2026-0148.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e42fa224ffede24d406fd94878018a662eb80fe1c5a5ce8664186a62298ce8b0 +size 155583 diff --git a/output/png/INV-2026-0149.png b/output/png/INV-2026-0149.png new file mode 100644 index 0000000000000000000000000000000000000000..bc765f52c918628711281152dddd810dcd75a234 --- /dev/null +++ b/output/png/INV-2026-0149.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b75fc917af32ac8592d6bf442927fd2975b98d7639e34aa98190d7e51e35394 +size 185522 diff --git a/output/png/INV-2026-0150.png b/output/png/INV-2026-0150.png new file mode 100644 index 0000000000000000000000000000000000000000..5f81005cf845d18fa4a403be5290f08404f56d85 --- /dev/null +++ b/output/png/INV-2026-0150.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:825c541ee49b4e5880c380477c70baa31ec801da88c332a44aa9aad7f1d2144d +size 213650 diff --git a/output/png/INV-2026-0151.png b/output/png/INV-2026-0151.png new file mode 100644 index 0000000000000000000000000000000000000000..198941ee9df37af5b8e7781300cf57cac5b0522f --- /dev/null +++ b/output/png/INV-2026-0151.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50c4a95c11d4c20267263f5712afb96e174c8403bac1d41b513c16da82d4ea7d +size 149766 diff --git a/output/png/INV-2026-0152.png b/output/png/INV-2026-0152.png new file mode 100644 index 0000000000000000000000000000000000000000..f672a3191266d5bd4df8b567c10437b5ada496f9 --- /dev/null +++ b/output/png/INV-2026-0152.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e7dbe6e12401646b813b9272a393c85fe6befc916ce1b255181015714e8e154 +size 134834 diff --git a/output/png/INV-2026-0153.png b/output/png/INV-2026-0153.png new file mode 100644 index 0000000000000000000000000000000000000000..d24461186ae54ae6386284bcb02fe553306039b4 --- /dev/null +++ b/output/png/INV-2026-0153.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b066f4d034bac0cc77010cf2249034fbaf7e453c50d393a04e890c0e93f15b70 +size 165482 diff --git a/output/png/INV-2026-0154.png b/output/png/INV-2026-0154.png new file mode 100644 index 0000000000000000000000000000000000000000..3d36a3bfe22241705e9a65ff6c813fedf99c264f --- /dev/null +++ b/output/png/INV-2026-0154.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc96e00ab952303018b3c5fa2519c117637fca52767ba10f1486bb1faf87d547 +size 129716 diff --git a/output/png/INV-2026-0155.png b/output/png/INV-2026-0155.png new file mode 100644 index 0000000000000000000000000000000000000000..cee65fa5f4a5c64929378339ebfd529dbc1e3496 --- /dev/null +++ b/output/png/INV-2026-0155.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dfc8b2b46f0c918b852c948ac01e3bca1770e506c074c669bc7040561304765 +size 170125 diff --git a/output/png/INV-2026-0156.png b/output/png/INV-2026-0156.png new file mode 100644 index 0000000000000000000000000000000000000000..af14cfff95fb0f5825d4e50f730321f43c16672e --- /dev/null +++ b/output/png/INV-2026-0156.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a6c6f6367815d1d646979d67ec2652d0329a36c8805e68255a003d6b9454415 +size 198888 diff --git a/output/png/INV-2026-0157.png b/output/png/INV-2026-0157.png new file mode 100644 index 0000000000000000000000000000000000000000..057b7e4bec436691a732d0581a94571b9adc2d43 --- /dev/null +++ b/output/png/INV-2026-0157.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a5a9fed805ce4776a39969c740c93d96085be9cda220338e8f6c848f40a7e34 +size 195990 diff --git a/output/png/INV-2026-0158.png b/output/png/INV-2026-0158.png new file mode 100644 index 0000000000000000000000000000000000000000..614711fb24cb68049f267e3a227763ae52646b23 --- /dev/null +++ b/output/png/INV-2026-0158.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:802581f093d4bc9aa4f6019875fde40cb81ab913c5ca0218d8518b214f159a9b +size 141525 diff --git a/output/png/INV-2026-0159.png b/output/png/INV-2026-0159.png new file mode 100644 index 0000000000000000000000000000000000000000..ca8b3ec7a86f382d08fe183df3a1d95b0cc1cc58 --- /dev/null +++ b/output/png/INV-2026-0159.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cc35ddca0c3b3d6edee3dfbb73fcc9604c69ffbc8ec9b7fb30bca3cb7c5f296 +size 161575 diff --git a/output/png/INV-2026-0160.png b/output/png/INV-2026-0160.png new file mode 100644 index 0000000000000000000000000000000000000000..b0841e06e73107e969dd9ce8c10a38155c0c468f --- /dev/null +++ b/output/png/INV-2026-0160.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84511a052bc7fe2f4b80e941615631b0076319676517ad1b0fcd3dc2bd04c59d +size 210469 diff --git a/output/png/INV-2026-0161.png b/output/png/INV-2026-0161.png new file mode 100644 index 0000000000000000000000000000000000000000..b5bab3ef025cd45400776ee3f5dcb2a60fd10167 --- /dev/null +++ b/output/png/INV-2026-0161.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:147676a8dbe27dcb29451a1d472586864beb8e0e9a1f9998d3a69141c0c07b67 +size 115835 diff --git a/output/png/INV-2026-0162.png b/output/png/INV-2026-0162.png new file mode 100644 index 0000000000000000000000000000000000000000..54a9b138b02dd0035442a67c3d926a81b19df0c9 --- /dev/null +++ b/output/png/INV-2026-0162.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:381e77b7a81f048f0493dd77f3b7bb6e100bad970c2afd6e297f0a8bb651279a +size 116114 diff --git a/output/png/INV-2026-0163.png b/output/png/INV-2026-0163.png new file mode 100644 index 0000000000000000000000000000000000000000..960d29ea3643a36627cc11bb2b883b5cf8c64742 --- /dev/null +++ b/output/png/INV-2026-0163.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e1d1d2ce8afdc1699d8e1980eaa15974e8f9335995e65cdd14c262fee629690 +size 214191 diff --git a/output/png/INV-2026-0164.png b/output/png/INV-2026-0164.png new file mode 100644 index 0000000000000000000000000000000000000000..3be9b187637235a9230e2c6ee783135d10cab0b8 --- /dev/null +++ b/output/png/INV-2026-0164.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65d56fa7c9271477437714c1a9251a31e40412e01f945469867cdb9654120e0f +size 202405 diff --git a/output/png/INV-2026-0165.png b/output/png/INV-2026-0165.png new file mode 100644 index 0000000000000000000000000000000000000000..c4f92b01d5467c8b724fce390b5ca7f76951a654 --- /dev/null +++ b/output/png/INV-2026-0165.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c713894d3b16a6a3d08f885c06905023818f8ff130dd972bdaf8bb59500fab5 +size 148197 diff --git a/output/png/INV-2026-0166.png b/output/png/INV-2026-0166.png new file mode 100644 index 0000000000000000000000000000000000000000..10dde2bf720f05984d06d97e7925d4ce31be094f --- /dev/null +++ b/output/png/INV-2026-0166.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e7e3052f355e5d763370669dd8467e3817dbeccf5df636ef8a4b03b5766a5e7 +size 173858 diff --git a/output/png/INV-2026-0167.png b/output/png/INV-2026-0167.png new file mode 100644 index 0000000000000000000000000000000000000000..7b29f441f1a196cceffc25c5161dcfd9bb444fb4 --- /dev/null +++ b/output/png/INV-2026-0167.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfda7b3b070122708b7d6f526b0af03a7aaac7c7eb9b95ab9b9f55eb347913f6 +size 216520 diff --git a/output/png/INV-2026-0168.png b/output/png/INV-2026-0168.png new file mode 100644 index 0000000000000000000000000000000000000000..5060bcc6afae8947893fa540a8d4e77e18b6ac6b --- /dev/null +++ b/output/png/INV-2026-0168.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ceb5ac8d362985bd58d86316cffffc35248a8d999fe2af0365a796f3d4f8835 +size 176380 diff --git a/output/png/INV-2026-0169.png b/output/png/INV-2026-0169.png new file mode 100644 index 0000000000000000000000000000000000000000..fabe4229343ba865f124a3340a0f49c49b36a15c --- /dev/null +++ b/output/png/INV-2026-0169.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39c13d45577683c7b907cf43339b3345345ae42674ab4a73d1167ce6f62cdd5c +size 186713 diff --git a/output/png/INV-2026-0170.png b/output/png/INV-2026-0170.png new file mode 100644 index 0000000000000000000000000000000000000000..7714d9753964fe0c250bf17b4f7f16fe4f309e7e --- /dev/null +++ b/output/png/INV-2026-0170.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92cabbc503b7f3412a1ed966c3cfae0329727c15280d1fc6cb25e82728e2e055 +size 171855 diff --git a/output/png/INV-2026-0171.png b/output/png/INV-2026-0171.png new file mode 100644 index 0000000000000000000000000000000000000000..0e91905bb01ed069dac2deebeae8c4709f73693a --- /dev/null +++ b/output/png/INV-2026-0171.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aae7420bbb2b82465110a17c649c4e8b31e9b2c59659bb4151938bb81d6a5633 +size 179092 diff --git a/output/png/INV-2026-0172.png b/output/png/INV-2026-0172.png new file mode 100644 index 0000000000000000000000000000000000000000..6a00c10729fa749bec91cdb5caf07989173df86a --- /dev/null +++ b/output/png/INV-2026-0172.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5c8beb2ab48fa95e2aba87108266baa18bf16c2fc69c35f575c872ce0d79e4b +size 158245 diff --git a/output/png/INV-2026-0173.png b/output/png/INV-2026-0173.png new file mode 100644 index 0000000000000000000000000000000000000000..ceafb72634f47376cf40c90ff46f05d27c0351ee --- /dev/null +++ b/output/png/INV-2026-0173.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c6508b4607659b6a8f9c2a0050d76964fcbb38e1bfe25d3f858f31cea11171 +size 155251 diff --git a/output/png/INV-2026-0174.png b/output/png/INV-2026-0174.png new file mode 100644 index 0000000000000000000000000000000000000000..3b17d25c820e745b79104d203e462e129a4c89af --- /dev/null +++ b/output/png/INV-2026-0174.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38442da0ed0def702dedc7f56246ed88853997484214b27f39a3d66102f41d0 +size 164870 diff --git a/output/png/INV-2026-0175.png b/output/png/INV-2026-0175.png new file mode 100644 index 0000000000000000000000000000000000000000..a2f8ef7720a4efe1f04338a71be8e78e4a269110 --- /dev/null +++ b/output/png/INV-2026-0175.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4fdc894dfb2cdde547a519b8cb5efdfb2abdbbb892cd7ad910e9708674c9222 +size 119799 diff --git a/output/png/INV-2026-0176.png b/output/png/INV-2026-0176.png new file mode 100644 index 0000000000000000000000000000000000000000..242cefad674271429d8c4decaeccb0f5c3e177df --- /dev/null +++ b/output/png/INV-2026-0176.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:563d3af79a9399a6d58fa80b7ac84c6f8c9c28631fe7657b78e6657639773eef +size 122605 diff --git a/output/png/INV-2026-0177.png b/output/png/INV-2026-0177.png new file mode 100644 index 0000000000000000000000000000000000000000..ffd152d58f82f8576409b6e5d7eaeda3dc7806cd --- /dev/null +++ b/output/png/INV-2026-0177.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85575097c550eaf66d01f7790db78258055e548b669f5e908b40266d662bc4ee +size 201687 diff --git a/output/png/INV-2026-0178.png b/output/png/INV-2026-0178.png new file mode 100644 index 0000000000000000000000000000000000000000..3f16b9d57a592bf501e1530fb8777a3454a7c3ff --- /dev/null +++ b/output/png/INV-2026-0178.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:528348dea8ab3441a7549258cba7e6572b23ccd89da0083b6a53a69647be5de3 +size 144929 diff --git a/output/png/INV-2026-0179.png b/output/png/INV-2026-0179.png new file mode 100644 index 0000000000000000000000000000000000000000..44465c8abf14bff976077801830506bbefd0bd33 --- /dev/null +++ b/output/png/INV-2026-0179.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23aba86504d4f928bfc1128183960667d3b02f4049b8b9a5402a0355ac83a00e +size 137445 diff --git a/output/png/INV-2026-0180.png b/output/png/INV-2026-0180.png new file mode 100644 index 0000000000000000000000000000000000000000..1f069025e7e6858e195d27d9d3847c9613a0a6f5 --- /dev/null +++ b/output/png/INV-2026-0180.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abbacec18ec61b054b4cdd1bcea9376cd4633b16b57643955c4a0f99ee866ebf +size 157170 diff --git a/output/png/INV-2026-0181.png b/output/png/INV-2026-0181.png new file mode 100644 index 0000000000000000000000000000000000000000..73009c5aab749d3cc0025a0b3884d6079b38a742 --- /dev/null +++ b/output/png/INV-2026-0181.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79622d9bdcc091e2816c48197ff482803f0fa992f6c2b73c915122e6bfe6c7e0 +size 123138 diff --git a/output/png/INV-2026-0182.png b/output/png/INV-2026-0182.png new file mode 100644 index 0000000000000000000000000000000000000000..c8e8bfed017fa333510ae76ff8fcc50d9165310d --- /dev/null +++ b/output/png/INV-2026-0182.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74a1e50696f5225a0449819803ba974324039efb0fd99e398b72a4297f6f9ef2 +size 176065 diff --git a/output/png/INV-2026-0183.png b/output/png/INV-2026-0183.png new file mode 100644 index 0000000000000000000000000000000000000000..8d9e52ce768d7bace109a9a04d574f3cfee4d604 --- /dev/null +++ b/output/png/INV-2026-0183.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de78fc392948554a52d22faa54109ff5b5a80b693761a39b5da43dd10b6ee13c +size 145685 diff --git a/output/png/INV-2026-0184.png b/output/png/INV-2026-0184.png new file mode 100644 index 0000000000000000000000000000000000000000..9c445dc5f8fd87a6abaa08708a82798839ab1cd4 --- /dev/null +++ b/output/png/INV-2026-0184.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f96471b4fbac7923d9a2b9d8a9d91b3360e08198c21c6dd24a12913cd042076b +size 197142 diff --git a/output/png/INV-2026-0185.png b/output/png/INV-2026-0185.png new file mode 100644 index 0000000000000000000000000000000000000000..91975ee1d2257a947f1c083ee10fd0dd4f7980b1 --- /dev/null +++ b/output/png/INV-2026-0185.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f83ad7ea347d22045610b5ff829bd5ad5a406f5ab6056236066b076ec335039b +size 130433 diff --git a/output/png/INV-2026-0186.png b/output/png/INV-2026-0186.png new file mode 100644 index 0000000000000000000000000000000000000000..3608a9348a5a87fb5a0a7d97852c4b699942f841 --- /dev/null +++ b/output/png/INV-2026-0186.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c1891ef022ffd8e1c0372597c908e0ac6d557ff8ac386f66e211ef1aa6af68b +size 145307 diff --git a/output/png/INV-2026-0187.png b/output/png/INV-2026-0187.png new file mode 100644 index 0000000000000000000000000000000000000000..677cfb01ee370479af5453a9feaa9adef49d77f0 --- /dev/null +++ b/output/png/INV-2026-0187.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1221552982cb836a67c64575bc89f841aa2b75f00b34780973900ef3056e54f2 +size 163173 diff --git a/output/png/INV-2026-0188.png b/output/png/INV-2026-0188.png new file mode 100644 index 0000000000000000000000000000000000000000..a49f89c8acd1de956d4857b71cd80f3b061f1030 --- /dev/null +++ b/output/png/INV-2026-0188.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76b622a51345ee04e440d25bdb339af5922063384a6608fa1e6a32cc5e81f2dd +size 144252 diff --git a/output/png/INV-2026-0189.png b/output/png/INV-2026-0189.png new file mode 100644 index 0000000000000000000000000000000000000000..55379d256e596e240eb998c44ddebe42e0134f76 --- /dev/null +++ b/output/png/INV-2026-0189.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d06fb66df20e0dd6eebd2eaadc704ed29bf281b85befdb2f3eedb53096fa1f9 +size 170541 diff --git a/output/png/INV-2026-0190.png b/output/png/INV-2026-0190.png new file mode 100644 index 0000000000000000000000000000000000000000..a99aeddf971b506471a2d5f96ef25ef564ffd969 --- /dev/null +++ b/output/png/INV-2026-0190.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eba0a39bf571b5c657054963c54fa613e677b3ab628f8f687b47a650ee20ed21 +size 171076 diff --git a/output/png/INV-2026-0191.png b/output/png/INV-2026-0191.png new file mode 100644 index 0000000000000000000000000000000000000000..107e58dd0db0a9631bd67f12df9869430cb16408 --- /dev/null +++ b/output/png/INV-2026-0191.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:510f6f133078e3334f09d8d00362186f877ffc29c5c6a85614dfbf0740d47cf2 +size 141562 diff --git a/output/png/INV-2026-0192.png b/output/png/INV-2026-0192.png new file mode 100644 index 0000000000000000000000000000000000000000..7950b66c052a2f3e3bf3ff520b27ce1f08a6e3bc --- /dev/null +++ b/output/png/INV-2026-0192.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4204b7a4eb80dbd96061958e9079f97fe7fca18cce263e074b9f9335edb0dfc +size 150751 diff --git a/output/png/INV-2026-0193.png b/output/png/INV-2026-0193.png new file mode 100644 index 0000000000000000000000000000000000000000..a7b78b2551bdbaca45f6494b0092664b1d148ad8 --- /dev/null +++ b/output/png/INV-2026-0193.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c72f10b22e33aa90fab99a5ee4545dab5fb8836becdce5a54b2ad695b907c4 +size 146269 diff --git a/output/png/INV-2026-0194.png b/output/png/INV-2026-0194.png new file mode 100644 index 0000000000000000000000000000000000000000..65e92d28b1a6af20bdf1e9e021f7cf4af32bbaf3 --- /dev/null +++ b/output/png/INV-2026-0194.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73036a161fd45a0b35103542a1a65677b8ab57909f05e6746507759585fd3f86 +size 188184 diff --git a/output/png/INV-2026-0195.png b/output/png/INV-2026-0195.png new file mode 100644 index 0000000000000000000000000000000000000000..e804180f4211dc8cc60bf05ae63a7072fc2636b0 --- /dev/null +++ b/output/png/INV-2026-0195.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40e882f30bbd9ded3edf91808f3bd074fa14ef13b152b2efa84deb9a1f57e1d8 +size 113167 diff --git a/output/png/INV-2026-0196.png b/output/png/INV-2026-0196.png new file mode 100644 index 0000000000000000000000000000000000000000..2e67dab58b9e3dd3282acc98d1ca7aa22ba0b1c4 --- /dev/null +++ b/output/png/INV-2026-0196.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6aa679673e6304e7a5ac49db5f6855f23c7f220a1d6980175ef4b190583747a +size 208971 diff --git a/output/png/INV-2026-0197.png b/output/png/INV-2026-0197.png new file mode 100644 index 0000000000000000000000000000000000000000..b8f19dcd022622c5aee68a41738b56ccb9b3c013 --- /dev/null +++ b/output/png/INV-2026-0197.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d77e0b09fee743f983ad8f34d01f7c1f0eed6d276fd024f70ecef020174d1c68 +size 176469 diff --git a/output/png/INV-2026-0198.png b/output/png/INV-2026-0198.png new file mode 100644 index 0000000000000000000000000000000000000000..e33ecdfef0d8a6fc961ab2e2b12fae0bc17451b3 --- /dev/null +++ b/output/png/INV-2026-0198.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e18e0669df223038188e8edc63a75b6096895673b27dc32d2af675a4ae76f35e +size 194410 diff --git a/output/png/INV-2026-0199.png b/output/png/INV-2026-0199.png new file mode 100644 index 0000000000000000000000000000000000000000..a2ba4b049aaf2925cca0079e85d842197b8bedf0 --- /dev/null +++ b/output/png/INV-2026-0199.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b78db75fcf2b427a55589bd99ffe277ebb546d7f3f2086cb9f33516ffee92931 +size 180372 diff --git a/output/png/INV-2026-0200.png b/output/png/INV-2026-0200.png new file mode 100644 index 0000000000000000000000000000000000000000..10d609a5ff431fd43adbc7aa9ba12f57e3a8c827 --- /dev/null +++ b/output/png/INV-2026-0200.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee5015facaa3eb67b28daa82d24e42066af60047404c3ef536efd24a69705aaf +size 125764