Compare changes

Choose any two refs to compare.

+22
.achecker.yml
···
+
ruleArchive: latest
+
policies:
+
- IBM_Accessibility_next
+
- WCAG_2_2
+
+
failLevels:
+
- violation
+
- potentialviolation
+
+
reportLevels:
+
- violation
+
- potentialviolation
+
- recommendation
+
- potenticalrecommendation
+
+
outputFormat:
+
- json
+
+
outputFilenameTimestamp: true
+
outputFolder: accessibility-results/
+
baselineFolder: test/baselines
+
cacheFolder: /tmp/accessibility-checker
+6
.codebook.toml
···
"gazzew",
"gdq",
"gooden",
+
"hlc",
"lightningcss",
"logitech",
"lume",
···
"pagefind",
"plex",
"purgecss",
+
"qnot",
"repairability",
"rss",
"sindresorhus",
"speedrunner",
"speedrunning",
+
"tanc",
+
"theturnsignalblog",
+
"theyre",
"tldr",
"touchpads",
"vto",
+
"youre",
]
flag_words = []
ignore_paths = []
+2
.env.dev
···
export LUME_DRAFTS="true"
export PRODUCTION="false"
+
PUPPETEER_BROWSER=chrome-headless-shell
+
export PUPPETEER_EXECUTABLE_PATH=$PWD/temp.sh
+2
.gitignore
···
_cache
.direnv/bin
.direnv
+
accessibility-results/
+
temp.sh
+19
.tangled/workflows/deploy.yaml
···
+
when:
+
- event: ["push"]
+
branch: ["main"]
+
- event: ["manual"]
+
+
dependencies:
+
## from nixpkgs
+
nixpkgs:
+
- nodejs
+
- git
+
steps:
+
- name: "Set up SSH Key"
+
command: "mkdir .ssh ; echo $SSH_KEY > .ssh/id_ed25519"
+
+
- name: "Config Git"
+
command: "git config core.sshCommand 'ssh -i ~/.ssh/id_ed25519'"
+
+
- name: "Deploy"
+
command: "./deploy.sh"
+37 -35
_config.ts
···
// Additional external plugins
import toc from "lume_markdown_plugins/toc.ts";
-
import footnotes from "./plugins/footnotes.ts";
import slugify from "npm:@sindresorhus/slugify";
// CSS
···
// Custom Plugins
import validateHTML from "./plugins/validateHTML.ts";
import openInEditor from "./plugins/openInEditor.ts";
+
import footnotes from "./plugins/footnotes.ts";
+
// import checkAccessibility from "./plugins/checkAccessibility.ts";
// Disabled Plugins:
// import nav from "lume/plugins/nav.ts";
···
// To Add:
// https://deno.land/x/lume_shiki@0.0.16
+
const markdown = {
+
plugins: [
+
BiDirectionalLinks({
+
dir: Deno.cwd() + "/src/",
+
stillRenderNoMatched: false,
+
debug: false,
+
}),
+
mdItObsidianCallouts,
+
footnotes,
+
],
+
};
+
const site = lume({
src: "./src",
location: new URL("https://pyrox.dev"),
-
}, {
-
markdown: {
-
plugins: [
-
[BiDirectionalLinks, {
-
dir: Deno.cwd() + "/src/",
-
stillRenderNoMatched: false,
-
}],
-
mdItObsidianCallouts,
-
footnotes,
-
],
-
},
-
});
+
cssFile: "/styles.css",
+
}, { markdown });
+
// Ensure all URLs are to the final page links
+
site.use(resolveUrls());
// Copy Static Files
-
site.add(".css");
+
// site.ignore("/static/mocha.css");
site.add("static/.well-known", ".well-known");
-
site.add(".woff2");
-
// Tailwind CSS
-
site.use(tailwindcss());
// Fonts
site.use(
googleFonts({
subsets: ["latin", "latin-ext"],
-
folder: "/static/fonts/",
-
cssFile: "/static/fonts.css",
+
fontsFolder: "/static/fonts/",
fonts:
"https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900",
}),
);
+
// Tailwind CSS
+
site.use(tailwindcss());
+
site.use(lightningcss({
+
options: {
+
minify: true,
+
},
+
}));
+
site.add([".css", ".woff2"]);
+
+
// Source Map Generation
+
// Applies to CSS and JS
+
site.use(sourceMaps());
+
+
site.use(slugifyUrls());
site.use(picture());
site.use(transformImages());
-
site.add(".png");
+
site.add([".png"]);
// site.use(relations());
-
site.use(slugifyUrls());
site.use(svgo());
site.use(toml());
···
site.use(toc({
slugify: (s: string) => slugify(s),
}));
-
-
// Ensure all URLs are to the final page links
-
site.use(resolveUrls());
// RSS/JSON Feed Generation
site.use(
···
);
// CSS postprocessing
-
// site.use(purgecss());
-
site.use(lightningcss({
-
options: {
-
minify: true,
-
},
-
}));
-
site.use(sitemap());
-
// Source Map Generation
-
// Applies to CSS and JS
-
site.use(sourceMaps());
-
+
// site.use(checkAccessibility());
site.use(validateHTML());
site.data("production", Deno.env.get("PRODUCTION") == "true");
···
if (Deno.env.get("PRODUCTION") == "false") {
site.use(openInEditor());
site.add("static/scripts/open-in-editor.js");
+
site.add("static/scripts/highlight-accessibility.js");
}
// This only applies in prod mode
+16 -7
deno.json
···
{
"imports": {
-
"@nolebase/markdown-it-bi-directional-links": "npm:@nolebase/markdown-it-bi-directional-links@^2.15.1",
-
"lume/": "https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/",
+
"@nolebase/markdown-it-bi-directional-links": "npm:@nolebase/markdown-it-bi-directional-links@^2.18.0",
+
"accessibility-checker": "npm:accessibility-checker@^4.0.6",
+
"lume/": "https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/",
"markdown-it-obsidian-callouts": "https://deno.land/x/markdown_it_obsidian_callouts_lite@0.4.1/src/index.ts",
-
"html-validate": "npm:html-validate@9.5.2",
+
"html-validate": "npm:html-validate@9.7.1",
"lume_markdown_plugins/": "https://deno.land/x/lume_markdown_plugins@v0.8.0/",
-
"sharp": "npm:sharp@0.33.5"
+
"sharp": "npm:sharp@0.34.3",
+
"lume/jsx-runtime": "https://deno.land/x/ssx@v0.1.10/jsx-runtime.ts"
},
"tasks": {
-
"lume": "echo \"import 'lume/cli.ts'\" | deno run --env-file=.env.dev --unstable-ffi -A -",
+
"lume": "echo \"import 'lume/cli.ts'\" | deno run --env-file=.env.dev --unstable-ffi --unstable-detect-cjs -A -",
"prod": "echo \"import 'lume/cli.ts'\" | deno run --env-file=.env.prod -A -",
"build": "deno task lume",
"serve": "deno task lume -s ",
···
"dprint": "deno run -A npm:dprint"
},
"compilerOptions": {
-
"types": ["lume/types.ts"]
+
"types": ["lume/types.ts"],
+
"jsx": "react-jsx",
+
"jsxImportSource": "lume"
},
"nodeModulesDir": "auto",
"fmt": {
···
"src/static/styles.css"
]
},
-
"unstable": ["temporal"]
+
"unstable": ["temporal", "fmt-component"],
+
"lint": {
+
"plugins": [
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/lint.ts"
+
]
+
}
}
+2688 -352
deno.lock
···
"version": "4",
"specifiers": {
"jsr:@davidbonnet/astring@1.8.6": "1.8.6",
+
"jsr:@luca/esbuild-deno-loader@0.11.1": "0.11.1",
+
"jsr:@minify-html/deno@0.16.4": "0.16.4",
+
"jsr:@std/bytes@^1.0.2": "1.0.5",
"jsr:@std/bytes@^1.0.5": "1.0.5",
-
"jsr:@std/cli@1.0.14": "1.0.14",
-
"jsr:@std/cli@^1.0.12": "1.0.14",
-
"jsr:@std/collections@^1.0.9": "1.0.10",
+
"jsr:@std/bytes@^1.0.6": "1.0.6",
+
"jsr:@std/cli@1.0.16": "1.0.16",
+
"jsr:@std/cli@1.0.20": "1.0.20",
+
"jsr:@std/cli@^1.0.16": "1.0.16",
+
"jsr:@std/cli@^1.0.20": "1.0.20",
+
"jsr:@std/collections@^1.0.10": "1.0.10",
+
"jsr:@std/collections@^1.1.1": "1.1.2",
"jsr:@std/crypto@1.0.4": "1.0.4",
-
"jsr:@std/encoding@1.0.7": "1.0.7",
-
"jsr:@std/encoding@^1.0.7": "1.0.7",
+
"jsr:@std/crypto@1.0.5": "1.0.5",
+
"jsr:@std/encoding@1.0.10": "1.0.10",
+
"jsr:@std/encoding@1.0.9": "1.0.9",
+
"jsr:@std/encoding@^1.0.10": "1.0.10",
+
"jsr:@std/encoding@^1.0.5": "1.0.9",
+
"jsr:@std/encoding@^1.0.9": "1.0.9",
"jsr:@std/fmt@1.0.6": "1.0.6",
-
"jsr:@std/fmt@^1.0.5": "1.0.6",
-
"jsr:@std/front-matter@1.0.7": "1.0.7",
-
"jsr:@std/fs@1.0.14": "1.0.14",
-
"jsr:@std/fs@^1.0.11": "1.0.14",
+
"jsr:@std/fmt@1.0.8": "1.0.8",
+
"jsr:@std/fmt@^1.0.6": "1.0.6",
+
"jsr:@std/fmt@^1.0.8": "1.0.8",
+
"jsr:@std/front-matter@1.0.9": "1.0.9",
+
"jsr:@std/fs@1.0.16": "1.0.16",
+
"jsr:@std/fs@1.0.19": "1.0.19",
+
"jsr:@std/fs@^1.0.19": "1.0.19",
"jsr:@std/html@1.0.3": "1.0.3",
"jsr:@std/html@^1.0.3": "1.0.3",
-
"jsr:@std/http@1.0.13": "1.0.13",
-
"jsr:@std/io@~0.225.2": "0.225.2",
+
"jsr:@std/html@^1.0.4": "1.0.4",
+
"jsr:@std/http@1.0.14": "1.0.14",
+
"jsr:@std/http@1.0.19": "1.0.19",
+
"jsr:@std/internal@^1.0.9": "1.0.9",
"jsr:@std/json@1": "1.0.1",
+
"jsr:@std/json@^1.0.2": "1.0.2",
"jsr:@std/jsonc@1.0.1": "1.0.1",
-
"jsr:@std/log@0.224.14": "0.224.14",
+
"jsr:@std/jsonc@1.0.2": "1.0.2",
"jsr:@std/media-types@1.1.0": "1.1.0",
"jsr:@std/media-types@^1.1.0": "1.1.0",
"jsr:@std/net@^1.0.4": "1.0.4",
"jsr:@std/path@1.0.8": "1.0.8",
+
"jsr:@std/path@1.1.1": "1.1.1",
+
"jsr:@std/path@^1.0.6": "1.0.8",
"jsr:@std/path@^1.0.8": "1.0.8",
+
"jsr:@std/path@^1.1.1": "1.1.1",
+
"jsr:@std/streams@1.0.10": "1.0.10",
"jsr:@std/streams@1.0.9": "1.0.9",
+
"jsr:@std/streams@^1.0.10": "1.0.10",
"jsr:@std/streams@^1.0.9": "1.0.9",
-
"jsr:@std/toml@1.0.2": "1.0.2",
-
"jsr:@std/toml@^1.0.2": "1.0.2",
+
"jsr:@std/toml@1.0.4": "1.0.4",
+
"jsr:@std/toml@1.0.8": "1.0.8",
+
"jsr:@std/toml@^1.0.3": "1.0.4",
"jsr:@std/yaml@1.0.5": "1.0.5",
+
"jsr:@std/yaml@1.0.8": "1.0.8",
"jsr:@std/yaml@^1.0.5": "1.0.5",
-
"npm:@nolebase/markdown-it-bi-directional-links@^2.15.1": "2.15.1_markdown-it@14.1.0",
+
"npm:@nolebase/markdown-it-bi-directional-links@^2.18.0": "2.18.0_markdown-it@14.1.0",
"npm:@sindresorhus/slugify@*": "2.2.1",
-
"npm:@tailwindcss/oxide@4.0.14": "4.0.14",
+
"npm:@tailwindcss/node@4.1.11": "4.1.11",
"npm:@tailwindcss/oxide@4.0.3": "4.0.3",
+
"npm:@tailwindcss/oxide@4.1.11": "4.1.11",
+
"npm:@tailwindcss/oxide@4.1.4": "4.1.4",
"npm:@types/estree@1.0.6": "1.0.6",
+
"npm:@types/node@*": "22.12.0",
+
"npm:accessibility-checker@^4.0.6": "4.0.6",
"npm:date-fns@4.1.0": "4.1.0",
-
"npm:dprint@*": "0.49.0",
+
"npm:dprint@*": "0.49.1",
"npm:estree-walker@3.0.3": "3.0.3",
-
"npm:html-validate@9.5.2": "9.5.2_ajv@8.17.1",
+
"npm:html-validate@9.7.1": "9.7.1_ajv@8.17.1",
"npm:ico-endec@0.1.6": "0.1.6",
-
"npm:lightningcss-wasm@1.29.2": "1.29.2",
+
"npm:lightningcss-wasm@1.29.3": "1.29.3",
+
"npm:lightningcss-wasm@1.30.1": "1.30.1",
"npm:markdown-it-attrs@4.3.1": "4.3.1_markdown-it@14.1.0",
"npm:markdown-it-deflist@3.0.0": "3.0.0",
"npm:markdown-it@14.1.0": "14.1.0",
"npm:meriyah@6.0.5": "6.0.5",
"npm:remove-markdown@0.6.0": "0.6.0",
-
"npm:sharp@0.33.5": "0.33.5",
+
"npm:remove-markdown@0.6.2": "0.6.2",
+
"npm:sharp@0.34.1": "0.34.1",
+
"npm:sharp@0.34.2": "0.34.2",
+
"npm:sharp@0.34.3": "0.34.3",
"npm:svg2png-wasm@1.4.1": "1.4.1",
"npm:svgo@3.3.2": "3.3.2",
-
"npm:tailwindcss@4.0.14": "4.0.14"
+
"npm:svgo@4.0.0": "4.0.0",
+
"npm:tailwindcss@4.1.11": "4.1.11",
+
"npm:tailwindcss@4.1.4": "4.1.4"
},
"jsr": {
"@davidbonnet/astring@1.8.6": {
"integrity": "98b4914c8863cdf8c0ff83bb5c528caa67a8dca6020ad6234113499f00583e3a"
},
+
"@luca/esbuild-deno-loader@0.11.1": {
+
"integrity": "dc020d16d75b591f679f6b9288b10f38bdb4f24345edb2f5732affa1d9885267",
+
"dependencies": [
+
"jsr:@std/bytes@^1.0.2",
+
"jsr:@std/encoding@^1.0.5",
+
"jsr:@std/path@^1.0.6"
+
]
+
},
+
"@minify-html/deno@0.16.4": {
+
"integrity": "8d4bb62fef045a3959f62b82dd41e26ee1b2cf45be47b90e1d18d21b8277e695"
+
},
"@std/bytes@1.0.5": {
"integrity": "4465dd739d7963d964c809202ebea6d5c6b8e3829ef25c6a224290fbb8a1021e"
},
-
"@std/cli@1.0.14": {
-
"integrity": "b09ee9921cd476c0e08185ed2bfce682d45ecf4654f26c31b4aa244a2c5c024e"
+
"@std/bytes@1.0.6": {
+
"integrity": "f6ac6adbd8ccd99314045f5703e23af0a68d7f7e58364b47d2c7f408aeb5820a"
+
},
+
"@std/cli@1.0.16": {
+
"integrity": "02df293099c35b9e97d8ca05f57f54bd1ee08134f25d19a4756b3924695f4b00"
+
},
+
"@std/cli@1.0.20": {
+
"integrity": "a8c384a2c98cec6ec6a2055c273a916e2772485eb784af0db004c5ab8ba52333"
},
"@std/collections@1.0.10": {
"integrity": "903af106a3d92970d74e20f7ebff77d9658af9bef4403f1dc42a7801c0575899"
},
+
"@std/collections@1.1.2": {
+
"integrity": "f1685dd45c3ec27c39d0e8a642ccf810f391ec8a6cb5e7355926e6dacc64c43e"
+
},
"@std/crypto@1.0.4": {
"integrity": "cee245c453bd5366207f4d8aa25ea3e9c86cecad2be3fefcaa6cb17203d79340"
},
-
"@std/encoding@1.0.7": {
-
"integrity": "f631247c1698fef289f2de9e2a33d571e46133b38d042905e3eac3715030a82d"
+
"@std/crypto@1.0.5": {
+
"integrity": "0dcfbb319fe0bba1bd3af904ceb4f948cde1b92979ec1614528380ed308a3b40"
+
},
+
"@std/encoding@1.0.9": {
+
"integrity": "025b8f18eb1749bc30d1353bf48b77d1eb5e35610220fa226f5a046b9240c5d7"
+
},
+
"@std/encoding@1.0.10": {
+
"integrity": "8783c6384a2d13abd5e9e87a7ae0520a30e9f56aeeaa3bdf910a3eaaf5c811a1"
},
"@std/fmt@1.0.6": {
"integrity": "a2c56a69a2369876ddb3ad6a500bb6501b5bad47bb3ea16bfb0c18974d2661fc"
},
-
"@std/front-matter@1.0.7": {
-
"integrity": "a9e577403b3c0ef6a6836b54bd2034db49be765d99807dd629f2c4466d345c3e",
+
"@std/fmt@1.0.8": {
+
"integrity": "71e1fc498787e4434d213647a6e43e794af4fd393ef8f52062246e06f7e372b7"
+
},
+
"@std/front-matter@1.0.9": {
+
"integrity": "ee6201d06674cbef137dda2252f62477450b48249e7d8d9ab57a30f85ff6f051",
"dependencies": [
-
"jsr:@std/toml@^1.0.2",
+
"jsr:@std/toml@^1.0.3",
"jsr:@std/yaml@^1.0.5"
]
},
-
"@std/fs@1.0.14": {
-
"integrity": "1e84bf0b95fe08f41f1f4aea9717bbf29f45408a56ce073b0114474ce1c9fccf",
+
"@std/fs@1.0.16": {
+
"integrity": "81878f62b6eeda0bf546197fc3daa5327c132fee1273f6113f940784a468b036",
"dependencies": [
"jsr:@std/path@^1.0.8"
]
},
+
"@std/fs@1.0.19": {
+
"integrity": "051968c2b1eae4d2ea9f79a08a3845740ef6af10356aff43d3e2ef11ed09fb06",
+
"dependencies": [
+
"jsr:@std/internal",
+
"jsr:@std/path@^1.1.1"
+
]
+
},
"@std/html@1.0.3": {
"integrity": "7a0ac35e050431fb49d44e61c8b8aac1ebd55937e0dc9ec6409aa4bab39a7988"
},
-
"@std/http@1.0.13": {
-
"integrity": "d29618b982f7ae44380111f7e5b43da59b15db64101198bb5f77100d44eb1e1e",
+
"@std/html@1.0.4": {
+
"integrity": "eff3497c08164e6ada49b7f81a28b5108087033823153d065e3f89467dd3d50e"
+
},
+
"@std/http@1.0.14": {
+
"integrity": "bfc4329d975dff2abd8170e83e37deb454fbc678fec3fdd2ef5b03d92768a4ef",
"dependencies": [
-
"jsr:@std/cli@^1.0.12",
-
"jsr:@std/encoding@^1.0.7",
-
"jsr:@std/fmt@^1.0.5",
+
"jsr:@std/cli@^1.0.16",
+
"jsr:@std/encoding@^1.0.9",
+
"jsr:@std/fmt@^1.0.6",
"jsr:@std/html@^1.0.3",
"jsr:@std/media-types@^1.1.0",
"jsr:@std/net",
···
"jsr:@std/streams@^1.0.9"
]
},
-
"@std/io@0.225.2": {
-
"integrity": "3c740cd4ee4c082e6cfc86458f47e2ab7cb353dc6234d5e9b1f91a2de5f4d6c7"
+
"@std/http@1.0.19": {
+
"integrity": "52128c8d00a1f0b20019f8b72376e7ef5f3133375b6f805b5bc89b9de2ad4686",
+
"dependencies": [
+
"jsr:@std/cli@^1.0.20",
+
"jsr:@std/encoding@^1.0.10",
+
"jsr:@std/fmt@^1.0.8",
+
"jsr:@std/fs@^1.0.19",
+
"jsr:@std/html@^1.0.4",
+
"jsr:@std/media-types@^1.1.0",
+
"jsr:@std/net",
+
"jsr:@std/path@^1.1.1",
+
"jsr:@std/streams@^1.0.10"
+
]
+
},
+
"@std/internal@1.0.9": {
+
"integrity": "bdfb97f83e4db7a13e8faab26fb1958d1b80cc64366501af78a0aee151696eb8"
},
"@std/json@1.0.1": {
"integrity": "1f0f70737e8827f9acca086282e903677bc1bb0c8ffcd1f21bca60039563049f"
},
+
"@std/json@1.0.2": {
+
"integrity": "d9e5497801c15fb679f55a2c01c7794ad7a5dfda4dd1bebab5e409cb5e0d34d4"
+
},
"@std/jsonc@1.0.1": {
"integrity": "6b36956e2a7cbb08ca5ad7fbec72e661e6217c202f348496ea88747636710dda",
"dependencies": [
-
"jsr:@std/json"
+
"jsr:@std/json@1"
]
},
-
"@std/log@0.224.14": {
-
"integrity": "257f7adceee3b53bb2bc86c7242e7d1bc59729e57d4981c4a7e5b876c808f05e",
+
"@std/jsonc@1.0.2": {
+
"integrity": "909605dae3af22bd75b1cbda8d64a32cf1fd2cf6efa3f9e224aba6d22c0f44c7",
"dependencies": [
-
"jsr:@std/fmt@^1.0.5",
-
"jsr:@std/fs@^1.0.11",
-
"jsr:@std/io"
+
"jsr:@std/json@^1.0.2"
]
},
"@std/media-types@1.1.0": {
···
"@std/path@1.0.8": {
"integrity": "548fa456bb6a04d3c1a1e7477986b6cffbce95102d0bb447c67c4ee70e0364be"
},
+
"@std/path@1.1.1": {
+
"integrity": "fe00026bd3a7e6a27f73709b83c607798be40e20c81dde655ce34052fd82ec76",
+
"dependencies": [
+
"jsr:@std/internal"
+
]
+
},
"@std/streams@1.0.9": {
"integrity": "a9d26b1988cdd7aa7b1f4b51e1c36c1557f3f252880fa6cc5b9f37078b1a5035",
"dependencies": [
-
"jsr:@std/bytes"
+
"jsr:@std/bytes@^1.0.5"
]
},
-
"@std/toml@1.0.2": {
-
"integrity": "5892ba489c5b512265a384238a8fe8dddbbb9498b4b210ef1b9f0336a423a39b",
+
"@std/streams@1.0.10": {
+
"integrity": "75c0b1431873cd0d8b3d679015220204d36d3c7420d93b60acfc379eb0dc30af",
"dependencies": [
-
"jsr:@std/collections"
+
"jsr:@std/bytes@^1.0.6"
+
]
+
},
+
"@std/toml@1.0.4": {
+
"integrity": "8781e687d04c8fbe246b9c5714be01925792a94d943462c33777675ab557cff1",
+
"dependencies": [
+
"jsr:@std/collections@^1.0.10"
+
]
+
},
+
"@std/toml@1.0.8": {
+
"integrity": "eb8ae76b4cc1c6c13f2a91123675823adbec2380de75cd3748c628960d952164",
+
"dependencies": [
+
"jsr:@std/collections@^1.1.1"
]
},
"@std/yaml@1.0.5": {
"integrity": "71ba3d334305ee2149391931508b2c293a8490f94a337eef3a09cade1a2a2742"
+
},
+
"@std/yaml@1.0.8": {
+
"integrity": "90b8aab62995e929fa0ea5f4151c287275b63e321ac375c35ff7406ca60c169d"
}
},
"npm": {
-
"@dprint/darwin-arm64@0.49.0": {
-
"integrity": "sha512-b8fwjdfYrX5H+QyeWiB27gPc1GMVdd2LorCtsZWC+MDQO6NOgpuxJePqccbQlFUumy2rfmQuLQprnldvQZhceg=="
+
"@ampproject/remapping@2.3.0": {
+
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
+
"dependencies": [
+
"@jridgewell/gen-mapping",
+
"@jridgewell/trace-mapping"
+
]
},
-
"@dprint/darwin-x64@0.49.0": {
-
"integrity": "sha512-cA/DIPlHClkufLufuIfcXHtZdlyP9U05RuJLvvAfHwJAxyeEC/chKYVc5BVz86RxMIq6czFGpJHoFtTjrfM3YA=="
+
"@babel/code-frame@7.27.1": {
+
"integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
+
"dependencies": [
+
"@babel/helper-validator-identifier",
+
"js-tokens",
+
"picocolors"
+
]
+
},
+
"@babel/helper-validator-identifier@7.27.1": {
+
"integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow=="
+
},
+
"@dprint/darwin-arm64@0.49.1": {
+
"integrity": "sha512-ib6KcJWo/M5RJWXOQKhP664FG1hAvG7nrbkh+j8n+oXdzmbyDdXTP+zW+aM3/sIQUkGaZky1xy1j2VeScMEEHQ=="
+
},
+
"@dprint/darwin-x64@0.49.1": {
+
"integrity": "sha512-vIVgnYxV7YYa1d6Uyz707RbgB9rwefGPam+rzaueFNPQjdOxPOTQDuMEJDS+Z3BlI00MfeoupIfIUGsXoM4dpQ=="
+
},
+
"@dprint/linux-arm64-glibc@0.49.1": {
+
"integrity": "sha512-ZeIh6qMPWLBBifDtU0XadpK36b4WoaTqCOt0rWKfoTjq1RAt78EgqETWp43Dbr6et/HvTgYdoWF0ZNEu2FJFFA=="
+
},
+
"@dprint/linux-arm64-musl@0.49.1": {
+
"integrity": "sha512-/nuRyx+TykN6MqhlSCRs/t3o1XXlikiwTc9emWdzMeLGllYvJrcht9gRJ1/q1SqwCFhzgnD9H7roxxfji1tc+Q=="
+
},
+
"@dprint/linux-riscv64-glibc@0.49.1": {
+
"integrity": "sha512-RHBqrnvGO+xW4Oh0QuToBqWtkXMcfjqa1TqbBFF03yopFzZA2oRKX83PhjTWgd/IglaOns0BgmaLJy/JBSxOfQ=="
},
-
"@dprint/linux-arm64-glibc@0.49.0": {
-
"integrity": "sha512-UBo3lDJhotT+qza2S48DOPI64MirkJMoFDidh/TJBjokio2TcGd+QUzuB9O7J1+R3AlbwyObcTECjJryCNohHQ=="
+
"@dprint/linux-x64-glibc@0.49.1": {
+
"integrity": "sha512-MjFE894mIQXOKBencuakKyzAI4KcDe/p0Y9lRp9YSw/FneR4QWH9VBH90h8fRxcIlWMArjFFJJAtsBnn5qgxeg=="
},
-
"@dprint/linux-arm64-musl@0.49.0": {
-
"integrity": "sha512-XWAPL6Hp+zqk9bi57450wuy4yz4fvT72L3Zji3X7ChL5KD/apMUzQnZhmTpln2sxwIgJ3nCbzEzlF7jhhp/7KA=="
+
"@dprint/linux-x64-musl@0.49.1": {
+
"integrity": "sha512-CvGBWOksHgrL1uzYqtPFvZz0+E82BzgoCIEHJeuYaveEn37qWZS5jqoCm/vz6BfoivE1dVuyyOT78Begj9KxkQ=="
},
-
"@dprint/linux-riscv64-glibc@0.49.0": {
-
"integrity": "sha512-6GlGcauMeMbCCJ15OmAMkarouCifij9hb12Vz5UUZPevnutVoWRTQBPQLfllmd+9Znsp23fHnmzmykibdwj4Gw=="
+
"@dprint/win32-arm64@0.49.1": {
+
"integrity": "sha512-gQa4s82lMcXjfdxjWBQun6IJlXdPZZaIj2/2cqXWVEOYPKxAZ/JvGzt2pPG+i73h9KHjNLIV8M9ckqEH3oHufg=="
},
-
"@dprint/linux-x64-glibc@0.49.0": {
-
"integrity": "sha512-PJUM1G8L2xwF9R1s4/J6kf29S2sJ/sZGy3ah7g5Uj+oYkZq6SlMOrx3xqCXEkKSa0T6Xuc1bUBcJyrjEf36xiw=="
+
"@dprint/win32-x64@0.49.1": {
+
"integrity": "sha512-nPU6+hoVze5JJlgET7woYWElBw0IUaB/9XKTaglknQuUUfsmD75D9pkgJTxdIxl9Bg/i5O7c9wb3Nj4XNiTIfw=="
},
-
"@dprint/linux-x64-musl@0.49.0": {
-
"integrity": "sha512-+WIInBwbCXYmWZcYYmnD8HdcZj6q8ewy6mPpHH6SDMtWr6nrxzyIVLFr72XeiBoHnVsQFUhN+wv5Bm5NnpJtRw=="
+
"@emnapi/core@1.4.3": {
+
"integrity": "sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==",
+
"dependencies": [
+
"@emnapi/wasi-threads",
+
"tslib"
+
]
},
-
"@dprint/win32-arm64@0.49.0": {
-
"integrity": "sha512-AteygrhmT7OXIgE/72REUfTPs/+qU0I1vhU379AYXgcWzOKy6Eeyi8lAt17oF7OmGT4IuyrKEDjpdTxhOWLsQw=="
+
"@emnapi/runtime@1.4.3": {
+
"integrity": "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==",
+
"dependencies": [
+
"tslib"
+
]
},
-
"@dprint/win32-x64@0.49.0": {
-
"integrity": "sha512-8bE6P9T/32Gd+zMAkcwvUHzOLEMnbHEMgsgiKypYsdFTskpDz+y1GLJvMaxIFd2DB2tMx9TdBYuBQrJroTsMeQ=="
+
"@emnapi/runtime@1.4.4": {
+
"integrity": "sha512-hHyapA4A3gPaDCNfiqyZUStTMqIkKRshqPIuDOXv1hcBnD4U3l8cP0T1HMCfGRxQ6V64TGCcoswChANyOAwbQg==",
+
"dependencies": [
+
"tslib"
+
]
},
-
"@emnapi/runtime@1.3.1": {
-
"integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==",
+
"@emnapi/wasi-threads@1.0.2": {
+
"integrity": "sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==",
"dependencies": [
"tslib"
]
},
-
"@html-validate/stylish@4.2.0": {
-
"integrity": "sha512-Nl8HCv0hGRSLQ+n1OD4Hk3a+Urwk9HH0vQkAzzCarT4KlA7bRl+6xEiS5PZVwOmjtC7XiH/oNe3as9Fxcr2A1w==",
+
"@fast-csv/format@4.3.5": {
+
"integrity": "sha512-8iRn6QF3I8Ak78lNAa+Gdl5MJJBM5vRHivFtMRUWINdevNo00K7OXxS2PshawLKTejVwieIlPmK5YlLu6w4u8A==",
+
"dependencies": [
+
"@types/node@14.18.63",
+
"lodash.escaperegexp",
+
"lodash.isboolean",
+
"lodash.isequal",
+
"lodash.isfunction",
+
"lodash.isnil"
+
]
+
},
+
"@fast-csv/parse@4.3.6": {
+
"integrity": "sha512-uRsLYksqpbDmWaSmzvJcuApSEe38+6NQZBUsuAyMZKqHxH0g1wcJgsKUvN3WC8tewaqFjBMMGrkHmC+T7k8LvA==",
+
"dependencies": [
+
"@types/node@14.18.63",
+
"lodash.escaperegexp",
+
"lodash.groupby",
+
"lodash.isfunction",
+
"lodash.isnil",
+
"lodash.isundefined",
+
"lodash.uniq"
+
]
+
},
+
"@html-validate/stylish@4.3.0": {
+
"integrity": "sha512-eUfvKpRJg5TvzSfTf2EovrQoTKjkRnPUOUnXVJ2cQ4GbC/bQw98oxN+DdSf+HxOBK00YOhsP52xWdJPV1o4n5w==",
"dependencies": [
"kleur@4.1.5"
]
},
-
"@img/sharp-darwin-arm64@0.33.5": {
-
"integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==",
+
"@img/sharp-darwin-arm64@0.34.1": {
+
"integrity": "sha512-pn44xgBtgpEbZsu+lWf2KNb6OAf70X68k+yk69Ic2Xz11zHR/w24/U49XT7AeRwJ0Px+mhALhU5LPci1Aymk7A==",
+
"dependencies": [
+
"@img/sharp-libvips-darwin-arm64@1.1.0"
+
]
+
},
+
"@img/sharp-darwin-arm64@0.34.2": {
+
"integrity": "sha512-OfXHZPppddivUJnqyKoi5YVeHRkkNE2zUFT2gbpKxp/JZCFYEYubnMg+gOp6lWfasPrTS+KPosKqdI+ELYVDtg==",
+
"dependencies": [
+
"@img/sharp-libvips-darwin-arm64@1.1.0"
+
]
+
},
+
"@img/sharp-darwin-arm64@0.34.3": {
+
"integrity": "sha512-ryFMfvxxpQRsgZJqBd4wsttYQbCxsJksrv9Lw/v798JcQ8+w84mBWuXwl+TT0WJ/WrYOLaYpwQXi3sA9nTIaIg==",
+
"dependencies": [
+
"@img/sharp-libvips-darwin-arm64@1.2.0"
+
]
+
},
+
"@img/sharp-darwin-x64@0.34.1": {
+
"integrity": "sha512-VfuYgG2r8BpYiOUN+BfYeFo69nP/MIwAtSJ7/Zpxc5QF3KS22z8Pvg3FkrSFJBPNQ7mmcUcYQFBmEQp7eu1F8Q==",
+
"dependencies": [
+
"@img/sharp-libvips-darwin-x64@1.1.0"
+
]
+
},
+
"@img/sharp-darwin-x64@0.34.2": {
+
"integrity": "sha512-dYvWqmjU9VxqXmjEtjmvHnGqF8GrVjM2Epj9rJ6BUIXvk8slvNDJbhGFvIoXzkDhrJC2jUxNLz/GUjjvSzfw+g==",
"dependencies": [
-
"@img/sharp-libvips-darwin-arm64"
+
"@img/sharp-libvips-darwin-x64@1.1.0"
]
},
-
"@img/sharp-darwin-x64@0.33.5": {
-
"integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==",
+
"@img/sharp-darwin-x64@0.34.3": {
+
"integrity": "sha512-yHpJYynROAj12TA6qil58hmPmAwxKKC7reUqtGLzsOHfP7/rniNGTL8tjWX6L3CTV4+5P4ypcS7Pp+7OB+8ihA==",
"dependencies": [
-
"@img/sharp-libvips-darwin-x64"
+
"@img/sharp-libvips-darwin-x64@1.2.0"
]
},
-
"@img/sharp-libvips-darwin-arm64@1.0.4": {
-
"integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg=="
+
"@img/sharp-libvips-darwin-arm64@1.1.0": {
+
"integrity": "sha512-HZ/JUmPwrJSoM4DIQPv/BfNh9yrOA8tlBbqbLz4JZ5uew2+o22Ik+tHQJcih7QJuSa0zo5coHTfD5J8inqj9DA=="
},
-
"@img/sharp-libvips-darwin-x64@1.0.4": {
-
"integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ=="
+
"@img/sharp-libvips-darwin-arm64@1.2.0": {
+
"integrity": "sha512-sBZmpwmxqwlqG9ueWFXtockhsxefaV6O84BMOrhtg/YqbTaRdqDE7hxraVE3y6gVM4eExmfzW4a8el9ArLeEiQ=="
},
-
"@img/sharp-libvips-linux-arm64@1.0.4": {
-
"integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA=="
+
"@img/sharp-libvips-darwin-x64@1.1.0": {
+
"integrity": "sha512-Xzc2ToEmHN+hfvsl9wja0RlnXEgpKNmftriQp6XzY/RaSfwD9th+MSh0WQKzUreLKKINb3afirxW7A0fz2YWuQ=="
+
},
+
"@img/sharp-libvips-darwin-x64@1.2.0": {
+
"integrity": "sha512-M64XVuL94OgiNHa5/m2YvEQI5q2cl9d/wk0qFTDVXcYzi43lxuiFTftMR1tOnFQovVXNZJ5TURSDK2pNe9Yzqg=="
},
-
"@img/sharp-libvips-linux-arm@1.0.5": {
-
"integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g=="
+
"@img/sharp-libvips-linux-arm64@1.1.0": {
+
"integrity": "sha512-IVfGJa7gjChDET1dK9SekxFFdflarnUB8PwW8aGwEoF3oAsSDuNUTYS+SKDOyOJxQyDC1aPFMuRYLoDInyV9Ew=="
},
-
"@img/sharp-libvips-linux-s390x@1.0.4": {
-
"integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA=="
+
"@img/sharp-libvips-linux-arm64@1.2.0": {
+
"integrity": "sha512-RXwd0CgG+uPRX5YYrkzKyalt2OJYRiJQ8ED/fi1tq9WQW2jsQIn0tqrlR5l5dr/rjqq6AHAxURhj2DVjyQWSOA=="
},
-
"@img/sharp-libvips-linux-x64@1.0.4": {
-
"integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw=="
+
"@img/sharp-libvips-linux-arm@1.1.0": {
+
"integrity": "sha512-s8BAd0lwUIvYCJyRdFqvsj+BJIpDBSxs6ivrOPm/R7piTs5UIwY5OjXrP2bqXC9/moGsyRa37eYWYCOGVXxVrA=="
},
-
"@img/sharp-libvips-linuxmusl-arm64@1.0.4": {
-
"integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA=="
+
"@img/sharp-libvips-linux-arm@1.2.0": {
+
"integrity": "sha512-mWd2uWvDtL/nvIzThLq3fr2nnGfyr/XMXlq8ZJ9WMR6PXijHlC3ksp0IpuhK6bougvQrchUAfzRLnbsen0Cqvw=="
},
-
"@img/sharp-libvips-linuxmusl-x64@1.0.4": {
-
"integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw=="
+
"@img/sharp-libvips-linux-ppc64@1.1.0": {
+
"integrity": "sha512-tiXxFZFbhnkWE2LA8oQj7KYR+bWBkiV2nilRldT7bqoEZ4HiDOcePr9wVDAZPi/Id5fT1oY9iGnDq20cwUz8lQ=="
},
-
"@img/sharp-linux-arm64@0.33.5": {
-
"integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==",
+
"@img/sharp-libvips-linux-ppc64@1.2.0": {
+
"integrity": "sha512-Xod/7KaDDHkYu2phxxfeEPXfVXFKx70EAFZ0qyUdOjCcxbjqyJOEUpDe6RIyaunGxT34Anf9ue/wuWOqBW2WcQ=="
+
},
+
"@img/sharp-libvips-linux-s390x@1.1.0": {
+
"integrity": "sha512-xukSwvhguw7COyzvmjydRb3x/09+21HykyapcZchiCUkTThEQEOMtBj9UhkaBRLuBrgLFzQ2wbxdeCCJW/jgJA=="
+
},
+
"@img/sharp-libvips-linux-s390x@1.2.0": {
+
"integrity": "sha512-eMKfzDxLGT8mnmPJTNMcjfO33fLiTDsrMlUVcp6b96ETbnJmd4uvZxVJSKPQfS+odwfVaGifhsB07J1LynFehw=="
+
},
+
"@img/sharp-libvips-linux-x64@1.1.0": {
+
"integrity": "sha512-yRj2+reB8iMg9W5sULM3S74jVS7zqSzHG3Ol/twnAAkAhnGQnpjj6e4ayUz7V+FpKypwgs82xbRdYtchTTUB+Q=="
+
},
+
"@img/sharp-libvips-linux-x64@1.2.0": {
+
"integrity": "sha512-ZW3FPWIc7K1sH9E3nxIGB3y3dZkpJlMnkk7z5tu1nSkBoCgw2nSRTFHI5pB/3CQaJM0pdzMF3paf9ckKMSE9Tg=="
+
},
+
"@img/sharp-libvips-linuxmusl-arm64@1.1.0": {
+
"integrity": "sha512-jYZdG+whg0MDK+q2COKbYidaqW/WTz0cc1E+tMAusiDygrM4ypmSCjOJPmFTvHHJ8j/6cAGyeDWZOsK06tP33w=="
+
},
+
"@img/sharp-libvips-linuxmusl-arm64@1.2.0": {
+
"integrity": "sha512-UG+LqQJbf5VJ8NWJ5Z3tdIe/HXjuIdo4JeVNADXBFuG7z9zjoegpzzGIyV5zQKi4zaJjnAd2+g2nna8TZvuW9Q=="
+
},
+
"@img/sharp-libvips-linuxmusl-x64@1.1.0": {
+
"integrity": "sha512-wK7SBdwrAiycjXdkPnGCPLjYb9lD4l6Ze2gSdAGVZrEL05AOUJESWU2lhlC+Ffn5/G+VKuSm6zzbQSzFX/P65A=="
+
},
+
"@img/sharp-libvips-linuxmusl-x64@1.2.0": {
+
"integrity": "sha512-SRYOLR7CXPgNze8akZwjoGBoN1ThNZoqpOgfnOxmWsklTGVfJiGJoC/Lod7aNMGA1jSsKWM1+HRX43OP6p9+6Q=="
+
},
+
"@img/sharp-linux-arm64@0.34.1": {
+
"integrity": "sha512-kX2c+vbvaXC6vly1RDf/IWNXxrlxLNpBVWkdpRq5Ka7OOKj6nr66etKy2IENf6FtOgklkg9ZdGpEu9kwdlcwOQ==",
"dependencies": [
-
"@img/sharp-libvips-linux-arm64"
+
"@img/sharp-libvips-linux-arm64@1.1.0"
]
},
-
"@img/sharp-linux-arm@0.33.5": {
-
"integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==",
+
"@img/sharp-linux-arm64@0.34.2": {
+
"integrity": "sha512-D8n8wgWmPDakc83LORcfJepdOSN6MvWNzzz2ux0MnIbOqdieRZwVYY32zxVx+IFUT8er5KPcyU3XXsn+GzG/0Q==",
"dependencies": [
-
"@img/sharp-libvips-linux-arm"
+
"@img/sharp-libvips-linux-arm64@1.1.0"
+
]
+
},
+
"@img/sharp-linux-arm64@0.34.3": {
+
"integrity": "sha512-QdrKe3EvQrqwkDrtuTIjI0bu6YEJHTgEeqdzI3uWJOH6G1O8Nl1iEeVYRGdj1h5I21CqxSvQp1Yv7xeU3ZewbA==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-arm64@1.2.0"
+
]
+
},
+
"@img/sharp-linux-arm@0.34.1": {
+
"integrity": "sha512-anKiszvACti2sGy9CirTlNyk7BjjZPiML1jt2ZkTdcvpLU1YH6CXwRAZCA2UmRXnhiIftXQ7+Oh62Ji25W72jA==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-arm@1.1.0"
]
},
-
"@img/sharp-linux-s390x@0.33.5": {
-
"integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==",
+
"@img/sharp-linux-arm@0.34.2": {
+
"integrity": "sha512-0DZzkvuEOqQUP9mo2kjjKNok5AmnOr1jB2XYjkaoNRwpAYMDzRmAqUIa1nRi58S2WswqSfPOWLNOr0FDT3H5RQ==",
"dependencies": [
-
"@img/sharp-libvips-linux-s390x"
+
"@img/sharp-libvips-linux-arm@1.1.0"
]
},
-
"@img/sharp-linux-x64@0.33.5": {
-
"integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==",
+
"@img/sharp-linux-arm@0.34.3": {
+
"integrity": "sha512-oBK9l+h6KBN0i3dC8rYntLiVfW8D8wH+NPNT3O/WBHeW0OQWCjfWksLUaPidsrDKpJgXp3G3/hkmhptAW0I3+A==",
"dependencies": [
-
"@img/sharp-libvips-linux-x64"
+
"@img/sharp-libvips-linux-arm@1.2.0"
]
},
-
"@img/sharp-linuxmusl-arm64@0.33.5": {
-
"integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==",
+
"@img/sharp-linux-ppc64@0.34.3": {
+
"integrity": "sha512-GLtbLQMCNC5nxuImPR2+RgrviwKwVql28FWZIW1zWruy6zLgA5/x2ZXk3mxj58X/tszVF69KK0Is83V8YgWhLA==",
"dependencies": [
-
"@img/sharp-libvips-linuxmusl-arm64"
+
"@img/sharp-libvips-linux-ppc64@1.2.0"
]
},
-
"@img/sharp-linuxmusl-x64@0.33.5": {
-
"integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==",
+
"@img/sharp-linux-s390x@0.34.1": {
+
"integrity": "sha512-7s0KX2tI9mZI2buRipKIw2X1ufdTeaRgwmRabt5bi9chYfhur+/C1OXg3TKg/eag1W+6CCWLVmSauV1owmRPxA==",
"dependencies": [
-
"@img/sharp-libvips-linuxmusl-x64"
+
"@img/sharp-libvips-linux-s390x@1.1.0"
]
},
-
"@img/sharp-wasm32@0.33.5": {
-
"integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==",
+
"@img/sharp-linux-s390x@0.34.2": {
+
"integrity": "sha512-EGZ1xwhBI7dNISwxjChqBGELCWMGDvmxZXKjQRuqMrakhO8QoMgqCrdjnAqJq/CScxfRn+Bb7suXBElKQpPDiw==",
"dependencies": [
-
"@emnapi/runtime"
+
"@img/sharp-libvips-linux-s390x@1.1.0"
]
},
-
"@img/sharp-win32-ia32@0.33.5": {
-
"integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ=="
+
"@img/sharp-linux-s390x@0.34.3": {
+
"integrity": "sha512-3gahT+A6c4cdc2edhsLHmIOXMb17ltffJlxR0aC2VPZfwKoTGZec6u5GrFgdR7ciJSsHT27BD3TIuGcuRT0KmQ==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-s390x@1.2.0"
+
]
},
-
"@img/sharp-win32-x64@0.33.5": {
-
"integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg=="
+
"@img/sharp-linux-x64@0.34.1": {
+
"integrity": "sha512-wExv7SH9nmoBW3Wr2gvQopX1k8q2g5V5Iag8Zk6AVENsjwd+3adjwxtp3Dcu2QhOXr8W9NusBU6XcQUohBZ5MA==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-x64@1.1.0"
+
]
+
},
+
"@img/sharp-linux-x64@0.34.2": {
+
"integrity": "sha512-sD7J+h5nFLMMmOXYH4DD9UtSNBD05tWSSdWAcEyzqW8Cn5UxXvsHAxmxSesYUsTOBmUnjtxghKDl15EvfqLFbQ==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-x64@1.1.0"
+
]
+
},
+
"@img/sharp-linux-x64@0.34.3": {
+
"integrity": "sha512-8kYso8d806ypnSq3/Ly0QEw90V5ZoHh10yH0HnrzOCr6DKAPI6QVHvwleqMkVQ0m+fc7EH8ah0BB0QPuWY6zJQ==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-x64@1.2.0"
+
]
+
},
+
"@img/sharp-linuxmusl-arm64@0.34.1": {
+
"integrity": "sha512-DfvyxzHxw4WGdPiTF0SOHnm11Xv4aQexvqhRDAoD00MzHekAj9a/jADXeXYCDFH/DzYruwHbXU7uz+H+nWmSOQ==",
+
"dependencies": [
+
"@img/sharp-libvips-linuxmusl-arm64@1.1.0"
+
]
+
},
+
"@img/sharp-linuxmusl-arm64@0.34.2": {
+
"integrity": "sha512-NEE2vQ6wcxYav1/A22OOxoSOGiKnNmDzCYFOZ949xFmrWZOVII1Bp3NqVVpvj+3UeHMFyN5eP/V5hzViQ5CZNA==",
+
"dependencies": [
+
"@img/sharp-libvips-linuxmusl-arm64@1.1.0"
+
]
+
},
+
"@img/sharp-linuxmusl-arm64@0.34.3": {
+
"integrity": "sha512-vAjbHDlr4izEiXM1OTggpCcPg9tn4YriK5vAjowJsHwdBIdx0fYRsURkxLG2RLm9gyBq66gwtWI8Gx0/ov+JKQ==",
+
"dependencies": [
+
"@img/sharp-libvips-linuxmusl-arm64@1.2.0"
+
]
+
},
+
"@img/sharp-linuxmusl-x64@0.34.1": {
+
"integrity": "sha512-pax/kTR407vNb9qaSIiWVnQplPcGU8LRIJpDT5o8PdAx5aAA7AS3X9PS8Isw1/WfqgQorPotjrZL3Pqh6C5EBg==",
+
"dependencies": [
+
"@img/sharp-libvips-linuxmusl-x64@1.1.0"
+
]
+
},
+
"@img/sharp-linuxmusl-x64@0.34.2": {
+
"integrity": "sha512-DOYMrDm5E6/8bm/yQLCWyuDJwUnlevR8xtF8bs+gjZ7cyUNYXiSf/E8Kp0Ss5xasIaXSHzb888V1BE4i1hFhAA==",
+
"dependencies": [
+
"@img/sharp-libvips-linuxmusl-x64@1.1.0"
+
]
+
},
+
"@img/sharp-linuxmusl-x64@0.34.3": {
+
"integrity": "sha512-gCWUn9547K5bwvOn9l5XGAEjVTTRji4aPTqLzGXHvIr6bIDZKNTA34seMPgM0WmSf+RYBH411VavCejp3PkOeQ==",
+
"dependencies": [
+
"@img/sharp-libvips-linuxmusl-x64@1.2.0"
+
]
+
},
+
"@img/sharp-wasm32@0.34.1": {
+
"integrity": "sha512-YDybQnYrLQfEpzGOQe7OKcyLUCML4YOXl428gOOzBgN6Gw0rv8dpsJ7PqTHxBnXnwXr8S1mYFSLSa727tpz0xg==",
+
"dependencies": [
+
"@emnapi/runtime@1.4.3"
+
]
+
},
+
"@img/sharp-wasm32@0.34.2": {
+
"integrity": "sha512-/VI4mdlJ9zkaq53MbIG6rZY+QRN3MLbR6usYlgITEzi4Rpx5S6LFKsycOQjkOGmqTNmkIdLjEvooFKwww6OpdQ==",
+
"dependencies": [
+
"@emnapi/runtime@1.4.3"
+
]
+
},
+
"@img/sharp-wasm32@0.34.3": {
+
"integrity": "sha512-+CyRcpagHMGteySaWos8IbnXcHgfDn7pO2fiC2slJxvNq9gDipYBN42/RagzctVRKgxATmfqOSulgZv5e1RdMg==",
+
"dependencies": [
+
"@emnapi/runtime@1.4.4"
+
]
+
},
+
"@img/sharp-win32-arm64@0.34.2": {
+
"integrity": "sha512-cfP/r9FdS63VA5k0xiqaNaEoGxBg9k7uE+RQGzuK9fHt7jib4zAVVseR9LsE4gJcNWgT6APKMNnCcnyOtmSEUQ=="
+
},
+
"@img/sharp-win32-arm64@0.34.3": {
+
"integrity": "sha512-MjnHPnbqMXNC2UgeLJtX4XqoVHHlZNd+nPt1kRPmj63wURegwBhZlApELdtxM2OIZDRv/DFtLcNhVbd1z8GYXQ=="
+
},
+
"@img/sharp-win32-ia32@0.34.1": {
+
"integrity": "sha512-WKf/NAZITnonBf3U1LfdjoMgNO5JYRSlhovhRhMxXVdvWYveM4kM3L8m35onYIdh75cOMCo1BexgVQcCDzyoWw=="
+
},
+
"@img/sharp-win32-ia32@0.34.2": {
+
"integrity": "sha512-QLjGGvAbj0X/FXl8n1WbtQ6iVBpWU7JO94u/P2M4a8CFYsvQi4GW2mRy/JqkRx0qpBzaOdKJKw8uc930EX2AHw=="
+
},
+
"@img/sharp-win32-ia32@0.34.3": {
+
"integrity": "sha512-xuCdhH44WxuXgOM714hn4amodJMZl3OEvf0GVTm0BEyMeA2to+8HEdRPShH0SLYptJY1uBw+SCFP9WVQi1Q/cw=="
+
},
+
"@img/sharp-win32-x64@0.34.1": {
+
"integrity": "sha512-hw1iIAHpNE8q3uMIRCgGOeDoz9KtFNarFLQclLxr/LK1VBkj8nby18RjFvr6aP7USRYAjTZW6yisnBWMX571Tw=="
+
},
+
"@img/sharp-win32-x64@0.34.2": {
+
"integrity": "sha512-aUdT6zEYtDKCaxkofmmJDJYGCf0+pJg3eU9/oBuqvEeoB9dKI6ZLc/1iLJCTuJQDO4ptntAlkUmHgGjyuobZbw=="
+
},
+
"@img/sharp-win32-x64@0.34.3": {
+
"integrity": "sha512-OWwz05d++TxzLEv4VnsTz5CmZ6mI6S05sfQGEMrNrQcOEERbX46332IvE7pO/EUiw7jUrrS40z/M7kPyjfl04g=="
},
"@isaacs/cliui@8.0.2": {
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
···
"wrap-ansi-cjs@npm:wrap-ansi@7.0.0"
]
},
-
"@nolebase/markdown-it-bi-directional-links@2.15.1_markdown-it@14.1.0": {
-
"integrity": "sha512-OJ6fspUIFazCDdC2XGkOHZLjT3l4MBDztZ9ExqZ7rn8ssSME0wXKu8Zth/mPfOnzFU7owg368fqaNUHthq/Tbw==",
+
"@isaacs/fs-minipass@4.0.1": {
+
"integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
+
"dependencies": [
+
"minipass"
+
]
+
},
+
"@jridgewell/gen-mapping@0.3.12": {
+
"integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==",
+
"dependencies": [
+
"@jridgewell/sourcemap-codec",
+
"@jridgewell/trace-mapping"
+
]
+
},
+
"@jridgewell/resolve-uri@3.1.2": {
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="
+
},
+
"@jridgewell/sourcemap-codec@1.5.4": {
+
"integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw=="
+
},
+
"@jridgewell/trace-mapping@0.3.29": {
+
"integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==",
+
"dependencies": [
+
"@jridgewell/resolve-uri",
+
"@jridgewell/sourcemap-codec"
+
]
+
},
+
"@napi-rs/wasm-runtime@0.2.12": {
+
"integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==",
+
"dependencies": [
+
"@emnapi/core",
+
"@emnapi/runtime@1.4.3",
+
"@tybys/wasm-util@0.10.0"
+
]
+
},
+
"@napi-rs/wasm-runtime@0.2.9": {
+
"integrity": "sha512-OKRBiajrrxB9ATokgEQoG87Z25c67pCpYcCwmXYX8PBftC9pBfN18gnm/fh1wurSLEKIAt+QRFLFCQISrb66Jg==",
+
"dependencies": [
+
"@emnapi/core",
+
"@emnapi/runtime@1.4.3",
+
"@tybys/wasm-util@0.9.0"
+
]
+
},
+
"@nolebase/markdown-it-bi-directional-links@2.18.0_markdown-it@14.1.0": {
+
"integrity": "sha512-4h0KyNvL+UqxqIpPtRtZ9nLB1OuY2e9URDmvPLfzjkCQMwObOsQ+TvoOvdGeVGdZLUa37UmeeVCIVfLAH8Rbjg==",
"dependencies": [
"colorette",
-
"debug",
+
"debug@4.4.1",
"markdown-it",
"tinyglobby"
]
···
"@pkgjs/parseargs@0.11.0": {
"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="
},
+
"@puppeteer/browsers@2.3.0": {
+
"integrity": "sha512-ioXoq9gPxkss4MYhD+SFaU9p1IHFUX0ILAWFPyjGaBdjLsYAlZw6j1iLA0N/m12uVHLFDfSYNF7EQccjinIMDA==",
+
"dependencies": [
+
"debug@4.4.1",
+
"extract-zip",
+
"progress",
+
"proxy-agent",
+
"semver@7.7.2",
+
"tar-fs",
+
"unbzip2-stream",
+
"yargs"
+
]
+
},
"@sidvind/better-ajv-errors@4.0.0_ajv@8.17.1": {
"integrity": "sha512-rLZQkN6IfNwG6iqZZwqFMcs7DvQX3ZrLVhsHmSO1LUA4EZAz+VZLpTBCIOFsC5Qu3xuwzVfRMZ+1rtk/mCRRZw==",
"dependencies": [
···
"escape-string-regexp"
]
},
-
"@tailwindcss/oxide-android-arm64@4.0.14": {
-
"integrity": "sha512-VBFKC2rFyfJ5J8lRwjy6ub3rgpY186kAcYgiUr8ArR8BAZzMruyeKJ6mlsD22Zp5ZLcPW/FXMasJiJBx0WsdQg=="
+
"@tailwindcss/node@4.1.11": {
+
"integrity": "sha512-yzhzuGRmv5QyU9qLNg4GTlYI6STedBWRE7NjxP45CsFYYq9taI0zJXZBMqIC/c8fViNLhmrbpSFS57EoxUmD6Q==",
+
"dependencies": [
+
"@ampproject/remapping",
+
"enhanced-resolve",
+
"jiti",
+
"lightningcss",
+
"magic-string",
+
"source-map-js",
+
"tailwindcss@4.1.11"
+
]
},
"@tailwindcss/oxide-android-arm64@4.0.3": {
"integrity": "sha512-S8XOTQuMnpijZRlPm5HBzPJjZ28quB+40LSRHjRnQF6rRYKsvpr1qkY7dfwsetNdd+kMLOMDsvmuT8WnqqETvg=="
},
-
"@tailwindcss/oxide-darwin-arm64@4.0.14": {
-
"integrity": "sha512-U3XOwLrefGr2YQZ9DXasDSNWGPZBCh8F62+AExBEDMLDfvLLgI/HDzY8Oq8p/JtqkAY38sWPOaNnRwEGKU5Zmg=="
+
"@tailwindcss/oxide-android-arm64@4.1.11": {
+
"integrity": "sha512-3IfFuATVRUMZZprEIx9OGDjG3Ou3jG4xQzNTvjDoKmU9JdmoCohQJ83MYd0GPnQIu89YoJqvMM0G3uqLRFtetg=="
+
},
+
"@tailwindcss/oxide-android-arm64@4.1.4": {
+
"integrity": "sha512-xMMAe/SaCN/vHfQYui3fqaBDEXMu22BVwQ33veLc8ep+DNy7CWN52L+TTG9y1K397w9nkzv+Mw+mZWISiqhmlA=="
},
"@tailwindcss/oxide-darwin-arm64@4.0.3": {
"integrity": "sha512-smrY2DpzhXvgDhZtQlYAl8+vxJ04lv2/64C1eiRxvsRT2nkw/q+zA1/eAYKvUHat6cIuwqDku3QucmrUT6pCeg=="
},
-
"@tailwindcss/oxide-darwin-x64@4.0.14": {
-
"integrity": "sha512-V5AjFuc3ndWGnOi1d379UsODb0TzAS2DYIP/lwEbfvafUaD2aNZIcbwJtYu2DQqO2+s/XBvDVA+w4yUyaewRwg=="
+
"@tailwindcss/oxide-darwin-arm64@4.1.11": {
+
"integrity": "sha512-ESgStEOEsyg8J5YcMb1xl8WFOXfeBmrhAwGsFxxB2CxY9evy63+AtpbDLAyRkJnxLy2WsD1qF13E97uQyP1lfQ=="
+
},
+
"@tailwindcss/oxide-darwin-arm64@4.1.4": {
+
"integrity": "sha512-JGRj0SYFuDuAGilWFBlshcexev2hOKfNkoX+0QTksKYq2zgF9VY/vVMq9m8IObYnLna0Xlg+ytCi2FN2rOL0Sg=="
},
"@tailwindcss/oxide-darwin-x64@4.0.3": {
"integrity": "sha512-NTz8x/LcGUjpZAWUxz0ZuzHao90Wj9spoQgomwB+/hgceh5gcJDfvaBYqxLFpKzVglpnbDSq1Fg0p0zI4oa5Pg=="
},
-
"@tailwindcss/oxide-freebsd-x64@4.0.14": {
-
"integrity": "sha512-tXvtxbaZfcPfqBwW3f53lTcyH6EDT+1eT7yabwcfcxTs+8yTPqxsDUhrqe9MrnEzpNkd+R/QAjJapfd4tjWdLg=="
+
"@tailwindcss/oxide-darwin-x64@4.1.11": {
+
"integrity": "sha512-EgnK8kRchgmgzG6jE10UQNaH9Mwi2n+yw1jWmof9Vyg2lpKNX2ioe7CJdf9M5f8V9uaQxInenZkOxnTVL3fhAw=="
+
},
+
"@tailwindcss/oxide-darwin-x64@4.1.4": {
+
"integrity": "sha512-sdDeLNvs3cYeWsEJ4H1DvjOzaGios4QbBTNLVLVs0XQ0V95bffT3+scptzYGPMjm7xv4+qMhCDrkHwhnUySEzA=="
},
"@tailwindcss/oxide-freebsd-x64@4.0.3": {
"integrity": "sha512-yQc9Q0JCOp3kkAV8gKgDctXO60IkQhHpqGB+KgOccDtD5UmN6Q5+gd+lcsDyQ7N8dRuK1fAud51xQpZJgKfm7g=="
},
-
"@tailwindcss/oxide-linux-arm-gnueabihf@4.0.14": {
-
"integrity": "sha512-cSeLNWWqIWeSTmBntQvyY2/2gcLX8rkPFfDDTQVF8qbRcRMVPLxBvFVJyfSAYRNch6ZyVH2GI6dtgALOBDpdNA=="
+
"@tailwindcss/oxide-freebsd-x64@4.1.11": {
+
"integrity": "sha512-xdqKtbpHs7pQhIKmqVpxStnY1skuNh4CtbcyOHeX1YBE0hArj2romsFGb6yUmzkq/6M24nkxDqU8GYrKrz+UcA=="
+
},
+
"@tailwindcss/oxide-freebsd-x64@4.1.4": {
+
"integrity": "sha512-VHxAqxqdghM83HslPhRsNhHo91McsxRJaEnShJOMu8mHmEj9Ig7ToHJtDukkuLWLzLboh2XSjq/0zO6wgvykNA=="
},
"@tailwindcss/oxide-linux-arm-gnueabihf@4.0.3": {
"integrity": "sha512-e1ivVMLSnxTOU1O3npnxN16FEyWM/g3SuH2pP6udxXwa0/SnSAijRwcAYRpqIlhVKujr158S8UeHxQjC4fGl4w=="
},
-
"@tailwindcss/oxide-linux-arm64-gnu@4.0.14": {
-
"integrity": "sha512-bwDWLBalXFMDItcSXzFk6y7QKvj6oFlaY9vM+agTlwFL1n1OhDHYLZkSjaYsh6KCeG0VB0r7H8PUJVOM1LRZyg=="
+
"@tailwindcss/oxide-linux-arm-gnueabihf@4.1.11": {
+
"integrity": "sha512-ryHQK2eyDYYMwB5wZL46uoxz2zzDZsFBwfjssgB7pzytAeCCa6glsiJGjhTEddq/4OsIjsLNMAiMlHNYnkEEeg=="
+
},
+
"@tailwindcss/oxide-linux-arm-gnueabihf@4.1.4": {
+
"integrity": "sha512-OTU/m/eV4gQKxy9r5acuesqaymyeSCnsx1cFto/I1WhPmi5HDxX1nkzb8KYBiwkHIGg7CTfo/AcGzoXAJBxLfg=="
},
"@tailwindcss/oxide-linux-arm64-gnu@4.0.3": {
"integrity": "sha512-PLrToqQqX6sdJ9DmMi8IxZWWrfjc9pdi9AEEPTrtMts3Jm9HBi1WqEeF1VwZZ2aW9TXloE5OwA35zuuq1Bhb/Q=="
},
-
"@tailwindcss/oxide-linux-arm64-musl@4.0.14": {
-
"integrity": "sha512-gVkJdnR/L6iIcGYXx64HGJRmlme2FGr/aZH0W6u4A3RgPMAb+6ELRLi+UBiH83RXBm9vwCfkIC/q8T51h8vUJQ=="
+
"@tailwindcss/oxide-linux-arm64-gnu@4.1.11": {
+
"integrity": "sha512-mYwqheq4BXF83j/w75ewkPJmPZIqqP1nhoghS9D57CLjsh3Nfq0m4ftTotRYtGnZd3eCztgbSPJ9QhfC91gDZQ=="
+
},
+
"@tailwindcss/oxide-linux-arm64-gnu@4.1.4": {
+
"integrity": "sha512-hKlLNvbmUC6z5g/J4H+Zx7f7w15whSVImokLPmP6ff1QqTVE+TxUM9PGuNsjHvkvlHUtGTdDnOvGNSEUiXI1Ww=="
},
"@tailwindcss/oxide-linux-arm64-musl@4.0.3": {
"integrity": "sha512-YlzRxx7N1ampfgSKzEDw0iwDkJXUInR4cgNEqmR4TzHkU2Vhg59CGPJrTI7dxOBofD8+O35R13Nk9Ytyv0JUFg=="
},
-
"@tailwindcss/oxide-linux-x64-gnu@4.0.14": {
-
"integrity": "sha512-EE+EQ+c6tTpzsg+LGO1uuusjXxYx0Q00JE5ubcIGfsogSKth8n8i2BcS2wYTQe4jXGs+BQs35l78BIPzgwLddw=="
+
"@tailwindcss/oxide-linux-arm64-musl@4.1.11": {
+
"integrity": "sha512-m/NVRFNGlEHJrNVk3O6I9ggVuNjXHIPoD6bqay/pubtYC9QIdAMpS+cswZQPBLvVvEF6GtSNONbDkZrjWZXYNQ=="
+
},
+
"@tailwindcss/oxide-linux-arm64-musl@4.1.4": {
+
"integrity": "sha512-X3As2xhtgPTY/m5edUtddmZ8rCruvBvtxYLMw9OsZdH01L2gS2icsHRwxdU0dMItNfVmrBezueXZCHxVeeb7Aw=="
},
"@tailwindcss/oxide-linux-x64-gnu@4.0.3": {
"integrity": "sha512-Xfc3z/li6XkuD7Hs+Uk6pjyCXnfnd9zuQTKOyDTZJ544xc2yoMKUkuDw6Et9wb31MzU2/c0CIUpTDa71lL9KHw=="
},
-
"@tailwindcss/oxide-linux-x64-musl@4.0.14": {
-
"integrity": "sha512-KCCOzo+L6XPT0oUp2Jwh233ETRQ/F6cwUnMnR0FvMUCbkDAzHbcyOgpfuAtRa5HD0WbTbH4pVD+S0pn1EhNfbw=="
+
"@tailwindcss/oxide-linux-x64-gnu@4.1.11": {
+
"integrity": "sha512-YW6sblI7xukSD2TdbbaeQVDysIm/UPJtObHJHKxDEcW2exAtY47j52f8jZXkqE1krdnkhCMGqP3dbniu1Te2Fg=="
+
},
+
"@tailwindcss/oxide-linux-x64-gnu@4.1.4": {
+
"integrity": "sha512-2VG4DqhGaDSmYIu6C4ua2vSLXnJsb/C9liej7TuSO04NK+JJJgJucDUgmX6sn7Gw3Cs5ZJ9ZLrnI0QRDOjLfNQ=="
},
"@tailwindcss/oxide-linux-x64-musl@4.0.3": {
"integrity": "sha512-ugKVqKzwa/cjmqSQG17aS9DYrEcQ/a5NITcgmOr3JLW4Iz64C37eoDlkC8tIepD3S/Td/ywKAolTQ8fKbjEL4g=="
},
-
"@tailwindcss/oxide-win32-arm64-msvc@4.0.14": {
-
"integrity": "sha512-AHObFiFL9lNYcm3tZSPqa/cHGpM5wOrNmM2uOMoKppp+0Hom5uuyRh0QkOp7jftsHZdrZUpmoz0Mp6vhh2XtUg=="
+
"@tailwindcss/oxide-linux-x64-musl@4.1.11": {
+
"integrity": "sha512-e3C/RRhGunWYNC3aSF7exsQkdXzQ/M+aYuZHKnw4U7KQwTJotnWsGOIVih0s2qQzmEzOFIJ3+xt7iq67K/p56Q=="
+
},
+
"@tailwindcss/oxide-linux-x64-musl@4.1.4": {
+
"integrity": "sha512-v+mxVgH2kmur/X5Mdrz9m7TsoVjbdYQT0b4Z+dr+I4RvreCNXyCFELZL/DO0M1RsidZTrm6O1eMnV6zlgEzTMQ=="
+
},
+
"@tailwindcss/oxide-wasm32-wasi@4.1.11": {
+
"integrity": "sha512-Xo1+/GU0JEN/C/dvcammKHzeM6NqKovG+6921MR6oadee5XPBaKOumrJCXvopJ/Qb5TH7LX/UAywbqrP4lax0g==",
+
"dependencies": [
+
"@emnapi/core",
+
"@emnapi/runtime@1.4.3",
+
"@emnapi/wasi-threads",
+
"@napi-rs/wasm-runtime@0.2.12",
+
"@tybys/wasm-util@0.9.0",
+
"tslib"
+
]
+
},
+
"@tailwindcss/oxide-wasm32-wasi@4.1.4": {
+
"integrity": "sha512-2TLe9ir+9esCf6Wm+lLWTMbgklIjiF0pbmDnwmhR9MksVOq+e8aP3TSsXySnBDDvTTVd/vKu1aNttEGj3P6l8Q==",
+
"dependencies": [
+
"@emnapi/core",
+
"@emnapi/runtime@1.4.3",
+
"@emnapi/wasi-threads",
+
"@napi-rs/wasm-runtime@0.2.9",
+
"@tybys/wasm-util@0.9.0",
+
"tslib"
+
]
},
"@tailwindcss/oxide-win32-arm64-msvc@4.0.3": {
"integrity": "sha512-qHPDMl+UUwsk1RMJMgAXvhraWqUUT+LR/tkXix5RA39UGxtTrHwsLIN1AhNxI5i2RFXAXfmFXDqZCdyQ4dWmAQ=="
},
-
"@tailwindcss/oxide-win32-x64-msvc@4.0.14": {
-
"integrity": "sha512-rNXXMDJfCJLw/ZaFTOLOHoGULxyXfh2iXTGiChFiYTSgKBKQHIGEpV0yn5N25WGzJJ+VBnRjHzlmDqRV+d//oQ=="
+
"@tailwindcss/oxide-win32-arm64-msvc@4.1.11": {
+
"integrity": "sha512-UgKYx5PwEKrac3GPNPf6HVMNhUIGuUh4wlDFR2jYYdkX6pL/rn73zTq/4pzUm8fOjAn5L8zDeHp9iXmUGOXZ+w=="
+
},
+
"@tailwindcss/oxide-win32-arm64-msvc@4.1.4": {
+
"integrity": "sha512-VlnhfilPlO0ltxW9/BgfLI5547PYzqBMPIzRrk4W7uupgCt8z6Trw/tAj6QUtF2om+1MH281Pg+HHUJoLesmng=="
},
"@tailwindcss/oxide-win32-x64-msvc@4.0.3": {
"integrity": "sha512-+ujwN4phBGyOsPyLgGgeCyUm4Mul+gqWVCIGuSXWgrx9xVUnf6LVXrw0BDBc9Aq1S2qMyOTX4OkCGbZeoIo8Qw=="
},
-
"@tailwindcss/oxide@4.0.14": {
-
"integrity": "sha512-M8VCNyO/NBi5vJ2cRcI9u8w7Si+i76a7o1vveoGtbbjpEYJZYiyc7f2VGps/DqawO56l3tImIbq2OT/533jcrA==",
-
"dependencies": [
-
"@tailwindcss/oxide-android-arm64@4.0.14",
-
"@tailwindcss/oxide-darwin-arm64@4.0.14",
-
"@tailwindcss/oxide-darwin-x64@4.0.14",
-
"@tailwindcss/oxide-freebsd-x64@4.0.14",
-
"@tailwindcss/oxide-linux-arm-gnueabihf@4.0.14",
-
"@tailwindcss/oxide-linux-arm64-gnu@4.0.14",
-
"@tailwindcss/oxide-linux-arm64-musl@4.0.14",
-
"@tailwindcss/oxide-linux-x64-gnu@4.0.14",
-
"@tailwindcss/oxide-linux-x64-musl@4.0.14",
-
"@tailwindcss/oxide-win32-arm64-msvc@4.0.14",
-
"@tailwindcss/oxide-win32-x64-msvc@4.0.14"
-
]
+
"@tailwindcss/oxide-win32-x64-msvc@4.1.11": {
+
"integrity": "sha512-YfHoggn1j0LK7wR82TOucWc5LDCguHnoS879idHekmmiR7g9HUtMw9MI0NHatS28u/Xlkfi9w5RJWgz2Dl+5Qg=="
+
},
+
"@tailwindcss/oxide-win32-x64-msvc@4.1.4": {
+
"integrity": "sha512-+7S63t5zhYjslUGb8NcgLpFXD+Kq1F/zt5Xv5qTv7HaFTG/DHyHD9GA6ieNAxhgyA4IcKa/zy7Xx4Oad2/wuhw=="
},
"@tailwindcss/oxide@4.0.3": {
"integrity": "sha512-FFcp3VNvRjjmFA39ORM27g2mbflMQljhvM7gxBAujHxUy4LXlKa6yMF9wbHdTbPqTONiCyyOYxccvJyVyI/XBg==",
···
"@tailwindcss/oxide-win32-x64-msvc@4.0.3"
]
},
+
"@tailwindcss/oxide@4.1.11": {
+
"integrity": "sha512-Q69XzrtAhuyfHo+5/HMgr1lAiPP/G40OMFAnws7xcFEYqcypZmdW8eGXaOUIeOl1dzPJBPENXgbjsOyhg2nkrg==",
+
"dependencies": [
+
"@tailwindcss/oxide-android-arm64@4.1.11",
+
"@tailwindcss/oxide-darwin-arm64@4.1.11",
+
"@tailwindcss/oxide-darwin-x64@4.1.11",
+
"@tailwindcss/oxide-freebsd-x64@4.1.11",
+
"@tailwindcss/oxide-linux-arm-gnueabihf@4.1.11",
+
"@tailwindcss/oxide-linux-arm64-gnu@4.1.11",
+
"@tailwindcss/oxide-linux-arm64-musl@4.1.11",
+
"@tailwindcss/oxide-linux-x64-gnu@4.1.11",
+
"@tailwindcss/oxide-linux-x64-musl@4.1.11",
+
"@tailwindcss/oxide-wasm32-wasi@4.1.11",
+
"@tailwindcss/oxide-win32-arm64-msvc@4.1.11",
+
"@tailwindcss/oxide-win32-x64-msvc@4.1.11",
+
"detect-libc",
+
"tar"
+
]
+
},
+
"@tailwindcss/oxide@4.1.4": {
+
"integrity": "sha512-p5wOpXyOJx7mKh5MXh5oKk+kqcz8T+bA3z/5VWWeQwFrmuBItGwz8Y2CHk/sJ+dNb9B0nYFfn0rj/cKHZyjahQ==",
+
"dependencies": [
+
"@tailwindcss/oxide-android-arm64@4.1.4",
+
"@tailwindcss/oxide-darwin-arm64@4.1.4",
+
"@tailwindcss/oxide-darwin-x64@4.1.4",
+
"@tailwindcss/oxide-freebsd-x64@4.1.4",
+
"@tailwindcss/oxide-linux-arm-gnueabihf@4.1.4",
+
"@tailwindcss/oxide-linux-arm64-gnu@4.1.4",
+
"@tailwindcss/oxide-linux-arm64-musl@4.1.4",
+
"@tailwindcss/oxide-linux-x64-gnu@4.1.4",
+
"@tailwindcss/oxide-linux-x64-musl@4.1.4",
+
"@tailwindcss/oxide-wasm32-wasi@4.1.4",
+
"@tailwindcss/oxide-win32-arm64-msvc@4.1.4",
+
"@tailwindcss/oxide-win32-x64-msvc@4.1.4"
+
]
+
},
+
"@testim/chrome-version@1.1.4": {
+
"integrity": "sha512-kIhULpw9TrGYnHp/8VfdcneIcxKnLixmADtukQRtJUmsVlMg0niMkwV0xZmi8hqa57xqilIHjWFA0GKvEjVU5g=="
+
},
+
"@tootallnate/quickjs-emscripten@0.23.0": {
+
"integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA=="
+
},
"@trysound/sax@0.2.0": {
"integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="
},
+
"@tybys/wasm-util@0.10.0": {
+
"integrity": "sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==",
+
"dependencies": [
+
"tslib"
+
]
+
},
+
"@tybys/wasm-util@0.9.0": {
+
"integrity": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==",
+
"dependencies": [
+
"tslib"
+
]
+
},
"@types/estree@1.0.6": {
"integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw=="
},
+
"@types/node@14.18.63": {
+
"integrity": "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ=="
+
},
+
"@types/node@22.12.0": {
+
"integrity": "sha512-Fll2FZ1riMjNmlmJOdAyY5pUbkftXslB5DgEzlIuNaiWhXd00FhWxVC/r4yV/4wBb9JfImTu+jiSvXTkJ7F/gA==",
+
"dependencies": [
+
"undici-types"
+
]
+
},
+
"@types/yauzl@2.10.3": {
+
"integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==",
+
"dependencies": [
+
"@types/node@22.12.0"
+
]
+
},
+
"accessibility-checker@4.0.6": {
+
"integrity": "sha512-no0sJFq/MgGx2PvuZebxAWt2b8bwXLqZT2Bex65TpDK6uVYs0+duVhVz0wSWPc4cldPWZA0lOryhA0WzvL/gBA==",
+
"dependencies": [
+
"chromedriver",
+
"deep-diff",
+
"exceljs",
+
"js-yaml",
+
"puppeteer",
+
"string-hash"
+
]
+
},
+
"agent-base@7.1.4": {
+
"integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ=="
+
},
"ajv@8.17.1": {
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dependencies": [
···
"ansi-styles@6.2.1": {
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="
},
+
"archiver-utils@2.1.0": {
+
"integrity": "sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==",
+
"dependencies": [
+
"glob@7.2.3",
+
"graceful-fs",
+
"lazystream",
+
"lodash.defaults",
+
"lodash.difference",
+
"lodash.flatten",
+
"lodash.isplainobject",
+
"lodash.union",
+
"normalize-path",
+
"readable-stream@2.3.8"
+
]
+
},
+
"archiver-utils@3.0.4": {
+
"integrity": "sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==",
+
"dependencies": [
+
"glob@7.2.3",
+
"graceful-fs",
+
"lazystream",
+
"lodash.defaults",
+
"lodash.difference",
+
"lodash.flatten",
+
"lodash.isplainobject",
+
"lodash.union",
+
"normalize-path",
+
"readable-stream@3.6.2"
+
]
+
},
+
"archiver@5.3.2": {
+
"integrity": "sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==",
+
"dependencies": [
+
"archiver-utils@2.1.0",
+
"async",
+
"buffer-crc32",
+
"readable-stream@3.6.2",
+
"readdir-glob",
+
"tar-stream@2.2.0",
+
"zip-stream"
+
]
+
},
"argparse@2.0.1": {
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
},
+
"ast-types@0.13.4": {
+
"integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==",
+
"dependencies": [
+
"tslib"
+
]
+
},
+
"async@3.2.6": {
+
"integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA=="
+
},
+
"asynckit@0.4.0": {
+
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
+
},
+
"axios@1.10.0": {
+
"integrity": "sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==",
+
"dependencies": [
+
"follow-redirects",
+
"form-data",
+
"proxy-from-env"
+
]
+
},
+
"b4a@1.6.7": {
+
"integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg=="
+
},
"balanced-match@1.0.2": {
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},
+
"bare-events@2.6.0": {
+
"integrity": "sha512-EKZ5BTXYExaNqi3I3f9RtEsaI/xBSGjE0XZCZilPzFAV/goswFHuPd9jEZlPIZ/iNZJwDSao9qRiScySz7MbQg=="
+
},
+
"bare-fs@4.1.6_bare-events@2.6.0": {
+
"integrity": "sha512-25RsLF33BqooOEFNdMcEhMpJy8EoR88zSMrnOQOaM3USnOK2VmaJ1uaQEwPA6AQjrv1lXChScosN6CzbwbO9OQ==",
+
"dependencies": [
+
"bare-events",
+
"bare-path",
+
"bare-stream"
+
]
+
},
+
"bare-os@3.6.1": {
+
"integrity": "sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g=="
+
},
+
"bare-path@3.0.0": {
+
"integrity": "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==",
+
"dependencies": [
+
"bare-os"
+
]
+
},
+
"bare-stream@2.6.5_bare-events@2.6.0": {
+
"integrity": "sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==",
+
"dependencies": [
+
"bare-events",
+
"streamx"
+
]
+
},
+
"base64-js@1.5.1": {
+
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
+
},
+
"basic-ftp@5.0.5": {
+
"integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg=="
+
},
+
"big-integer@1.6.52": {
+
"integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg=="
+
},
+
"binary@0.3.0": {
+
"integrity": "sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==",
+
"dependencies": [
+
"buffers",
+
"chainsaw"
+
]
+
},
+
"bl@4.1.0": {
+
"integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
+
"dependencies": [
+
"buffer",
+
"inherits",
+
"readable-stream@3.6.2"
+
]
+
},
+
"bluebird@3.4.7": {
+
"integrity": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA=="
+
},
"boolbase@1.0.0": {
"integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="
},
-
"brace-expansion@2.0.1": {
-
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+
"brace-expansion@1.1.12": {
+
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
+
"dependencies": [
+
"balanced-match",
+
"concat-map"
+
]
+
},
+
"brace-expansion@2.0.2": {
+
"integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
"dependencies": [
"balanced-match"
]
},
+
"buffer-crc32@0.2.13": {
+
"integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ=="
+
},
+
"buffer-indexof-polyfill@1.0.2": {
+
"integrity": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A=="
+
},
+
"buffer@5.7.1": {
+
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+
"dependencies": [
+
"base64-js",
+
"ieee754"
+
]
+
},
+
"buffers@0.1.1": {
+
"integrity": "sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ=="
+
},
+
"call-bind-apply-helpers@1.0.2": {
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+
"dependencies": [
+
"es-errors",
+
"function-bind"
+
]
+
},
+
"callsites@3.1.0": {
+
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
+
},
+
"chainsaw@0.1.0": {
+
"integrity": "sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==",
+
"dependencies": [
+
"traverse"
+
]
+
},
+
"chownr@3.0.0": {
+
"integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g=="
+
},
+
"chromedriver@138.0.2": {
+
"integrity": "sha512-mmAtTCK0GHum+zbgcv3PYDX7tqNdTXDsd2t6WWI/Tm/Ts2xCGlc5XUcL3oxw1Dn/kmPJOurwrYJKO7vV4xkisA==",
+
"dependencies": [
+
"@testim/chrome-version",
+
"axios",
+
"compare-versions",
+
"extract-zip",
+
"proxy-agent",
+
"proxy-from-env",
+
"tcp-port-used"
+
]
+
},
+
"chromium-bidi@0.6.3_devtools-protocol@0.0.1312386": {
+
"integrity": "sha512-qXlsCmpCZJAnoTYI83Iu6EdYQpMYdVkCfq08KDh2pmlVqK5t5IA9mGs4/LwCwp4fqisSOMXZxP3HIh8w8aRn0A==",
+
"dependencies": [
+
"devtools-protocol",
+
"mitt",
+
"urlpattern-polyfill",
+
"zod"
+
]
+
},
+
"cliui@8.0.1": {
+
"integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
+
"dependencies": [
+
"string-width@4.2.3",
+
"strip-ansi@6.0.1",
+
"wrap-ansi@7.0.0"
+
]
+
},
"color-convert@2.0.1": {
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dependencies": [
···
"colorette@2.0.20": {
"integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w=="
},
+
"combined-stream@1.0.8": {
+
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+
"dependencies": [
+
"delayed-stream"
+
]
+
},
+
"commander@11.1.0": {
+
"integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ=="
+
},
"commander@7.2.0": {
"integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="
},
+
"compare-versions@6.1.1": {
+
"integrity": "sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg=="
+
},
+
"compress-commons@4.1.2": {
+
"integrity": "sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==",
+
"dependencies": [
+
"buffer-crc32",
+
"crc32-stream",
+
"normalize-path",
+
"readable-stream@3.6.2"
+
]
+
},
+
"concat-map@0.0.1": {
+
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
+
},
+
"core-util-is@1.0.3": {
+
"integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="
+
},
+
"cosmiconfig@9.0.0": {
+
"integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==",
+
"dependencies": [
+
"env-paths",
+
"import-fresh",
+
"js-yaml",
+
"parse-json"
+
]
+
},
+
"crc-32@1.2.2": {
+
"integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ=="
+
},
+
"crc32-stream@4.0.3": {
+
"integrity": "sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==",
+
"dependencies": [
+
"crc-32",
+
"readable-stream@3.6.2"
+
]
+
},
"cross-spawn@7.0.6": {
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
"dependencies": [
···
"source-map-js"
]
},
+
"css-tree@3.1.0": {
+
"integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==",
+
"dependencies": [
+
"mdn-data@2.12.2",
+
"source-map-js"
+
]
+
},
"css-what@6.1.0": {
"integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw=="
},
···
"css-tree@2.2.1"
]
},
+
"data-uri-to-buffer@6.0.2": {
+
"integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw=="
+
},
"date-fns@4.1.0": {
"integrity": "sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg=="
},
-
"debug@4.4.0": {
-
"integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
+
"dayjs@1.11.13": {
+
"integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg=="
+
},
+
"debug@4.3.1": {
+
"integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
+
"dependencies": [
+
"ms@2.1.2"
+
]
+
},
+
"debug@4.4.1": {
+
"integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
"dependencies": [
-
"ms"
+
"ms@2.1.3"
]
},
-
"detect-libc@2.0.3": {
-
"integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw=="
+
"deep-diff@1.0.2": {
+
"integrity": "sha512-aWS3UIVH+NPGCD1kki+DCU9Dua032iSsO43LqQpcs4R3+dVv7tX0qBGjiVHJHjplsoUM2XRO/KB92glqc68awg=="
+
},
+
"deep-is@0.1.4": {
+
"integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
+
},
+
"degenerator@5.0.1": {
+
"integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==",
+
"dependencies": [
+
"ast-types",
+
"escodegen",
+
"esprima"
+
]
+
},
+
"delayed-stream@1.0.0": {
+
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="
+
},
+
"detect-libc@2.0.4": {
+
"integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA=="
+
},
+
"devtools-protocol@0.0.1312386": {
+
"integrity": "sha512-DPnhUXvmvKT2dFA/j7B+riVLUt9Q6RKJlcppojL5CoRywJJKLDYnRlw0gTFKfgDPHP5E04UoB71SxoJlVZy8FA=="
},
"dom-serializer@2.0.0": {
"integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
···
"domhandler"
]
},
-
"dprint@0.49.0": {
-
"integrity": "sha512-xtBPZbPKWOOJH5al4h6rgzsGHuXpyK7TFJCQ5/TW8Z4zkcB9dfmPAh14/Yp5YZcB798D0liztXw+Nd7suzdzBQ==",
+
"dprint@0.49.1": {
+
"integrity": "sha512-pO9XH79SyXybj2Vhc9ITZMEI8cJkdlQQRoD8oEfPH6Jjpp/7WX5kIgECVd3DBOjjAdCSiW6R47v3gJBx/qZVkw==",
"dependencies": [
"@dprint/darwin-arm64",
"@dprint/darwin-x64",
···
"@dprint/win32-x64"
]
},
+
"dunder-proto@1.0.1": {
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+
"dependencies": [
+
"call-bind-apply-helpers",
+
"es-errors",
+
"gopd"
+
]
+
},
+
"duplexer2@0.1.4": {
+
"integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==",
+
"dependencies": [
+
"readable-stream@2.3.8"
+
]
+
},
"eastasianwidth@0.2.0": {
"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="
},
···
"emoji-regex@9.2.2": {
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
},
+
"end-of-stream@1.4.5": {
+
"integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
+
"dependencies": [
+
"once"
+
]
+
},
+
"enhanced-resolve@5.18.2": {
+
"integrity": "sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==",
+
"dependencies": [
+
"graceful-fs",
+
"tapable"
+
]
+
},
"entities@4.5.0": {
"integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw=="
},
+
"env-paths@2.2.1": {
+
"integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A=="
+
},
+
"error-ex@1.3.2": {
+
"integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+
"dependencies": [
+
"is-arrayish@0.2.1"
+
]
+
},
+
"es-define-property@1.0.1": {
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="
+
},
+
"es-errors@1.3.0": {
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="
+
},
+
"es-object-atoms@1.1.1": {
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+
"dependencies": [
+
"es-errors"
+
]
+
},
+
"es-set-tostringtag@2.1.0": {
+
"integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
+
"dependencies": [
+
"es-errors",
+
"get-intrinsic",
+
"has-tostringtag",
+
"hasown"
+
]
+
},
+
"escalade@3.2.0": {
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="
+
},
"escape-string-regexp@5.0.0": {
"integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw=="
},
+
"escodegen@2.1.0": {
+
"integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
+
"dependencies": [
+
"esprima",
+
"estraverse",
+
"esutils",
+
"source-map"
+
]
+
},
+
"esprima@4.0.1": {
+
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
+
},
+
"estraverse@5.3.0": {
+
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="
+
},
"estree-walker@3.0.3": {
"integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
"dependencies": [
"@types/estree"
]
},
+
"esutils@2.0.3": {
+
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="
+
},
+
"exceljs@4.4.0": {
+
"integrity": "sha512-XctvKaEMaj1Ii9oDOqbW/6e1gXknSY4g/aLCDicOXqBE4M0nRWkUu0PTp++UPNzoFY12BNHMfs/VadKIS6llvg==",
+
"dependencies": [
+
"archiver",
+
"dayjs",
+
"fast-csv",
+
"jszip",
+
"readable-stream@3.6.2",
+
"saxes",
+
"tmp",
+
"unzipper",
+
"uuid"
+
]
+
},
+
"extract-zip@2.0.1": {
+
"integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
+
"dependencies": [
+
"@types/yauzl",
+
"debug@4.4.1",
+
"get-stream",
+
"yauzl"
+
]
+
},
+
"fast-csv@4.3.6": {
+
"integrity": "sha512-2RNSpuwwsJGP0frGsOmTb9oUF+VkFSM4SyLTDgwf2ciHWTarN0lQTC+F2f/t5J9QjW+c65VFIAAu85GsvMIusw==",
+
"dependencies": [
+
"@fast-csv/format",
+
"@fast-csv/parse"
+
]
+
},
"fast-deep-equal@3.1.3": {
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
},
+
"fast-fifo@1.3.2": {
+
"integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ=="
+
},
"fast-uri@3.0.6": {
"integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw=="
},
-
"fdir@6.4.3_picomatch@4.0.2": {
-
"integrity": "sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==",
+
"fd-slicer@1.1.0": {
+
"integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
+
"dependencies": [
+
"pend"
+
]
+
},
+
"fdir@6.4.6_picomatch@4.0.2": {
+
"integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==",
"dependencies": [
"picomatch"
]
},
+
"follow-redirects@1.15.9": {
+
"integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ=="
+
},
"foreground-child@3.3.1": {
"integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
"dependencies": [
···
"signal-exit"
]
},
+
"form-data@4.0.3": {
+
"integrity": "sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==",
+
"dependencies": [
+
"asynckit",
+
"combined-stream",
+
"es-set-tostringtag",
+
"hasown",
+
"mime-types"
+
]
+
},
+
"fs-constants@1.0.0": {
+
"integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="
+
},
+
"fs.realpath@1.0.0": {
+
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
+
},
+
"fstream@1.0.12": {
+
"integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==",
+
"dependencies": [
+
"graceful-fs",
+
"inherits",
+
"mkdirp@0.5.6",
+
"rimraf"
+
]
+
},
+
"function-bind@1.1.2": {
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="
+
},
+
"get-caller-file@2.0.5": {
+
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
+
},
+
"get-intrinsic@1.3.0": {
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+
"dependencies": [
+
"call-bind-apply-helpers",
+
"es-define-property",
+
"es-errors",
+
"es-object-atoms",
+
"function-bind",
+
"get-proto",
+
"gopd",
+
"has-symbols",
+
"hasown",
+
"math-intrinsics"
+
]
+
},
+
"get-proto@1.0.1": {
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+
"dependencies": [
+
"dunder-proto",
+
"es-object-atoms"
+
]
+
},
+
"get-stream@5.2.0": {
+
"integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
+
"dependencies": [
+
"pump"
+
]
+
},
+
"get-uri@6.0.5": {
+
"integrity": "sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==",
+
"dependencies": [
+
"basic-ftp",
+
"data-uri-to-buffer",
+
"debug@4.4.1"
+
]
+
},
"glob@10.4.5": {
"integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
"dependencies": [
"foreground-child",
"jackspeak",
-
"minimatch",
+
"minimatch@9.0.5",
"minipass",
"package-json-from-dist",
"path-scurry"
]
},
-
"html-validate@9.5.2_ajv@8.17.1": {
-
"integrity": "sha512-YXJfMprAZYiA6Nc09REC/4wURTCc8sd2MF59U0dto3ZSKqzkUoTGcy/3Tu7kJrLFdiYoKwoOvqQVL/N+sN5MMQ==",
+
"glob@7.2.3": {
+
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+
"dependencies": [
+
"fs.realpath",
+
"inflight",
+
"inherits",
+
"minimatch@3.1.2",
+
"once",
+
"path-is-absolute"
+
]
+
},
+
"gopd@1.2.0": {
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="
+
},
+
"graceful-fs@4.2.11": {
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
+
},
+
"has-symbols@1.1.0": {
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="
+
},
+
"has-tostringtag@1.0.2": {
+
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
+
"dependencies": [
+
"has-symbols"
+
]
+
},
+
"hasown@2.0.2": {
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+
"dependencies": [
+
"function-bind"
+
]
+
},
+
"html-validate@9.7.1_ajv@8.17.1": {
+
"integrity": "sha512-sOCmfMGrSwax20SG2s+4iC8WqsE7JqncN6kh+YFwrb/gvP2VYN8WEnD4PIrnKBIeRf9ju8BGi50NdpHx9UNS9w==",
"dependencies": [
"@html-validate/stylish",
"@sidvind/better-ajv-errors",
"ajv",
-
"glob",
+
"glob@10.4.5",
"kleur@4.1.5",
"minimist",
"prompts",
-
"semver"
+
"semver@7.7.2"
+
]
+
},
+
"http-proxy-agent@7.0.2": {
+
"integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
+
"dependencies": [
+
"agent-base",
+
"debug@4.4.1"
+
]
+
},
+
"https-proxy-agent@7.0.6": {
+
"integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
+
"dependencies": [
+
"agent-base",
+
"debug@4.4.1"
]
},
"ico-endec@0.1.6": {
"integrity": "sha512-ZdLU38ZoED3g1j3iEyzcQj+wAkY2xfWNkymszfJPoxucIUhK7NayQ+/C4Kv0nDFMIsbtbEHldv3V8PU494/ueQ=="
},
+
"ieee754@1.2.1": {
+
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
+
},
+
"immediate@3.0.6": {
+
"integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ=="
+
},
+
"import-fresh@3.3.1": {
+
"integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
+
"dependencies": [
+
"parent-module",
+
"resolve-from"
+
]
+
},
+
"inflight@1.0.6": {
+
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
+
"dependencies": [
+
"once",
+
"wrappy"
+
]
+
},
+
"inherits@2.0.4": {
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
+
},
+
"ip-address@9.0.5": {
+
"integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==",
+
"dependencies": [
+
"jsbn",
+
"sprintf-js"
+
]
+
},
+
"ip-regex@4.3.0": {
+
"integrity": "sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q=="
+
},
+
"is-arrayish@0.2.1": {
+
"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="
+
},
"is-arrayish@0.3.2": {
"integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
},
"is-fullwidth-code-point@3.0.0": {
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
},
+
"is-url@1.2.4": {
+
"integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww=="
+
},
+
"is2@2.0.9": {
+
"integrity": "sha512-rZkHeBn9Zzq52sd9IUIV3a5mfwBY+o2HePMh0wkGBM4z4qjvy2GwVxQ6nNXSfw6MmVP6gf1QIlWjiOavhM3x5g==",
+
"dependencies": [
+
"deep-is",
+
"ip-regex",
+
"is-url"
+
]
+
},
+
"isarray@1.0.0": {
+
"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
+
},
"isexe@2.0.0": {
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
},
···
"@pkgjs/parseargs"
]
},
+
"jiti@2.4.2": {
+
"integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A=="
+
},
+
"js-tokens@4.0.0": {
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
+
},
+
"js-yaml@4.1.0": {
+
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
+
"dependencies": [
+
"argparse"
+
]
+
},
+
"jsbn@1.1.0": {
+
"integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A=="
+
},
+
"json-parse-even-better-errors@2.3.1": {
+
"integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="
+
},
"json-schema-traverse@1.0.0": {
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
+
},
+
"jszip@3.10.1": {
+
"integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==",
+
"dependencies": [
+
"lie",
+
"pako",
+
"readable-stream@2.3.8",
+
"setimmediate"
+
]
},
"kleur@3.0.3": {
"integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w=="
···
"kleur@4.1.5": {
"integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="
},
-
"lightningcss-wasm@1.29.2": {
-
"integrity": "sha512-ZQfqj1Y1eRjumKuzbWZBtiAWur+DX8iy3bwfYYzVQQaIYzAbbFtxD/yqTRO1OsQNMxAjpQtE4S/AhJL3n5tIIw==",
+
"lazystream@1.0.1": {
+
"integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==",
+
"dependencies": [
+
"readable-stream@2.3.8"
+
]
+
},
+
"lie@3.3.0": {
+
"integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
+
"dependencies": [
+
"immediate"
+
]
+
},
+
"lightningcss-darwin-arm64@1.30.1": {
+
"integrity": "sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ=="
+
},
+
"lightningcss-darwin-x64@1.30.1": {
+
"integrity": "sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA=="
+
},
+
"lightningcss-freebsd-x64@1.30.1": {
+
"integrity": "sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig=="
+
},
+
"lightningcss-linux-arm-gnueabihf@1.30.1": {
+
"integrity": "sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q=="
+
},
+
"lightningcss-linux-arm64-gnu@1.30.1": {
+
"integrity": "sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw=="
+
},
+
"lightningcss-linux-arm64-musl@1.30.1": {
+
"integrity": "sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ=="
+
},
+
"lightningcss-linux-x64-gnu@1.30.1": {
+
"integrity": "sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw=="
+
},
+
"lightningcss-linux-x64-musl@1.30.1": {
+
"integrity": "sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ=="
+
},
+
"lightningcss-wasm@1.29.3": {
+
"integrity": "sha512-j02QNSRVBKxsSBinpSCgx3x8XwwOoO50ekDO1O5rBf+dS0j46qSojv+3BDzMNCaGFJ18EjcnXGDkG3ImIbU/PQ==",
"dependencies": [
"napi-wasm"
]
+
},
+
"lightningcss-wasm@1.30.1": {
+
"integrity": "sha512-KJTnKEn0REV6DoJzxG0m5EKVEFA1CVE1isDYpXjsuqWXwLKFPJtA9Z9BSzPZJwAZFN2KaUzy+IWGP59p5bm2sA==",
+
"dependencies": [
+
"napi-wasm"
+
]
+
},
+
"lightningcss-win32-arm64-msvc@1.30.1": {
+
"integrity": "sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA=="
+
},
+
"lightningcss-win32-x64-msvc@1.30.1": {
+
"integrity": "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg=="
+
},
+
"lightningcss@1.30.1": {
+
"integrity": "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==",
+
"dependencies": [
+
"detect-libc",
+
"lightningcss-darwin-arm64",
+
"lightningcss-darwin-x64",
+
"lightningcss-freebsd-x64",
+
"lightningcss-linux-arm-gnueabihf",
+
"lightningcss-linux-arm64-gnu",
+
"lightningcss-linux-arm64-musl",
+
"lightningcss-linux-x64-gnu",
+
"lightningcss-linux-x64-musl",
+
"lightningcss-win32-arm64-msvc",
+
"lightningcss-win32-x64-msvc"
+
]
+
},
+
"lines-and-columns@1.2.4": {
+
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="
},
"linkify-it@5.0.0": {
"integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==",
···
"uc.micro"
]
},
+
"listenercount@1.0.1": {
+
"integrity": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ=="
+
},
+
"lodash.defaults@4.2.0": {
+
"integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ=="
+
},
+
"lodash.difference@4.5.0": {
+
"integrity": "sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA=="
+
},
+
"lodash.escaperegexp@4.1.2": {
+
"integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw=="
+
},
+
"lodash.flatten@4.4.0": {
+
"integrity": "sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g=="
+
},
+
"lodash.groupby@4.6.0": {
+
"integrity": "sha512-5dcWxm23+VAoz+awKmBaiBvzox8+RqMgFhi7UvX9DHZr2HdxHXM/Wrf8cfKpsW37RNrvtPn6hSwNqurSILbmJw=="
+
},
+
"lodash.isboolean@3.0.3": {
+
"integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg=="
+
},
+
"lodash.isequal@4.5.0": {
+
"integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ=="
+
},
+
"lodash.isfunction@3.0.9": {
+
"integrity": "sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw=="
+
},
+
"lodash.isnil@4.0.0": {
+
"integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng=="
+
},
+
"lodash.isplainobject@4.0.6": {
+
"integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA=="
+
},
+
"lodash.isundefined@3.0.1": {
+
"integrity": "sha512-MXB1is3s899/cD8jheYYE2V9qTHwKvt+npCwpD+1Sxm3Q3cECXCiYHjeHWXNwr6Q0SOBPrYUDxendrO6goVTEA=="
+
},
+
"lodash.union@4.6.0": {
+
"integrity": "sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw=="
+
},
+
"lodash.uniq@4.5.0": {
+
"integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ=="
+
},
"lru-cache@10.4.3": {
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="
},
+
"lru-cache@7.18.3": {
+
"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA=="
+
},
+
"magic-string@0.30.17": {
+
"integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
+
"dependencies": [
+
"@jridgewell/sourcemap-codec"
+
]
+
},
"markdown-it-attrs@4.3.1_markdown-it@14.1.0": {
"integrity": "sha512-/ko6cba+H6gdZ0DOw7BbNMZtfuJTRp9g/IrGIuz8lYc/EfnmWRpaR3CFPnNbVz0LDvF8Gf1hFGPqrQqq7De0rg==",
"dependencies": [
···
"punycode.js",
"uc.micro"
]
+
},
+
"math-intrinsics@1.1.0": {
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="
},
"mdn-data@2.0.28": {
"integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g=="
···
"mdn-data@2.0.30": {
"integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA=="
},
+
"mdn-data@2.12.2": {
+
"integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA=="
+
},
"mdurl@2.0.0": {
"integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w=="
},
"meriyah@6.0.5": {
"integrity": "sha512-SrMqQCox7TTwtftWKHy/ZaVe+ZRpRl20pAgDo+PS9hzcAJrMjYsBJQPPiLXTnjztrqdfGS+Zz99r6Bwvydta1w=="
},
+
"mime-db@1.52.0": {
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="
+
},
+
"mime-types@2.1.35": {
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+
"dependencies": [
+
"mime-db"
+
]
+
},
+
"minimatch@3.1.2": {
+
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+
"dependencies": [
+
"brace-expansion@1.1.12"
+
]
+
},
+
"minimatch@5.1.6": {
+
"integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
+
"dependencies": [
+
"brace-expansion@2.0.2"
+
]
+
},
"minimatch@9.0.5": {
"integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
"dependencies": [
-
"brace-expansion"
+
"brace-expansion@2.0.2"
]
},
"minimist@1.2.8": {
···
"minipass@7.1.2": {
"integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="
},
+
"minizlib@3.0.2": {
+
"integrity": "sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==",
+
"dependencies": [
+
"minipass"
+
]
+
},
+
"mitt@3.0.1": {
+
"integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw=="
+
},
+
"mkdirp@0.5.6": {
+
"integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
+
"dependencies": [
+
"minimist"
+
]
+
},
+
"mkdirp@3.0.1": {
+
"integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg=="
+
},
+
"ms@2.1.2": {
+
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+
},
"ms@2.1.3": {
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
},
"napi-wasm@1.1.3": {
"integrity": "sha512-h/4nMGsHjZDCYmQVNODIrYACVJ+I9KItbG+0si6W/jSjdA9JbWDoU4LLeMXVcEQGHjttI2tuXqDrbGF7qkUHHg=="
+
},
+
"netmask@2.0.2": {
+
"integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg=="
+
},
+
"normalize-path@3.0.0": {
+
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
},
"nth-check@2.1.1": {
"integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
···
"boolbase"
]
},
+
"once@1.4.0": {
+
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
+
"dependencies": [
+
"wrappy"
+
]
+
},
+
"pac-proxy-agent@7.2.0": {
+
"integrity": "sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==",
+
"dependencies": [
+
"@tootallnate/quickjs-emscripten",
+
"agent-base",
+
"debug@4.4.1",
+
"get-uri",
+
"http-proxy-agent",
+
"https-proxy-agent",
+
"pac-resolver",
+
"socks-proxy-agent"
+
]
+
},
+
"pac-resolver@7.0.1": {
+
"integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==",
+
"dependencies": [
+
"degenerator",
+
"netmask"
+
]
+
},
"package-json-from-dist@1.0.1": {
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="
},
+
"pako@1.0.11": {
+
"integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="
+
},
+
"parent-module@1.0.1": {
+
"integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+
"dependencies": [
+
"callsites"
+
]
+
},
+
"parse-json@5.2.0": {
+
"integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
+
"dependencies": [
+
"@babel/code-frame",
+
"error-ex",
+
"json-parse-even-better-errors",
+
"lines-and-columns"
+
]
+
},
+
"path-is-absolute@1.0.1": {
+
"integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="
+
},
"path-key@3.1.1": {
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="
},
"path-scurry@1.11.1": {
"integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
"dependencies": [
-
"lru-cache",
+
"lru-cache@10.4.3",
"minipass"
]
},
+
"pend@1.2.0": {
+
"integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg=="
+
},
"picocolors@1.1.1": {
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="
},
"picomatch@4.0.2": {
"integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg=="
},
+
"process-nextick-args@2.0.1": {
+
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
+
},
+
"progress@2.0.3": {
+
"integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="
+
},
"prompts@2.4.2": {
"integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
"dependencies": [
···
"sisteransi"
]
},
+
"proxy-agent@6.5.0": {
+
"integrity": "sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==",
+
"dependencies": [
+
"agent-base",
+
"debug@4.4.1",
+
"http-proxy-agent",
+
"https-proxy-agent",
+
"lru-cache@7.18.3",
+
"pac-proxy-agent",
+
"proxy-from-env",
+
"socks-proxy-agent"
+
]
+
},
+
"proxy-from-env@1.1.0": {
+
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
+
},
+
"pump@3.0.3": {
+
"integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==",
+
"dependencies": [
+
"end-of-stream",
+
"once"
+
]
+
},
"punycode.js@2.3.1": {
"integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA=="
},
+
"puppeteer-core@22.15.0_devtools-protocol@0.0.1312386": {
+
"integrity": "sha512-cHArnywCiAAVXa3t4GGL2vttNxh7GqXtIYGym99egkNJ3oG//wL9LkvO4WE8W1TJe95t1F1ocu9X4xWaGsOKOA==",
+
"dependencies": [
+
"@puppeteer/browsers",
+
"chromium-bidi",
+
"debug@4.4.1",
+
"devtools-protocol",
+
"ws"
+
]
+
},
+
"puppeteer@22.15.0": {
+
"integrity": "sha512-XjCY1SiSEi1T7iSYuxS82ft85kwDJUS7wj1Z0eGVXKdtr5g4xnVcbjwxhq5xBnpK/E7x1VZZoJDxpjAOasHT4Q==",
+
"dependencies": [
+
"@puppeteer/browsers",
+
"cosmiconfig",
+
"devtools-protocol",
+
"puppeteer-core"
+
]
+
},
+
"readable-stream@2.3.8": {
+
"integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
+
"dependencies": [
+
"core-util-is",
+
"inherits",
+
"isarray",
+
"process-nextick-args",
+
"safe-buffer@5.1.2",
+
"string_decoder@1.1.1",
+
"util-deprecate"
+
]
+
},
+
"readable-stream@3.6.2": {
+
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
+
"dependencies": [
+
"inherits",
+
"string_decoder@1.3.0",
+
"util-deprecate"
+
]
+
},
+
"readdir-glob@1.1.3": {
+
"integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==",
+
"dependencies": [
+
"minimatch@5.1.6"
+
]
+
},
"remove-markdown@0.6.0": {
"integrity": "sha512-B9g8yo5Zp1wXfZ77M1RLpqI7xrBBERkp7+3/Btm9N/uZV5xhXZjzIxDbCKz7CSj141lWDuCnQuH12DKLUv4Ghw=="
},
+
"remove-markdown@0.6.2": {
+
"integrity": "sha512-EijDXJZbzpGbQBd852ViUzcqgpMujthM+SAEHiWCMcZonRbZ+xViWKLJA/vrwbDwYdxrs1aFDjpBhcGrZoJRGA=="
+
},
+
"require-directory@2.1.1": {
+
"integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="
+
},
"require-from-string@2.0.2": {
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="
},
+
"resolve-from@4.0.0": {
+
"integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
+
},
+
"rimraf@2.7.1": {
+
"integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+
"dependencies": [
+
"glob@7.2.3"
+
]
+
},
+
"safe-buffer@5.1.2": {
+
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+
},
+
"safe-buffer@5.2.1": {
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
+
},
+
"sax@1.4.1": {
+
"integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg=="
+
},
+
"saxes@5.0.1": {
+
"integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
+
"dependencies": [
+
"xmlchars"
+
]
+
},
"semver@7.7.1": {
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA=="
},
-
"sharp@0.33.5": {
-
"integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==",
+
"semver@7.7.2": {
+
"integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA=="
+
},
+
"setimmediate@1.0.5": {
+
"integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA=="
+
},
+
"sharp@0.34.1": {
+
"integrity": "sha512-1j0w61+eVxu7DawFJtnfYcvSv6qPFvfTaqzTQ2BLknVhHTwGS8sc63ZBF4rzkWMBVKybo4S5OBtDdZahh2A1xg==",
"dependencies": [
-
"@img/sharp-darwin-arm64",
-
"@img/sharp-darwin-x64",
-
"@img/sharp-libvips-darwin-arm64",
-
"@img/sharp-libvips-darwin-x64",
-
"@img/sharp-libvips-linux-arm",
-
"@img/sharp-libvips-linux-arm64",
-
"@img/sharp-libvips-linux-s390x",
-
"@img/sharp-libvips-linux-x64",
-
"@img/sharp-libvips-linuxmusl-arm64",
-
"@img/sharp-libvips-linuxmusl-x64",
-
"@img/sharp-linux-arm",
-
"@img/sharp-linux-arm64",
-
"@img/sharp-linux-s390x",
-
"@img/sharp-linux-x64",
-
"@img/sharp-linuxmusl-arm64",
-
"@img/sharp-linuxmusl-x64",
-
"@img/sharp-wasm32",
-
"@img/sharp-win32-ia32",
-
"@img/sharp-win32-x64",
+
"@img/sharp-darwin-arm64@0.34.1",
+
"@img/sharp-darwin-x64@0.34.1",
+
"@img/sharp-libvips-darwin-arm64@1.1.0",
+
"@img/sharp-libvips-darwin-x64@1.1.0",
+
"@img/sharp-libvips-linux-arm@1.1.0",
+
"@img/sharp-libvips-linux-arm64@1.1.0",
+
"@img/sharp-libvips-linux-ppc64@1.1.0",
+
"@img/sharp-libvips-linux-s390x@1.1.0",
+
"@img/sharp-libvips-linux-x64@1.1.0",
+
"@img/sharp-libvips-linuxmusl-arm64@1.1.0",
+
"@img/sharp-libvips-linuxmusl-x64@1.1.0",
+
"@img/sharp-linux-arm@0.34.1",
+
"@img/sharp-linux-arm64@0.34.1",
+
"@img/sharp-linux-s390x@0.34.1",
+
"@img/sharp-linux-x64@0.34.1",
+
"@img/sharp-linuxmusl-arm64@0.34.1",
+
"@img/sharp-linuxmusl-x64@0.34.1",
+
"@img/sharp-wasm32@0.34.1",
+
"@img/sharp-win32-ia32@0.34.1",
+
"@img/sharp-win32-x64@0.34.1",
+
"color",
+
"detect-libc",
+
"semver@7.7.1"
+
]
+
},
+
"sharp@0.34.2": {
+
"integrity": "sha512-lszvBmB9QURERtyKT2bNmsgxXK0ShJrL/fvqlonCo7e6xBF8nT8xU6pW+PMIbLsz0RxQk3rgH9kd8UmvOzlMJg==",
+
"dependencies": [
+
"@img/sharp-darwin-arm64@0.34.2",
+
"@img/sharp-darwin-x64@0.34.2",
+
"@img/sharp-libvips-darwin-arm64@1.1.0",
+
"@img/sharp-libvips-darwin-x64@1.1.0",
+
"@img/sharp-libvips-linux-arm@1.1.0",
+
"@img/sharp-libvips-linux-arm64@1.1.0",
+
"@img/sharp-libvips-linux-ppc64@1.1.0",
+
"@img/sharp-libvips-linux-s390x@1.1.0",
+
"@img/sharp-libvips-linux-x64@1.1.0",
+
"@img/sharp-libvips-linuxmusl-arm64@1.1.0",
+
"@img/sharp-libvips-linuxmusl-x64@1.1.0",
+
"@img/sharp-linux-arm@0.34.2",
+
"@img/sharp-linux-arm64@0.34.2",
+
"@img/sharp-linux-s390x@0.34.2",
+
"@img/sharp-linux-x64@0.34.2",
+
"@img/sharp-linuxmusl-arm64@0.34.2",
+
"@img/sharp-linuxmusl-x64@0.34.2",
+
"@img/sharp-wasm32@0.34.2",
+
"@img/sharp-win32-arm64@0.34.2",
+
"@img/sharp-win32-ia32@0.34.2",
+
"@img/sharp-win32-x64@0.34.2",
+
"color",
+
"detect-libc",
+
"semver@7.7.2"
+
]
+
},
+
"sharp@0.34.3": {
+
"integrity": "sha512-eX2IQ6nFohW4DbvHIOLRB3MHFpYqaqvXd3Tp5e/T/dSH83fxaNJQRvDMhASmkNTsNTVF2/OOopzRCt7xokgPfg==",
+
"dependencies": [
+
"@img/sharp-darwin-arm64@0.34.3",
+
"@img/sharp-darwin-x64@0.34.3",
+
"@img/sharp-libvips-darwin-arm64@1.2.0",
+
"@img/sharp-libvips-darwin-x64@1.2.0",
+
"@img/sharp-libvips-linux-arm@1.2.0",
+
"@img/sharp-libvips-linux-arm64@1.2.0",
+
"@img/sharp-libvips-linux-ppc64@1.2.0",
+
"@img/sharp-libvips-linux-s390x@1.2.0",
+
"@img/sharp-libvips-linux-x64@1.2.0",
+
"@img/sharp-libvips-linuxmusl-arm64@1.2.0",
+
"@img/sharp-libvips-linuxmusl-x64@1.2.0",
+
"@img/sharp-linux-arm@0.34.3",
+
"@img/sharp-linux-arm64@0.34.3",
+
"@img/sharp-linux-ppc64",
+
"@img/sharp-linux-s390x@0.34.3",
+
"@img/sharp-linux-x64@0.34.3",
+
"@img/sharp-linuxmusl-arm64@0.34.3",
+
"@img/sharp-linuxmusl-x64@0.34.3",
+
"@img/sharp-wasm32@0.34.3",
+
"@img/sharp-win32-arm64@0.34.3",
+
"@img/sharp-win32-ia32@0.34.3",
+
"@img/sharp-win32-x64@0.34.3",
"color",
"detect-libc",
-
"semver"
+
"semver@7.7.2"
]
},
"shebang-command@2.0.0": {
···
"simple-swizzle@0.2.2": {
"integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==",
"dependencies": [
-
"is-arrayish"
+
"is-arrayish@0.3.2"
]
},
"sisteransi@1.0.5": {
"integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="
},
+
"smart-buffer@4.2.0": {
+
"integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg=="
+
},
+
"socks-proxy-agent@8.0.5": {
+
"integrity": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==",
+
"dependencies": [
+
"agent-base",
+
"debug@4.4.1",
+
"socks"
+
]
+
},
+
"socks@2.8.6": {
+
"integrity": "sha512-pe4Y2yzru68lXCb38aAqRf5gvN8YdjP1lok5o0J7BOHljkyCGKVz7H3vpVIXKD27rj2giOJ7DwVyk/GWrPHDWA==",
+
"dependencies": [
+
"ip-address",
+
"smart-buffer"
+
]
+
},
"source-map-js@1.2.1": {
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="
},
+
"source-map@0.6.1": {
+
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+
},
+
"sprintf-js@1.1.3": {
+
"integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA=="
+
},
+
"streamx@2.22.1": {
+
"integrity": "sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==",
+
"dependencies": [
+
"bare-events",
+
"fast-fifo",
+
"text-decoder"
+
]
+
},
+
"string-hash@1.1.3": {
+
"integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A=="
+
},
"string-width@4.2.3": {
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
"dependencies": [
···
"strip-ansi@7.1.0"
]
},
+
"string_decoder@1.1.1": {
+
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+
"dependencies": [
+
"safe-buffer@5.1.2"
+
]
+
},
+
"string_decoder@1.3.0": {
+
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+
"dependencies": [
+
"safe-buffer@5.2.1"
+
]
+
},
"strip-ansi@6.0.1": {
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dependencies": [
···
"integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==",
"dependencies": [
"@trysound/sax",
-
"commander",
+
"commander@7.2.0",
"css-select",
"css-tree@2.3.1",
"css-what",
···
"picocolors"
]
},
-
"tailwindcss@4.0.14": {
-
"integrity": "sha512-92YT2dpt671tFiHH/e1ok9D987N9fHD5VWoly1CdPD/Cd1HMglvZwP3nx2yTj2lbXDAHt8QssZkxTLCCTNL+xw=="
+
"svgo@4.0.0": {
+
"integrity": "sha512-VvrHQ+9uniE+Mvx3+C9IEe/lWasXCU0nXMY2kZeLrHNICuRiC8uMPyM14UEaMOFA5mhyQqEkB02VoQ16n3DLaw==",
+
"dependencies": [
+
"commander@11.1.0",
+
"css-select",
+
"css-tree@3.1.0",
+
"css-what",
+
"csso",
+
"picocolors",
+
"sax"
+
]
+
},
+
"tailwindcss@4.1.11": {
+
"integrity": "sha512-2E9TBm6MDD/xKYe+dvJZAmg3yxIEDNRc0jwlNyDg/4Fil2QcSLjFKGVff0lAf1jjeaArlG/M75Ey/EYr/OJtBA=="
+
},
+
"tailwindcss@4.1.4": {
+
"integrity": "sha512-1ZIUqtPITFbv/DxRmDr5/agPqJwF69d24m9qmM1939TJehgY539CtzeZRjbLt5G6fSy/7YqqYsfvoTEw9xUI2A=="
+
},
+
"tapable@2.2.2": {
+
"integrity": "sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg=="
+
},
+
"tar-fs@3.1.0": {
+
"integrity": "sha512-5Mty5y/sOF1YWj1J6GiBodjlDc05CUR8PKXrsnFAiSG0xA+GHeWLovaZPYUDXkH/1iKRf2+M5+OrRgzC7O9b7w==",
+
"dependencies": [
+
"bare-fs",
+
"bare-path",
+
"pump",
+
"tar-stream@3.1.7"
+
]
+
},
+
"tar-stream@2.2.0": {
+
"integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
+
"dependencies": [
+
"bl",
+
"end-of-stream",
+
"fs-constants",
+
"inherits",
+
"readable-stream@3.6.2"
+
]
},
-
"tinyglobby@0.2.12_picomatch@4.0.2": {
-
"integrity": "sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==",
+
"tar-stream@3.1.7": {
+
"integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==",
+
"dependencies": [
+
"b4a",
+
"fast-fifo",
+
"streamx"
+
]
+
},
+
"tar@7.4.3": {
+
"integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==",
+
"dependencies": [
+
"@isaacs/fs-minipass",
+
"chownr",
+
"minipass",
+
"minizlib",
+
"mkdirp@3.0.1",
+
"yallist"
+
]
+
},
+
"tcp-port-used@1.0.2": {
+
"integrity": "sha512-l7ar8lLUD3XS1V2lfoJlCBaeoaWo/2xfYt81hM7VlvR4RrMVFqfmzfhLVk40hAb368uitje5gPtBRL1m/DGvLA==",
+
"dependencies": [
+
"debug@4.3.1",
+
"is2"
+
]
+
},
+
"text-decoder@1.2.3": {
+
"integrity": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==",
+
"dependencies": [
+
"b4a"
+
]
+
},
+
"through@2.3.8": {
+
"integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="
+
},
+
"tinyglobby@0.2.14_picomatch@4.0.2": {
+
"integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==",
"dependencies": [
"fdir",
"picomatch"
]
},
+
"tmp@0.2.3": {
+
"integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w=="
+
},
+
"traverse@0.3.9": {
+
"integrity": "sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ=="
+
},
"tslib@2.8.1": {
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
},
"uc.micro@2.1.0": {
"integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A=="
},
+
"unbzip2-stream@1.4.3": {
+
"integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==",
+
"dependencies": [
+
"buffer",
+
"through"
+
]
+
},
+
"undici-types@6.20.0": {
+
"integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg=="
+
},
+
"unzipper@0.10.14": {
+
"integrity": "sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==",
+
"dependencies": [
+
"big-integer",
+
"binary",
+
"bluebird",
+
"buffer-indexof-polyfill",
+
"duplexer2",
+
"fstream",
+
"graceful-fs",
+
"listenercount",
+
"readable-stream@2.3.8",
+
"setimmediate"
+
]
+
},
+
"urlpattern-polyfill@10.0.0": {
+
"integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg=="
+
},
+
"util-deprecate@1.0.2": {
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
+
},
+
"uuid@8.3.2": {
+
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
+
},
"which@2.0.2": {
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
"dependencies": [
···
"string-width@5.1.2",
"strip-ansi@7.1.0"
]
+
},
+
"wrappy@1.0.2": {
+
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
+
},
+
"ws@8.18.3": {
+
"integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg=="
+
},
+
"xmlchars@2.2.0": {
+
"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw=="
+
},
+
"y18n@5.0.8": {
+
"integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="
+
},
+
"yallist@5.0.0": {
+
"integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw=="
+
},
+
"yargs-parser@21.1.1": {
+
"integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw=="
+
},
+
"yargs@17.7.2": {
+
"integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
+
"dependencies": [
+
"cliui",
+
"escalade",
+
"get-caller-file",
+
"require-directory",
+
"string-width@4.2.3",
+
"y18n",
+
"yargs-parser"
+
]
+
},
+
"yauzl@2.10.0": {
+
"integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
+
"dependencies": [
+
"buffer-crc32",
+
"fd-slicer"
+
]
+
},
+
"zip-stream@4.1.1": {
+
"integrity": "sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==",
+
"dependencies": [
+
"archiver-utils@3.0.4",
+
"compress-commons",
+
"readable-stream@3.6.2"
+
]
+
},
+
"zod@3.23.8": {
+
"integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g=="
}
},
"remote": {
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/cli/build_worker.ts": "76dc2fdafec8b1389f807729191d596d091c377d3a1bd1702a25776482e2e783",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/cli/utils.ts": "4697e4280ff62b537507ed707ec84ea707b0519f8de32e2e762f498104a8d1ae",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/cache.ts": "2a76b1561b1870317c7ba2b88021a2f7e18233dd8dcb15eb8e5d4b98bbb280b9",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/component_loader.ts": "260e1143ab53817f9f84f7528935c86ee28e5e55b8397a6ff4635127d66637de",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/file.ts": "7c3f24a86b5a2c59c6ddc15ce7d86d171eab25495ebfe87f2530b924af18c9ea",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/fs.ts": "361cd6cbb575a329013d7098542d45a5c28aa2fdd1de0b15c9015f47403f4f06",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/processors.ts": "0f4eef7e2dc44ef8eea1b8ab1fcc0dc577b0d3c47f800a8482379db7d94241a8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/renderer.ts": "f77247842a242dedae47097c2a49409074bb3b6245d5c71ae4f11f31d80efc5c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/searcher.ts": "9093c2c64d1190b55a886b2905a224e0cbf86532bea4883e065e391851a8f14c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/server.ts": "73fa9ebc306d44ec2f59dd7f536d626badf17675039b2a39035acc030d09569a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/site.ts": "b53ec2931125924639101b39f39394a46c037250924437a4b6598deb9e335c11",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/slugifier.ts": "3cb058f841f6eba1862f70f43e21de591af99cc6efacd9bb11dc0dbbab9eb703",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/source.ts": "35bb4051558c38d6dae344702d463f7dc94d48951ce1ee17a3d27c01ab624bac",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/css_urls.ts": "207a8519bc4ea8757c856a5aa488a5a8e0ae70b760d460b1d31b659bf701801f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/data_values.ts": "ff6866d0c61bdca40c6ba98826ccc8626d8a553d4f8f4a7d320041eea21aa900",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/date.ts": "3eb0b0e2ea15a95cdfe737be70cd4f48cbe49401928cb04c25a230f411ab2478",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/dom.ts": "d406fb5c48ceb012286d0aff66ef635261eda666de2ce07538c0cf9366b8fecd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/dom_links.ts": "f4a197edd4a77b504e82d097613b02684fb5ba73cd415608b913bc658e6ddb28",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/log.ts": "371a419a167f3002e28fd3cb8d8409e210a844f5f1212f36e607417f77d65a8a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/lume_config.ts": "35be053a7dd2b94f58cdcb27301b560623fdf782666c0e0a0616b0408bb098db",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/merge_data.ts": "4ac5067e5b2ff3ba88ef2e009ee718e512aeb097a28f785b8bc733cb8805251c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/object.ts": "70f4d7b289478810499e5631cb9458e2961db12b5caa51ec34f87b6b5f6d4674",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/page_url.ts": "fb2590298489a5afa3caa6f9c72a6b32b7287df10c0174c41ee2fb4a07a541ce",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/path.ts": "7a1d199113928cc35782aa3262cbe6f7a4894bc262d7d300de9385b3da45602f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/read.ts": "f435e42e01ee022f50a5d1afc08b0a2a481cfa1e9c5844690939f1fdf6faf1bf",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/utils/tokens.ts": "201777343e716403bfb1dbbc1a988a85b8d3f12699daaacbe8bbdc3c352a57ff",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/core/writer.ts": "7c56cdae2fcbaebe3c4d66d6c75bc056906d82517d880ba8e02acbb464e6c6b6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/base64.ts": "e2059f11343da26acc2e677d1f87f484e4da3e1f34f642e577cf18f6e752c224",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/cli.ts": "ff5b70bb3c5f694bbf45f7b6ab58f413d006d1234274620dfe21b77c380b6152",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/colors.ts": "963410817371ad594349da1dc042f162d5f9e739e0d2b0a1141702673b525a51",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/crypto.ts": "70046784de20c6412d0c554dc08093b4527184987126943a613ade39fa12c3eb",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/front_matter.ts": "0b4547b5da6f28e790b5521dd30cddeb2d122175248fc9334b19d9cbd47fed0a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/fs.ts": "617d49d3dca5049d9cf3fe53d1ee0ae09079ce85a047859f0e69d386ec48dade",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/hex.ts": "663a8bef15a21db473d0f8d8ac1c3ac9a658e5ee37032ae430eff3fea652813c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/http.ts": "3523ed68b54224df945c1cdec9b6b8eb0d00a8e0602eb0367528d9ebb07b32a5",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/lightningcss.ts": "c2fabbe548982fbed2b17080cad9e288640753d6ce314833c8d22c24147f56ff",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/log.ts": "26457db654fe564ea9e52161d5d446d45de2a041b49b8f61cd22cbef2145f8e2",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/minify_html.ts": "d6b88e9bcbcef9d0658916f852e6f9322ed88622368b01da4477533b66c11591",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/sharp.ts": "b0692f7293a33a6b191ef672420e3eb37c308ccbe5cf55d15231254e2972a8e0",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/streams.ts": "e78fdd0a968390117fb3d6bd83de09b72f54eec27d8ef873aea9ad03c1087c3b",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/tailwindcss.ts": "5bb7a7f170b3d921373710733f70970b474130c76d9b431a6087102d10dd972e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/toml.ts": "cc55b94f0c44e4113ff09e153e8b1c58bc5f585b7ea1e8f14f96c8152241b166",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/vento.ts": "c905c9d3cf1553fa489dc3657de6183e0d6149f17ed0e27f84426556a5ed7267",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/middlewares/not_found.ts": "4507842d422267062c34662dceab17affcaad01858a5890fda163a8ddeb31487",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/middlewares/reload.ts": "ae0580c01fccf0370880d98e729177f6ef2b99ff432488649ab48e33104f69d9",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/middlewares/reload_client.js": "65b5a8b834697dc1a7efecea68918eb434ae6df850d442b326a5084886e8b9cd",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/mod.ts": "4ed2edf622df6109304095952f8a02844f5abc2992b6c9886af632b058f1a8f4",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/feed.ts": "914702397b3dc533a4cb7bd7e88f04f9f379390780ea6990a511e2390c57ab4b",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/google_fonts.ts": "b45216dd0b6d857f03b58c5641f8adfc872f39f727a29c99e285b046bf835db5",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/gzip.ts": "0026c36672db566ebc7dc0d48d0b94ad21063c9b7ebf691ab9d78aa62ed88784",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/lightningcss.ts": "2006c712b89e9f0b88852127efc7f4c856eefec565941c5ab9ea362d35ae996a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/metas.ts": "ecaf7a634b2293442324afe4f5b378e1757784937af4a091710209b6cbebf399",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/minify_html.ts": "3a8b2037199cda2814e8c712086789b8be3646d7c29ea31c27f4fa5b03de5c41",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/modify_urls.ts": "48ae054061500f8e05063d5f94c95627b0dde4ba591daacb35010f457ec24802",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/picture.ts": "bbe17dbb3494e0a342be1c9685739797f1bf4c93ff55d4a9258c91a5b793868c",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/reading_info.ts": "b43ea47c4d972599714b0ec595c2f6be566510c5c670ba7d56d5b5ffee36cd8d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/resolve_urls.ts": "910dbccd25fcacacc72d577a3df37c5f3cc4adce0ec52b2fc8903863c2e2afae",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/sitemap.ts": "57600034ce49e875a2658f86cb2668b634102db6db5583ddbfbadbec66a538ae",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/slugify_urls.ts": "ec2a78b13f094d99c90d1789149d98a60ea39297cbdc1d514fd267d8c8a42b85",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/source_maps.ts": "afd62c4e911d2037c9edd70b1f5fe0b7b8d9cf66c1748f210a5731947b494fe4",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/svgo.ts": "e22a4998b3793e1b583a1290bd8bf2b8f37b8df5d7014f45a629a5547440c24d",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/tailwindcss.ts": "e86d7bb28eb72e8866b6bc4fbbecb3926ade1c884a0fd3c22242cd39fb5ebff1",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/transform_images.ts": "4a57cc7e89ec1eb9633f5fc2bc6401526a8ed012083167577c976c8d7f4dea2a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/vento.ts": "cf36711e93ce30664759306dd283328604e7669e209d28cd8f7df581e4ba9b66",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
-
"https://cdn.jsdelivr.net/gh/lumeland/lume@242686cdfbc4c1fcb3a600d0005fb7a89e3b59b2/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
+
"https://cdn.jsdelivr.net/gh/lumeland/bar@0.1.8/types.ts": "38f3714e1432c174009495333972f85fb306eb6313112ac8830fda9f1f47e87f",
+
"https://cdn.jsdelivr.net/gh/lumeland/bar@006e4aeda5bea28316e0eb98b91ce2da4b59420b/lume-bar.js": "37fa4c70f213095ef49851eec962a5469fa5b431b69c9ff73ac701e19a5ee5d9",
+
"https://cdn.jsdelivr.net/gh/lumeland/bar@9d07935f8cff6addb1baad41fec50c843809dd58/lume-bar.js": "9404d5053fa81971c76aa539ccecf87ac8530b5016cf1a833ddd193ebc1f2cd5",
+
"https://cdn.jsdelivr.net/gh/lumeland/bar@d24249e5adfa8c5692aa778e38920b026531d1b8/lume-bar.js": "e9a6fc487dc5bd64b437387bece62a67594622c70a836cf47d59c30f76c43c39",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli/build_worker.ts": "34781766980dcee3c433aaa65df138168cb163a2cbd89bac53efce167ed6bfbf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/cli/utils.ts": "8fcc2d3d8003e4b651201ef2e343209c6a752959b5acb0da7038d132e9097ef2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/cache.ts": "a6df9d9208b2276fa9269fec8f5c8ae2d48fc373af537414d8b57e5505ead9d0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/components.ts": "78c684e0786e745caf6a4c746f183027a1dcd6cb327651c0e95f3d3510593221",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/debugbar.ts": "db2d8eb01b61171ff642bf1a8393f96fa0b279dd54df85de733b287ef5d4ce88",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/file.ts": "dd75602565b746b61ff4baf1d6624a2a60bc240fd3718143510d7f7111679c22",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/fs.ts": "22d77101afaef582f18cf1619bb9eed7fd5cd0b3ce840588a53432fcd90cd8af",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/processors.ts": "0f4eef7e2dc44ef8eea1b8ab1fcc0dc577b0d3c47f800a8482379db7d94241a8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/renderer.ts": "5e9ca876833fc0d593e41228e556313aacae86070ebfcc514a0b8dd605fe62ef",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/searcher.ts": "19530e0149ca925334f98052863a52cdfbbeea9977342b209829999a34e816a6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/server.ts": "19cdd234f18c601d8386c7aa6d589616ce367fc571a96d4715f220a522e17ae8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/site.ts": "3f36b7eb1397194e222389673d20063096233f40280d54cc9975e1923e80ef39",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/slugifier.ts": "3cb058f841f6eba1862f70f43e21de591af99cc6efacd9bb11dc0dbbab9eb703",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/source.ts": "a8968859d500d2eaee3f2f2b861bf29ddea3af67450098aee7bf2eb87e12d23f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/css_urls.ts": "aab446be75151a054524f8f913809dca722bf1da40c174745688208d8513ff53",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/data_values.ts": "589eb8299f7e767a10c2f2c4b9ef03ca9e79ba232b7f22fd151be9d1d68e1dc0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/date.ts": "3eb0b0e2ea15a95cdfe737be70cd4f48cbe49401928cb04c25a230f411ab2478",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/dom.ts": "fffb0c0c3ae613282e0447c3e4c122a62f44c776771d525a0ca09759883b4b9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/dom_links.ts": "f4a197edd4a77b504e82d097613b02684fb5ba73cd415608b913bc658e6ddb28",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/log.ts": "5182c632d38f4df39ba224b35f659229a21a0c0bae5162a1ad25b8189776830b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/lume_config.ts": "70ae5b1a8e6dddfc9fe516dc46c712aabf67f7a77d94a7d3bb16740d7c98f4ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/merge_data.ts": "4ac5067e5b2ff3ba88ef2e009ee718e512aeb097a28f785b8bc733cb8805251c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/object.ts": "70f4d7b289478810499e5631cb9458e2961db12b5caa51ec34f87b6b5f6d4674",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/page_url.ts": "fb2590298489a5afa3caa6f9c72a6b32b7287df10c0174c41ee2fb4a07a541ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/path.ts": "7a1d199113928cc35782aa3262cbe6f7a4894bc262d7d300de9385b3da45602f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/read.ts": "f435e42e01ee022f50a5d1afc08b0a2a481cfa1e9c5844690939f1fdf6faf1bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/utils/tokens.ts": "201777343e716403bfb1dbbc1a988a85b8d3f12699daaacbe8bbdc3c352a57ff",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/core/writer.ts": "e8952538d57c0b587a3e9344b9b10d1b71274aca234b927b05a09c88ac3f4304",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/base64.ts": "19e9998658eeeef3e0b3e55d83cdad139c656c2e43975d879c9538ed32dfdfb1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/cli.ts": "72ed8873486903eab076bf0f0edf7b94c78206aa98dd53f6393d150cc1737d3f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/colors.ts": "963410817371ad594349da1dc042f162d5f9e739e0d2b0a1141702673b525a51",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/crypto.ts": "70046784de20c6412d0c554dc08093b4527184987126943a613ade39fa12c3eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/esbuild.ts": "08ea6541b2647f59a547223d69a0c46a4969b8297725d065f56a877ff9b8fe18",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/front_matter.ts": "f5e5780d4a0502d50cde1f42a4aa7830756dc9bd0251ba7448cecd1eaa60878f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/fs.ts": "f9ba2c0d76a3a6adc68e1d28533bed765365951746e2bfdba66c97f0b29a297a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/hex.ts": "e0a0041c47fe814cc12735e909fee21f9c6e8b708227874691e90799444e68f1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/http.ts": "fdc2edd220d2084562ea09a06ef5b937c28f29e4023febbad8843ed82022a198",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/lightningcss.ts": "19f090ee781028aacd9817f204972b162c065e4c0ea99e24935eb489d2aadfd6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/minify_html.ts": "4dff2674ed8b4d068a487c46c5f222e910869e21db62f6dc5dc93cff89be30eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/sharp.ts": "9ca04f2007e969208bf4f16a6f51754dadff8e1a5500df3a7934aed5ed184e2b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/streams.ts": "e78fdd0a968390117fb3d6bd83de09b72f54eec27d8ef873aea9ad03c1087c3b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/tailwindcss.ts": "cf0992c5c0b8681e94eb9be1d6eb928021ea9bd44d7d1a6f7612d4ae14a753d4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/toml.ts": "6cada3f115f55f1a7a234b13156535a6de145f7efac75251e2aed2d6f574e5fa",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/vento.ts": "52abaab33bf360365323bf4c2b1ddcf3aee604146470e917729575271eb7b8a2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/middlewares/not_found.ts": "c5916a6788d570647814bdd0daefbdeaf544878176acd3e84c231a0f02407ca7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/middlewares/reload.ts": "309cdeca7db2e9dde64e8bb2a3aa2885f81cfcfbd51d629205763ef93642ab88",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/middlewares/reload_client.js": "03ee388dcfd74a597fc71971c9ab6dbd69e87ab5047e591444e353fcc2141165",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/mod.ts": "4ed2edf622df6109304095952f8a02844f5abc2992b6c9886af632b058f1a8f4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/feed.ts": "b07aed4cda270cfaacb26f9974dbb962f936dbfde4d770c53e478e4682c791e1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/google_fonts.ts": "c92eaa60e62b34befbf6f9e8027e0fd4d7ab655778646ff1202044707a18dee9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/gzip.ts": "0026c36672db566ebc7dc0d48d0b94ad21063c9b7ebf691ab9d78aa62ed88784",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/lightningcss.ts": "8d35daf87e28c6c59ee3428cf93db5e87007d7f816c57a3d0bcd3a1fc998e327",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/metas.ts": "ecaf7a634b2293442324afe4f5b378e1757784937af4a091710209b6cbebf399",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/minify_html.ts": "5ffde4af62c6adf465c7f0f31c2eff40c90d20660842b397abc3241d3abc5cea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/modify_urls.ts": "9c1b7cc856038d46b64f395065d2852f9b4af94ef9a41c2e9e3021d448b1d3b6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/picture.ts": "c2ce2c0815cc5ad7c0f28f1b11df7c82c8b8d6f85dec9bd3b5ac59fb14fb559d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/reading_info.ts": "b43ea47c4d972599714b0ec595c2f6be566510c5c670ba7d56d5b5ffee36cd8d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/resolve_urls.ts": "910dbccd25fcacacc72d577a3df37c5f3cc4adce0ec52b2fc8903863c2e2afae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/sitemap.ts": "cd14078374b24416fcaa6ea6af586dc12ef048079fafb21d8ee1c50d25f1f5d1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/slugify_urls.ts": "ec2a78b13f094d99c90d1789149d98a60ea39297cbdc1d514fd267d8c8a42b85",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/source_maps.ts": "490efa0e103d9133078117f6e855b4b1351292f562c75bda5f3240d45dacbe52",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/svgo.ts": "8c3098ada9d4aeeffd0b34b42e35c750bc7db1b36be45596dce0acd39da2077c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/tailwindcss.ts": "57efc565dee3018c462efa37484bb6c619a3008de8dd77fd9456fdd0a3eb30ca",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/transform_images.ts": "ad7f921eaebc9056204d339ed81b92820148bc6941f3235f6b9bea1ea7f0c457",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/vento.ts": "d74100c7168d49b3817559792c9a8fd1d380b3244051d92dfebc7531cb8b7665",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@0f13c4113b5c38c458d930151855d93e7b044941/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/build_worker.ts": "a13a9aa75d85c79768f18d95d8d7b17d5fb7cce0ca4c665fdb76a5f255e575a9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/cli/utils.ts": "8fcc2d3d8003e4b651201ef2e343209c6a752959b5acb0da7038d132e9097ef2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/cache.ts": "a6df9d9208b2276fa9269fec8f5c8ae2d48fc373af537414d8b57e5505ead9d0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/components.ts": "78c684e0786e745caf6a4c746f183027a1dcd6cb327651c0e95f3d3510593221",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/file.ts": "5dee345b3a5a2039d305602dda44c9b55db15a76f824ef021864736ec3915633",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/fs.ts": "22d77101afaef582f18cf1619bb9eed7fd5cd0b3ce840588a53432fcd90cd8af",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/processors.ts": "0f4eef7e2dc44ef8eea1b8ab1fcc0dc577b0d3c47f800a8482379db7d94241a8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/renderer.ts": "49ea50b6f089c307fe6d4b07713dd81500f54e22f117a5c68b4366c11f379aa5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/searcher.ts": "9093c2c64d1190b55a886b2905a224e0cbf86532bea4883e065e391851a8f14c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/server.ts": "19cdd234f18c601d8386c7aa6d589616ce367fc571a96d4715f220a522e17ae8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/site.ts": "fcc6acc7210bbf96875ddd719388e55c6ac55a945e91475cf3a22468313238bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/slugifier.ts": "3cb058f841f6eba1862f70f43e21de591af99cc6efacd9bb11dc0dbbab9eb703",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/source.ts": "a8968859d500d2eaee3f2f2b861bf29ddea3af67450098aee7bf2eb87e12d23f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/css_urls.ts": "aab446be75151a054524f8f913809dca722bf1da40c174745688208d8513ff53",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/data_values.ts": "ff6866d0c61bdca40c6ba98826ccc8626d8a553d4f8f4a7d320041eea21aa900",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/date.ts": "3eb0b0e2ea15a95cdfe737be70cd4f48cbe49401928cb04c25a230f411ab2478",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/dom.ts": "fffb0c0c3ae613282e0447c3e4c122a62f44c776771d525a0ca09759883b4b9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/dom_links.ts": "f4a197edd4a77b504e82d097613b02684fb5ba73cd415608b913bc658e6ddb28",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/log.ts": "fcd238217bd6939a6f924b786c59e8c704f69858f7d682b14471cc49f07316c3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/lume_config.ts": "7552a61a87fdf70401522f50e601d8cf032f100fcbfffc7e3022d72f49279303",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/merge_data.ts": "4ac5067e5b2ff3ba88ef2e009ee718e512aeb097a28f785b8bc733cb8805251c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/object.ts": "70f4d7b289478810499e5631cb9458e2961db12b5caa51ec34f87b6b5f6d4674",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/page_url.ts": "fb2590298489a5afa3caa6f9c72a6b32b7287df10c0174c41ee2fb4a07a541ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/path.ts": "7a1d199113928cc35782aa3262cbe6f7a4894bc262d7d300de9385b3da45602f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/read.ts": "f435e42e01ee022f50a5d1afc08b0a2a481cfa1e9c5844690939f1fdf6faf1bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/utils/tokens.ts": "201777343e716403bfb1dbbc1a988a85b8d3f12699daaacbe8bbdc3c352a57ff",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/core/writer.ts": "e8952538d57c0b587a3e9344b9b10d1b71274aca234b927b05a09c88ac3f4304",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/base64.ts": "19e9998658eeeef3e0b3e55d83cdad139c656c2e43975d879c9538ed32dfdfb1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/cli.ts": "72ed8873486903eab076bf0f0edf7b94c78206aa98dd53f6393d150cc1737d3f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/colors.ts": "963410817371ad594349da1dc042f162d5f9e739e0d2b0a1141702673b525a51",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/crypto.ts": "70046784de20c6412d0c554dc08093b4527184987126943a613ade39fa12c3eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/esbuild.ts": "08ea6541b2647f59a547223d69a0c46a4969b8297725d065f56a877ff9b8fe18",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/front_matter.ts": "f5e5780d4a0502d50cde1f42a4aa7830756dc9bd0251ba7448cecd1eaa60878f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/fs.ts": "f9ba2c0d76a3a6adc68e1d28533bed765365951746e2bfdba66c97f0b29a297a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/hex.ts": "e0a0041c47fe814cc12735e909fee21f9c6e8b708227874691e90799444e68f1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/http.ts": "fdc2edd220d2084562ea09a06ef5b937c28f29e4023febbad8843ed82022a198",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/lightningcss.ts": "19f090ee781028aacd9817f204972b162c065e4c0ea99e24935eb489d2aadfd6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/minify_html.ts": "4dff2674ed8b4d068a487c46c5f222e910869e21db62f6dc5dc93cff89be30eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/sharp.ts": "9ca04f2007e969208bf4f16a6f51754dadff8e1a5500df3a7934aed5ed184e2b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/streams.ts": "e78fdd0a968390117fb3d6bd83de09b72f54eec27d8ef873aea9ad03c1087c3b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/tailwindcss.ts": "cf0992c5c0b8681e94eb9be1d6eb928021ea9bd44d7d1a6f7612d4ae14a753d4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/toml.ts": "6cada3f115f55f1a7a234b13156535a6de145f7efac75251e2aed2d6f574e5fa",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/vento.ts": "52abaab33bf360365323bf4c2b1ddcf3aee604146470e917729575271eb7b8a2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/not_found.ts": "c5916a6788d570647814bdd0daefbdeaf544878176acd3e84c231a0f02407ca7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/reload.ts": "98d9f9e1d2337f1c6c62e8210019ec3c327ac94af4929ee0d25b35e8cff42cd5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/middlewares/reload_client.js": "eb06101148db8499240bdb910167eb25d13e7d7273f60b140ab9c2d4e55490a1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/mod.ts": "4ed2edf622df6109304095952f8a02844f5abc2992b6c9886af632b058f1a8f4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/feed.ts": "435353560e83412e6feb6d868fec30c0fb81d0433fe4720b55b80156b781fbb7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/google_fonts.ts": "b45216dd0b6d857f03b58c5641f8adfc872f39f727a29c99e285b046bf835db5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/gzip.ts": "0026c36672db566ebc7dc0d48d0b94ad21063c9b7ebf691ab9d78aa62ed88784",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/lightningcss.ts": "504b893a02c7564a12d274aa2957c5060d44f630120853d37344348b4e5b56a3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/metas.ts": "ecaf7a634b2293442324afe4f5b378e1757784937af4a091710209b6cbebf399",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/minify_html.ts": "5ffde4af62c6adf465c7f0f31c2eff40c90d20660842b397abc3241d3abc5cea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/modify_urls.ts": "9c1b7cc856038d46b64f395065d2852f9b4af94ef9a41c2e9e3021d448b1d3b6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/picture.ts": "bbe17dbb3494e0a342be1c9685739797f1bf4c93ff55d4a9258c91a5b793868c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/reading_info.ts": "b43ea47c4d972599714b0ec595c2f6be566510c5c670ba7d56d5b5ffee36cd8d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/resolve_urls.ts": "910dbccd25fcacacc72d577a3df37c5f3cc4adce0ec52b2fc8903863c2e2afae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/sitemap.ts": "cd14078374b24416fcaa6ea6af586dc12ef048079fafb21d8ee1c50d25f1f5d1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/slugify_urls.ts": "ec2a78b13f094d99c90d1789149d98a60ea39297cbdc1d514fd267d8c8a42b85",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/source_maps.ts": "a04dc9939040800e64e37031d8dc7c58e8ffff026a8447c37fc715f8978712d8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/svgo.ts": "e22a4998b3793e1b583a1290bd8bf2b8f37b8df5d7014f45a629a5547440c24d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/tailwindcss.ts": "7cb3b1a183d062533711196657c0f456106fa1d44e6b69c92ad487692b2e0d98",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/transform_images.ts": "000e8ceb653ab399a0a2bd9b152e599994ed8a517c5bb129f710bae3fe7ebd30",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/vento.ts": "34403bdb7a01b712f0b3a48a4e601387ac73668b145557d7150c3f3e54dd75e8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@24fa52c6b4a3f7e83c434ce52baa75127a192e6a/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/build_worker.ts": "34781766980dcee3c433aaa65df138168cb163a2cbd89bac53efce167ed6bfbf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/cli/utils.ts": "8fcc2d3d8003e4b651201ef2e343209c6a752959b5acb0da7038d132e9097ef2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/cache.ts": "a6df9d9208b2276fa9269fec8f5c8ae2d48fc373af537414d8b57e5505ead9d0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/components.ts": "78c684e0786e745caf6a4c746f183027a1dcd6cb327651c0e95f3d3510593221",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/debugbar.ts": "db2d8eb01b61171ff642bf1a8393f96fa0b279dd54df85de733b287ef5d4ce88",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/file.ts": "dd75602565b746b61ff4baf1d6624a2a60bc240fd3718143510d7f7111679c22",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/fs.ts": "22d77101afaef582f18cf1619bb9eed7fd5cd0b3ce840588a53432fcd90cd8af",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/processors.ts": "0f4eef7e2dc44ef8eea1b8ab1fcc0dc577b0d3c47f800a8482379db7d94241a8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/renderer.ts": "5e9ca876833fc0d593e41228e556313aacae86070ebfcc514a0b8dd605fe62ef",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/searcher.ts": "19530e0149ca925334f98052863a52cdfbbeea9977342b209829999a34e816a6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/server.ts": "19cdd234f18c601d8386c7aa6d589616ce367fc571a96d4715f220a522e17ae8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/site.ts": "3f36b7eb1397194e222389673d20063096233f40280d54cc9975e1923e80ef39",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/slugifier.ts": "3cb058f841f6eba1862f70f43e21de591af99cc6efacd9bb11dc0dbbab9eb703",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/source.ts": "a8968859d500d2eaee3f2f2b861bf29ddea3af67450098aee7bf2eb87e12d23f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/css_urls.ts": "aab446be75151a054524f8f913809dca722bf1da40c174745688208d8513ff53",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/data_values.ts": "589eb8299f7e767a10c2f2c4b9ef03ca9e79ba232b7f22fd151be9d1d68e1dc0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/date.ts": "3eb0b0e2ea15a95cdfe737be70cd4f48cbe49401928cb04c25a230f411ab2478",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/dom.ts": "fffb0c0c3ae613282e0447c3e4c122a62f44c776771d525a0ca09759883b4b9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/dom_links.ts": "f4a197edd4a77b504e82d097613b02684fb5ba73cd415608b913bc658e6ddb28",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/log.ts": "c04403c5fd81bc8c065f86251d233d7869a5730a777898fc62150b8ed44a43b9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/lume_config.ts": "70ae5b1a8e6dddfc9fe516dc46c712aabf67f7a77d94a7d3bb16740d7c98f4ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/merge_data.ts": "4ac5067e5b2ff3ba88ef2e009ee718e512aeb097a28f785b8bc733cb8805251c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/object.ts": "70f4d7b289478810499e5631cb9458e2961db12b5caa51ec34f87b6b5f6d4674",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/page_url.ts": "fb2590298489a5afa3caa6f9c72a6b32b7287df10c0174c41ee2fb4a07a541ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/path.ts": "7a1d199113928cc35782aa3262cbe6f7a4894bc262d7d300de9385b3da45602f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/read.ts": "f435e42e01ee022f50a5d1afc08b0a2a481cfa1e9c5844690939f1fdf6faf1bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/utils/tokens.ts": "201777343e716403bfb1dbbc1a988a85b8d3f12699daaacbe8bbdc3c352a57ff",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/core/writer.ts": "e8952538d57c0b587a3e9344b9b10d1b71274aca234b927b05a09c88ac3f4304",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/base64.ts": "19e9998658eeeef3e0b3e55d83cdad139c656c2e43975d879c9538ed32dfdfb1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/cli.ts": "72ed8873486903eab076bf0f0edf7b94c78206aa98dd53f6393d150cc1737d3f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/colors.ts": "963410817371ad594349da1dc042f162d5f9e739e0d2b0a1141702673b525a51",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/crypto.ts": "70046784de20c6412d0c554dc08093b4527184987126943a613ade39fa12c3eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/esbuild.ts": "08ea6541b2647f59a547223d69a0c46a4969b8297725d065f56a877ff9b8fe18",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/front_matter.ts": "f5e5780d4a0502d50cde1f42a4aa7830756dc9bd0251ba7448cecd1eaa60878f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/fs.ts": "f9ba2c0d76a3a6adc68e1d28533bed765365951746e2bfdba66c97f0b29a297a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/hex.ts": "e0a0041c47fe814cc12735e909fee21f9c6e8b708227874691e90799444e68f1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/http.ts": "fdc2edd220d2084562ea09a06ef5b937c28f29e4023febbad8843ed82022a198",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/lightningcss.ts": "19f090ee781028aacd9817f204972b162c065e4c0ea99e24935eb489d2aadfd6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/minify_html.ts": "4dff2674ed8b4d068a487c46c5f222e910869e21db62f6dc5dc93cff89be30eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/sharp.ts": "9ca04f2007e969208bf4f16a6f51754dadff8e1a5500df3a7934aed5ed184e2b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/streams.ts": "e78fdd0a968390117fb3d6bd83de09b72f54eec27d8ef873aea9ad03c1087c3b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/tailwindcss.ts": "cf0992c5c0b8681e94eb9be1d6eb928021ea9bd44d7d1a6f7612d4ae14a753d4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/toml.ts": "6cada3f115f55f1a7a234b13156535a6de145f7efac75251e2aed2d6f574e5fa",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/vento.ts": "52abaab33bf360365323bf4c2b1ddcf3aee604146470e917729575271eb7b8a2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/lint.ts": "1b2d74e52e36d6f17d765ca0b934178fe18589b82f12bcb7147e2cd800df7057",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/not_found.ts": "c5916a6788d570647814bdd0daefbdeaf544878176acd3e84c231a0f02407ca7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/reload.ts": "309cdeca7db2e9dde64e8bb2a3aa2885f81cfcfbd51d629205763ef93642ab88",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/middlewares/reload_client.js": "30bb4d057ee2b88799bb28329d03d97dee6cc6c565fc811fa6da13e8acae0511",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/mod.ts": "4ed2edf622df6109304095952f8a02844f5abc2992b6c9886af632b058f1a8f4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/feed.ts": "435353560e83412e6feb6d868fec30c0fb81d0433fe4720b55b80156b781fbb7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/google_fonts.ts": "b45216dd0b6d857f03b58c5641f8adfc872f39f727a29c99e285b046bf835db5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/gzip.ts": "0026c36672db566ebc7dc0d48d0b94ad21063c9b7ebf691ab9d78aa62ed88784",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/lightningcss.ts": "504b893a02c7564a12d274aa2957c5060d44f630120853d37344348b4e5b56a3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/metas.ts": "ecaf7a634b2293442324afe4f5b378e1757784937af4a091710209b6cbebf399",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/minify_html.ts": "5ffde4af62c6adf465c7f0f31c2eff40c90d20660842b397abc3241d3abc5cea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/modify_urls.ts": "9c1b7cc856038d46b64f395065d2852f9b4af94ef9a41c2e9e3021d448b1d3b6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/picture.ts": "bbe17dbb3494e0a342be1c9685739797f1bf4c93ff55d4a9258c91a5b793868c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/reading_info.ts": "b43ea47c4d972599714b0ec595c2f6be566510c5c670ba7d56d5b5ffee36cd8d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/resolve_urls.ts": "910dbccd25fcacacc72d577a3df37c5f3cc4adce0ec52b2fc8903863c2e2afae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/sitemap.ts": "cd14078374b24416fcaa6ea6af586dc12ef048079fafb21d8ee1c50d25f1f5d1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/slugify_urls.ts": "ec2a78b13f094d99c90d1789149d98a60ea39297cbdc1d514fd267d8c8a42b85",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/source_maps.ts": "a04dc9939040800e64e37031d8dc7c58e8ffff026a8447c37fc715f8978712d8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/svgo.ts": "e22a4998b3793e1b583a1290bd8bf2b8f37b8df5d7014f45a629a5547440c24d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/tailwindcss.ts": "7cb3b1a183d062533711196657c0f456106fa1d44e6b69c92ad487692b2e0d98",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/transform_images.ts": "7c715aa54fdf6629f46816501e7e80cdbbbf67fe8b908c601d66a6b1277eff75",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/vento.ts": "34403bdb7a01b712f0b3a48a4e601387ac73668b145557d7150c3f3e54dd75e8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@68fe70cf3134619d17b82b323af032b0abc10531/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli/build_worker.ts": "34781766980dcee3c433aaa65df138168cb163a2cbd89bac53efce167ed6bfbf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/cli/utils.ts": "8fcc2d3d8003e4b651201ef2e343209c6a752959b5acb0da7038d132e9097ef2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/cache.ts": "a6df9d9208b2276fa9269fec8f5c8ae2d48fc373af537414d8b57e5505ead9d0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/components.ts": "e5b0d2aca8e630735534a4cb781802fe9c194c3be4e1010c0abe73617c607d84",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/debugbar.ts": "1f317b5ce7a14ae6a60fb907bf4ce2bcab1c30e0e68b767e2fa93bced57563fd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/file.ts": "7006371e0962c74e5519142d432284065eff8009c051df2ce064ca8b19d9a7b9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/fs.ts": "22d77101afaef582f18cf1619bb9eed7fd5cd0b3ce840588a53432fcd90cd8af",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/loaders/json.ts": "ae28e711196215ca2772e9e31f2646ff4c3cf3f66ae75bf8cbcab94de5dbd24f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/processors.ts": "047a87b0c9a0377ef15daaf1b671a29d541e4bb744c152f02a5c4f0a80fbbb64",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/renderer.ts": "8c69046aa0fdc51fddbbd36c02aeb9b2226a5853f4ae8aeb549c17c43af13e88",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/searcher.ts": "19530e0149ca925334f98052863a52cdfbbeea9977342b209829999a34e816a6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/server.ts": "19cdd234f18c601d8386c7aa6d589616ce367fc571a96d4715f220a522e17ae8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/site.ts": "201f6745c2ed3bd0c26548c51768f8c676bd46774c1170aa4badcd7369fecbcf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/slugifier.ts": "614c35473ea6a5b91b70a0cbd0df87c137e6572cf154cb3e1c5e514f520f9676",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/source.ts": "d4dbe91058369ffaf23778da7e8d8287234f3901eed378accb7933e76529a216",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/browsers.ts": "f668e129d6b969663f736d1759b0544577e0ea609727d1009bf8d6e3ec9eef3e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/css_urls.ts": "aab446be75151a054524f8f913809dca722bf1da40c174745688208d8513ff53",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/data_values.ts": "589eb8299f7e767a10c2f2c4b9ef03ca9e79ba232b7f22fd151be9d1d68e1dc0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/date.ts": "3eb0b0e2ea15a95cdfe737be70cd4f48cbe49401928cb04c25a230f411ab2478",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/dom.ts": "fffb0c0c3ae613282e0447c3e4c122a62f44c776771d525a0ca09759883b4b9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/dom_links.ts": "f4a197edd4a77b504e82d097613b02684fb5ba73cd415608b913bc658e6ddb28",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/env.ts": "9d0d859303e8cb799d122088f077c54b85258763f2541313be3bf66b58ce33a3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/format.ts": "bad71315eefd5ad0413841bbe5e8406d636d58d3ed3ef48674655b3a21a0aab0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/log.ts": "9652d9b7a78fa61d667b6749a35ea02a00927b541d6d4d72e7f3de1881101bde",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/lume_config.ts": "3715adca952a4c6054b0f4a25792859ae683a85b11c225b36d027ac26baabe95",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/merge_data.ts": "4ac5067e5b2ff3ba88ef2e009ee718e512aeb097a28f785b8bc733cb8805251c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/object.ts": "70f4d7b289478810499e5631cb9458e2961db12b5caa51ec34f87b6b5f6d4674",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/page_url.ts": "fb2590298489a5afa3caa6f9c72a6b32b7287df10c0174c41ee2fb4a07a541ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/path.ts": "7a1d199113928cc35782aa3262cbe6f7a4894bc262d7d300de9385b3da45602f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/read.ts": "f435e42e01ee022f50a5d1afc08b0a2a481cfa1e9c5844690939f1fdf6faf1bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/utils/tokens.ts": "201777343e716403bfb1dbbc1a988a85b8d3f12699daaacbe8bbdc3c352a57ff",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/watcher.ts": "1669b186143b275016d97baecd4f210207a67f54fc78a364da79a4d5022c1b59",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/core/writer.ts": "e8952538d57c0b587a3e9344b9b10d1b71274aca234b927b05a09c88ac3f4304",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/base64.ts": "c7b786540e9f348726e6c6f3ba00866328463f7323ebd02d91c6bc7b125e19b0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/cli.ts": "68432a318c0d1131efafa0d042b82d5f01bab4df2038428eac950b1112b54d44",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/colors.ts": "01c038ca4f8ad503ae0c81338223e3e9e1cbcaf0a14cc12bb6cd6c12f249df98",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/crypto.ts": "0939b1e974472d1db1d611b4160a5a51d796da1368289277d2e26803243959d5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/debugbar.ts": "17e47ca0b2fbdcb57ec56d8abaa6adaa060e5aedb3eb7ac60e3cee5f5c76c611",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/dom.ts": "fc1699465615031d79deac25057ba6dca5b85876d8759c1738bc266d19118cc4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/esbuild.ts": "38585349e52c2e2771e32d88717b062ab3f88df3d7d01be2c877fe34e4c176a4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/front_matter.ts": "f5e5780d4a0502d50cde1f42a4aa7830756dc9bd0251ba7448cecd1eaa60878f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/fs.ts": "95fbbfe19afd419842d0c36f0f480f1ec0e027a3310a389ef79e6cf2baf5aa27",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/hex.ts": "828718f24a780ff3ade8d0a8a5b57497cb31c257560ef12af99b6eb1a31e3bbd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/http.ts": "351273c383d7b180332cca0343799075d15b830530c1d2e44f26e7d746d09fed",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/jsonc.ts": "79f0eddc3c9e593310eb8e5918eb1506b1c7d7816e4ecb96894f634ecbe626ff",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/lightningcss.ts": "5f5167c6eb306ef759f0043f8f33f2eaf63c69210aa1aa837505e990ee619c46",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/minify_html.ts": "4dff2674ed8b4d068a487c46c5f222e910869e21db62f6dc5dc93cff89be30eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/path.ts": "694822db2e75db402af9ef4dc451c1ed3232c108a54c0a394e9bbd6eac952a6c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/remove-markdown.ts": "e304dcdd2c1042a1de5b2df53c9c8c39f4462307f95d13e4b2fa1ded26851013",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/sharp.ts": "7992230874d7ce02308fa0bd39096c1a38a87d1fbd4324aa9b39bd60dd7f19b2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/streams.ts": "f1a51d8add43f42977de70dc915a13719ca955f27e084bdb1b77ca8d43b4a694",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/svgo.ts": "fb77b7afea07dc9e3e3f335bff1847f790ab794b9ad11537cbb04a90b17ae4fb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/tailwindcss.ts": "1ff01644065adbc14b01b6cf5c167c7451ec87125aecdff7c122a845683179c9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/toml.ts": "d3467ce8d50cf04744256929e9c5be23b9a7ec4112432de4a0ea90a2c93c0e1b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/vento.ts": "75b591df43212d319a5b4fc572330fd1ed54d1f4889090b1e94608ccca284bfc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/xml.ts": "9bdab076e6e859b7bfb76a36503674b5f2fb6fa39a5f75f0d2ae3ee2bc9111a2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/deps/yaml.ts": "c39763fe8d32897c6429ea37de02809bced924e2588ba902c95c3b2c2fed1b5d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/lint.ts": "4b369361e0cff20a8dfd9e3ff8cb642aa805e7532825ea3a5378eb1f80901fc6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/middlewares/not_found.ts": "0f92cd91239444247a1c3dce1bed4e978445687ca76f544a0ccd483a352f761a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/middlewares/reload.ts": "4ebe51dea8fc471ab248b6b8a68ef2bef75baaa01a5577cb298413e414d86d18",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/middlewares/reload_client.js": "9026da20a25fe58ad36233539ada3f38d56d935c5b0c1c69b7fcd21511efadee",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/mod.ts": "4ed2edf622df6109304095952f8a02844f5abc2992b6c9886af632b058f1a8f4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/brotli.ts": "a593602afc7fdfa79dab6c28f8e9e7fe6eb926f33a101e5684398d51cdf4ac66",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/feed.ts": "21414e0e067598e59eddc378bd4d6e7c724b3123243575287fe8a38b5184f1f6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/google_fonts.ts": "4fa4e743721e2de423f316d13ba2c5990f69648733c8bb049cd0fba41a05b9bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/gzip.ts": "7f47580b051d6c4659ca06012793f3816833a99df859518cfdc12015a23cac58",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/lightningcss.ts": "d5c0ab69d782df21232dfc6b395252cbbcafc1deba030dea454ca4da423e4e4d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/metas.ts": "1e5826aadd5856af0c28a34e2f5580c718aa6cee6e7d7c63835e7c22467dc310",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/minify_html.ts": "5ea00fdc8622f9379c99c9618d6e3c7eb2d5e03559a3a8fcc0090fa8ab059d84",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/modify_urls.ts": "ddead1740f1c38a692586065e4e770085c9697cd103ab8865c260841f16010d8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/picture.ts": "7cfa6bff4e4432b8dfb90d13108249adb71a02a6c76fbffd8b372d1516bcfae4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/reading_info.ts": "c73a25c756ec75faba76b913a5170fedb8ed9338d17f9d34834f790d26c32bc2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/resolve_urls.ts": "910dbccd25fcacacc72d577a3df37c5f3cc4adce0ec52b2fc8903863c2e2afae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/robots.ts": "8fe0e4aeba1b28d7f8e4810b1f8bc3f71e0fdb93b3108ebdcd4299e1ea66f18e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/sitemap.ts": "217bca8ee867900c3a1037c03353df2293ac6781448cf311a9179da46db8644c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/slugify_urls.ts": "caec9df61b72da5641c69a38ff814eae4b2f69459a08753e7f7d1ca47f798d8a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/source_maps.ts": "10afd5d8617003ed68db9895bc13e57d1742697fa55657e27efd535da6e52c34",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/svgo.ts": "046fdbd6e471f9b6b06267afba6160b183e030c257df973f2dd8f594e7367f0b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/tailwindcss.ts": "5bb346053d22f87b62cedabee59fa8b1b03d4304806f572f11d4e65b8e0d1a42",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/transform_images.ts": "577c793870c89427ced408b2beaf0d90f61e843dc67f07b046cdce72a6a7841d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/vento.ts": "908ffbf31864507afa72c506584f2d28c2449b57a339ddfe8a7220eecf082766",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@79f08f0d4911c0ce065f7277dfa17792634deb53/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/build_worker.ts": "34781766980dcee3c433aaa65df138168cb163a2cbd89bac53efce167ed6bfbf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/cli/utils.ts": "8fcc2d3d8003e4b651201ef2e343209c6a752959b5acb0da7038d132e9097ef2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/cache.ts": "a6df9d9208b2276fa9269fec8f5c8ae2d48fc373af537414d8b57e5505ead9d0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/components.ts": "78c684e0786e745caf6a4c746f183027a1dcd6cb327651c0e95f3d3510593221",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/debugbar.ts": "85d52c5bcd7f5ef5213e9ab7730f5f5a30a9a59db361e517fae5dfe4f13766c0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/file.ts": "dd75602565b746b61ff4baf1d6624a2a60bc240fd3718143510d7f7111679c22",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/fs.ts": "22d77101afaef582f18cf1619bb9eed7fd5cd0b3ce840588a53432fcd90cd8af",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/processors.ts": "0f4eef7e2dc44ef8eea1b8ab1fcc0dc577b0d3c47f800a8482379db7d94241a8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/renderer.ts": "5e9ca876833fc0d593e41228e556313aacae86070ebfcc514a0b8dd605fe62ef",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/searcher.ts": "19530e0149ca925334f98052863a52cdfbbeea9977342b209829999a34e816a6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/server.ts": "19cdd234f18c601d8386c7aa6d589616ce367fc571a96d4715f220a522e17ae8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/site.ts": "95c194b432fb301cba8722a9e37a9153d0a52ee66e7773433915010fa93d44d9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/slugifier.ts": "3cb058f841f6eba1862f70f43e21de591af99cc6efacd9bb11dc0dbbab9eb703",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/source.ts": "a8968859d500d2eaee3f2f2b861bf29ddea3af67450098aee7bf2eb87e12d23f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/css_urls.ts": "aab446be75151a054524f8f913809dca722bf1da40c174745688208d8513ff53",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/data_values.ts": "589eb8299f7e767a10c2f2c4b9ef03ca9e79ba232b7f22fd151be9d1d68e1dc0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/date.ts": "3eb0b0e2ea15a95cdfe737be70cd4f48cbe49401928cb04c25a230f411ab2478",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/dom.ts": "fffb0c0c3ae613282e0447c3e4c122a62f44c776771d525a0ca09759883b4b9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/dom_links.ts": "f4a197edd4a77b504e82d097613b02684fb5ba73cd415608b913bc658e6ddb28",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/log.ts": "fcd238217bd6939a6f924b786c59e8c704f69858f7d682b14471cc49f07316c3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/lume_config.ts": "70ae5b1a8e6dddfc9fe516dc46c712aabf67f7a77d94a7d3bb16740d7c98f4ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/merge_data.ts": "4ac5067e5b2ff3ba88ef2e009ee718e512aeb097a28f785b8bc733cb8805251c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/object.ts": "70f4d7b289478810499e5631cb9458e2961db12b5caa51ec34f87b6b5f6d4674",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/page_url.ts": "fb2590298489a5afa3caa6f9c72a6b32b7287df10c0174c41ee2fb4a07a541ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/path.ts": "7a1d199113928cc35782aa3262cbe6f7a4894bc262d7d300de9385b3da45602f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/read.ts": "f435e42e01ee022f50a5d1afc08b0a2a481cfa1e9c5844690939f1fdf6faf1bf",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/utils/tokens.ts": "201777343e716403bfb1dbbc1a988a85b8d3f12699daaacbe8bbdc3c352a57ff",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/core/writer.ts": "e8952538d57c0b587a3e9344b9b10d1b71274aca234b927b05a09c88ac3f4304",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/base64.ts": "19e9998658eeeef3e0b3e55d83cdad139c656c2e43975d879c9538ed32dfdfb1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/cli.ts": "72ed8873486903eab076bf0f0edf7b94c78206aa98dd53f6393d150cc1737d3f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/colors.ts": "963410817371ad594349da1dc042f162d5f9e739e0d2b0a1141702673b525a51",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/crypto.ts": "70046784de20c6412d0c554dc08093b4527184987126943a613ade39fa12c3eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/date.ts": "cbd4703210520fafd80daf364d9aa4180b322e88f6d01269f6002cfd10a33109",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/esbuild.ts": "08ea6541b2647f59a547223d69a0c46a4969b8297725d065f56a877ff9b8fe18",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/front_matter.ts": "f5e5780d4a0502d50cde1f42a4aa7830756dc9bd0251ba7448cecd1eaa60878f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/fs.ts": "f9ba2c0d76a3a6adc68e1d28533bed765365951746e2bfdba66c97f0b29a297a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/hex.ts": "e0a0041c47fe814cc12735e909fee21f9c6e8b708227874691e90799444e68f1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/http.ts": "fdc2edd220d2084562ea09a06ef5b937c28f29e4023febbad8843ed82022a198",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/lightningcss.ts": "19f090ee781028aacd9817f204972b162c065e4c0ea99e24935eb489d2aadfd6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/minify_html.ts": "4dff2674ed8b4d068a487c46c5f222e910869e21db62f6dc5dc93cff89be30eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/sharp.ts": "9ca04f2007e969208bf4f16a6f51754dadff8e1a5500df3a7934aed5ed184e2b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/streams.ts": "e78fdd0a968390117fb3d6bd83de09b72f54eec27d8ef873aea9ad03c1087c3b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/tailwindcss.ts": "cf0992c5c0b8681e94eb9be1d6eb928021ea9bd44d7d1a6f7612d4ae14a753d4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/toml.ts": "6cada3f115f55f1a7a234b13156535a6de145f7efac75251e2aed2d6f574e5fa",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/vento.ts": "52abaab33bf360365323bf4c2b1ddcf3aee604146470e917729575271eb7b8a2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/lint.ts": "1b2d74e52e36d6f17d765ca0b934178fe18589b82f12bcb7147e2cd800df7057",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/not_found.ts": "c5916a6788d570647814bdd0daefbdeaf544878176acd3e84c231a0f02407ca7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/reload.ts": "309cdeca7db2e9dde64e8bb2a3aa2885f81cfcfbd51d629205763ef93642ab88",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/middlewares/reload_client.js": "3712a605f695e97a7b72e86728f1aedb23e7a2fd732ae4adecf5fd6b510ab7eb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/mod.ts": "4ed2edf622df6109304095952f8a02844f5abc2992b6c9886af632b058f1a8f4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/date.ts": "cbf280a28f8aef6f2c9ab9b5234875ab5994fe68e0f977798043e056dfc9a56f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/feed.ts": "435353560e83412e6feb6d868fec30c0fb81d0433fe4720b55b80156b781fbb7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/google_fonts.ts": "b45216dd0b6d857f03b58c5641f8adfc872f39f727a29c99e285b046bf835db5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/gzip.ts": "0026c36672db566ebc7dc0d48d0b94ad21063c9b7ebf691ab9d78aa62ed88784",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/lightningcss.ts": "504b893a02c7564a12d274aa2957c5060d44f630120853d37344348b4e5b56a3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/metas.ts": "ecaf7a634b2293442324afe4f5b378e1757784937af4a091710209b6cbebf399",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/minify_html.ts": "5ffde4af62c6adf465c7f0f31c2eff40c90d20660842b397abc3241d3abc5cea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/modify_urls.ts": "9c1b7cc856038d46b64f395065d2852f9b4af94ef9a41c2e9e3021d448b1d3b6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/picture.ts": "bbe17dbb3494e0a342be1c9685739797f1bf4c93ff55d4a9258c91a5b793868c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/reading_info.ts": "b43ea47c4d972599714b0ec595c2f6be566510c5c670ba7d56d5b5ffee36cd8d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/resolve_urls.ts": "910dbccd25fcacacc72d577a3df37c5f3cc4adce0ec52b2fc8903863c2e2afae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/sitemap.ts": "cd14078374b24416fcaa6ea6af586dc12ef048079fafb21d8ee1c50d25f1f5d1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/slugify_urls.ts": "ec2a78b13f094d99c90d1789149d98a60ea39297cbdc1d514fd267d8c8a42b85",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/source_maps.ts": "a04dc9939040800e64e37031d8dc7c58e8ffff026a8447c37fc715f8978712d8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/svgo.ts": "e22a4998b3793e1b583a1290bd8bf2b8f37b8df5d7014f45a629a5547440c24d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/tailwindcss.ts": "7cb3b1a183d062533711196657c0f456106fa1d44e6b69c92ad487692b2e0d98",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/transform_images.ts": "7c715aa54fdf6629f46816501e7e80cdbbbf67fe8b908c601d66a6b1277eff75",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/vento.ts": "34403bdb7a01b712f0b3a48a4e601387ac73668b145557d7150c3f3e54dd75e8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@f9227cd040b3eabc67ca70f07f58b8d233e5d8fd/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
+
"https://cdn.jsdelivr.net/gh/oscarotero/dom@0.1.5/dom.js": "13a19df209f72e0548623233ddfd06c16ec56cb427e11bb1b174894c2c21a44c",
+
"https://cdn.jsdelivr.net/gh/oscarotero/dom@0.1.6/dom.js": "5c9cbf211e94e1fb974100e6a322779d03b2e6a6390854333fe0199878f9ca48",
"https://deno.land/std@0.159.0/encoding/ascii85.ts": "f2b9cb8da1a55b3f120d3de2e78ac993183a4fd00dfa9cb03b51cf3a75bc0baa",
"https://deno.land/std@0.170.0/_util/asserts.ts": "d0844e9b62510f89ce1f9878b046f6a57bf88f208a10304aab50efcb48365272",
"https://deno.land/std@0.170.0/_util/os.ts": "8a33345f74990e627b9dfe2de9b040004b08ea5146c7c9e8fe9a29070d193934",
···
"https://deno.land/std@0.170.0/path/posix.ts": "b859684bc4d80edfd4cad0a82371b50c716330bed51143d6dcdbe59e6278b30c",
"https://deno.land/std@0.170.0/path/separator.ts": "fe1816cb765a8068afb3e8f13ad272351c85cbc739af56dacfc7d93d710fe0f9",
"https://deno.land/std@0.170.0/path/win32.ts": "7cebd2bda6657371adc00061a1d23fdd87bcdf64b4843bb148b0b24c11b40f69",
+
"https://deno.land/std@0.224.0/assert/assert.ts": "09d30564c09de846855b7b071e62b5974b001bb72a4b797958fe0660e7849834",
+
"https://deno.land/std@0.224.0/assert/assertion_error.ts": "ba8752bd27ebc51f723702fac2f54d3e94447598f54264a6653d6413738a8917",
+
"https://deno.land/std@0.224.0/cli/parse_args.ts": "5250832fb7c544d9111e8a41ad272c016f5a53f975ef84d5a9fe5fcb70566ece",
+
"https://deno.land/std@0.224.0/fmt/colors.ts": "508563c0659dd7198ba4bbf87e97f654af3c34eb56ba790260f252ad8012e1c5",
+
"https://deno.land/std@0.224.0/fs/_get_file_info_type.ts": "da7bec18a7661dba360a1db475b826b18977582ce6fc9b25f3d4ee0403fe8cbd",
+
"https://deno.land/std@0.224.0/fs/ensure_dir.ts": "51a6279016c65d2985f8803c848e2888e206d1b510686a509fa7cc34ce59d29f",
+
"https://deno.land/std@0.224.0/jsonc/parse.ts": "06fbe10f0bb0cba684f7902bf7de5126b16eb0e5a82220c98a4b86675c7f9cff",
+
"https://deno.land/std@0.224.0/path/_common/assert_path.ts": "dbdd757a465b690b2cc72fc5fb7698c51507dec6bfafce4ca500c46b76ff7bd8",
+
"https://deno.land/std@0.224.0/path/_common/constants.ts": "dc5f8057159f4b48cd304eb3027e42f1148cf4df1fb4240774d3492b5d12ac0c",
+
"https://deno.land/std@0.224.0/path/_common/dirname.ts": "684df4aa71a04bbcc346c692c8485594fc8a90b9408dfbc26ff32cf3e0c98cc8",
+
"https://deno.land/std@0.224.0/path/_common/normalize.ts": "684df4aa71a04bbcc346c692c8485594fc8a90b9408dfbc26ff32cf3e0c98cc8",
+
"https://deno.land/std@0.224.0/path/_common/normalize_string.ts": "33edef773c2a8e242761f731adeb2bd6d683e9c69e4e3d0092985bede74f4ac3",
+
"https://deno.land/std@0.224.0/path/_common/strip_trailing_separators.ts": "7024a93447efcdcfeaa9339a98fa63ef9d53de363f1fbe9858970f1bba02655a",
+
"https://deno.land/std@0.224.0/path/posix/_util.ts": "1e3937da30f080bfc99fe45d7ed23c47dd8585c5e473b2d771380d3a6937cf9d",
+
"https://deno.land/std@0.224.0/path/posix/dirname.ts": "76cd348ffe92345711409f88d4d8561d8645353ac215c8e9c80140069bf42f00",
+
"https://deno.land/std@0.224.0/path/posix/join.ts": "7fc2cb3716aa1b863e990baf30b101d768db479e70b7313b4866a088db016f63",
+
"https://deno.land/std@0.224.0/path/posix/normalize.ts": "baeb49816a8299f90a0237d214cef46f00ba3e95c0d2ceb74205a6a584b58a91",
+
"https://deno.land/std@0.224.0/semver/_shared.ts": "5c53a675225cba9ad74ae2e17c124e333728fc2b551a13e8a32b99433b90c1c2",
+
"https://deno.land/std@0.224.0/semver/compare.ts": "7b5610c25ded57dc4aa41034ee02857d1a6fff609ab183afea17849284f86236",
+
"https://deno.land/std@0.224.0/semver/less_than.ts": "890eb36e6294d245934a33dbe6818164c4ec6fddf3aa585a590031393f781719",
+
"https://deno.land/std@0.224.0/semver/parse.ts": "94c09f3486643853e7438e64f2c6741462fbeb84cf141ad5bfe88b73ec4cb0f3",
"https://deno.land/x/brotli@0.1.7/mod.ts": "08b913e51488b6e7fa181f2814b9ad087fdb5520041db0368f8156bfa45fd73e",
"https://deno.land/x/brotli@0.1.7/wasm.js": "77771b89e89ec7ff6e3e0939a7fb4f9b166abec3504cec0532ad5c127d6f35d2",
"https://deno.land/x/cliffy@v0.25.7/_utils/distance.ts": "02af166952c7c358ac83beae397aa2fbca4ad630aecfcd38d92edb1ea429f004",
···
"https://deno.land/x/deno_dom@v0.1.49/src/dom/utils-types.ts": "96db30e3e4a75b194201bb9fa30988215da7f91b380fca6a5143e51ece2a8436",
"https://deno.land/x/deno_dom@v0.1.49/src/dom/utils.ts": "bc429635e9204051ba1ecc1b212031b5ee7c6bcd95120c91bef696804aa67e74",
"https://deno.land/x/deno_dom@v0.1.49/src/parser.ts": "e06b2300d693e6ae7564e53dfa5c9a9e97fdb8c044c39c52c8b93b5d60860be3",
+
"https://deno.land/x/deno_dom@v0.1.53/build/deno-wasm/deno-wasm.js": "567c1baaf7d3c381cb9c35937403cbaa83bdaa2ae2f4bf59230648c4e3349a0d",
+
"https://deno.land/x/deno_dom@v0.1.53/build/deno-wasm/deno-wasm_bg-wasm.js": "989a0f81b2270eb172bcaf48de4a98da2a3a3bbcf5df334e64602bc8712aec2e",
+
"https://deno.land/x/deno_dom@v0.1.53/build/deno-wasm/deno-wasm_bg.wasm": "05645f46bbdd0fb2a0f5ff759885f553919af1586c3a93fdd29393a6c2920728",
+
"https://deno.land/x/deno_dom@v0.1.53/build/deno-wasm/env.js": "17da784c11b192c591dbf7df21ec6f65f63f45ca9a713e4ca100f3c886b4023f",
+
"https://deno.land/x/deno_dom@v0.1.53/build/deno-wasm/wbg.js": "b5b6de12bc010fa23438c8a8276067b9044a405da516d0bbe4ae61b7c6d61a22",
+
"https://deno.land/x/deno_dom@v0.1.53/deno-dom-wasm.ts": "4f8ede24992eb4b3426c3930a511d9f33e4db8fe81ca8d1c63ed12f0a76ac3a4",
+
"https://deno.land/x/deno_dom@v0.1.53/src/api.ts": "0ff5790f0a3eeecb4e00b7d8fbfa319b165962cf6d0182a65ba90f158d74f7d7",
+
"https://deno.land/x/deno_dom@v0.1.53/src/constructor-lock.ts": "0e7b297e8b9cf921a3b0d3a692ec5fb462c5afc47ec554292e20090b9e16b40a",
+
"https://deno.land/x/deno_dom@v0.1.53/src/deserialize.ts": "514953418b7ae558ed7361ad9be21013f46cba2f58bd7f4acc90cf1e89f9c8cf",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/document-fragment.ts": "0b915d094830d43b330dc2fb8012b990f2c815773c6cdcd4a9fdff99fe47412e",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/document.ts": "ad584ac4ce6dce03f0ff6ef4b7db86fd598f9c7824da1387f7f2acd7d6948e4a",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/dom-parser.ts": "784ee0e766d4a01e14420f328053fd3a0016c6b40ee442edc3ae80f5d9777927",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/element.ts": "7d330192fbfd406fb67ab7a3387576fe35fec129b7c52c2ea38615144fa5b12e",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/elements/html-template-element.ts": "1707dfb4cbb145f3bcb94426d7cdedbaa336620d0afed30e99f50fe87ba24a98",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/html-collection.ts": "dcf328e883877f7748d3e20fb6319e739f297a6e24f4b00ec5b1a2f390cfa3c6",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/node-list.ts": "be9793475d82539da8b97a17b6b5538cc723538c10cc5820a23e5e4b2248845d",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/node.ts": "53ada9e4b2ae21f10f5941ff257ed4585920ae392020544648f349c05d15d30c",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/selectors/custom-api.ts": "852696bd58e534bc41bd3be9e2250b60b67cd95fd28ed16b1deff1d548531a71",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/selectors/nwsapi-types.ts": "c43b36c36acc5d32caabaa54fda8c9d239b2b0fcbce9a28efb93c84aa1021698",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/selectors/nwsapi.js": "985d7d8fc1eabbb88946b47a1c44c1b2d4aa79ff23c21424219f1528fa27a2ff",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/selectors/selectors.ts": "83eab57be2290fb48e3130533448c93c6c61239f2a2f3b85f1917f80ca0fdc75",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/selectors/sizzle-types.ts": "78149e2502409989ce861ed636b813b059e16bc267bb543e7c2b26ef43e4798b",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/selectors/sizzle.js": "c3aed60c1045a106d8e546ac2f85cc82e65f62d9af2f8f515210b9212286682a",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/string-cache.ts": "8e935804f7bac244cc70cec90a28c9f6d30fea14c61c2c4ea48fca274376d786",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/utils-types.ts": "96db30e3e4a75b194201bb9fa30988215da7f91b380fca6a5143e51ece2a8436",
+
"https://deno.land/x/deno_dom@v0.1.53/src/dom/utils.ts": "bc429635e9204051ba1ecc1b212031b5ee7c6bcd95120c91bef696804aa67e74",
+
"https://deno.land/x/deno_dom@v0.1.53/src/parser.ts": "e06b2300d693e6ae7564e53dfa5c9a9e97fdb8c044c39c52c8b93b5d60860be3",
+
"https://deno.land/x/denoflate@1.2.1/mod.ts": "f5628e44b80b3d80ed525afa2ba0f12408e3849db817d47a883b801f9ce69dd6",
+
"https://deno.land/x/denoflate@1.2.1/pkg/denoflate.js": "b9f9ad9457d3f12f28b1fb35c555f57443427f74decb403113d67364e4f2caf4",
+
"https://deno.land/x/denoflate@1.2.1/pkg/denoflate_bg.wasm.js": "d581956245407a2115a3d7e8d85a9641c032940a8e810acbd59ca86afd34d44d",
+
"https://deno.land/x/esbuild@v0.25.2/mod.js": "fde73e72559dc2932556506581bc61462cff72d0394382334500d956851cd9f5",
+
"https://deno.land/x/esbuild@v0.25.5/mod.js": "57b9635116b05e6f214dea72d7f488c13808ee1b8055d96fa5da1c0dffe890cf",
+
"https://deno.land/x/lume_init@v0.3.1/deps.ts": "51061dea0c2f1cb2a326062c6cdd531dfaa6b8c9692e7f786cef2eef709e612a",
+
"https://deno.land/x/lume_init@v0.3.1/init.ts": "051fa551fca62c4844a986a18e1e15084b6332366fbe05613a1b1399d03f8bec",
+
"https://deno.land/x/lume_init@v0.3.1/mod.ts": "8f2731c650153c640e74e693c212fe30ae32d6d55ae636397f6644b3ccc45907",
+
"https://deno.land/x/lume_init@v0.3.1/steps/cms.ts": "3544d01bb1b0e904bad22289104810792ea75a266bc50f230aebbc12c7799bc5",
+
"https://deno.land/x/lume_init@v0.3.1/steps/git.ts": "58236a061310228d6442a2d60bb670d22794c50d9cbfb22da040ac5126c8d6b6",
+
"https://deno.land/x/lume_init@v0.3.1/steps/load.ts": "30047e55ad89f8f674192eec30f2fdf3ce7dc2e39250eb75e434308570df70db",
+
"https://deno.land/x/lume_init@v0.3.1/steps/plugins.ts": "d0c916800e97c1f4664e83c3dd2c780f8e491664bc6b050a60e3f563237f77ba",
+
"https://deno.land/x/lume_init@v0.3.1/steps/save.ts": "8ae5b20ac02d43a8ab608825ad2c1f093aa2cd0099fb80da1ecc866aeea58c6f",
+
"https://deno.land/x/lume_init@v0.3.1/steps/start.ts": "8f39e47368dc2e50b3a8f5dd9e5759885d0025cecad9a35dcd4b3dc3b53a760e",
+
"https://deno.land/x/lume_init@v0.3.1/steps/success.ts": "986a3cf2f1ac795f398cf04ea3fded39266fa169e87fae61b3377be1649f04be",
+
"https://deno.land/x/lume_init@v0.3.1/steps/themes.ts": "008d9c7c9371bd73c0f86d18a46f17aa70d775181934a2d4cea3bf2cb5e466a7",
+
"https://deno.land/x/lume_init@v0.3.1/steps/update.ts": "eb3df6b218ee744eff19a0effc41b9aea5fe91aca9230636b93c3bda8d03f83c",
+
"https://deno.land/x/lume_init@v0.3.1/steps/utils.ts": "d94b4b4bb718450ed4dcffc6031035cc068df8e01927ab5881333b10804b7ac7",
+
"https://deno.land/x/lume_init@v0.3.1/upgrade.ts": "2a5ca0b4ae0db1f6771e6ec4cede420b6c267e882a38e5647bc7218fda862483",
+
"https://deno.land/x/lume_init@v0.3.4/deps.ts": "51061dea0c2f1cb2a326062c6cdd531dfaa6b8c9692e7f786cef2eef709e612a",
+
"https://deno.land/x/lume_init@v0.3.4/init.ts": "82f2b2846651a1239c7a89c9a83e7c2eb95032413b9817d267066fcabae26c9c",
+
"https://deno.land/x/lume_init@v0.3.4/mod.ts": "ddcc4f23d248649a06642498ac4c1c1d129424f8a357eb338db441d02f4cb087",
+
"https://deno.land/x/lume_init@v0.3.4/steps/cms.ts": "82935cbcaa649d4bbb3e7b2d64b4a30ea7a4d36bee3faabfc19c5bc380dd7416",
+
"https://deno.land/x/lume_init@v0.3.4/steps/git.ts": "58236a061310228d6442a2d60bb670d22794c50d9cbfb22da040ac5126c8d6b6",
+
"https://deno.land/x/lume_init@v0.3.4/steps/load.ts": "82ce37a99d1fd182c355692c7ec91f72658e81172b11bca0829e4ae4da58cdfb",
+
"https://deno.land/x/lume_init@v0.3.4/steps/plugins.ts": "f672205df3370a4b6b1338120b7fab08ac183d3ab4f5830c67252f7894abe3bd",
+
"https://deno.land/x/lume_init@v0.3.4/steps/save.ts": "91b033d3a07b1cef365ce27f5dd3925c90a3923290e2120eaec1c1c79bbc34c2",
+
"https://deno.land/x/lume_init@v0.3.4/steps/start.ts": "229b6bf89a78858237f7c1233a9666fb63484caa001d0ff8f45e389b3b0938aa",
+
"https://deno.land/x/lume_init@v0.3.4/steps/success.ts": "986a3cf2f1ac795f398cf04ea3fded39266fa169e87fae61b3377be1649f04be",
+
"https://deno.land/x/lume_init@v0.3.4/steps/themes.ts": "755f3a05078db11facdae103713d2671f27f1b9324846349cab244d7581c5f19",
+
"https://deno.land/x/lume_init@v0.3.4/steps/update.ts": "1271c0d6895dfb2acf1495a36676e4f1c454e9ba090a85bf88835e0756f26d3a",
+
"https://deno.land/x/lume_init@v0.3.4/steps/utils.ts": "fa1eba2ae29193395465022119069b322f8164c3064bbdd9e0664cb385f00e7b",
+
"https://deno.land/x/lume_init@v0.3.4/upgrade.ts": "caddf7613b93b5a92473b450b06ee9477322f31d191b583d5716a6870929a20e",
+
"https://deno.land/x/lume_init@v0.4.1/deps.ts": "51061dea0c2f1cb2a326062c6cdd531dfaa6b8c9692e7f786cef2eef709e612a",
+
"https://deno.land/x/lume_init@v0.4.1/init.ts": "82f2b2846651a1239c7a89c9a83e7c2eb95032413b9817d267066fcabae26c9c",
+
"https://deno.land/x/lume_init@v0.4.1/mod.ts": "8f2731c650153c640e74e693c212fe30ae32d6d55ae636397f6644b3ccc45907",
+
"https://deno.land/x/lume_init@v0.4.1/steps/cms.ts": "82935cbcaa649d4bbb3e7b2d64b4a30ea7a4d36bee3faabfc19c5bc380dd7416",
+
"https://deno.land/x/lume_init@v0.4.1/steps/git.ts": "58236a061310228d6442a2d60bb670d22794c50d9cbfb22da040ac5126c8d6b6",
+
"https://deno.land/x/lume_init@v0.4.1/steps/load.ts": "82ce37a99d1fd182c355692c7ec91f72658e81172b11bca0829e4ae4da58cdfb",
+
"https://deno.land/x/lume_init@v0.4.1/steps/plugins.ts": "f672205df3370a4b6b1338120b7fab08ac183d3ab4f5830c67252f7894abe3bd",
+
"https://deno.land/x/lume_init@v0.4.1/steps/save.ts": "91b033d3a07b1cef365ce27f5dd3925c90a3923290e2120eaec1c1c79bbc34c2",
+
"https://deno.land/x/lume_init@v0.4.1/steps/start.ts": "8a4b2c5c0b792110f7047315c70d26eabccd0a3b2af12eec65b7f58c886ed9cc",
+
"https://deno.land/x/lume_init@v0.4.1/steps/success.ts": "986a3cf2f1ac795f398cf04ea3fded39266fa169e87fae61b3377be1649f04be",
+
"https://deno.land/x/lume_init@v0.4.1/steps/themes.ts": "755f3a05078db11facdae103713d2671f27f1b9324846349cab244d7581c5f19",
+
"https://deno.land/x/lume_init@v0.4.1/steps/update.ts": "1271c0d6895dfb2acf1495a36676e4f1c454e9ba090a85bf88835e0756f26d3a",
+
"https://deno.land/x/lume_init@v0.4.1/steps/utils.ts": "fa1eba2ae29193395465022119069b322f8164c3064bbdd9e0664cb385f00e7b",
+
"https://deno.land/x/lume_init@v0.4.1/upgrade.ts": "2a5ca0b4ae0db1f6771e6ec4cede420b6c267e882a38e5647bc7218fda862483",
"https://deno.land/x/lume_markdown_plugins@v0.8.0/toc.ts": "1fe2769056a022303b3871fc4b7be26b7738d44a31e5fd08debd527e9dc49ecc",
"https://deno.land/x/lume_markdown_plugins@v0.8.0/toc/anchors.ts": "8a4a1c6b2c63156622695ceba57fa7100a6e5f109c9a383a1dcaf755233c8184",
"https://deno.land/x/lume_markdown_plugins@v0.8.0/toc/mod.ts": "8c7aa6e1dcfabda4264503495a3875388108cd9a5a94b54853b45a8e8cba9f78",
···
"https://deno.land/x/markdown_it_obsidian_callouts_lite@0.4.1/src/@types/index.ts": "46cd40eb4d19172a67dea39849dd3c89642345a70ef8fff4501343713fb0cad9",
"https://deno.land/x/markdown_it_obsidian_callouts_lite@0.4.1/src/index.ts": "f388a00e36a020d3e8ebad1fe60911e6fa8b001db8747a60efd11571377a22fa",
"https://deno.land/x/markdown_it_obsidian_callouts_lite@0.4.1/src/inspect.ts": "ff2eafd39916e86fbdf6c094e6cb0bf45078084d0cfeae60ce7ba869610ec857",
-
"https://deno.land/x/minify_html@0.15.0/mod.js": "0974387d0bee4646a9cb959c641c170442b0d2a6bddcb9857758636afd8676d5",
-
"https://deno.land/x/vento@v1.12.15/deps.ts": "155958dfada8d8cb3c8a001413c759928647b23e0e9db25195614549b58d085f",
-
"https://deno.land/x/vento@v1.12.15/mod.ts": "cfaac455f70af8e59aa0c03ef39b641635094225255f0fbaa76f4771e683f2ca",
-
"https://deno.land/x/vento@v1.12.15/plugins/auto_trim.ts": "503137c3f5cec20e0c491d7963b0dc310de1a6a2e74d41913bbf6475eb1c807e",
-
"https://deno.land/x/vento@v1.12.15/plugins/echo.ts": "59adb9137e736029cf18e3d95e010803c8728046d0d040702c16c4930c7b6160",
-
"https://deno.land/x/vento@v1.12.15/plugins/escape.ts": "22754819f9a8437ecb4de0df1d3513c5b92fd6be74274d344d9750811030b181",
-
"https://deno.land/x/vento@v1.12.15/plugins/export.ts": "4cda1bd2d7e28e6d23382a64a6d72e7340bef07fcbc32f604a4705c148b914f1",
-
"https://deno.land/x/vento@v1.12.15/plugins/for.ts": "7eabf1f5f4b52aa3cccafcdfcbbd808628e386b90e61527adbcf1f23e4ab1777",
-
"https://deno.land/x/vento@v1.12.15/plugins/function.ts": "24c33bf586844ff8940daac2535dcae7f5ce39b443e795ebf16a2c23694850bf",
-
"https://deno.land/x/vento@v1.12.15/plugins/if.ts": "f992b1f599be11eafaa15bf607eee467ffd4276dec145d7b73cd24c0c6920631",
-
"https://deno.land/x/vento@v1.12.15/plugins/import.ts": "c36710067e1ea4074097b139c95d001fc1a2e759e05f1346da068405657924b4",
-
"https://deno.land/x/vento@v1.12.15/plugins/include.ts": "d93d330d3df25a5cfcc34e85c3e6685214280792f3242064e50c94748acfb1f4",
-
"https://deno.land/x/vento@v1.12.15/plugins/js.ts": "68d78ef2fc7a981d1f124f2f91830135ad46fcbd4dde7d5464cb5103c9293a5e",
-
"https://deno.land/x/vento@v1.12.15/plugins/layout.ts": "da84978f0639e95e472edddc2f9837757c28113a04dbe67399087c3a4d14780e",
-
"https://deno.land/x/vento@v1.12.15/plugins/set.ts": "0938601748ab7cc5ca3bb80c97e041183ef90fd3d9819dc7546ce9079b717a6d",
-
"https://deno.land/x/vento@v1.12.15/plugins/trim.ts": "93bce5e32aac9fd1dc4e7acf0278438d710cd1f61f80ce3af719a06cca7f2e3d",
-
"https://deno.land/x/vento@v1.12.15/plugins/unescape.ts": "dd2d9dbd116b68004f11ab17c9daaf9378ee14300c2d0ec8f422df09d41462ba",
-
"https://deno.land/x/vento@v1.12.15/src/environment.ts": "34ca5c981d0a54a678d421cd80a14aeb7974a8126944782048cb26348469c3d0",
-
"https://deno.land/x/vento@v1.12.15/src/errors.ts": "18b9b674715c9c23ea5acd410381fe89df438e224c41a83d26484b1dd4520f40",
-
"https://deno.land/x/vento@v1.12.15/src/js.ts": "c4ac5e2b2cd2995523d3167c5708c424686fd30d2d3951ff965a76dbdfb74e37",
-
"https://deno.land/x/vento@v1.12.15/src/loader.ts": "c05add67f582e937ee611852075ce2cc038b5e80e3e609eef96fa5ed74a5086c",
-
"https://deno.land/x/vento@v1.12.15/src/tokenizer.ts": "127ddad02054f63b8b646e4dfbf555e1e34e9b8dcbd58d86b3729a4de95abd27",
-
"https://deno.land/x/vento@v1.12.15/src/transformer.ts": "a3f4bce5d500267bdbc1f945765bdd5430ec3dbfea4fe963a9289159dde230bd",
+
"https://deno.land/x/ssx@v0.1.10/css.ts": "39972fa9e375465b82e4fbf735dcc727acc89fdd836f93a395cfb3ccab54e7f0",
+
"https://deno.land/x/ssx@v0.1.10/html.ts": "5ad7bfd7a6a5b676b2686d406c105bbb02bea537183d95e0c04e76853a9ee155",
+
"https://deno.land/x/ssx@v0.1.10/jsx-runtime.ts": "f3d37c172698f0b0d7510c2023119264057cbc64a5602d4ca9091e80199a2abe",
+
"https://deno.land/x/ssx@v0.1.8/css.ts": "6756e74b96e3694631745ce12f80f4eb89c88940f44fbd97e4b676811bbc225c",
+
"https://deno.land/x/ssx@v0.1.8/html.ts": "26185b76f311467f1e2f93131ebb6f48b709cf6e9eefd254d95260ccaa0e1e6b",
+
"https://deno.land/x/ssx@v0.1.8/jsx-runtime.ts": "79b5c6b482b43b84bc07ef5fe0d010572de5cffa94a6eecf9aaff6f51d102df9",
+
"https://deno.land/x/ssx@v0.1.9/css.ts": "39972fa9e375465b82e4fbf735dcc727acc89fdd836f93a395cfb3ccab54e7f0",
+
"https://deno.land/x/ssx@v0.1.9/html.ts": "5ad7bfd7a6a5b676b2686d406c105bbb02bea537183d95e0c04e76853a9ee155",
+
"https://deno.land/x/ssx@v0.1.9/jsx-runtime.ts": "d0df99b2a626dbe06d0fc5d968746bb070672365f15e7fdd3b84285843af3148",
+
"https://deno.land/x/vento@v1.12.16/bare.ts": "3aa85855ad52cb60df03644a63927cb6a04c8edb5e653175ebf0332094a3cf7d",
+
"https://deno.land/x/vento@v1.12.16/deps.ts": "155958dfada8d8cb3c8a001413c759928647b23e0e9db25195614549b58d085f",
+
"https://deno.land/x/vento@v1.12.16/mod.ts": "53262793b5e0176acdec84aa9c34ed3ecb0c45cc9d396bf34a06ed4ad3d9930a",
+
"https://deno.land/x/vento@v1.12.16/plugins/auto_trim.ts": "503137c3f5cec20e0c491d7963b0dc310de1a6a2e74d41913bbf6475eb1c807e",
+
"https://deno.land/x/vento@v1.12.16/plugins/echo.ts": "59adb9137e736029cf18e3d95e010803c8728046d0d040702c16c4930c7b6160",
+
"https://deno.land/x/vento@v1.12.16/plugins/escape.ts": "22754819f9a8437ecb4de0df1d3513c5b92fd6be74274d344d9750811030b181",
+
"https://deno.land/x/vento@v1.12.16/plugins/export.ts": "4cda1bd2d7e28e6d23382a64a6d72e7340bef07fcbc32f604a4705c148b914f1",
+
"https://deno.land/x/vento@v1.12.16/plugins/for.ts": "7eabf1f5f4b52aa3cccafcdfcbbd808628e386b90e61527adbcf1f23e4ab1777",
+
"https://deno.land/x/vento@v1.12.16/plugins/function.ts": "24c33bf586844ff8940daac2535dcae7f5ce39b443e795ebf16a2c23694850bf",
+
"https://deno.land/x/vento@v1.12.16/plugins/if.ts": "f992b1f599be11eafaa15bf607eee467ffd4276dec145d7b73cd24c0c6920631",
+
"https://deno.land/x/vento@v1.12.16/plugins/import.ts": "c36710067e1ea4074097b139c95d001fc1a2e759e05f1346da068405657924b4",
+
"https://deno.land/x/vento@v1.12.16/plugins/include.ts": "d93d330d3df25a5cfcc34e85c3e6685214280792f3242064e50c94748acfb1f4",
+
"https://deno.land/x/vento@v1.12.16/plugins/js.ts": "68d78ef2fc7a981d1f124f2f91830135ad46fcbd4dde7d5464cb5103c9293a5e",
+
"https://deno.land/x/vento@v1.12.16/plugins/layout.ts": "da84978f0639e95e472edddc2f9837757c28113a04dbe67399087c3a4d14780e",
+
"https://deno.land/x/vento@v1.12.16/plugins/set.ts": "0938601748ab7cc5ca3bb80c97e041183ef90fd3d9819dc7546ce9079b717a6d",
+
"https://deno.land/x/vento@v1.12.16/plugins/trim.ts": "93bce5e32aac9fd1dc4e7acf0278438d710cd1f61f80ce3af719a06cca7f2e3d",
+
"https://deno.land/x/vento@v1.12.16/plugins/unescape.ts": "dd2d9dbd116b68004f11ab17c9daaf9378ee14300c2d0ec8f422df09d41462ba",
+
"https://deno.land/x/vento@v1.12.16/src/environment.ts": "34ca5c981d0a54a678d421cd80a14aeb7974a8126944782048cb26348469c3d0",
+
"https://deno.land/x/vento@v1.12.16/src/errors.ts": "18b9b674715c9c23ea5acd410381fe89df438e224c41a83d26484b1dd4520f40",
+
"https://deno.land/x/vento@v1.12.16/src/js.ts": "c4ac5e2b2cd2995523d3167c5708c424686fd30d2d3951ff965a76dbdfb74e37",
+
"https://deno.land/x/vento@v1.12.16/src/loader.ts": "c05add67f582e937ee611852075ce2cc038b5e80e3e609eef96fa5ed74a5086c",
+
"https://deno.land/x/vento@v1.12.16/src/tokenizer.ts": "127ddad02054f63b8b646e4dfbf555e1e34e9b8dcbd58d86b3729a4de95abd27",
+
"https://deno.land/x/vento@v1.12.16/src/transformer.ts": "9ff70c554b3889151745b5f7117bc5c02b889e6e16ca53e5b8c1fa6b767fb451",
+
"https://deno.land/x/vento@v1.14.0/bare.ts": "b6cdcc245d4626832ab3a7fb4f2885541e997d2806334d8048d39401fa63d50e",
+
"https://deno.land/x/vento@v1.14.0/deps.ts": "335313038bb45962d6b3ee54e2d2da217945a1f2f6ffc45b2fa9cdcf78f38f42",
+
"https://deno.land/x/vento@v1.14.0/mod.ts": "53262793b5e0176acdec84aa9c34ed3ecb0c45cc9d396bf34a06ed4ad3d9930a",
+
"https://deno.land/x/vento@v1.14.0/plugins/auto_trim.ts": "7deee73efbc25d6a75517074451287d9d9be97c01104d9b79eaac07b19e43c86",
+
"https://deno.land/x/vento@v1.14.0/plugins/echo.ts": "59adb9137e736029cf18e3d95e010803c8728046d0d040702c16c4930c7b6160",
+
"https://deno.land/x/vento@v1.14.0/plugins/escape.ts": "22754819f9a8437ecb4de0df1d3513c5b92fd6be74274d344d9750811030b181",
+
"https://deno.land/x/vento@v1.14.0/plugins/export.ts": "4cda1bd2d7e28e6d23382a64a6d72e7340bef07fcbc32f604a4705c148b914f1",
+
"https://deno.land/x/vento@v1.14.0/plugins/for.ts": "9863b425ed79b53119a868b044f1510a396a7d41a1e571679f06394d2a7fa9f6",
+
"https://deno.land/x/vento@v1.14.0/plugins/function.ts": "622c0bb80399f80846e036e6e53fe731a6bc589a7dc208f2b48ea5fa339eae53",
+
"https://deno.land/x/vento@v1.14.0/plugins/if.ts": "5b261b617c69a287a2dec26e2c0fb7b99c83a1923b13dfca94b54f3295ca7764",
+
"https://deno.land/x/vento@v1.14.0/plugins/import.ts": "c36710067e1ea4074097b139c95d001fc1a2e759e05f1346da068405657924b4",
+
"https://deno.land/x/vento@v1.14.0/plugins/include.ts": "d93d330d3df25a5cfcc34e85c3e6685214280792f3242064e50c94748acfb1f4",
+
"https://deno.land/x/vento@v1.14.0/plugins/js.ts": "68d78ef2fc7a981d1f124f2f91830135ad46fcbd4dde7d5464cb5103c9293a5e",
+
"https://deno.land/x/vento@v1.14.0/plugins/layout.ts": "da84978f0639e95e472edddc2f9837757c28113a04dbe67399087c3a4d14780e",
+
"https://deno.land/x/vento@v1.14.0/plugins/set.ts": "4db19b26a841a8efd57305daf3a5d795c7eb9db1b922a4a5a2b5fb3dee70088b",
+
"https://deno.land/x/vento@v1.14.0/plugins/trim.ts": "93bce5e32aac9fd1dc4e7acf0278438d710cd1f61f80ce3af719a06cca7f2e3d",
+
"https://deno.land/x/vento@v1.14.0/plugins/unescape.ts": "dd2d9dbd116b68004f11ab17c9daaf9378ee14300c2d0ec8f422df09d41462ba",
+
"https://deno.land/x/vento@v1.14.0/src/environment.ts": "92bb2a329f660ec749f53c94bf28a087411d6a4c94abfc9fdeb3e6076ddec97c",
+
"https://deno.land/x/vento@v1.14.0/src/errors.ts": "18b9b674715c9c23ea5acd410381fe89df438e224c41a83d26484b1dd4520f40",
+
"https://deno.land/x/vento@v1.14.0/src/js.ts": "071e188dbc4bf0ce0fe44132b7161c83345a353820ff000494920cce8e2fca72",
+
"https://deno.land/x/vento@v1.14.0/src/loader.ts": "a7089dea54db2b4d437e74a2d0a45341bc21763ca13f6adb60a38b524cc86255",
+
"https://deno.land/x/vento@v1.14.0/src/tokenizer.ts": "127ddad02054f63b8b646e4dfbf555e1e34e9b8dcbd58d86b3729a4de95abd27",
+
"https://deno.land/x/vento@v1.14.0/src/transformer.ts": "9ff70c554b3889151745b5f7117bc5c02b889e6e16ca53e5b8c1fa6b767fb451",
"https://deno.land/x/xml@6.0.4/mod.ts": "b59e5c0dd9fe7ed597c21c39aacf089aa82fe5c5eaad3f411a43a9c104359f4e",
"https://deno.land/x/xml@6.0.4/parse.ts": "1302c75d8fd40df39310bb8ae6716302f0b77c61c607437dc023d3d792a0df54",
"https://deno.land/x/xml@6.0.4/stringify.ts": "0e2f79798d413c5386bf5de90bbe9901f99951ceae484050a8ef89e2b4da9dd0",
-
"https://deno.land/x/xml@6.0.4/wasm_xml_parser/wasm_xml_parser.js": "0804d738e6d94284b043546260b547bb4731fbfd3b3851139740e863dabf25bd"
+
"https://deno.land/x/xml@6.0.4/wasm_xml_parser/wasm_xml_parser.js": "0804d738e6d94284b043546260b547bb4731fbfd3b3851139740e863dabf25bd",
+
"https://deno.land/x/xml@7.0.0/mod.ts": "ca2bb5a9a90d236a2b6242c8643717e0c53f645092d2407792dad728e1367f9a",
+
"https://deno.land/x/xml@7.0.0/parse.ts": "8ae0d8339f589c29ab203dd7887e06325e2064efedfe9c61e2cd6d907443b664",
+
"https://deno.land/x/xml@7.0.0/stringify.ts": "f604d3d88b8bdaff11dbc9d57a6e98fd9b353e3bfbafcaa3f421e6b470ea0e02",
+
"https://deno.land/x/xml@7.0.0/wasm_xml_parser/wasm_xml_parser.js": "960229e82be5dfc58d2d4fe47d800034f892f8f13da4492e0a95fee64050fb34"
},
"workspace": {
"dependencies": [
-
"npm:@nolebase/markdown-it-bi-directional-links@^2.15.1",
-
"npm:html-validate@9.5.2",
-
"npm:sharp@0.33.5"
+
"npm:@nolebase/markdown-it-bi-directional-links@^2.18.0",
+
"npm:accessibility-checker@^4.0.6",
+
"npm:html-validate@9.7.1",
+
"npm:sharp@0.34.3"
+9 -3
deploy.sh
···
+
#!/usr/bin/env nix
+
#! nix develop --impure --command bash
+
+
# Build site
+
deno task prod
+
COMMIT_ID=$(git rev-parse --short HEAD)
echo "Cleaning up /tmp/pages..."
···
echo "Making commit..."
git add --all
-
git commit -m "Deploying $COMMIT_ID to PyroNet Git"
+
git commit -m "Deploying $COMMIT_ID to Tangled"
-
echo "Pushing to PyroNet Git..."
-
git remote add origin "https://git.pyrox.dev/pyrox/new-blog.git"
+
echo "Pushing to Tangled..."
+
git remote add origin " git@knot.pyrox.dev:pyrox.dev/blog"
git push --force origin "pages:pages"
echo "Cleaning up tmpdir..."
+3 -3
flake.lock
···
"nodes": {
"nixpkgs": {
"locked": {
-
"lastModified": 1741865919,
-
"narHash": "sha256-4thdbnP6dlbdq+qZWTsm4ffAwoS8Tiq1YResB+RP6WE=",
+
"lastModified": 1753151930,
+
"narHash": "sha256-XSQy6wRKHhRe//iVY5lS/ZpI/Jn6crWI8fQzl647wCg=",
"owner": "nixos",
"repo": "nixpkgs",
-
"rev": "573c650e8a14b2faa0041645ab18aed7e60f0c9a",
+
"rev": "83e677f31c84212343f4cc553bab85c2efcad60a",
"type": "github"
},
"original": {
+1
flake.nix
···
runScript = "deno";
targetPkgs = pkgs: [
pkgs.deno
+
pkgs.nss
];
};
in {
+82
plugins/checkAccessibility.ts
···
+
import * as aChecker from "accessibility-checker";
+
import "lume/types.ts";
+
import { rm } from "node:fs";
+
+
// HTML Accessibility Plugin, by dish
+
// version 1.0.0
+
// Based on IBM's accessibility-checker library
+
+
export default function () {
+
return (site: Lume.Site) => {
+
site.process([".html"], checkPages);
+
+
async function checkPages(pages: Lume.Page[]) {
+
const barReport = site.debugBar?.collection("Accessibility Checker");
+
if (barReport) {
+
barReport.icon = "wheelchair-motion";
+
barReport.contexts = {
+
"violation": {
+
background: "error",
+
},
+
"potentialviolation": {
+
background: "error",
+
},
+
"recommendation": {
+
background: "info",
+
},
+
"potentialrecommendation": {
+
background: "info",
+
},
+
};
+
}
+
console.info("[checkAccessibility] Starting...");
+
rm(`${Deno.cwd()}/accessibility-results`, { recursive: true, force: true }, (err) => {
+
if (err) throw err;
+
});
+
for (const page of pages) {
+
const label = page.outputPath.substring(0, page.outputPath.length - 5);
+
try {
+
let res = await aChecker.getCompliance(
+
page.content,
+
label,
+
);
+
if (aChecker.assertCompliance(res.report) === 0) {
+
(() => {});
+
} else {
+
barReport?.items.push({
+
title: page.data.url,
+
details: `${res.report.results.length} errors`,
+
items: Array.from(res.report.results).map((rep) => ({
+
title: `${rep.ruleId} - ${rep.reasonId}`,
+
context: rep.level,
+
text: rep.message,
+
actions: [
+
{
+
text: "Highlight",
+
icon: "question",
+
onclick: `highlightElement("${rep.path.dom}", "${page.outputPath}")`,
+
},
+
{
+
text: "Help",
+
icon: "question",
+
href: rep.help,
+
target: "_blank",
+
},
+
],
+
})),
+
});
+
}
+
} catch (err) {
+
console.error(err);
+
}
+
}
+
await aChecker.close();
+
}
+
};
+
}
+
+
function lookupRule(rules: Object, ruleId: string, reasonId: string) {
+
const rule = rules[ruleId];
+
const reason: string = rule[reasonId];
+
return reason;
+
}
+48 -14
plugins/validateHTML.ts
···
export default function (userOptions?: ConfigData) {
const options = merge(defaults, userOptions);
const htmlvalidate = new HtmlValidate(options);
-
const format = formatterFactory("text");
return (site: Lume.Site) => {
site.process([".html"], validatePages);
+
const barReport = site.debugBar?.collection("HTML Validator");
+
if (barReport) {
+
barReport.icon = "shield-check";
+
barReport.contexts = {
+
"error": {
+
background: "error",
+
},
+
"warning": {
+
background: "warning",
+
},
+
"success": {
+
background: "success",
+
},
+
};
+
}
async function validatePages(pages: Lume.Page[]) {
-
let reports: Array<Report> = [];
for (const page of pages) {
const report = await htmlvalidate.validateString(page.content as string, page.outputPath);
-
reports.push(report);
-
}
-
const merged: Report | Promise<Report> = Reporter.merge(reports);
-
// Clear the reports table to ensure we don't get duplicates
-
reports = [];
-
-
if (merged.valid) {
-
log.info("[validateHTML] Validation successful!");
-
}
-
-
if (!merged.valid) {
-
log.error("[validateHTML]:\n" + format(merged.results));
+
if (report.valid == true) {
+
barReport?.items.push({
+
title: page.data.url,
+
context: "success",
+
text: "No errors or warnings on page",
+
});
+
} else {
+
barReport?.items.push({
+
title: page.data.url,
+
details: `${report.errorCount} errors, ${report.warningCount} warnings`,
+
items: Array.from(report.results[0].messages).map((msg) => ({
+
title: msg.message,
+
context: severity(msg.severity),
+
code: msg.ruleId,
+
actions: [
+
{
+
text: "Rule",
+
icon: "question",
+
href: msg.ruleUrl,
+
target: "_blank",
+
},
+
],
+
})),
+
});
+
}
}
}
};
}
+
+
function severity(level: number) {
+
if (level == 1) {
+
return "warning";
+
}
+
+
return "error";
+
}
+4 -4
src/_components/about/technology_item.vto
···
<li>
-
<strong class="mr-1">{{ tech.type }}</strong> โ€“
-
<a class="ml-1 text-blue underline" href="{{tech.link}}">
-
{{ tech.name }}
-
</a>
+
<strong class="mr-1">{{ tech.type }}</strong> โ€“
+
<a class="ml-1 text-ctp-blue underline" href="{{tech.link}}">
+
{{ tech.name }}
+
</a>
</li>
+12 -6
src/_components/flag_text.vto
···
<!-- dprint-ignore-file -->
{{ if flag == "trans" }}
-
<span class="trans-flag">
-
<span class="text-trans-blue">t</span><span class="text-trans-pink">r</span><span class="text-white">a</span><span class="text-trans-pink">n</span><span class="text-trans-blue">s</span>
-
</span>
+
<span class="trans-flag">
+
<span class="text-trans-blue">t</span><span class="text-trans-pink">r</span><span
+
class="text-white"
+
>a</span><span class="text-trans-pink">n</span><span class="text-trans-blue">s</span>
+
</span>
{{ else if flag == "lesbian" }}
-
<span class="lesbian-flag inline">
-
<span class="text-lesbian-orange1">l</span><span class="text-lesbian-orange2">e</span><span class="text-lesbian-orange3">s</span><span class="text-white">b</span><span class="text-lesbian-pink1">i</span><span class="text-lesbian-pink2">a</span><span class="text-lesbian-pink3">n</span>
-
</span>
+
<span class="lesbian-flag inline">
+
<span class="text-lesbian-orange1">l</span><span class="text-lesbian-orange2">e</span><span
+
class="text-lesbian-orange3"
+
>s</span><span class="text-white">b</span><span class="text-lesbian-pink1">i</span><span
+
class="text-lesbian-pink2"
+
>a</span><span class="text-lesbian-pink3">n</span>
+
</span>
{{ /if }}
+34 -34
src/_components/footer.vto
···
<footer
-
class="bg-mantle min-h-24 inset-x-0 bottom-0 border-t-2 border-surface1 grid text-text grid-cols-3"
+
class="bg-ctp-mantle min-h-24 inset-x-0 bottom-0 border-t-2 border-ctp-surface1 grid text-ctp-text grid-cols-3"
>
-
{{ await comp.logo() }}
-
<div class="mt-2">
-
<p class="text-overlay2 text-lg">Social</p>
-
<ul
-
class="grid grid-cols-3 grid-rows-2 md:block list-none text-3xl lg:text-4xl text-subtext1 space-x-1 md:space-x-2 lg:space-x-3"
-
>
-
{{ for link of author.links }}
-
<li class="inline-block">
-
<a
-
href="{{link.link}}"
-
rel="me"
-
aria-label="{{author.name}}'s {{link.description}}"
-
>
-
<i class="u-url si si-{{link.service}} {{link.extra_classes}}"></i>
-
</a>
-
</li>
-
{{ /for }}
-
<li class="inline-block lg:text-[2rem] text-[1.75rem]">
-
<a href="/blog.rss" aria-label="Blog RSS Feed">
-
<i class="si si-rss"></i>
-
</a>
-
</li>
-
</ul>
-
</div>
-
<div class="mt-2">
-
<p class="text-overlay2 text-lg">Info</p>
-
<p class="text-lg text-overlay1">&copy; 2025 dish</p>
-
<a
-
href="https://git.pyrox.dev/pyrox/new-blog/commit/{{ commit }}"
-
target="_blank"
-
class="text-blue underline"
-
>version {{ commit |> substring(0, 8) }}</a>
-
</div>
+
{{ await comp.logo() }}
+
<div class="mt-2">
+
<p class="text-ctp-overlay2 text-lg">Social</p>
+
<ul
+
class="grid grid-cols-3 grid-rows-2 md:block list-none text-3xl lg:text-4xl text-ctp-subtext1 space-x-1 md:space-x-2 lg:space-x-3"
+
>
+
{{ for link of author.links }}
+
<li class="inline-block">
+
<a
+
href="{{link.link}}"
+
rel="me"
+
aria-label="{{author.name}}'s {{link.description}}"
+
>
+
<i class="u-url si si-{{link.service}} {{link.extra_classes}}"></i>
+
</a>
+
</li>
+
{{ /for }}
+
<li class="inline-block lg:text-[2rem] text-[1.75rem]">
+
<a href="/blog.rss" aria-label="Blog RSS Feed">
+
<i class="si si-rss"></i>
+
</a>
+
</li>
+
</ul>
+
</div>
+
<div class="mt-2">
+
<p class="text-ctp-overlay2 text-lg">Info</p>
+
<p class="text-lg text-ctp-overlay1">&copy; 2025 dish</p>
+
<a
+
href="https://git.pyrox.dev/pyrox/new-blog/commit/{{ commit }}"
+
target="_blank"
+
class="text-ctp-blue underline"
+
>version {{ commit |> substring(0, 8) }}</a>
+
</div>
</footer>
+7 -7
src/_components/footnotes.vto
···
-
<hr class="border-overlay1 mb-2">
+
<hr class="border-ctp-overlay1 mb-2">
<ul>
-
{{ for fn of footnotes }}
-
<li class="fn" id="{{ fn.id }}">
-
<span class="fn-label">{{ fn.rawId }}</span>: {{ fn.content }}
-
<a href="#{{ fn.refId }}" class="fn-backref" aria-label="Back to reference"></a>
-
</li>
-
{{ /for }}
+
{{ for fn of footnotes }}
+
<li class="fn" id="{{ fn.id }}">
+
<span class="fn-label">{{ fn.rawId }}</span>: {{ fn.content }}
+
<a href="#{{ fn.refId }}" class="fn-backref" aria-label="Back to reference"></a>
+
</li>
+
{{ /for }}
</ul>
+31 -27
src/_components/head.vto
···
<link rel="alternate" type="application/feed+json" href="/blog.json" />
<link rel="alternate" type="application/rss+xml" href="/blog.rss" />
{{# Stylesheets #}}
-
<link rel="stylesheet" href="/static/fonts.css" />
<link
-
rel="stylesheet"
-
href='/static/styles.css?v={{ new Date(Date.now()).toISOString() |> date("t") }}'
+
rel="stylesheet"
+
href='/static/styles.css?v={{ new Date(Date.now()).toISOString() |> date("t") }}'
+
/>
+
<link
+
rel="stylesheet"
+
href='/styles.css?v={{ new Date(Date.now()).toISOString() |> date("t") }}'
/>
<link
-
rel="stylesheet"
-
href='/static/icons/bsi.min.css?v={{ new Date(Date.now()).toISOString() |> date("t") }}'
+
rel="stylesheet"
+
href='/static/icons/bsi.min.css?v={{ new Date(Date.now()).toISOString() |> date("t") }}'
/>
<link
-
rel="stylesheet"
-
href='/static/icons/si.min.css?v={{ new Date(Date.now()).toISOString() |> date("t") }}'
+
rel="stylesheet"
+
href='/static/icons/si.min.css?v={{ new Date(Date.now()).toISOString() |> date("t") }}'
/>
{{# Page Metadata #}}
<link rel="canonical" href="{{ url |> url(true) }}" />
<title>{{ title }}</title>
{{ if !production }}
-
<script defer src="/static/scripts/open-in-editor.js"></script>
-
{{# Load Sa11y #}}
-
<link rel="preconnect" href="https://cdn.jsdelivr.net">
-
<link
-
rel="stylesheet"
-
href="https://cdn.jsdelivr.net/gh/ryersondmp/sa11y@latest/dist/css/sa11y.min.css"
-
/>
-
<script
-
src="https://cdn.jsdelivr.net/combine/gh/ryersondmp/sa11y@latest/dist/js/lang/en.umd.js,gh/ryersondmp/sa11y@latest/dist/js/sa11y.umd.min.js"
-
></script>
-
<script defer>
-
Sa11y.Lang.addI18n(Sa11yLangEn.strings);
-
const sa11y = new Sa11y.Sa11y({
-
checkRoot: "body",
-
readabilityRoot: "main",
-
developerChecksOnByDefault: true,
-
showGoodLinkButton: false,
-
showGoodImageButton: false,
-
});
-
</script>
+
<script defer src="/static/scripts/open-in-editor.js"></script>
+
<script src="/static/scripts/highlight-accessibility.js"></script>
+
{{# Load Sa11y #}}
+
<link rel="preconnect" href="https://cdn.jsdelivr.net">
+
<link
+
rel="stylesheet"
+
href="https://cdn.jsdelivr.net/gh/ryersondmp/sa11y@latest/dist/css/sa11y.min.css"
+
/>
+
<script
+
src="https://cdn.jsdelivr.net/combine/gh/ryersondmp/sa11y@latest/dist/js/lang/en.umd.js,gh/ryersondmp/sa11y@latest/dist/js/sa11y.umd.min.js"
+
></script>
+
<script defer>
+
Sa11y.Lang.addI18n(Sa11yLangEn.strings);
+
const sa11y = new Sa11y.Sa11y({
+
checkRoot: "body",
+
readabilityRoot: "main",
+
developerChecksOnByDefault: true,
+
showGoodLinkButton: false,
+
showGoodImageButton: false,
+
});
+
</script>
{{ /if }}
{{# Disable Dark Reader #}}
+4 -4
src/_components/logo.vto
···
<div class="flex flex-row justify-center gap-x-2 lg:gap-x-4 content-center">
-
<i
-
class="bi bi-exclamation-triangle text-yellow self-center justify-self-end text-2xl lg:text-4xl"
-
></i>
-
<p class="text-text font-mono text-lg lg:text-xl self-center">0x64697368</p>
+
<i
+
class="bi bi-exclamation-triangle text-ctp-yellow self-center justify-self-end text-2xl lg:text-4xl"
+
></i>
+
<p class="text-ctp-text font-mono text-lg lg:text-xl self-center">0x64697368</p>
</div>
+19 -19
src/_components/navbar.vto
···
-
<header class="bg-mantle min-h-20 flex flex-row justify-around mb-2">
-
<a class="flex flex-row justify-center gap-x-4 content-center" href="/">
-
{{ await comp.logo() }}
-
</a>
-
<nav
-
aria-label="Main"
-
class="flex flex-row text-xl lg:text-3xl text-mauve underline gap-x-4 lg:gap-x-16 justify-center"
-
>
-
{{ for link of nav.links }}
-
<a
-
class="underline self-center"
-
href="{{ link.link }}"
-
{{ if link.name == "About" }}
-
rel="author"{{ /if }}
-
>{{ link.name }}</a>
-
{{ /for }}
-
</nav>
-
<div></div>
-
<p class="hidden lg:block text-overlay1 self-center">search coming soon</p>
+
<header class="bg-ctp-mantle min-h-20 flex flex-row justify-around mb-2">
+
<a class="flex flex-row justify-center gap-x-4 content-center" href="/">
+
{{ await comp.logo() }}
+
</a>
+
<nav
+
aria-label="Main"
+
class="flex flex-row text-xl lg:text-3xl text-ctp-mauve underline gap-x-4 lg:gap-x-16 justify-center"
+
>
+
{{ for link of nav.links }}
+
<a
+
class="underline self-center"
+
href="{{ link.link }}"
+
{{ if link.name == "About" }}
+
rel="author"{{ /if }}
+
>{{ link.name }}</a>
+
{{ /for }}
+
</nav>
+
<div></div>
+
<p class="hidden lg:block text-ctp-overlay1 self-center">search coming soon</p>
</header>
+26 -26
src/_components/post_card.vto
···
{{ if compact }}
-
<li class="bg-surface0 rounded">
-
<a href="{{ post.url }}">
-
<div class="m-4 py-1">
-
<p class="text-subtext1 text-lg">{{ post.title }}</p>
-
<p class="inline italic text-subtext0">{{ post.summary }}</p>
-
<p class="float-right inline text-blue">
-
<time datetime="{{ post.published |> date('SHORT_DATE') }}">
-
{{ post.published |> date('DATE') }}
-
</time>
-
</p>
-
</div>
-
</a>
-
</li>
+
<li class="bg-ctp-surface0 rounded">
+
<a href="{{ post.url }}">
+
<div class="m-4 py-1">
+
<p class="text-ctp-subtext1 text-lg">{{ post.title }}</p>
+
<p class="inline italic text-ctp-subtext0">{{ post.summary }}</p>
+
<p class="float-right inline text-ctp-blue">
+
<time datetime="{{ post.published |> date('SHORT_DATE') }}">
+
{{ post.published |> date("DATE") }}
+
</time>
+
</p>
+
</div>
+
</a>
+
</li>
{{ else }}
-
<li class="bg-surface0 rounded-md w-3/4 lg:w-full">
-
<a href="{{ post.url }}">
-
<div class="m-6 py-2">
-
<h2 class="text-subtext1 font-serif text-2xl mb-2">{{ post.title }}</h2>
-
<h3 class="text-lg lg:inline italic text-subtext0">{{ post.summary }}</h3>
-
<p class="text-lg lg:float-right lg:inline text-blue">
-
<time datetime="{{ post.published |> date('SHORT_DATE') }}">
-
{{ post.published |> date('DATE') }}
-
</time>
-
</p>
-
</div>
-
</a>
-
</li>
+
<li class="bg-ctp-surface0 rounded-md w-3/4 lg:w-full">
+
<a href="{{ post.url }}">
+
<div class="m-6 py-2">
+
<h2 class="text-ctp-subtext1 font-serif text-2xl mb-2">{{ post.title }}</h2>
+
<h3 class="text-lg lg:inline italic text-ctp-subtext0">{{ post.summary }}</h3>
+
<p class="text-lg lg:float-right lg:inline text-ctp-blue">
+
<time datetime="{{ post.published |> date('SHORT_DATE') }}">
+
{{ post.published |> date("DATE") }}
+
</time>
+
</p>
+
</div>
+
</a>
+
</li>
{{ /if }}
+12 -12
src/_components/project_card.vto
···
-
<li class="bg-surface0 p-4 text-lg rounded-md">
-
<h2 class="text-2xl font-serif mb-2">{{ project.name }}</h2>
-
<h3 class="italic">{{ project.description }}</h3>
-
<p>Techs Used: {{ project.techs }}</p>
-
<p>
-
Developed Since:
-
<strong><time datetime="{{ project.start |> date('date') }}">
-
{{ project.start |> date('POST_DATE') }}
-
</time></strong>
-
</p>
-
<p>Status: {{ project.status }}</p>
-
<a class="underline text-blue" href="{{ project.link }}">{{ project.link }}</a>
+
<li class="bg-ctp-surface0 p-4 text-lg rounded-md">
+
<h2 class="text-2xl font-serif mb-2">{{ project.name }}</h2>
+
<h3 class="italic">{{ project.description }}</h3>
+
<p>Techs Used: {{ project.techs }}</p>
+
<p>
+
Developed Since:
+
<strong><time datetime="{{ project.start |> date('date') }}">
+
{{ project.start |> date("POST_DATE") }}
+
</time></strong>
+
</p>
+
<p>Status: {{ project.status }}</p>
+
<a class="underline text-ctp-blue" href="{{ project.link }}">{{ project.link }}</a>
</li>
+17 -17
src/_components/table_of_contents.vto
···
<nav class="toc" aria-labelledby="toc-header">
-
<h2 class="text-overlay1 mb-1" id="toc-header">Table of Contents</h2>
-
<ol class="toc-l1">
-
{{ for item of toc }}
-
<li>
-
<a href="#{{ item.slug }}">{{ item.text }}</a>
+
<h2 class="text-ctp-overlay1 mb-1" id="toc-header">Table of Contents</h2>
+
<ol class="toc-l1">
+
{{ for item of toc }}
+
<li>
+
<a href="#{{ item.slug }}">{{ item.text }}</a>
-
{{ if item.children.length }}
-
<ul>
-
{{ for child of item.children }}
-
<li class="toc-l2">
-
<a href="#{{ child.slug }}">{{ child.text }}</a>
-
</li>
-
{{ /for }}
-
</ul>
-
{{ /if }}
-
</li>
-
{{ /for }}
-
</ol>
+
{{ if item.children.length }}
+
<ul>
+
{{ for child of item.children }}
+
<li class="toc-l2">
+
<a href="#{{ child.slug }}">{{ child.text }}</a>
+
</li>
+
{{ /for }}
+
</ul>
+
{{ /if }}
+
</li>
+
{{ /for }}
+
</ol>
</nav>
+18 -12
src/_components/webring.vto
···
<li
-
class="mb-2 lg:mb-4 px-2 py-1 bg-surface0 text-center text-lg rounded-md w-full sm:w-1/2 xl:w-1/3"
+
class="mb-2 lg:mb-4 px-2 py-1 bg-ctp-surface0 text-center text-lg rounded-md w-full sm:w-1/2 xl:w-1/3"
>
-
<p><a href="{{ring.all}}" class="text-serif text-2xl text-mauve">{{ ring.name }}</a></p>
-
<a href="{{ring.previous}}" class="text-green" aria-label="Previous site in the {{ring.name}}"
-
>&lt; Previous</a> |
-
{{ if ring.random }}
-
<a href="{{ring.random}}" class="text-peach" aria-label="Random site in the {{ring.name}}"
-
>Random</a> |
-
{{ /if }}
-
<a href="{{ring.all}}" class="text-sapphire" aria-label="Site list for the {{ring.name}}"
-
>All</a> |
-
<a href="{{ring.next}}" class="text-maroon" aria-label="Next site in the {{ring.name}}"
-
>Next &gt;</a>
+
<p><a href="{{ring.all}}" class="text-serif text-2xl text-ctp-mauve">{{ ring.name }}</a></p>
+
<a
+
href="{{ring.previous}}"
+
class="text-ctp-green"
+
aria-label="Previous site in the {{ring.name}}"
+
>&lt; Previous</a> |
+
{{ if ring.random }}
+
<a
+
href="{{ring.random}}"
+
class="text-ctp-peach"
+
aria-label="Random site in the {{ring.name}}"
+
>Random</a> |
+
{{ /if }}
+
<a href="{{ring.all}}" class="text-ctp-sapphire" aria-label="Site list for the {{ring.name}}"
+
>All</a> |
+
<a href="{{ring.next}}" class="text-ctp-maroon" aria-label="Next site in the {{ring.name}}"
+
>Next &gt;</a>
</li>
+41
src/_data/decap_cms.toml
···
+
media_folder = "src/static/media"
+
public_folder = "/static/media"
+
[backend]
+
name = "git-gateway"
+
branch = "main"
+
+
[[collections]]
+
name = "blog"
+
label = "Blog Posts"
+
label_singular = "Blog Post"
+
folder = "src/blog"
+
extension = "md"
+
format = "yaml-frontmatter"
+
+
# Metadata Fields
+
[[collections.fields]]
+
name = "title"
+
label = "Title"
+
widget = "string"
+
[[collections.fields]]
+
name = "summary"
+
label = "Summary"
+
widget = "text"
+
[[collections.fields]]
+
name = "draft"
+
label = "Draft Status"
+
widget = "boolean"
+
[[collections.fields]]
+
name = "published"
+
label = "Publish Date"
+
widget = "datetime"
+
date_format = "YYYY-MM-DD"
+
[[collections.fields]]
+
name = "templateEngines"
+
label = "Template Engines"
+
widget = "hidden"
+
default = ["vto", "md"]
+
[[collections.fields]]
+
name = "body"
+
label = "Post Content"
+
widget = "markdown"
+75
src/_data/volunteering.toml
···
+
[orgs]
+
+
[orgs.bb]
+
name = "Binary Breakers"
+
homepage = "https://binarybreakers.com"
+
+
[[orgs.bb.events]]
+
name = "The Breakout: Cozy Edition"
+
role = "Chat Moderation"
+
[[orgs.bb.events]]
+
name = "The Breakout: Spring BreakOUT"
+
role = "Chat Moderation"
+
[[orgs.bb.events]]
+
name = "The Breakout: Summer GAYmes"
+
role = "Chat Moderation"
+
+
+
[orgs.furs]
+
name = "Fastest Furs"
+
homepage = "https://fastestfurs.com"
+
+
[[orgs.furs.events]]
+
name = "Fastest Furs LIVE at FWA 2025"
+
role = "Chat Moderation"
+
+
+
[orgs.fatales]
+
name = "Frame Fatales"
+
homepage = "https://framefatales.com"
+
+
[[orgs.fatales.events]]
+
name = "Frost Fatales 2025"
+
role = "In-Studio Stream Tech, Cam Ops"
+
[[orgs.fatales.events]]
+
name = "Flame Fatales 2024"
+
role = "Chat Moderation"
+
[[orgs.fatales.events]]
+
name = "Frost Fatales 2024"
+
role = "Chat Moderation"
+
+
+
[orgs.gdq]
+
name = "Games Done Quick"
+
homepage = "https://gamesdonequick.com/"
+
+
[[orgs.gdq.events]]
+
name = "Summer Games Done Quick 2025"
+
role = "Chat Moderation"
+
[[orgs.gdq.events]]
+
name = "Awesome Games Done Quick 2025"
+
role = "Chat Moderation"
+
[[orgs.gdq.events]]
+
name = "Summer Games Done Quick 2024"
+
role = "Chat Moderation"
+
[[orgs.gdq.events]]
+
name = "Awesome Games Done Quick 2024"
+
role = "Chat Moderation"
+
+
+
[orgs.zt]
+
name = "Zeldathon"
+
homepage = "https://zeldathon.com"
+
+
[[orgs.zt.events]]
+
name = "Zeldathon Voyage"
+
role = "Chat Moderation"
+
+
+
[orgs.la]
+
name = "Lady Arcaders"
+
homepage = "https://ladyarcaders.com/"
+
+
[[orgs.la.events]]
+
name = "Out of Bounds 2ronto"
+
role = "Chat Moderation"
+41 -41
src/_includes/layouts/about.vto
···
{{ layout "layouts/base.vto" }}
-
<main class="ml-4 my-8 min-h-screen text-text justify-self-center w-full lg:w-1/2 h-card">
-
<h1 class="text-5xl text-bold text-mauve">
-
About
-
<span class="p-name p-nickname inline">
-
dish
-
</span>
-
</h1>
-
<img
-
class="h-64 w-64 rounded-full my-4"
-
src="/static/images/author.png"
-
transform-images="avif webp 300@2"
-
alt="dish at Frost Fatales 2025. She has her head tilted 45 degrees to the left and is wearing a face mask with the trans flag on it."
-
/>
+
<main class="ml-4 my-8 min-h-screen text-ctp-text justify-self-center w-full lg:w-1/2 h-card">
+
<h1 class="text-5xl text-bold text-ctp-mauve">
+
About
+
<span class="p-name p-nickname inline">
+
dish
+
</span>
+
</h1>
+
<img
+
class="h-64 w-64 rounded-full my-4"
+
src="/static/images/author.png"
+
transform-images="avif webp 300@2"
+
alt="dish at Frost Fatales 2025. She has her head tilted 45 degrees to the left and is wearing a face mask with the trans flag on it."
+
/>
-
<div class="text-lg h-entry">
-
{{ content }}
-
</div>
+
<div class="text-lg h-entry">
+
{{ content }}
+
</div>
-
<h2 class="mt-8 mb-1 text-mauve text-2xl">Webrings!</h2>
-
<p class="text-text text-lg mb-4">
-
We're a big fan of old-school web discovery. Here's the
-
<a href="https://en.wikipedia.org/wiki/Webring" class="text-blue underline">webrings</a>
-
we're part of:
-
</p>
-
<ul>
-
{{ for ring of webrings.rings }}
-
{{ await comp.webring({"ring": ring}) }}
-
{{ /for }}
-
</ul>
+
<h2 class="mt-8 mb-1 text-ctp-mauve text-2xl">Webrings!</h2>
+
<p class="text-ctp-text text-lg mb-4">
+
We're a big fan of old-school web discovery. Here's the
+
<a href="https://en.wikipedia.org/wiki/Webring" class="text-ctp-blue underline">webrings</a>
+
we're part of:
+
</p>
+
<ul>
+
{{ for ring of webrings.rings }}
+
{{ await comp.webring({ "ring": ring }) }}
+
{{ /for }}
+
</ul>
-
<h2 class="mt-8 text-mauve text-2xl">About This Site</h2>
-
<p class="text-text text-lg">I've used the following to build this site:</p>
-
<ul>
-
{{ for tech of about.techs }}
-
{{ await comp.about.technology_item({"tech": tech}) }}
-
{{ /for }}
-
</ul>
+
<h2 class="mt-8 text-ctp-mauve text-2xl">About This Site</h2>
+
<p class="text-ctp-text text-lg">I've used the following to build this site:</p>
+
<ul>
+
{{ for tech of about.techs }}
+
{{ await comp.about.technology_item({ "tech": tech }) }}
+
{{ /for }}
+
</ul>
-
<p class="mt-4 text-lg">
-
Profile picture by Richard Ngo. <a
-
class="text-blue underline"
-
href="https://photos.gamesdonequick.com/FrostFatales2025/i-B3c9P48/A"
-
>Original Source</a> from Games Done Quick, modified by dish.
-
</p>
-
</main>
+
<p class="mt-4 text-lg">
+
Profile picture by Richard Ngo. <a
+
class="text-ctp-blue underline"
+
href="https://photos.gamesdonequick.com/FrostFatales2025/i-B3c9P48/A"
+
>Original Source</a> from Games Done Quick, modified by dish.
+
</p>
+
</main>
{{ /layout }}
+8 -8
src/_includes/layouts/base.vto
···
<!DOCTYPE html>
<html lang="en-US">
-
<head>
-
{{ await comp.head({"url": url, "title": title}) }}
-
</head>
-
<body id="body" class="mocha bg-crust grid">
-
{{ await comp.navbar() }}
+
<head>
+
{{ await comp.head({ "url": url, "title": title }) }}
+
</head>
+
<body id="body" class="mocha bg-ctp-crust grid">
+
{{ await comp.navbar() }}
-
{{ content }}
+
{{ content }}
-
{{ await comp.footer() }}
-
</body>
+
{{ await comp.footer() }}
+
</body>
</html>
+15 -15
src/_includes/layouts/blog-list.vto
···
{{ layout "layouts/base.vto" }}
-
<main class="min-h-screen text-text justify-self-center px-4 lg:px-0 w-full lg:w-1/2">
-
<h1 class="text-5xl my-8">Blog</h1>
-
<a
-
class="lg:inline float-right -mt-20 lg:mr-1.5"
-
href="/blog.rss"
-
aria-label="Blog RSS Feed"
-
>
-
<i class="text-5xl si si-rss"></i>
-
</a>
-
<ul class="mt-8">
-
{{ for post of search.pages("category=blog", "published=desc") }}
-
{{ await comp.post_card({"post": post}) }}
-
{{ /for }}
-
</ul>
-
</main>
+
<main class="min-h-screen text-ctp-text justify-self-center px-4 lg:px-0 w-full lg:w-1/2">
+
<h1 class="text-5xl my-8">Blog</h1>
+
<a
+
class="lg:inline float-right -mt-20 lg:mr-1.5"
+
href="/blog.rss"
+
aria-label="Blog RSS Feed"
+
>
+
<i class="text-5xl si si-rss"></i>
+
</a>
+
<ul class="mt-8">
+
{{ for post of search.pages("category=blog", "published=desc") }}
+
{{ await comp.post_card({ "post": post }) }}
+
{{ /for }}
+
</ul>
+
</main>
{{ /layout }}
+34 -34
src/_includes/layouts/blog-post.vto
···
{{ layout "layouts/base.vto" }}
-
<main class="min-h-screen text-text justify-self-center w-full lg:w-1/2">
-
<article class="h-entry">
-
<h1 class="text-5xl font-serif mt-8 p-name">{{ title }}</h1>
+
<main class="min-h-screen text-ctp-text justify-self-center w-full lg:w-1/2">
+
<article class="h-entry">
+
<h1 class="text-5xl font-serif mt-8 p-name">{{ title }}</h1>
-
<h2 class="mt-4 text-subtext0">
-
Published on
-
<time class="dt-published" datetime="{{ published |> date }}">
-
{{ published |> date('POST_DATE') }}
-
</time>
-
</h2>
-
-
<h2 class="hidden text-overlay1">
-
By
-
<span class="inline p-author h-card">{{ author.name }}</span>
-
</h2>
+
<h2 class="mt-4 text-ctp-subtext0">
+
Published on
+
<time class="dt-published" datetime="{{ published |> date }}">
+
{{ published |> date("POST_DATE") }}
+
</time>
+
</h2>
-
<h2 class="text-overlay1">
-
{{ readingInfo.words }} words, about {{ readingInfo.minutes }}
-
minute{{ if readingInfo.minutes != 1 }}s{{ /if }}
-
</h2>
+
<h2 class="hidden text-ctp-overlay1">
+
By
+
<span class="inline p-author h-card">{{ author.name }}</span>
+
</h2>
-
{{ if enable_toc != false }}
-
{{ if toc.length }}
-
{{ await comp.table_of_contents({"toc": toc}) }}
-
{{ else }}
-
<div class="mb-8"></div>
-
{{ /if }}
-
{{ /if }}
+
<h2 class="text-ctp-overlay1">
+
{{ readingInfo.words }} words, about {{ readingInfo.minutes }}
+
minute{{ if readingInfo.minutes != 1 }}s{{ /if }}
+
</h2>
-
<div class="e-content text-lg">
-
{{ content }}
-
</div>
-
</article>
-
{{ if footnotes.length }}
-
<section aria-label="Footnotes">
-
{{ await comp.footnotes({"footnotes": footnotes }) }}
-
</section>
+
{{ if enable_toc != false }}
+
{{ if toc.length }}
+
{{ await comp.table_of_contents({ "toc": toc }) }}
+
{{ else }}
+
<div class="mb-8"></div>
{{ /if }}
-
</main>
+
{{ /if }}
+
+
<div class="e-content text-lg">
+
{{ content }}
+
</div>
+
</article>
+
{{ if footnotes.length }}
+
<section aria-label="Footnotes">
+
{{ await comp.footnotes({ "footnotes": footnotes }) }}
+
</section>
+
{{ /if }}
+
</main>
{{ /layout }}
+22 -23
src/_includes/layouts/home.vto
···
{{ layout "layouts/base.vto" }}
-
<main class="min-h-screen text-text justify-self-center w-full lg:w-1/2 h-card">
-
<h1 class="mt-8 text-5xl text-bold text-mauve">
-
hi, I'm <span><a href="/about" rel="me" class="u-url u-uid p-name p-nickname"
-
>dish</a></span>
-
</h1>
-
<img
-
class="h-64 w-64 rounded-full mt-4"
-
src="/static/images/author.png"
-
transform-images="avif webp 300@2"
-
alt="dish at Frost Fatales 2025. She has her head tilted 45 degrees to the left and is wearing a face mask with the trans flag on it."
-
/>
-
<h2 class="text-2xl mt-4 p-note">Student, Sysadmin, and UX Crafter</h2>
-
<p class="text-lg mt-2">
-
Howdy! I play with computers, with an emphasis on accessible, secure, and enjoyable
-
experiences.
-
</p>
-
<h2 class="my-8 text-2xl">Recent blog posts:</h2>
-
<ul class="lg:w-3/4">
-
{{ for post of search.pages("category=blog", "published=desc", 5) }}
-
{{ await comp.post_card({"post": post, compact: true}) }}
-
{{ /for }}
-
</ul>
-
</main>
+
<main class="min-h-screen text-ctp-text justify-self-center w-full lg:w-1/2 h-card">
+
<h1 class="mt-8 text-5xl text-bold text-ctp-mauve">
+
hi, I'm <span><a href="/about" rel="me" class="u-url u-uid p-name p-nickname">dish</a></span>
+
</h1>
+
<img
+
class="h-64 w-64 rounded-full mt-4"
+
src="/static/images/author.png"
+
transform-images="avif webp 300@2"
+
alt="dish at Frost Fatales 2025. She has her head tilted 45 degrees to the left and is wearing a face mask with the trans flag on it."
+
/>
+
<h2 class="text-2xl mt-4 p-note">Student, Sysadmin, and UX Crafter</h2>
+
<p class="text-lg mt-2">
+
Howdy! I play with computers, with an emphasis on accessible, secure, and enjoyable
+
experiences.
+
</p>
+
<h2 class="my-8 text-2xl">Recent blog posts:</h2>
+
<ul class="lg:w-3/4">
+
{{ for post of search.pages("category=blog", "published=desc", 5) }}
+
{{ await comp.post_card({ "post": post, compact: true }) }}
+
{{ /for }}
+
</ul>
+
</main>
{{ /layout }}
+8 -8
src/_includes/layouts/projects.vto
···
{{ layout "layouts/base.vto" }}
-
<main class="min-h-screen text-text justify-self-center w-full lg:w-1/2">
-
<h1 class="my-8 text-5xl text-bold text-mauve">Projects</h1>
-
<ul class="space-y-4">
-
{{ for project of projects.projects }}
-
{{ await comp.project_card({"project": project}) }}
-
{{ /for }}
-
</ul>
-
</main>
+
<main class="min-h-screen text-ctp-text justify-self-center w-full lg:w-1/2">
+
<h1 class="my-8 text-5xl text-bold text-ctp-mauve">Projects</h1>
+
<ul class="space-y-4">
+
{{ for project of projects.projects }}
+
{{ await comp.project_card({ "project": project }) }}
+
{{ /for }}
+
</ul>
+
</main>
{{ /layout }}
+23
src/_includes/layouts/volunteering.vto
···
+
{{ layout "layouts/base.vto" }}
+
<main class="ml-4 my-8 min-h-screen text-ctp-text justify-self-center w-full lg:w-1/2 h-card">
+
<h1 class="text-5xl text-bold text-ctp-mauve">
+
dish's Volunteering
+
</h1>
+
+
<br>
+
+
<div class="text-xl">
+
{{ content }}
+
<br>
+
{{ for org of volunteering.orgs }}
+
<h2 class="text-3xl">{{ org.name }}</h2>
+
<ul>
+
{{ for ev of org.events }}
+
<li class="text-xl">{{ ev.name }} - {{ ev.role }}</li>
+
{{ /for }}
+
</ul>
+
<br>
+
{{ /for }}
+
</div>
+
</main>
+
{{ /layout }}
+1282
src/_includes/mocha.css
···
+
@theme inline {
+
--color-ctp-rosewater: var(--catppuccin-color-rosewater);
+
--color-ctp-rosewater-500: var(--catppuccin-color-rosewater-500);
+
--color-ctp-rosewater-400: var(--catppuccin-color-rosewater-400);
+
--color-ctp-rosewater-300: var(--catppuccin-color-rosewater-300);
+
--color-ctp-rosewater-200: var(--catppuccin-color-rosewater-200);
+
--color-ctp-rosewater-100: var(--catppuccin-color-rosewater-100);
+
--color-ctp-rosewater-50: var(--catppuccin-color-rosewater-50);
+
--color-ctp-rosewater-600: var(--catppuccin-color-rosewater-600);
+
--color-ctp-rosewater-700: var(--catppuccin-color-rosewater-700);
+
--color-ctp-rosewater-800: var(--catppuccin-color-rosewater-800);
+
--color-ctp-rosewater-900: var(--catppuccin-color-rosewater-900);
+
--color-ctp-rosewater-950: var(--catppuccin-color-rosewater-950);
+
--color-ctp-flamingo: var(--catppuccin-color-flamingo);
+
--color-ctp-flamingo-500: var(--catppuccin-color-flamingo-500);
+
--color-ctp-flamingo-400: var(--catppuccin-color-flamingo-400);
+
--color-ctp-flamingo-300: var(--catppuccin-color-flamingo-300);
+
--color-ctp-flamingo-200: var(--catppuccin-color-flamingo-200);
+
--color-ctp-flamingo-100: var(--catppuccin-color-flamingo-100);
+
--color-ctp-flamingo-50: var(--catppuccin-color-flamingo-50);
+
--color-ctp-flamingo-600: var(--catppuccin-color-flamingo-600);
+
--color-ctp-flamingo-700: var(--catppuccin-color-flamingo-700);
+
--color-ctp-flamingo-800: var(--catppuccin-color-flamingo-800);
+
--color-ctp-flamingo-900: var(--catppuccin-color-flamingo-900);
+
--color-ctp-flamingo-950: var(--catppuccin-color-flamingo-950);
+
--color-ctp-pink: var(--catppuccin-color-pink);
+
--color-ctp-pink-500: var(--catppuccin-color-pink-500);
+
--color-ctp-pink-400: var(--catppuccin-color-pink-400);
+
--color-ctp-pink-300: var(--catppuccin-color-pink-300);
+
--color-ctp-pink-200: var(--catppuccin-color-pink-200);
+
--color-ctp-pink-100: var(--catppuccin-color-pink-100);
+
--color-ctp-pink-50: var(--catppuccin-color-pink-50);
+
--color-ctp-pink-600: var(--catppuccin-color-pink-600);
+
--color-ctp-pink-700: var(--catppuccin-color-pink-700);
+
--color-ctp-pink-800: var(--catppuccin-color-pink-800);
+
--color-ctp-pink-900: var(--catppuccin-color-pink-900);
+
--color-ctp-pink-950: var(--catppuccin-color-pink-950);
+
--color-ctp-mauve: var(--catppuccin-color-mauve);
+
--color-ctp-mauve-500: var(--catppuccin-color-mauve-500);
+
--color-ctp-mauve-400: var(--catppuccin-color-mauve-400);
+
--color-ctp-mauve-300: var(--catppuccin-color-mauve-300);
+
--color-ctp-mauve-200: var(--catppuccin-color-mauve-200);
+
--color-ctp-mauve-100: var(--catppuccin-color-mauve-100);
+
--color-ctp-mauve-50: var(--catppuccin-color-mauve-50);
+
--color-ctp-mauve-600: var(--catppuccin-color-mauve-600);
+
--color-ctp-mauve-700: var(--catppuccin-color-mauve-700);
+
--color-ctp-mauve-800: var(--catppuccin-color-mauve-800);
+
--color-ctp-mauve-900: var(--catppuccin-color-mauve-900);
+
--color-ctp-mauve-950: var(--catppuccin-color-mauve-950);
+
--color-ctp-red: var(--catppuccin-color-red);
+
--color-ctp-red-500: var(--catppuccin-color-red-500);
+
--color-ctp-red-400: var(--catppuccin-color-red-400);
+
--color-ctp-red-300: var(--catppuccin-color-red-300);
+
--color-ctp-red-200: var(--catppuccin-color-red-200);
+
--color-ctp-red-100: var(--catppuccin-color-red-100);
+
--color-ctp-red-50: var(--catppuccin-color-red-50);
+
--color-ctp-red-600: var(--catppuccin-color-red-600);
+
--color-ctp-red-700: var(--catppuccin-color-red-700);
+
--color-ctp-red-800: var(--catppuccin-color-red-800);
+
--color-ctp-red-900: var(--catppuccin-color-red-900);
+
--color-ctp-red-950: var(--catppuccin-color-red-950);
+
--color-ctp-maroon: var(--catppuccin-color-maroon);
+
--color-ctp-maroon-500: var(--catppuccin-color-maroon-500);
+
--color-ctp-maroon-400: var(--catppuccin-color-maroon-400);
+
--color-ctp-maroon-300: var(--catppuccin-color-maroon-300);
+
--color-ctp-maroon-200: var(--catppuccin-color-maroon-200);
+
--color-ctp-maroon-100: var(--catppuccin-color-maroon-100);
+
--color-ctp-maroon-50: var(--catppuccin-color-maroon-50);
+
--color-ctp-maroon-600: var(--catppuccin-color-maroon-600);
+
--color-ctp-maroon-700: var(--catppuccin-color-maroon-700);
+
--color-ctp-maroon-800: var(--catppuccin-color-maroon-800);
+
--color-ctp-maroon-900: var(--catppuccin-color-maroon-900);
+
--color-ctp-maroon-950: var(--catppuccin-color-maroon-950);
+
--color-ctp-peach: var(--catppuccin-color-peach);
+
--color-ctp-peach-500: var(--catppuccin-color-peach-500);
+
--color-ctp-peach-400: var(--catppuccin-color-peach-400);
+
--color-ctp-peach-300: var(--catppuccin-color-peach-300);
+
--color-ctp-peach-200: var(--catppuccin-color-peach-200);
+
--color-ctp-peach-100: var(--catppuccin-color-peach-100);
+
--color-ctp-peach-50: var(--catppuccin-color-peach-50);
+
--color-ctp-peach-600: var(--catppuccin-color-peach-600);
+
--color-ctp-peach-700: var(--catppuccin-color-peach-700);
+
--color-ctp-peach-800: var(--catppuccin-color-peach-800);
+
--color-ctp-peach-900: var(--catppuccin-color-peach-900);
+
--color-ctp-peach-950: var(--catppuccin-color-peach-950);
+
--color-ctp-yellow: var(--catppuccin-color-yellow);
+
--color-ctp-yellow-500: var(--catppuccin-color-yellow-500);
+
--color-ctp-yellow-400: var(--catppuccin-color-yellow-400);
+
--color-ctp-yellow-300: var(--catppuccin-color-yellow-300);
+
--color-ctp-yellow-200: var(--catppuccin-color-yellow-200);
+
--color-ctp-yellow-100: var(--catppuccin-color-yellow-100);
+
--color-ctp-yellow-50: var(--catppuccin-color-yellow-50);
+
--color-ctp-yellow-600: var(--catppuccin-color-yellow-600);
+
--color-ctp-yellow-700: var(--catppuccin-color-yellow-700);
+
--color-ctp-yellow-800: var(--catppuccin-color-yellow-800);
+
--color-ctp-yellow-900: var(--catppuccin-color-yellow-900);
+
--color-ctp-yellow-950: var(--catppuccin-color-yellow-950);
+
--color-ctp-green: var(--catppuccin-color-green);
+
--color-ctp-green-500: var(--catppuccin-color-green-500);
+
--color-ctp-green-400: var(--catppuccin-color-green-400);
+
--color-ctp-green-300: var(--catppuccin-color-green-300);
+
--color-ctp-green-200: var(--catppuccin-color-green-200);
+
--color-ctp-green-100: var(--catppuccin-color-green-100);
+
--color-ctp-green-50: var(--catppuccin-color-green-50);
+
--color-ctp-green-600: var(--catppuccin-color-green-600);
+
--color-ctp-green-700: var(--catppuccin-color-green-700);
+
--color-ctp-green-800: var(--catppuccin-color-green-800);
+
--color-ctp-green-900: var(--catppuccin-color-green-900);
+
--color-ctp-green-950: var(--catppuccin-color-green-950);
+
--color-ctp-teal: var(--catppuccin-color-teal);
+
--color-ctp-teal-500: var(--catppuccin-color-teal-500);
+
--color-ctp-teal-400: var(--catppuccin-color-teal-400);
+
--color-ctp-teal-300: var(--catppuccin-color-teal-300);
+
--color-ctp-teal-200: var(--catppuccin-color-teal-200);
+
--color-ctp-teal-100: var(--catppuccin-color-teal-100);
+
--color-ctp-teal-50: var(--catppuccin-color-teal-50);
+
--color-ctp-teal-600: var(--catppuccin-color-teal-600);
+
--color-ctp-teal-700: var(--catppuccin-color-teal-700);
+
--color-ctp-teal-800: var(--catppuccin-color-teal-800);
+
--color-ctp-teal-900: var(--catppuccin-color-teal-900);
+
--color-ctp-teal-950: var(--catppuccin-color-teal-950);
+
--color-ctp-sky: var(--catppuccin-color-sky);
+
--color-ctp-sky-500: var(--catppuccin-color-sky-500);
+
--color-ctp-sky-400: var(--catppuccin-color-sky-400);
+
--color-ctp-sky-300: var(--catppuccin-color-sky-300);
+
--color-ctp-sky-200: var(--catppuccin-color-sky-200);
+
--color-ctp-sky-100: var(--catppuccin-color-sky-100);
+
--color-ctp-sky-50: var(--catppuccin-color-sky-50);
+
--color-ctp-sky-600: var(--catppuccin-color-sky-600);
+
--color-ctp-sky-700: var(--catppuccin-color-sky-700);
+
--color-ctp-sky-800: var(--catppuccin-color-sky-800);
+
--color-ctp-sky-900: var(--catppuccin-color-sky-900);
+
--color-ctp-sky-950: var(--catppuccin-color-sky-950);
+
--color-ctp-sapphire: var(--catppuccin-color-sapphire);
+
--color-ctp-sapphire-500: var(--catppuccin-color-sapphire-500);
+
--color-ctp-sapphire-400: var(--catppuccin-color-sapphire-400);
+
--color-ctp-sapphire-300: var(--catppuccin-color-sapphire-300);
+
--color-ctp-sapphire-200: var(--catppuccin-color-sapphire-200);
+
--color-ctp-sapphire-100: var(--catppuccin-color-sapphire-100);
+
--color-ctp-sapphire-50: var(--catppuccin-color-sapphire-50);
+
--color-ctp-sapphire-600: var(--catppuccin-color-sapphire-600);
+
--color-ctp-sapphire-700: var(--catppuccin-color-sapphire-700);
+
--color-ctp-sapphire-800: var(--catppuccin-color-sapphire-800);
+
--color-ctp-sapphire-900: var(--catppuccin-color-sapphire-900);
+
--color-ctp-sapphire-950: var(--catppuccin-color-sapphire-950);
+
--color-ctp-blue: var(--catppuccin-color-blue);
+
--color-ctp-blue-500: var(--catppuccin-color-blue-500);
+
--color-ctp-blue-400: var(--catppuccin-color-blue-400);
+
--color-ctp-blue-300: var(--catppuccin-color-blue-300);
+
--color-ctp-blue-200: var(--catppuccin-color-blue-200);
+
--color-ctp-blue-100: var(--catppuccin-color-blue-100);
+
--color-ctp-blue-50: var(--catppuccin-color-blue-50);
+
--color-ctp-blue-600: var(--catppuccin-color-blue-600);
+
--color-ctp-blue-700: var(--catppuccin-color-blue-700);
+
--color-ctp-blue-800: var(--catppuccin-color-blue-800);
+
--color-ctp-blue-900: var(--catppuccin-color-blue-900);
+
--color-ctp-blue-950: var(--catppuccin-color-blue-950);
+
--color-ctp-lavender: var(--catppuccin-color-lavender);
+
--color-ctp-lavender-500: var(--catppuccin-color-lavender-500);
+
--color-ctp-lavender-400: var(--catppuccin-color-lavender-400);
+
--color-ctp-lavender-300: var(--catppuccin-color-lavender-300);
+
--color-ctp-lavender-200: var(--catppuccin-color-lavender-200);
+
--color-ctp-lavender-100: var(--catppuccin-color-lavender-100);
+
--color-ctp-lavender-50: var(--catppuccin-color-lavender-50);
+
--color-ctp-lavender-600: var(--catppuccin-color-lavender-600);
+
--color-ctp-lavender-700: var(--catppuccin-color-lavender-700);
+
--color-ctp-lavender-800: var(--catppuccin-color-lavender-800);
+
--color-ctp-lavender-900: var(--catppuccin-color-lavender-900);
+
--color-ctp-lavender-950: var(--catppuccin-color-lavender-950);
+
--color-ctp-text: var(--catppuccin-color-text);
+
--color-ctp-subtext1: var(--catppuccin-color-subtext1);
+
--color-ctp-subtext0: var(--catppuccin-color-subtext0);
+
--color-ctp-overlay2: var(--catppuccin-color-overlay2);
+
--color-ctp-overlay1: var(--catppuccin-color-overlay1);
+
--color-ctp-overlay0: var(--catppuccin-color-overlay0);
+
--color-ctp-surface2: var(--catppuccin-color-surface2);
+
--color-ctp-surface1: var(--catppuccin-color-surface1);
+
--color-ctp-surface0: var(--catppuccin-color-surface0);
+
--color-ctp-base: var(--catppuccin-color-base);
+
--color-ctp-mantle: var(--catppuccin-color-mantle);
+
--color-ctp-crust: var(--catppuccin-color-crust);
+
}
+
@layer base {
+
:root {
+
--catppuccin-color-rosewater: #dc8a78;
+
--catppuccin-color-rosewater-500: #dc8a78;
+
--catppuccin-color-rosewater-400: #de998c;
+
--catppuccin-color-rosewater-300: #e0a69c;
+
--catppuccin-color-rosewater-200: #e2b1ab;
+
--catppuccin-color-rosewater-100: #e4bcb8;
+
--catppuccin-color-rosewater-50: #e6c6c4;
+
--catppuccin-color-rosewater-600: #d28372;
+
--catppuccin-color-rosewater-700: #c27969;
+
--catppuccin-color-rosewater-800: #af6d5e;
+
--catppuccin-color-rosewater-900: #9a5f52;
+
--catppuccin-color-rosewater-950: #804e43;
+
--catppuccin-color-flamingo: #dd7878;
+
--catppuccin-color-flamingo-500: #dd7878;
+
--catppuccin-color-flamingo-400: #df8b8c;
+
--catppuccin-color-flamingo-300: #e19b9c;
+
--catppuccin-color-flamingo-200: #e3a9ab;
+
--catppuccin-color-flamingo-100: #e4b5b8;
+
--catppuccin-color-flamingo-50: #e6c1c4;
+
--catppuccin-color-flamingo-600: #d37272;
+
--catppuccin-color-flamingo-700: #c26969;
+
--catppuccin-color-flamingo-800: #b05e5e;
+
--catppuccin-color-flamingo-900: #9a5252;
+
--catppuccin-color-flamingo-950: #804343;
+
--catppuccin-color-pink: #ea76cb;
+
--catppuccin-color-pink-500: #ea76cb;
+
--catppuccin-color-pink-400: #eb89d0;
+
--catppuccin-color-pink-300: #eb9ad4;
+
--catppuccin-color-pink-200: #eca8d9;
+
--catppuccin-color-pink-100: #ecb5dd;
+
--catppuccin-color-pink-50: #edc1e1;
+
--catppuccin-color-pink-600: #df70c2;
+
--catppuccin-color-pink-700: #ce67b2;
+
--catppuccin-color-pink-800: #ba5da1;
+
--catppuccin-color-pink-900: #a4518e;
+
--catppuccin-color-pink-950: #884275;
+
--catppuccin-color-mauve: #8839ef;
+
--catppuccin-color-mauve-500: #8839ef;
+
--catppuccin-color-mauve-400: #9763f0;
+
--catppuccin-color-mauve-300: #a47ef0;
+
--catppuccin-color-mauve-200: #af93f1;
+
--catppuccin-color-mauve-100: #baa5f1;
+
--catppuccin-color-mauve-50: #c4b5f2;
+
--catppuccin-color-mauve-600: #8236e4;
+
--catppuccin-color-mauve-700: #7731d2;
+
--catppuccin-color-mauve-800: #6b2bbe;
+
--catppuccin-color-mauve-900: #5e25a7;
+
--catppuccin-color-mauve-950: #4d1d8b;
+
--catppuccin-color-red: #d20f39;
+
--catppuccin-color-red-500: #d20f39;
+
--catppuccin-color-red-400: #d55664;
+
--catppuccin-color-red-300: #d87680;
+
--catppuccin-color-red-200: #db8d95;
+
--catppuccin-color-red-100: #dea1a8;
+
--catppuccin-color-red-50: #e1b1b8;
+
--catppuccin-color-red-600: #c80e36;
+
--catppuccin-color-red-700: #b90c31;
+
--catppuccin-color-red-800: #a7092b;
+
--catppuccin-color-red-900: #930725;
+
--catppuccin-color-red-950: #7a051d;
+
--catppuccin-color-maroon: #e64553;
+
--catppuccin-color-maroon-500: #e64553;
+
--catppuccin-color-maroon-400: #e76972;
+
--catppuccin-color-maroon-300: #e88289;
+
--catppuccin-color-maroon-200: #e9969c;
+
--catppuccin-color-maroon-100: #eaa7ad;
+
--catppuccin-color-maroon-50: #ebb6bb;
+
--catppuccin-color-maroon-600: #dc414f;
+
--catppuccin-color-maroon-700: #ca3c48;
+
--catppuccin-color-maroon-800: #b73540;
+
--catppuccin-color-maroon-900: #a12e38;
+
--catppuccin-color-maroon-950: #86242d;
+
--catppuccin-color-peach: #fe640b;
+
--catppuccin-color-peach-500: #fe640b;
+
--catppuccin-color-peach-400: #fd7c57;
+
--catppuccin-color-peach-300: #fb9077;
+
--catppuccin-color-peach-200: #faa08f;
+
--catppuccin-color-peach-100: #f8afa3;
+
--catppuccin-color-peach-50: #f7bcb4;
+
--catppuccin-color-peach-600: #f25f0a;
+
--catppuccin-color-peach-700: #e05708;
+
--catppuccin-color-peach-800: #cb4e07;
+
--catppuccin-color-peach-900: #b24405;
+
--catppuccin-color-peach-950: #943703;
+
--catppuccin-color-yellow: #df8e1d;
+
--catppuccin-color-yellow-500: #df8e1d;
+
--catppuccin-color-yellow-400: #e19c5a;
+
--catppuccin-color-yellow-300: #e2a879;
+
--catppuccin-color-yellow-200: #e4b391;
+
--catppuccin-color-yellow-100: #e6bea4;
+
--catppuccin-color-yellow-50: #e7c8b5;
+
--catppuccin-color-yellow-600: #d5871b;
+
--catppuccin-color-yellow-700: #c47c18;
+
--catppuccin-color-yellow-800: #b27015;
+
--catppuccin-color-yellow-900: #9c6211;
+
--catppuccin-color-yellow-950: #82500c;
+
--catppuccin-color-green: #40a02b;
+
--catppuccin-color-green-500: #40a02b;
+
--catppuccin-color-green-400: #66aa5e;
+
--catppuccin-color-green-300: #7fb47c;
+
--catppuccin-color-green-200: #94bd93;
+
--catppuccin-color-green-100: #a5c6a6;
+
--catppuccin-color-green-50: #b4ceb6;
+
--catppuccin-color-green-600: #3d9929;
+
--catppuccin-color-green-700: #378c25;
+
--catppuccin-color-green-800: #317f20;
+
--catppuccin-color-green-900: #2a6f1b;
+
--catppuccin-color-green-950: #215b15;
+
--catppuccin-color-teal: #179299;
+
--catppuccin-color-teal-500: #179299;
+
--catppuccin-color-teal-400: #569fa5;
+
--catppuccin-color-teal-300: #75abb1;
+
--catppuccin-color-teal-200: #8db6bb;
+
--catppuccin-color-teal-100: #a0c0c5;
+
--catppuccin-color-teal-50: #b0c9ce;
+
--catppuccin-color-teal-600: #158b92;
+
--catppuccin-color-teal-700: #138086;
+
--catppuccin-color-teal-800: #107379;
+
--catppuccin-color-teal-900: #0d656a;
+
--catppuccin-color-teal-950: #085357;
+
--catppuccin-color-sky: #04a5e5;
+
--catppuccin-color-sky-500: #04a5e5;
+
--catppuccin-color-sky-400: #53afe7;
+
--catppuccin-color-sky-300: #74b8e8;
+
--catppuccin-color-sky-200: #8bc0ea;
+
--catppuccin-color-sky-100: #9fc8ec;
+
--catppuccin-color-sky-50: #b0d0ed;
+
--catppuccin-color-sky-600: #049ddb;
+
--catppuccin-color-sky-700: #0391ca;
+
--catppuccin-color-sky-800: #0283b6;
+
--catppuccin-color-sky-900: #0272a0;
+
--catppuccin-color-sky-950: #015e85;
+
--catppuccin-color-sapphire: #209fb5;
+
--catppuccin-color-sapphire-500: #209fb5;
+
--catppuccin-color-sapphire-400: #59aabd;
+
--catppuccin-color-sapphire-300: #77b3c4;
+
--catppuccin-color-sapphire-200: #8ebdcb;
+
--catppuccin-color-sapphire-100: #a0c5d2;
+
--catppuccin-color-sapphire-50: #b1cdd8;
+
--catppuccin-color-sapphire-600: #1e98ad;
+
--catppuccin-color-sapphire-700: #1b8b9f;
+
--catppuccin-color-sapphire-800: #177e90;
+
--catppuccin-color-sapphire-900: #136e7e;
+
--catppuccin-color-sapphire-950: #0e5b68;
+
--catppuccin-color-blue: #1e66f5;
+
--catppuccin-color-blue-500: #1e66f5;
+
--catppuccin-color-blue-400: #587ef5;
+
--catppuccin-color-blue-300: #7791f5;
+
--catppuccin-color-blue-200: #8da1f5;
+
--catppuccin-color-blue-100: #a0b0f5;
+
--catppuccin-color-blue-50: #b1bdf5;
+
--catppuccin-color-blue-600: #1c61ea;
+
--catppuccin-color-blue-700: #1959d8;
+
--catppuccin-color-blue-800: #1650c3;
+
--catppuccin-color-blue-900: #1245ac;
+
--catppuccin-color-blue-950: #0d388f;
+
--catppuccin-color-lavender: #7287fd;
+
--catppuccin-color-lavender-500: #7287fd;
+
--catppuccin-color-lavender-400: #8696fc;
+
--catppuccin-color-lavender-300: #97a4fb;
+
--catppuccin-color-lavender-200: #a5b0fb;
+
--catppuccin-color-lavender-100: #b2bbfa;
+
--catppuccin-color-lavender-50: #bec5f9;
+
--catppuccin-color-lavender-600: #6d81f2;
+
--catppuccin-color-lavender-700: #6476df;
+
--catppuccin-color-lavender-800: #596aca;
+
--catppuccin-color-lavender-900: #4e5db1;
+
--catppuccin-color-lavender-950: #3f4c94;
+
--catppuccin-color-text: #4c4f69;
+
--catppuccin-color-subtext1: #5c5f77;
+
--catppuccin-color-subtext0: #6c6f85;
+
--catppuccin-color-overlay2: #7c7f93;
+
--catppuccin-color-overlay1: #8c8fa1;
+
--catppuccin-color-overlay0: #9ca0b0;
+
--catppuccin-color-surface2: #acb0be;
+
--catppuccin-color-surface1: #bcc0cc;
+
--catppuccin-color-surface0: #ccd0da;
+
--catppuccin-color-base: #eff1f5;
+
--catppuccin-color-mantle: #e6e9ef;
+
--catppuccin-color-crust: #dce0e8;
+
}
+
@variant dark {
+
:root {
+
--catppuccin-color-rosewater: #f5e0dc;
+
--catppuccin-color-rosewater-500: #f5e0dc;
+
--catppuccin-color-rosewater-400: #f6e3e0;
+
--catppuccin-color-rosewater-300: #f7e7e4;
+
--catppuccin-color-rosewater-200: #f8eae7;
+
--catppuccin-color-rosewater-100: #f9edeb;
+
--catppuccin-color-rosewater-50: #faf0ee;
+
--catppuccin-color-rosewater-600: #ead6d2;
+
--catppuccin-color-rosewater-700: #d8c6c3;
+
--catppuccin-color-rosewater-800: #c4b3b1;
+
--catppuccin-color-rosewater-900: #ad9e9d;
+
--catppuccin-color-rosewater-950: #918585;
+
--catppuccin-color-flamingo: #f2cdcd;
+
--catppuccin-color-flamingo-500: #f2cdcd;
+
--catppuccin-color-flamingo-400: #f3d3d3;
+
--catppuccin-color-flamingo-300: #f5d8d8;
+
--catppuccin-color-flamingo-200: #f6dede;
+
--catppuccin-color-flamingo-100: #f7e3e3;
+
--catppuccin-color-flamingo-50: #f9e8e8;
+
--catppuccin-color-flamingo-600: #e7c4c4;
+
--catppuccin-color-flamingo-700: #d6b5b5;
+
--catppuccin-color-flamingo-800: #c2a4a5;
+
--catppuccin-color-flamingo-900: #ab9193;
+
--catppuccin-color-flamingo-950: #8f797c;
+
--catppuccin-color-pink: #f5c2e7;
+
--catppuccin-color-pink-500: #f5c2e7;
+
--catppuccin-color-pink-400: #f6c9ea;
+
--catppuccin-color-pink-300: #f7d0ec;
+
--catppuccin-color-pink-200: #f8d7ef;
+
--catppuccin-color-pink-100: #f9ddf1;
+
--catppuccin-color-pink-50: #fae3f3;
+
--catppuccin-color-pink-600: #eab9dd;
+
--catppuccin-color-pink-700: #d8abcc;
+
--catppuccin-color-pink-800: #c49bba;
+
--catppuccin-color-pink-900: #ad89a5;
+
--catppuccin-color-pink-950: #91738b;
+
--catppuccin-color-mauve: #cba6f7;
+
--catppuccin-color-mauve-500: #cba6f7;
+
--catppuccin-color-mauve-400: #d1b2f8;
+
--catppuccin-color-mauve-300: #d7bcf9;
+
--catppuccin-color-mauve-200: #dcc6f9;
+
--catppuccin-color-mauve-100: #e2d0fa;
+
--catppuccin-color-mauve-50: #e7d9fb;
+
--catppuccin-color-mauve-600: #c29fec;
+
--catppuccin-color-mauve-700: #b392da;
+
--catppuccin-color-mauve-800: #a285c7;
+
--catppuccin-color-mauve-900: #8f75b0;
+
--catppuccin-color-mauve-950: #786394;
+
--catppuccin-color-red: #f38ba8;
+
--catppuccin-color-red-500: #f38ba8;
+
--catppuccin-color-red-400: #f49cb3;
+
--catppuccin-color-red-300: #f5abbe;
+
--catppuccin-color-red-200: #f7b8c7;
+
--catppuccin-color-red-100: #f8c4d1;
+
--catppuccin-color-red-50: #f9d0d9;
+
--catppuccin-color-red-600: #e885a1;
+
--catppuccin-color-red-700: #d67b95;
+
--catppuccin-color-red-800: #c36f88;
+
--catppuccin-color-red-900: #ac6279;
+
--catppuccin-color-red-950: #905367;
+
--catppuccin-color-maroon: #eba0ac;
+
--catppuccin-color-maroon-500: #eba0ac;
+
--catppuccin-color-maroon-400: #edadb7;
+
--catppuccin-color-maroon-300: #efb8c0;
+
--catppuccin-color-maroon-200: #f1c3ca;
+
--catppuccin-color-maroon-100: #f3cdd2;
+
--catppuccin-color-maroon-50: #f5d6db;
+
--catppuccin-color-maroon-600: #e099a5;
+
--catppuccin-color-maroon-700: #cf8d98;
+
--catppuccin-color-maroon-800: #bc808b;
+
--catppuccin-color-maroon-900: #a6717c;
+
--catppuccin-color-maroon-950: #8b5f6a;
+
--catppuccin-color-peach: #fab387;
+
--catppuccin-color-peach-500: #fab387;
+
--catppuccin-color-peach-400: #fbbc99;
+
--catppuccin-color-peach-300: #fbc5a8;
+
--catppuccin-color-peach-200: #fcceb6;
+
--catppuccin-color-peach-100: #fcd6c3;
+
--catppuccin-color-peach-50: #fdddcf;
+
--catppuccin-color-peach-600: #efab81;
+
--catppuccin-color-peach-700: #dd9e78;
+
--catppuccin-color-peach-800: #c88f6e;
+
--catppuccin-color-peach-900: #b17e63;
+
--catppuccin-color-peach-950: #946a55;
+
--catppuccin-color-yellow: #f9e2af;
+
--catppuccin-color-yellow-500: #f9e2af;
+
--catppuccin-color-yellow-400: #fae5b9;
+
--catppuccin-color-yellow-300: #fae8c3;
+
--catppuccin-color-yellow-200: #fbebcb;
+
--catppuccin-color-yellow-100: #fbeed4;
+
--catppuccin-color-yellow-50: #fcf1dc;
+
--catppuccin-color-yellow-600: #eed8a7;
+
--catppuccin-color-yellow-700: #dcc79b;
+
--catppuccin-color-yellow-800: #c7b58d;
+
--catppuccin-color-yellow-900: #b0a07e;
+
--catppuccin-color-yellow-950: #93866b;
+
--catppuccin-color-green: #a6e3a1;
+
--catppuccin-color-green-500: #a6e3a1;
+
--catppuccin-color-green-400: #b2e6ae;
+
--catppuccin-color-green-300: #bce9b9;
+
--catppuccin-color-green-200: #c6ecc4;
+
--catppuccin-color-green-100: #d0efcd;
+
--catppuccin-color-green-50: #d9f2d7;
+
--catppuccin-color-green-600: #9fd99a;
+
--catppuccin-color-green-700: #92c88f;
+
--catppuccin-color-green-800: #85b682;
+
--catppuccin-color-green-900: #75a074;
+
--catppuccin-color-green-950: #638663;
+
--catppuccin-color-teal: #94e2d5;
+
--catppuccin-color-teal-500: #94e2d5;
+
--catppuccin-color-teal-400: #a3e5da;
+
--catppuccin-color-teal-300: #b1e8de;
+
--catppuccin-color-teal-200: #bdebe3;
+
--catppuccin-color-teal-100: #c8eee7;
+
--catppuccin-color-teal-50: #d3f1eb;
+
--catppuccin-color-teal-600: #8dd8cc;
+
--catppuccin-color-teal-700: #83c7bc;
+
--catppuccin-color-teal-800: #77b5ac;
+
--catppuccin-color-teal-900: #69a098;
+
--catppuccin-color-teal-950: #588681;
+
--catppuccin-color-sky: #89dceb;
+
--catppuccin-color-sky-500: #89dceb;
+
--catppuccin-color-sky-400: #9ae0ed;
+
--catppuccin-color-sky-300: #aae4ef;
+
--catppuccin-color-sky-200: #b7e7f1;
+
--catppuccin-color-sky-100: #c4ebf3;
+
--catppuccin-color-sky-50: #cfeef5;
+
--catppuccin-color-sky-600: #83d2e1;
+
--catppuccin-color-sky-700: #79c2d0;
+
--catppuccin-color-sky-800: #6eb0bd;
+
--catppuccin-color-sky-900: #619ba7;
+
--catppuccin-color-sky-950: #52828d;
+
--catppuccin-color-sapphire: #74c7ec;
+
--catppuccin-color-sapphire-500: #74c7ec;
+
--catppuccin-color-sapphire-400: #8bceee;
+
--catppuccin-color-sapphire-300: #9ed4f0;
+
--catppuccin-color-sapphire-200: #aedaf2;
+
--catppuccin-color-sapphire-100: #bce0f4;
+
--catppuccin-color-sapphire-50: #c9e5f6;
+
--catppuccin-color-sapphire-600: #6fbee2;
+
--catppuccin-color-sapphire-700: #66b0d1;
+
--catppuccin-color-sapphire-800: #5d9fbe;
+
--catppuccin-color-sapphire-900: #538ca8;
+
--catppuccin-color-sapphire-950: #46768e;
+
--catppuccin-color-blue: #89b4fa;
+
--catppuccin-color-blue-500: #89b4fa;
+
--catppuccin-color-blue-400: #9abdfb;
+
--catppuccin-color-blue-300: #aac6fb;
+
--catppuccin-color-blue-200: #b7cefc;
+
--catppuccin-color-blue-100: #c4d6fc;
+
--catppuccin-color-blue-50: #cfdefd;
+
--catppuccin-color-blue-600: #83acef;
+
--catppuccin-color-blue-700: #799fdd;
+
--catppuccin-color-blue-800: #6e90c9;
+
--catppuccin-color-blue-900: #617fb2;
+
--catppuccin-color-blue-950: #526b96;
+
--catppuccin-color-lavender: #b4befe;
+
--catppuccin-color-lavender-500: #b4befe;
+
--catppuccin-color-lavender-400: #bdc6fe;
+
--catppuccin-color-lavender-300: #c6cdfe;
+
--catppuccin-color-lavender-200: #ced4fe;
+
--catppuccin-color-lavender-100: #d6dbfe;
+
--catppuccin-color-lavender-50: #dee2ff;
+
--catppuccin-color-lavender-600: #acb5f3;
+
--catppuccin-color-lavender-700: #9fa8e1;
+
--catppuccin-color-lavender-800: #9098cc;
+
--catppuccin-color-lavender-900: #7f86b5;
+
--catppuccin-color-lavender-950: #6b7099;
+
--catppuccin-color-text: #cdd6f4;
+
--catppuccin-color-subtext1: #bac2de;
+
--catppuccin-color-subtext0: #a6adc8;
+
--catppuccin-color-overlay2: #9399b2;
+
--catppuccin-color-overlay1: #7f849c;
+
--catppuccin-color-overlay0: #6c7086;
+
--catppuccin-color-surface2: #585b70;
+
--catppuccin-color-surface1: #45475a;
+
--catppuccin-color-surface0: #313244;
+
--catppuccin-color-base: #1e1e2e;
+
--catppuccin-color-mantle: #181825;
+
--catppuccin-color-crust: #11111b;
+
}
+
}
+
.latte {
+
--catppuccin-color-rosewater: #dc8a78;
+
--catppuccin-color-rosewater-500: #dc8a78;
+
--catppuccin-color-rosewater-400: #de998c;
+
--catppuccin-color-rosewater-300: #e0a69c;
+
--catppuccin-color-rosewater-200: #e2b1ab;
+
--catppuccin-color-rosewater-100: #e4bcb8;
+
--catppuccin-color-rosewater-50: #e6c6c4;
+
--catppuccin-color-rosewater-600: #d28372;
+
--catppuccin-color-rosewater-700: #c27969;
+
--catppuccin-color-rosewater-800: #af6d5e;
+
--catppuccin-color-rosewater-900: #9a5f52;
+
--catppuccin-color-rosewater-950: #804e43;
+
--catppuccin-color-flamingo: #dd7878;
+
--catppuccin-color-flamingo-500: #dd7878;
+
--catppuccin-color-flamingo-400: #df8b8c;
+
--catppuccin-color-flamingo-300: #e19b9c;
+
--catppuccin-color-flamingo-200: #e3a9ab;
+
--catppuccin-color-flamingo-100: #e4b5b8;
+
--catppuccin-color-flamingo-50: #e6c1c4;
+
--catppuccin-color-flamingo-600: #d37272;
+
--catppuccin-color-flamingo-700: #c26969;
+
--catppuccin-color-flamingo-800: #b05e5e;
+
--catppuccin-color-flamingo-900: #9a5252;
+
--catppuccin-color-flamingo-950: #804343;
+
--catppuccin-color-pink: #ea76cb;
+
--catppuccin-color-pink-500: #ea76cb;
+
--catppuccin-color-pink-400: #eb89d0;
+
--catppuccin-color-pink-300: #eb9ad4;
+
--catppuccin-color-pink-200: #eca8d9;
+
--catppuccin-color-pink-100: #ecb5dd;
+
--catppuccin-color-pink-50: #edc1e1;
+
--catppuccin-color-pink-600: #df70c2;
+
--catppuccin-color-pink-700: #ce67b2;
+
--catppuccin-color-pink-800: #ba5da1;
+
--catppuccin-color-pink-900: #a4518e;
+
--catppuccin-color-pink-950: #884275;
+
--catppuccin-color-mauve: #8839ef;
+
--catppuccin-color-mauve-500: #8839ef;
+
--catppuccin-color-mauve-400: #9763f0;
+
--catppuccin-color-mauve-300: #a47ef0;
+
--catppuccin-color-mauve-200: #af93f1;
+
--catppuccin-color-mauve-100: #baa5f1;
+
--catppuccin-color-mauve-50: #c4b5f2;
+
--catppuccin-color-mauve-600: #8236e4;
+
--catppuccin-color-mauve-700: #7731d2;
+
--catppuccin-color-mauve-800: #6b2bbe;
+
--catppuccin-color-mauve-900: #5e25a7;
+
--catppuccin-color-mauve-950: #4d1d8b;
+
--catppuccin-color-red: #d20f39;
+
--catppuccin-color-red-500: #d20f39;
+
--catppuccin-color-red-400: #d55664;
+
--catppuccin-color-red-300: #d87680;
+
--catppuccin-color-red-200: #db8d95;
+
--catppuccin-color-red-100: #dea1a8;
+
--catppuccin-color-red-50: #e1b1b8;
+
--catppuccin-color-red-600: #c80e36;
+
--catppuccin-color-red-700: #b90c31;
+
--catppuccin-color-red-800: #a7092b;
+
--catppuccin-color-red-900: #930725;
+
--catppuccin-color-red-950: #7a051d;
+
--catppuccin-color-maroon: #e64553;
+
--catppuccin-color-maroon-500: #e64553;
+
--catppuccin-color-maroon-400: #e76972;
+
--catppuccin-color-maroon-300: #e88289;
+
--catppuccin-color-maroon-200: #e9969c;
+
--catppuccin-color-maroon-100: #eaa7ad;
+
--catppuccin-color-maroon-50: #ebb6bb;
+
--catppuccin-color-maroon-600: #dc414f;
+
--catppuccin-color-maroon-700: #ca3c48;
+
--catppuccin-color-maroon-800: #b73540;
+
--catppuccin-color-maroon-900: #a12e38;
+
--catppuccin-color-maroon-950: #86242d;
+
--catppuccin-color-peach: #fe640b;
+
--catppuccin-color-peach-500: #fe640b;
+
--catppuccin-color-peach-400: #fd7c57;
+
--catppuccin-color-peach-300: #fb9077;
+
--catppuccin-color-peach-200: #faa08f;
+
--catppuccin-color-peach-100: #f8afa3;
+
--catppuccin-color-peach-50: #f7bcb4;
+
--catppuccin-color-peach-600: #f25f0a;
+
--catppuccin-color-peach-700: #e05708;
+
--catppuccin-color-peach-800: #cb4e07;
+
--catppuccin-color-peach-900: #b24405;
+
--catppuccin-color-peach-950: #943703;
+
--catppuccin-color-yellow: #df8e1d;
+
--catppuccin-color-yellow-500: #df8e1d;
+
--catppuccin-color-yellow-400: #e19c5a;
+
--catppuccin-color-yellow-300: #e2a879;
+
--catppuccin-color-yellow-200: #e4b391;
+
--catppuccin-color-yellow-100: #e6bea4;
+
--catppuccin-color-yellow-50: #e7c8b5;
+
--catppuccin-color-yellow-600: #d5871b;
+
--catppuccin-color-yellow-700: #c47c18;
+
--catppuccin-color-yellow-800: #b27015;
+
--catppuccin-color-yellow-900: #9c6211;
+
--catppuccin-color-yellow-950: #82500c;
+
--catppuccin-color-green: #40a02b;
+
--catppuccin-color-green-500: #40a02b;
+
--catppuccin-color-green-400: #66aa5e;
+
--catppuccin-color-green-300: #7fb47c;
+
--catppuccin-color-green-200: #94bd93;
+
--catppuccin-color-green-100: #a5c6a6;
+
--catppuccin-color-green-50: #b4ceb6;
+
--catppuccin-color-green-600: #3d9929;
+
--catppuccin-color-green-700: #378c25;
+
--catppuccin-color-green-800: #317f20;
+
--catppuccin-color-green-900: #2a6f1b;
+
--catppuccin-color-green-950: #215b15;
+
--catppuccin-color-teal: #179299;
+
--catppuccin-color-teal-500: #179299;
+
--catppuccin-color-teal-400: #569fa5;
+
--catppuccin-color-teal-300: #75abb1;
+
--catppuccin-color-teal-200: #8db6bb;
+
--catppuccin-color-teal-100: #a0c0c5;
+
--catppuccin-color-teal-50: #b0c9ce;
+
--catppuccin-color-teal-600: #158b92;
+
--catppuccin-color-teal-700: #138086;
+
--catppuccin-color-teal-800: #107379;
+
--catppuccin-color-teal-900: #0d656a;
+
--catppuccin-color-teal-950: #085357;
+
--catppuccin-color-sky: #04a5e5;
+
--catppuccin-color-sky-500: #04a5e5;
+
--catppuccin-color-sky-400: #53afe7;
+
--catppuccin-color-sky-300: #74b8e8;
+
--catppuccin-color-sky-200: #8bc0ea;
+
--catppuccin-color-sky-100: #9fc8ec;
+
--catppuccin-color-sky-50: #b0d0ed;
+
--catppuccin-color-sky-600: #049ddb;
+
--catppuccin-color-sky-700: #0391ca;
+
--catppuccin-color-sky-800: #0283b6;
+
--catppuccin-color-sky-900: #0272a0;
+
--catppuccin-color-sky-950: #015e85;
+
--catppuccin-color-sapphire: #209fb5;
+
--catppuccin-color-sapphire-500: #209fb5;
+
--catppuccin-color-sapphire-400: #59aabd;
+
--catppuccin-color-sapphire-300: #77b3c4;
+
--catppuccin-color-sapphire-200: #8ebdcb;
+
--catppuccin-color-sapphire-100: #a0c5d2;
+
--catppuccin-color-sapphire-50: #b1cdd8;
+
--catppuccin-color-sapphire-600: #1e98ad;
+
--catppuccin-color-sapphire-700: #1b8b9f;
+
--catppuccin-color-sapphire-800: #177e90;
+
--catppuccin-color-sapphire-900: #136e7e;
+
--catppuccin-color-sapphire-950: #0e5b68;
+
--catppuccin-color-blue: #1e66f5;
+
--catppuccin-color-blue-500: #1e66f5;
+
--catppuccin-color-blue-400: #587ef5;
+
--catppuccin-color-blue-300: #7791f5;
+
--catppuccin-color-blue-200: #8da1f5;
+
--catppuccin-color-blue-100: #a0b0f5;
+
--catppuccin-color-blue-50: #b1bdf5;
+
--catppuccin-color-blue-600: #1c61ea;
+
--catppuccin-color-blue-700: #1959d8;
+
--catppuccin-color-blue-800: #1650c3;
+
--catppuccin-color-blue-900: #1245ac;
+
--catppuccin-color-blue-950: #0d388f;
+
--catppuccin-color-lavender: #7287fd;
+
--catppuccin-color-lavender-500: #7287fd;
+
--catppuccin-color-lavender-400: #8696fc;
+
--catppuccin-color-lavender-300: #97a4fb;
+
--catppuccin-color-lavender-200: #a5b0fb;
+
--catppuccin-color-lavender-100: #b2bbfa;
+
--catppuccin-color-lavender-50: #bec5f9;
+
--catppuccin-color-lavender-600: #6d81f2;
+
--catppuccin-color-lavender-700: #6476df;
+
--catppuccin-color-lavender-800: #596aca;
+
--catppuccin-color-lavender-900: #4e5db1;
+
--catppuccin-color-lavender-950: #3f4c94;
+
--catppuccin-color-text: #4c4f69;
+
--catppuccin-color-subtext1: #5c5f77;
+
--catppuccin-color-subtext0: #6c6f85;
+
--catppuccin-color-overlay2: #7c7f93;
+
--catppuccin-color-overlay1: #8c8fa1;
+
--catppuccin-color-overlay0: #9ca0b0;
+
--catppuccin-color-surface2: #acb0be;
+
--catppuccin-color-surface1: #bcc0cc;
+
--catppuccin-color-surface0: #ccd0da;
+
--catppuccin-color-base: #eff1f5;
+
--catppuccin-color-mantle: #e6e9ef;
+
--catppuccin-color-crust: #dce0e8;
+
}
+
.frappe {
+
--catppuccin-color-rosewater: #f2d5cf;
+
--catppuccin-color-rosewater-500: #f2d5cf;
+
--catppuccin-color-rosewater-400: #f3dad4;
+
--catppuccin-color-rosewater-300: #f5deda;
+
--catppuccin-color-rosewater-200: #f6e3df;
+
--catppuccin-color-rosewater-100: #f7e7e4;
+
--catppuccin-color-rosewater-50: #f9ebe9;
+
--catppuccin-color-rosewater-600: #e7ccc6;
+
--catppuccin-color-rosewater-700: #d6bdb9;
+
--catppuccin-color-rosewater-800: #c3aca9;
+
--catppuccin-color-rosewater-900: #ad9998;
+
--catppuccin-color-rosewater-950: #928284;
+
--catppuccin-color-flamingo: #eebebe;
+
--catppuccin-color-flamingo-500: #eebebe;
+
--catppuccin-color-flamingo-400: #f0c6c6;
+
--catppuccin-color-flamingo-300: #f2cdcd;
+
--catppuccin-color-flamingo-200: #f3d4d4;
+
--catppuccin-color-flamingo-100: #f5dbdb;
+
--catppuccin-color-flamingo-50: #f7e2e2;
+
--catppuccin-color-flamingo-600: #e4b6b6;
+
--catppuccin-color-flamingo-700: #d3a9aa;
+
--catppuccin-color-flamingo-800: #c09a9c;
+
--catppuccin-color-flamingo-900: #aa898d;
+
--catppuccin-color-flamingo-950: #90757b;
+
--catppuccin-color-pink: #f4b8e4;
+
--catppuccin-color-pink-500: #f4b8e4;
+
--catppuccin-color-pink-400: #f5c1e7;
+
--catppuccin-color-pink-300: #f6c9ea;
+
--catppuccin-color-pink-200: #f7d1ed;
+
--catppuccin-color-pink-100: #f8d8ef;
+
--catppuccin-color-pink-50: #fadff2;
+
--catppuccin-color-pink-600: #e9b0da;
+
--catppuccin-color-pink-700: #d8a3cb;
+
--catppuccin-color-pink-800: #c495ba;
+
--catppuccin-color-pink-900: #ae85a6;
+
--catppuccin-color-pink-950: #93728f;
+
--catppuccin-color-mauve: #ca9ee6;
+
--catppuccin-color-mauve-500: #ca9ee6;
+
--catppuccin-color-mauve-400: #d0abe9;
+
--catppuccin-color-mauve-300: #d6b7eb;
+
--catppuccin-color-mauve-200: #dcc2ee;
+
--catppuccin-color-mauve-100: #e1ccf0;
+
--catppuccin-color-mauve-50: #e7d6f3;
+
--catppuccin-color-mauve-600: #c197dc;
+
--catppuccin-color-mauve-700: #b38dcd;
+
--catppuccin-color-mauve-800: #a381bb;
+
--catppuccin-color-mauve-900: #9173a8;
+
--catppuccin-color-mauve-950: #7b6490;
+
--catppuccin-color-red: #e78284;
+
--catppuccin-color-red-500: #e78284;
+
--catppuccin-color-red-400: #ea9597;
+
--catppuccin-color-red-300: #eca5a7;
+
--catppuccin-color-red-200: #efb4b5;
+
--catppuccin-color-red-100: #f1c1c2;
+
--catppuccin-color-red-50: #f3cdce;
+
--catppuccin-color-red-600: #dd7d7f;
+
--catppuccin-color-red-700: #cc7478;
+
--catppuccin-color-red-800: #ba6b70;
+
--catppuccin-color-red-900: #a56168;
+
--catppuccin-color-red-950: #8c555e;
+
--catppuccin-color-maroon: #ea999c;
+
--catppuccin-color-maroon-500: #ea999c;
+
--catppuccin-color-maroon-400: #eca7a9;
+
--catppuccin-color-maroon-300: #eeb4b6;
+
--catppuccin-color-maroon-200: #f1bfc1;
+
--catppuccin-color-maroon-100: #f3cacb;
+
--catppuccin-color-maroon-50: #f5d4d5;
+
--catppuccin-color-maroon-600: #e09396;
+
--catppuccin-color-maroon-700: #cf888d;
+
--catppuccin-color-maroon-800: #bc7d82;
+
--catppuccin-color-maroon-900: #a77077;
+
--catppuccin-color-maroon-950: #8d6169;
+
--catppuccin-color-peach: #ef9f76;
+
--catppuccin-color-peach-500: #ef9f76;
+
--catppuccin-color-peach-400: #f1ac8c;
+
--catppuccin-color-peach-300: #f2b89f;
+
--catppuccin-color-peach-200: #f4c3af;
+
--catppuccin-color-peach-100: #f6cdbd;
+
--catppuccin-color-peach-50: #f7d6ca;
+
--catppuccin-color-peach-600: #e59872;
+
--catppuccin-color-peach-700: #d38e6c;
+
--catppuccin-color-peach-800: #c08266;
+
--catppuccin-color-peach-900: #ab745f;
+
--catppuccin-color-peach-950: #906458;
+
--catppuccin-color-yellow: #e5c890;
+
--catppuccin-color-yellow-500: #e5c890;
+
--catppuccin-color-yellow-400: #e8cea0;
+
--catppuccin-color-yellow-300: #ebd5ae;
+
--catppuccin-color-yellow-200: #eddabb;
+
--catppuccin-color-yellow-100: #f0e0c6;
+
--catppuccin-color-yellow-50: #f2e6d1;
+
--catppuccin-color-yellow-600: #dbbf8b;
+
--catppuccin-color-yellow-700: #cbb182;
+
--catppuccin-color-yellow-800: #b8a279;
+
--catppuccin-color-yellow-900: #a4906f;
+
--catppuccin-color-yellow-950: #8a7b64;
+
--catppuccin-color-green: #a6d189;
+
--catppuccin-color-green-500: #a6d189;
+
--catppuccin-color-green-400: #b2d69a;
+
--catppuccin-color-green-300: #bcdbaa;
+
--catppuccin-color-green-200: #c6e0b7;
+
--catppuccin-color-green-100: #d0e5c4;
+
--catppuccin-color-green-50: #d9e9cf;
+
--catppuccin-color-green-600: #9fc884;
+
--catppuccin-color-green-700: #93b97c;
+
--catppuccin-color-green-800: #87a974;
+
--catppuccin-color-green-900: #78966b;
+
--catppuccin-color-green-950: #678060;
+
--catppuccin-color-teal: #81c8be;
+
--catppuccin-color-teal-500: #81c8be;
+
--catppuccin-color-teal-400: #94cec6;
+
--catppuccin-color-teal-300: #a5d5cd;
+
--catppuccin-color-teal-200: #b4dad4;
+
--catppuccin-color-teal-100: #c1e0db;
+
--catppuccin-color-teal-50: #cde6e2;
+
--catppuccin-color-teal-600: #7cbfb6;
+
--catppuccin-color-teal-700: #73b1aa;
+
--catppuccin-color-teal-800: #6aa29c;
+
--catppuccin-color-teal-900: #5f908d;
+
--catppuccin-color-teal-950: #537b7b;
+
--catppuccin-color-sky: #99d1db;
+
--catppuccin-color-sky-500: #99d1db;
+
--catppuccin-color-sky-400: #a7d6df;
+
--catppuccin-color-sky-300: #b4dbe3;
+
--catppuccin-color-sky-200: #bfe0e7;
+
--catppuccin-color-sky-100: #cae5ea;
+
--catppuccin-color-sky-50: #d4e9ee;
+
--catppuccin-color-sky-600: #93c8d2;
+
--catppuccin-color-sky-700: #88b9c3;
+
--catppuccin-color-sky-800: #7ca9b3;
+
--catppuccin-color-sky-900: #6f96a0;
+
--catppuccin-color-sky-950: #60808a;
+
--catppuccin-color-sapphire: #85c1dc;
+
--catppuccin-color-sapphire-500: #85c1dc;
+
--catppuccin-color-sapphire-400: #97c8e0;
+
--catppuccin-color-sapphire-300: #a7cfe4;
+
--catppuccin-color-sapphire-200: #b5d6e7;
+
--catppuccin-color-sapphire-100: #c2ddeb;
+
--catppuccin-color-sapphire-50: #cee3ee;
+
--catppuccin-color-sapphire-600: #80b9d3;
+
--catppuccin-color-sapphire-700: #77abc4;
+
--catppuccin-color-sapphire-800: #6d9cb4;
+
--catppuccin-color-sapphire-900: #628ba1;
+
--catppuccin-color-sapphire-950: #55778b;
+
--catppuccin-color-blue: #8caaee;
+
--catppuccin-color-blue-500: #8caaee;
+
--catppuccin-color-blue-400: #9db5f0;
+
--catppuccin-color-blue-300: #abbff2;
+
--catppuccin-color-blue-200: #b9c9f3;
+
--catppuccin-color-blue-100: #c5d2f5;
+
--catppuccin-color-blue-50: #d0daf7;
+
--catppuccin-color-blue-600: #86a3e4;
+
--catppuccin-color-blue-700: #7d97d4;
+
--catppuccin-color-blue-800: #728ac2;
+
--catppuccin-color-blue-900: #677bad;
+
--catppuccin-color-blue-950: #596a95;
+
--catppuccin-color-lavender: #babbf1;
+
--catppuccin-color-lavender-500: #babbf1;
+
--catppuccin-color-lavender-400: #c2c3f2;
+
--catppuccin-color-lavender-300: #cacbf4;
+
--catppuccin-color-lavender-200: #d2d2f5;
+
--catppuccin-color-lavender-100: #d9daf7;
+
--catppuccin-color-lavender-50: #e0e0f8;
+
--catppuccin-color-lavender-600: #b2b3e7;
+
--catppuccin-color-lavender-700: #a5a6d6;
+
--catppuccin-color-lavender-800: #9698c4;
+
--catppuccin-color-lavender-900: #8687af;
+
--catppuccin-color-lavender-950: #727496;
+
--catppuccin-color-text: #c6d0f5;
+
--catppuccin-color-subtext1: #b5bfe2;
+
--catppuccin-color-subtext0: #a5adce;
+
--catppuccin-color-overlay2: #949cbb;
+
--catppuccin-color-overlay1: #838ba7;
+
--catppuccin-color-overlay0: #737994;
+
--catppuccin-color-surface2: #626880;
+
--catppuccin-color-surface1: #51576d;
+
--catppuccin-color-surface0: #414559;
+
--catppuccin-color-base: #303446;
+
--catppuccin-color-mantle: #292c3c;
+
--catppuccin-color-crust: #232634;
+
}
+
.macchiato {
+
--catppuccin-color-rosewater: #f4dbd6;
+
--catppuccin-color-rosewater-500: #f4dbd6;
+
--catppuccin-color-rosewater-400: #f5dfdb;
+
--catppuccin-color-rosewater-300: #f6e3df;
+
--catppuccin-color-rosewater-200: #f7e7e3;
+
--catppuccin-color-rosewater-100: #f8eae8;
+
--catppuccin-color-rosewater-50: #faeeec;
+
--catppuccin-color-rosewater-600: #e9d1cd;
+
--catppuccin-color-rosewater-700: #d7c1be;
+
--catppuccin-color-rosewater-800: #c4b0ad;
+
--catppuccin-color-rosewater-900: #ad9b9b;
+
--catppuccin-color-rosewater-950: #918384;
+
--catppuccin-color-flamingo: #f0c6c6;
+
--catppuccin-color-flamingo-500: #f0c6c6;
+
--catppuccin-color-flamingo-400: #f2cdcd;
+
--catppuccin-color-flamingo-300: #f3d3d3;
+
--catppuccin-color-flamingo-200: #f5d9d9;
+
--catppuccin-color-flamingo-100: #f6dfdf;
+
--catppuccin-color-flamingo-50: #f8e5e5;
+
--catppuccin-color-flamingo-600: #e5bdbe;
+
--catppuccin-color-flamingo-700: #d4afb0;
+
--catppuccin-color-flamingo-800: #c09fa1;
+
--catppuccin-color-flamingo-900: #aa8d90;
+
--catppuccin-color-flamingo-950: #8f777b;
+
--catppuccin-color-pink: #f5bde6;
+
--catppuccin-color-pink-500: #f5bde6;
+
--catppuccin-color-pink-400: #f6c5e9;
+
--catppuccin-color-pink-300: #f7cceb;
+
--catppuccin-color-pink-200: #f8d4ee;
+
--catppuccin-color-pink-100: #f9dbf0;
+
--catppuccin-color-pink-50: #fae1f3;
+
--catppuccin-color-pink-600: #eab5dc;
+
--catppuccin-color-pink-700: #d8a7cc;
+
--catppuccin-color-pink-800: #c498ba;
+
--catppuccin-color-pink-900: #ae86a6;
+
--catppuccin-color-pink-950: #92728d;
+
--catppuccin-color-mauve: #c6a0f6;
+
--catppuccin-color-mauve-500: #c6a0f6;
+
--catppuccin-color-mauve-400: #cdadf7;
+
--catppuccin-color-mauve-300: #d3b8f8;
+
--catppuccin-color-mauve-200: #d9c3f9;
+
--catppuccin-color-mauve-100: #dfcdfa;
+
--catppuccin-color-mauve-50: #e5d6fb;
+
--catppuccin-color-mauve-600: #bd99eb;
+
--catppuccin-color-mauve-700: #af8eda;
+
--catppuccin-color-mauve-800: #9f81c7;
+
--catppuccin-color-mauve-900: #8c72b1;
+
--catppuccin-color-mauve-950: #766196;
+
--catppuccin-color-red: #ed8796;
+
--catppuccin-color-red-500: #ed8796;
+
--catppuccin-color-red-400: #ef99a5;
+
--catppuccin-color-red-300: #f1a8b2;
+
--catppuccin-color-red-200: #f3b6be;
+
--catppuccin-color-red-100: #f4c3c9;
+
--catppuccin-color-red-50: #f6cfd3;
+
--catppuccin-color-red-600: #e28190;
+
--catppuccin-color-red-700: #d17886;
+
--catppuccin-color-red-800: #be6d7c;
+
--catppuccin-color-red-900: #a86170;
+
--catppuccin-color-red-950: #8d5362;
+
--catppuccin-color-maroon: #ee99a0;
+
--catppuccin-color-maroon-500: #ee99a0;
+
--catppuccin-color-maroon-400: #f0a7ad;
+
--catppuccin-color-maroon-300: #f2b4b8;
+
--catppuccin-color-maroon-200: #f3bfc3;
+
--catppuccin-color-maroon-100: #f5cacd;
+
--catppuccin-color-maroon-50: #f7d4d6;
+
--catppuccin-color-maroon-600: #e39299;
+
--catppuccin-color-maroon-700: #d2878f;
+
--catppuccin-color-maroon-800: #bf7b83;
+
--catppuccin-color-maroon-900: #a96e76;
+
--catppuccin-color-maroon-950: #8e5d67;
+
--catppuccin-color-peach: #f5a97f;
+
--catppuccin-color-peach-500: #f5a97f;
+
--catppuccin-color-peach-400: #f6b493;
+
--catppuccin-color-peach-300: #f7bea4;
+
--catppuccin-color-peach-200: #f8c8b3;
+
--catppuccin-color-peach-100: #f9d1c0;
+
--catppuccin-color-peach-50: #fadacc;
+
--catppuccin-color-peach-600: #eaa27a;
+
--catppuccin-color-peach-700: #d89572;
+
--catppuccin-color-peach-800: #c4886a;
+
--catppuccin-color-peach-900: #ae7961;
+
--catppuccin-color-peach-950: #926656;
+
--catppuccin-color-yellow: #eed49f;
+
--catppuccin-color-yellow-500: #eed49f;
+
--catppuccin-color-yellow-400: #f0d9ac;
+
--catppuccin-color-yellow-300: #f2ddb8;
+
--catppuccin-color-yellow-200: #f3e2c3;
+
--catppuccin-color-yellow-100: #f5e6cd;
+
--catppuccin-color-yellow-50: #f7ebd6;
+
--catppuccin-color-yellow-600: #e3cb99;
+
--catppuccin-color-yellow-700: #d2bb8e;
+
--catppuccin-color-yellow-800: #bfaa82;
+
--catppuccin-color-yellow-900: #a99775;
+
--catppuccin-color-yellow-950: #8e7f66;
+
--catppuccin-color-green: #a6da95;
+
--catppuccin-color-green-500: #a6da95;
+
--catppuccin-color-green-400: #b2dea4;
+
--catppuccin-color-green-300: #bce2b1;
+
--catppuccin-color-green-200: #c6e6bd;
+
--catppuccin-color-green-100: #d0eac8;
+
--catppuccin-color-green-50: #d9edd3;
+
--catppuccin-color-green-600: #9fd08f;
+
--catppuccin-color-green-700: #93c185;
+
--catppuccin-color-green-800: #85af7b;
+
--catppuccin-color-green-900: #769b6f;
+
--catppuccin-color-green-950: #648261;
+
--catppuccin-color-teal: #8bd5ca;
+
--catppuccin-color-teal-500: #8bd5ca;
+
--catppuccin-color-teal-400: #9cdad0;
+
--catppuccin-color-teal-300: #abded6;
+
--catppuccin-color-teal-200: #b8e3dc;
+
--catppuccin-color-teal-100: #c4e7e1;
+
--catppuccin-color-teal-50: #d0ebe7;
+
--catppuccin-color-teal-600: #85ccc1;
+
--catppuccin-color-teal-700: #7bbcb3;
+
--catppuccin-color-teal-800: #70aba4;
+
--catppuccin-color-teal-900: #639792;
+
--catppuccin-color-teal-950: #557f7d;
+
--catppuccin-color-sky: #91d7e3;
+
--catppuccin-color-sky-500: #91d7e3;
+
--catppuccin-color-sky-400: #a1dbe6;
+
--catppuccin-color-sky-300: #afe0e9;
+
--catppuccin-color-sky-200: #bbe4ec;
+
--catppuccin-color-sky-100: #c7e8ef;
+
--catppuccin-color-sky-50: #d2ecf2;
+
--catppuccin-color-sky-600: #8bcdd9;
+
--catppuccin-color-sky-700: #80bec9;
+
--catppuccin-color-sky-800: #75adb8;
+
--catppuccin-color-sky-900: #6899a4;
+
--catppuccin-color-sky-950: #58818b;
+
--catppuccin-color-sapphire: #7dc4e4;
+
--catppuccin-color-sapphire-500: #7dc4e4;
+
--catppuccin-color-sapphire-400: #91cbe7;
+
--catppuccin-color-sapphire-300: #a3d2ea;
+
--catppuccin-color-sapphire-200: #b2d8ed;
+
--catppuccin-color-sapphire-100: #bfdeef;
+
--catppuccin-color-sapphire-50: #cce4f2;
+
--catppuccin-color-sapphire-600: #78bbda;
+
--catppuccin-color-sapphire-700: #6fadca;
+
--catppuccin-color-sapphire-800: #659db9;
+
--catppuccin-color-sapphire-900: #5a8ba4;
+
--catppuccin-color-sapphire-950: #4d768c;
+
--catppuccin-color-blue: #8aadf4;
+
--catppuccin-color-blue-500: #8aadf4;
+
--catppuccin-color-blue-400: #9bb7f5;
+
--catppuccin-color-blue-300: #aac1f6;
+
--catppuccin-color-blue-200: #b8caf7;
+
--catppuccin-color-blue-100: #c4d3f8;
+
--catppuccin-color-blue-50: #cfdbfa;
+
--catppuccin-color-blue-600: #84a5e9;
+
--catppuccin-color-blue-700: #7a99d8;
+
--catppuccin-color-blue-800: #6f8bc5;
+
--catppuccin-color-blue-900: #637baf;
+
--catppuccin-color-blue-950: #546895;
+
--catppuccin-color-lavender: #b7bdf8;
+
--catppuccin-color-lavender-500: #b7bdf8;
+
--catppuccin-color-lavender-400: #c0c5f9;
+
--catppuccin-color-lavender-300: #c8ccf9;
+
--catppuccin-color-lavender-200: #d0d4fa;
+
--catppuccin-color-lavender-100: #d8dbfb;
+
--catppuccin-color-lavender-50: #dfe1fc;
+
--catppuccin-color-lavender-600: #afb5ed;
+
--catppuccin-color-lavender-700: #a2a7dc;
+
--catppuccin-color-lavender-800: #9398c8;
+
--catppuccin-color-lavender-900: #8286b2;
+
--catppuccin-color-lavender-950: #6d7297;
+
--catppuccin-color-text: #cad3f5;
+
--catppuccin-color-subtext1: #b8c0e0;
+
--catppuccin-color-subtext0: #a5adcb;
+
--catppuccin-color-overlay2: #939ab7;
+
--catppuccin-color-overlay1: #8087a2;
+
--catppuccin-color-overlay0: #6e738d;
+
--catppuccin-color-surface2: #5b6078;
+
--catppuccin-color-surface1: #494d64;
+
--catppuccin-color-surface0: #363a4f;
+
--catppuccin-color-base: #24273a;
+
--catppuccin-color-mantle: #1e2030;
+
--catppuccin-color-crust: #181926;
+
}
+
.mocha {
+
--catppuccin-color-rosewater: #f5e0dc;
+
--catppuccin-color-rosewater-500: #f5e0dc;
+
--catppuccin-color-rosewater-400: #f6e3e0;
+
--catppuccin-color-rosewater-300: #f7e7e4;
+
--catppuccin-color-rosewater-200: #f8eae7;
+
--catppuccin-color-rosewater-100: #f9edeb;
+
--catppuccin-color-rosewater-50: #faf0ee;
+
--catppuccin-color-rosewater-600: #ead6d2;
+
--catppuccin-color-rosewater-700: #d8c6c3;
+
--catppuccin-color-rosewater-800: #c4b3b1;
+
--catppuccin-color-rosewater-900: #ad9e9d;
+
--catppuccin-color-rosewater-950: #918585;
+
--catppuccin-color-flamingo: #f2cdcd;
+
--catppuccin-color-flamingo-500: #f2cdcd;
+
--catppuccin-color-flamingo-400: #f3d3d3;
+
--catppuccin-color-flamingo-300: #f5d8d8;
+
--catppuccin-color-flamingo-200: #f6dede;
+
--catppuccin-color-flamingo-100: #f7e3e3;
+
--catppuccin-color-flamingo-50: #f9e8e8;
+
--catppuccin-color-flamingo-600: #e7c4c4;
+
--catppuccin-color-flamingo-700: #d6b5b5;
+
--catppuccin-color-flamingo-800: #c2a4a5;
+
--catppuccin-color-flamingo-900: #ab9193;
+
--catppuccin-color-flamingo-950: #8f797c;
+
--catppuccin-color-pink: #f5c2e7;
+
--catppuccin-color-pink-500: #f5c2e7;
+
--catppuccin-color-pink-400: #f6c9ea;
+
--catppuccin-color-pink-300: #f7d0ec;
+
--catppuccin-color-pink-200: #f8d7ef;
+
--catppuccin-color-pink-100: #f9ddf1;
+
--catppuccin-color-pink-50: #fae3f3;
+
--catppuccin-color-pink-600: #eab9dd;
+
--catppuccin-color-pink-700: #d8abcc;
+
--catppuccin-color-pink-800: #c49bba;
+
--catppuccin-color-pink-900: #ad89a5;
+
--catppuccin-color-pink-950: #91738b;
+
--catppuccin-color-mauve: #cba6f7;
+
--catppuccin-color-mauve-500: #cba6f7;
+
--catppuccin-color-mauve-400: #d1b2f8;
+
--catppuccin-color-mauve-300: #d7bcf9;
+
--catppuccin-color-mauve-200: #dcc6f9;
+
--catppuccin-color-mauve-100: #e2d0fa;
+
--catppuccin-color-mauve-50: #e7d9fb;
+
--catppuccin-color-mauve-600: #c29fec;
+
--catppuccin-color-mauve-700: #b392da;
+
--catppuccin-color-mauve-800: #a285c7;
+
--catppuccin-color-mauve-900: #8f75b0;
+
--catppuccin-color-mauve-950: #786394;
+
--catppuccin-color-red: #f38ba8;
+
--catppuccin-color-red-500: #f38ba8;
+
--catppuccin-color-red-400: #f49cb3;
+
--catppuccin-color-red-300: #f5abbe;
+
--catppuccin-color-red-200: #f7b8c7;
+
--catppuccin-color-red-100: #f8c4d1;
+
--catppuccin-color-red-50: #f9d0d9;
+
--catppuccin-color-red-600: #e885a1;
+
--catppuccin-color-red-700: #d67b95;
+
--catppuccin-color-red-800: #c36f88;
+
--catppuccin-color-red-900: #ac6279;
+
--catppuccin-color-red-950: #905367;
+
--catppuccin-color-maroon: #eba0ac;
+
--catppuccin-color-maroon-500: #eba0ac;
+
--catppuccin-color-maroon-400: #edadb7;
+
--catppuccin-color-maroon-300: #efb8c0;
+
--catppuccin-color-maroon-200: #f1c3ca;
+
--catppuccin-color-maroon-100: #f3cdd2;
+
--catppuccin-color-maroon-50: #f5d6db;
+
--catppuccin-color-maroon-600: #e099a5;
+
--catppuccin-color-maroon-700: #cf8d98;
+
--catppuccin-color-maroon-800: #bc808b;
+
--catppuccin-color-maroon-900: #a6717c;
+
--catppuccin-color-maroon-950: #8b5f6a;
+
--catppuccin-color-peach: #fab387;
+
--catppuccin-color-peach-500: #fab387;
+
--catppuccin-color-peach-400: #fbbc99;
+
--catppuccin-color-peach-300: #fbc5a8;
+
--catppuccin-color-peach-200: #fcceb6;
+
--catppuccin-color-peach-100: #fcd6c3;
+
--catppuccin-color-peach-50: #fdddcf;
+
--catppuccin-color-peach-600: #efab81;
+
--catppuccin-color-peach-700: #dd9e78;
+
--catppuccin-color-peach-800: #c88f6e;
+
--catppuccin-color-peach-900: #b17e63;
+
--catppuccin-color-peach-950: #946a55;
+
--catppuccin-color-yellow: #f9e2af;
+
--catppuccin-color-yellow-500: #f9e2af;
+
--catppuccin-color-yellow-400: #fae5b9;
+
--catppuccin-color-yellow-300: #fae8c3;
+
--catppuccin-color-yellow-200: #fbebcb;
+
--catppuccin-color-yellow-100: #fbeed4;
+
--catppuccin-color-yellow-50: #fcf1dc;
+
--catppuccin-color-yellow-600: #eed8a7;
+
--catppuccin-color-yellow-700: #dcc79b;
+
--catppuccin-color-yellow-800: #c7b58d;
+
--catppuccin-color-yellow-900: #b0a07e;
+
--catppuccin-color-yellow-950: #93866b;
+
--catppuccin-color-green: #a6e3a1;
+
--catppuccin-color-green-500: #a6e3a1;
+
--catppuccin-color-green-400: #b2e6ae;
+
--catppuccin-color-green-300: #bce9b9;
+
--catppuccin-color-green-200: #c6ecc4;
+
--catppuccin-color-green-100: #d0efcd;
+
--catppuccin-color-green-50: #d9f2d7;
+
--catppuccin-color-green-600: #9fd99a;
+
--catppuccin-color-green-700: #92c88f;
+
--catppuccin-color-green-800: #85b682;
+
--catppuccin-color-green-900: #75a074;
+
--catppuccin-color-green-950: #638663;
+
--catppuccin-color-teal: #94e2d5;
+
--catppuccin-color-teal-500: #94e2d5;
+
--catppuccin-color-teal-400: #a3e5da;
+
--catppuccin-color-teal-300: #b1e8de;
+
--catppuccin-color-teal-200: #bdebe3;
+
--catppuccin-color-teal-100: #c8eee7;
+
--catppuccin-color-teal-50: #d3f1eb;
+
--catppuccin-color-teal-600: #8dd8cc;
+
--catppuccin-color-teal-700: #83c7bc;
+
--catppuccin-color-teal-800: #77b5ac;
+
--catppuccin-color-teal-900: #69a098;
+
--catppuccin-color-teal-950: #588681;
+
--catppuccin-color-sky: #89dceb;
+
--catppuccin-color-sky-500: #89dceb;
+
--catppuccin-color-sky-400: #9ae0ed;
+
--catppuccin-color-sky-300: #aae4ef;
+
--catppuccin-color-sky-200: #b7e7f1;
+
--catppuccin-color-sky-100: #c4ebf3;
+
--catppuccin-color-sky-50: #cfeef5;
+
--catppuccin-color-sky-600: #83d2e1;
+
--catppuccin-color-sky-700: #79c2d0;
+
--catppuccin-color-sky-800: #6eb0bd;
+
--catppuccin-color-sky-900: #619ba7;
+
--catppuccin-color-sky-950: #52828d;
+
--catppuccin-color-sapphire: #74c7ec;
+
--catppuccin-color-sapphire-500: #74c7ec;
+
--catppuccin-color-sapphire-400: #8bceee;
+
--catppuccin-color-sapphire-300: #9ed4f0;
+
--catppuccin-color-sapphire-200: #aedaf2;
+
--catppuccin-color-sapphire-100: #bce0f4;
+
--catppuccin-color-sapphire-50: #c9e5f6;
+
--catppuccin-color-sapphire-600: #6fbee2;
+
--catppuccin-color-sapphire-700: #66b0d1;
+
--catppuccin-color-sapphire-800: #5d9fbe;
+
--catppuccin-color-sapphire-900: #538ca8;
+
--catppuccin-color-sapphire-950: #46768e;
+
--catppuccin-color-blue: #89b4fa;
+
--catppuccin-color-blue-500: #89b4fa;
+
--catppuccin-color-blue-400: #9abdfb;
+
--catppuccin-color-blue-300: #aac6fb;
+
--catppuccin-color-blue-200: #b7cefc;
+
--catppuccin-color-blue-100: #c4d6fc;
+
--catppuccin-color-blue-50: #cfdefd;
+
--catppuccin-color-blue-600: #83acef;
+
--catppuccin-color-blue-700: #799fdd;
+
--catppuccin-color-blue-800: #6e90c9;
+
--catppuccin-color-blue-900: #617fb2;
+
--catppuccin-color-blue-950: #526b96;
+
--catppuccin-color-lavender: #b4befe;
+
--catppuccin-color-lavender-500: #b4befe;
+
--catppuccin-color-lavender-400: #bdc6fe;
+
--catppuccin-color-lavender-300: #c6cdfe;
+
--catppuccin-color-lavender-200: #ced4fe;
+
--catppuccin-color-lavender-100: #d6dbfe;
+
--catppuccin-color-lavender-50: #dee2ff;
+
--catppuccin-color-lavender-600: #acb5f3;
+
--catppuccin-color-lavender-700: #9fa8e1;
+
--catppuccin-color-lavender-800: #9098cc;
+
--catppuccin-color-lavender-900: #7f86b5;
+
--catppuccin-color-lavender-950: #6b7099;
+
--catppuccin-color-text: #cdd6f4;
+
--catppuccin-color-subtext1: #bac2de;
+
--catppuccin-color-subtext0: #a6adc8;
+
--catppuccin-color-overlay2: #9399b2;
+
--catppuccin-color-overlay1: #7f849c;
+
--catppuccin-color-overlay0: #6c7086;
+
--catppuccin-color-surface2: #585b70;
+
--catppuccin-color-surface1: #45475a;
+
--catppuccin-color-surface0: #313244;
+
--catppuccin-color-base: #1e1e2e;
+
--catppuccin-color-mantle: #181825;
+
--catppuccin-color-crust: #11111b;
+
}
+
}
+
@custom-variant latte (&:where(.latte, .latte *));
+
@custom-variant frappe (&:where(.frappe, .frappe *));
+
@custom-variant macchiato (&:where(.macchiato, .macchiato *));
+
@custom-variant mocha (&:where(.mocha, .mocha *));
+3 -2
src/about.md
···
time advocating for trans rights in the spaces I'm in. I feel very strongly that trans rights are
human rights, and do my best to uplift all voices, though I am not perfect.
-
Find more about my projects on the [[projects]] page, or read my [[blog/index|blog]], as I've put a
-
lot of time into both.
+
Find more about my projects on the [[projects]] page, or read my [[blog/index.md|blog]], as I've put
+
a lot of time into both. Finally, I do a lot of [[volunteering]], especially for charity marathons!
+
Check out my work on that page.
+247
src/blog/consider-the-interface.md
···
+
---
+
title: Consider the Interface
+
summary: 'Why new technology kinda... sucks'
+
draft: true
+
published: 2025-03-02
+
templateEngine: [vto, md]
+
---
+
+
## Introduction
+
+
Technology always changes. That's something we take for granted, and it's something that will
+
continue for decades, centuries, and millennia to come. However, our technological prowess and
+
advancement always comes at a cost. There's always something sacrificed in the name of progress.
+
+
For the past few years, I've had a looming sense of dread about tech. This isn't a doomsday
+
premonition, a prophecy, or anything like that. I've just noticed things changing in ways that don't
+
make sense. Popular series disappearing, YouTube videos vanishing, and subscription prices
+
constantly increasing.
+
+
I think that this is something we're really going to have to reconcile, especially as we move into
+
this new age of generative AI, stolen and derivative works, and in general, as corporations seek to
+
take over our daily lives in ways they haven't tried before.
+
+
I was inspired to write this after watching a
+
[video by Drew Gooden](https://www.youtube.com/watch?v=P-TANCVoHlc) called _"Technology isn't fun
+
anymore"_, and one he referenced called
+
_[Why Young People Love Old Things](https://www.youtube.com/watch?v=0dEJiQnotR8)_, by the channel
+
Genuine Curiosity. These two videos helped me work out and describe the feeling I've felt about how
+
technology is going backwards while trying to seem like it's going forward.
+
+
As Drew mentions in his video, many companies seem to be making decisions that are against their
+
best interests, such as TV manufacturers enabling "Motion Smoothing" features by default, which can
+
then lead to major video artifacting, and in essence, degrades the viewing experience.
+
+
While I'm not going to explore the economic or market reasons behind these seemingly nonsensical
+
decisions, I do want to share my own experience with this sort of thing and try to examine why I do
+
the things that I do. Further, this is all from my own perspective, and while I do try to utilize
+
others' perspectives to elaborate on my own opinions, at the end of the day, this is how I see the
+
world. This is not intended to be an objective piece, just want to make that clear.
+
+
## Tactility
+
+
There's something special about using something tactile. Whether that's a temperature dial in a car,
+
a light switch, or using a mouse, it's a vastly different experience than the omnipresent
+
touchscreens and mousepads so many people use today. It feels like it better connects you to the
+
actual experience and action you're doing, giving you a better feeling of control and appreciation
+
for what you're doing. Touchscreens and mousepads have absolutely advanced in their capabilities,
+
with Apple's being leagues ahead of anyone else, capable of recognizing complex gestures,
+
distinguish from many fingers at once, and they give you control you might not otherwise have.
+
+
However, whenever I use one, it feels distinctly disconnected from the actual thing I'm doing. Yes,
+
it's better than the competitors, but it's still just sliding your fingers over a flat surface. On
+
the other hand, when I'm using my mouse, there's a distinct _click_ when I press down on the mouse
+
buttons, the scroll wheel has a slight whirring noise as it spins, my hand physically moves across
+
my desk. In essence, it's like I'm actually pointing at something, which is of course the original
+
purpose of a mouse, to be a "pointing device." Windows' Computer Management utility even calls the
+
section where you can find these the "Mice and other pointing devices" section.
+
+
This was a main point brought up in the Genuine Curiosity video, how that sense of tactility helps
+
us be better connected to what we're doing. This also connects to another article I've read, this
+
one about
+
[how to design physical car controls](https://www.theturnsignalblog.com/the-subtle-art-of-designing-physical-control-for-cars/).
+
This article brought up some very interesting ideas about how to make something digital feel analog,
+
such as with force feedback mechanisms. However, the article brings up one main point at the start
+
that I'd like to call your attention to:
+
+
> When you see any physical control, you automatically get certain expectations from its physical
+
> properties like size, shape, and weight.
+
+
This highlights something that we all intuitively understand, but in general, don't think about,
+
unless something goes wildly against this. How many times have you tried to pull on a door with a
+
handle, only to realize that it's marked "Push" instead? That design goes against this principle. We
+
intuitively know how things operate, and human-centered design takes that into account.
+
+
However, touchscreens are not human-centered. They do not give any sort of force feedback(aside from
+
your keyboard _maybe_ having some sort of haptic feedback), and they are by and large flat panes of
+
glass or plastic with no defining features. They don't have any sort of texture, no knobs or
+
switches or buttons, in fact, the ideal touchscreen is one that has no distinguishing features
+
whatsoever. This, I would argue, is not ideal. Touchscreens are designed for you to be constantly
+
looking at and engaged with them, and if you're not looking at them, your ability to use them is
+
severely hindered. On the other hand, in many cars, you can adjust the temperature or music volume
+
without ever taking your eyes off the road, because the controls were designed so that you need to
+
think as little as possible to understand how they work.
+
+
The issue comes when these two technologies combine. The lack of any sort of feedback, combined with
+
the fact that you're driving a 2000+ pound block of metal and plastic down a highway, creates a
+
deadly combo. There's no way to know what you're doing without taking your eyes off the road. And
+
that's incredibly dangerous when you're the driver of a car. It's why when I buy a car, I'm going to
+
be looking for one that has no touchscreen, preferably. I don't want to be a distracted driver, and
+
another point on a bar chart.
+
+
To be clear, I don't think any of these are novel revelations. Many folks have said this exact kind
+
of thing before, and it's constantly ignored. However, I think that we're at a critical turning
+
point in how we interface with computers. More and more, for better or for worse, is being done
+
through voice and chat-like interfaces. Not your typical desktop and web browser experience, but
+
asking questions and receiving answers(whether or not they're correct, I'm personally very against
+
generative AI) has become a core user experience in many places, even if it isn't the right UX for
+
the use.
+
+
### Mechanisms
+
+
Another point of tactility that isn't so obvious in its utility is the ability to see the mechanisms
+
of how things work. I built my own blog and know how it works. I know what happens and when to make
+
the webpage you're reading right now. I like biking, and I can see clearly how it works, it's simple
+
and elegant. With a car, this is getting harder and harder to do. More and more critical components
+
of your car are controlled by electronic black boxes that take inputs and give outputs, with no real
+
way to understand how they work.
+
+
If you're a programmer or maker or some sort of creative type, you hopefully understand what I mean.
+
Being able to make things and understand what went into them, find out how they work, show someone
+
how two paints blend together, that to me is the magic of making things. This could be its own
+
article on its own(and it may be in the future!), but this is something I strongly emphasize with.
+
If I want to, I can take apart the keyboard I'm typing this on. I can open up my desktop, recompile
+
my kernel, add another line to this document. I know exactly where to go in my blog to make changes
+
to my HTML validator, and I can show someone why I think I did something in an interesting way.
+
+
To me, this is the fundamental misunderstanding of modern technology. Many people(not saying even
+
close to a majority, but a substantial amount nonetheless) enjoy tinkering. They buy things just to
+
take them apart and learn how they work. They read through code and fix bugs. They work to create
+
something they find beautiful, in whatever way that is. This is why I fell in love with technology,
+
and why I don't like modern technology as much. The joy I feel from taking apart an old laptop to
+
replace the failing boot drive is the same I get from writing code to render nice tables in a Django
+
app.
+
+
## Simplicity
+
+
Before you say anything: Yes, I know that user interfaces have gotten way simpler in many ways, and
+
especially in positive ways too, such as improved focus on accessibility and ensuring that things
+
"just work". However, I also see a trend of there being fewer and fewer escape hatches to allow
+
power-users the ability to go beyond what the normal interface allows. To be clear, I think this is
+
a good idea from a business perspective, as power users are not a large market, and so products that
+
aim to have mass-market appeal don't have a necessity for this kind of feature.
+
+
However, the aspect I want to focus on here is the underlying technical complexity. In some ways,
+
complexity is needed. The world is a big place, there's a lot of people with a lot of needs. There
+
needs to be complexity somewhere, but it feels like the world is gravitating towards needless
+
complexity all the time. I see so many cases of basic static web apps being built with massive JS
+
frameworks, shipping megabytes of code for something that displays a list of items from a server.
+
Sure, you might need _some_ JS, but not millions of bytes on it. They're not free to use(in terms of
+
maintenance burden), and they're definitely not free for end-users(JS takes way longer to execute,
+
while CSS and HTML are much faster, since they're not full programming languages). Therefore,
+
technologies like CSS-in-JS[^CSS-in-JS] just feel like they overcomplicate things, instead of making
+
it easier. Now, I'd have to deal with increased JS bundle sizes, harder debugging, and an overall
+
worse developer and user experience.
+
+
Something you will hear me emphasize a lot is good user experience. It is one of the areas I most
+
heavily focus on, as this site hopefully demonstrates. I aim to keep page sizes small, everything
+
compressed, and reduce the amount of JavaScript needed at runtime. This makes my pages performant
+
and also accessible. I also try to keep the colors well-balanced, using a variety of accessibility
+
checkers, both automated and manual, to make my content as available as possible. And so, I would
+
argue, the ever-increasing complexity of modern front-end development simply goes against that, and
+
makes things less accessible. By reducing the amount of JavaScript needed for a webpage, you
+
increase the number of users you can have, because your site is then more accessible to those with
+
low-end devices. Ensuring that users with low-end devices have the ability to access a site, even if
+
they have to disable JS to do it, is important(barring situations such as payment processing or
+
anything else that absolutely **REQUIRES** JS).
+
+
## Ownership
+
+
Another thing I notice with new products, for better or for worse, is that you don't own them. It's
+
always a subscription service, or it's a cloud service with proprietary file formats, or a streaming
+
service that will delete content that barely doesn't hit popularity metrics this month. As someone
+
who enjoys coming back to things weeks, months, sometimes even years after I last interacted with
+
them, this is devastating. The fact that so much of the stuff I enjoy today could be gone tomorrow
+
is frankly a little bit terrifying. It's why I'm a chronic archivist and that person that tells you
+
to back up your stuff. Because this matters to me, and I wish it mattered to more folks.
+
+
### You don't own new things
+
+
This is the big issue in all of this. Companies like
+
[Steam](https://www.ign.com/articles/steam-now-warns-customers-theyre-buying-a-license-not-a-game-before-they-continue-to-payment),
+
[Amazon](https://blog.the-ebook-reader.com/2025/02/22/amazon-now-openly-discloses-youre-buying-a-license-to-view-kindle-ebooks/),
+
and more are reminding customers at checkout that when they buy something, **it's not theirs.** And
+
yet, many will still click the Buy button, because these companies make it hard to realize you're
+
just getting a license, and they can take that away at any time. Hell, even the US FTC
+
[has a page](https://consumer.ftc.gov/consumer-alerts/2024/04/do-you-really-own-digital-items-you-paid)
+
on the fact you don't really own digital items. As consumers, we should be advocating for permanent
+
access to content, whether that's through the DRM-free game downloads offered by GOG, DRM-free books
+
from SmashWords, or any other number of companies that respect you more as a consumer.
+
+
### Repairability
+
+
I am a massive advocate for consumer right-to-repair and easily accessible repair guides for
+
everyone. If you own a device, you should be able to open it up and repair it if you want to, or
+
send it to someone to do that for you. There shouldn't be anything in the way of you doing so, and
+
allowing customers to repair their own devices can build trust in a brand in a way that no other
+
form of consumer control can do. Allowing customers to peer behind the curtain and see how their
+
devices work, understand how everything fits together, is to me, more powerful a statement of
+
customer trust than anything else. It signals that you trust your users and you want them to use
+
your devices however they want. It gives the customer a feeling of control, which many companies are
+
seeking to take away.
+
+
## Algorithms
+
+
{{ await comp.lorem_ipsum() }}
+
+
## What I use
+
+
{{ await comp.lorem_ipsum() }}
+
+
### RSS Reader
+
+
{{ await comp.lorem_ipsum() }}
+
+
### Self-Hosted Music Server
+
+
{{ await comp.lorem_ipsum() }}
+
+
### Mechanical Keyboard / Mouse
+
+
As mentioned above, tactility is one of the key aspects of older devices that I love, and
+
specifically, keyboards. There's a reason so many folks love old IBM Model M keyboards, and that's
+
because IBM designed springs that were light enough to press down quickly but heavy enough to give
+
feedback on whether you pressed a key. While I don't have one of those, I do use a keyboard with
+
tactile keys(Gazzew U4T Boba 62g switches, for the keyboard nerds), which helps replicate that
+
feeling but in a more budget and space-friendly way(I use a 75% keyboard).
+
+
To me, this is the ideal typing device. It allows me to do proper 10-finger touch typing, is small
+
enough that I don't have to move my hands much to reach every single key, even the function keys to
+
change music or whatever, and feels like I'm actually typing. I love my Framework Laptop so much,
+
but its keyboard will never compare to my mechanical. The mechanical one feels built for typing, and
+
gives the right amount of feedback that I can just keep typing and typing without looking at the
+
keyboard, while with the laptop, I look down somewhat frequently. I'm used to touch-typing, so it's
+
not _too big_ of a deal, but it still ruins the flow when I have to.
+
+
The same goes for my mouse. I use a Logitech MX Master 3, and it's a really nice mouse. Using it
+
instead of a touchpad lets my arm and wrist do the work of moving the cursor where I want it to go.
+
I don't have to consciously think about how to do it, my mind just works. With touchpads, I'm
+
constantly readjusting my fingers to make sure I can move my mouse, they can get in the way when I'm
+
typing, and they feel less satisfying to click than a mouse does.
+
+
A lot of this is subjective, no doubt, but having these tools allows me to work more productively
+
than I could without them. They help me stay in the flow of typing, coding, gaming, or anything else
+
I'm doing, and they do genuinely make my life better. I would not have written so much in this blog
+
post if I wasn't doing it on my keyboard, laptop keyboards, even ones as well-made as the
+
Framework's, just don't compare to a proper mechanical switch that's designed for a good typing
+
experience.
+
+
## Conclusion
+
+
{{ await comp.lorem_ipsum() }}
+
+
[^CSS-in-JS]: To be honest, I've never quite understood the need for CSS-in-JS. It always felt to me
+
like it was more trouble than it's worth. Maybe someone can explain what the benefits are?
+
Because to me, I would just write CSS with composable classes, like I do for this site. I can
+
always grep to see what classes are unused, and even if I don't, PurgeCSS/LightningCSS remove
+
unused styles anyways.
+1
src/blog/example-blog-post-2.md
···
summary: "Testing how posts work in lume"
draft: true
published: 2025-02-14
+
templateEngine: [md]
---
## example blog post 2
+5 -5
src/blog/example-blog-post.md
···
## meow meow! {#meow-meow}
<!-- deno-fmt-ignore-start -->
-
> [!info]- Closed default
-
> You shouldn't see this
-
-
> [!warning]+ Open default
+
> [!failure]+ Open default
> You should see this
-
> [!question] No folding
+
> [!bug]- Closed default
+
> You shouldn't see this
+
+
> [!error] No folding
> You shouldn't be able to close this
<!-- deno-fmt-ignore-end -->
+57
src/blog/frost-fatales-2025-not-really-behind-the-scenes.md
···
+
---
+
title: Frost Fatales 2025 (not really) Behind the Scenes
+
summary: "dish&apos;s experience at Frost Fatales 2025"
+
draft: true
+
published: 2025-03-15
+
templateEngine: [vto, md]
+
---
+
+
Recently, I got the opportunity to volunteer in-studio at the charity speedrunning event _Frost
+
Fatales 2025_, where we raised a total of **$150,675** for the
+
[National Women's Law Center](https://nwlc.org). This was an incredible opportunity for me
+
personally, so I was thrilled that I was able to volunteer. I've never done something like this
+
before, so I was both incredibly nervous but also super excited. I've been a member of the Frame
+
Fatales community for about a year now, and this was a position I hadn't expected getting. Here, I
+
just want to go over a few of my thoughts on the experience, and why I would highly encourage anyone
+
who feels femme or like a woman to join, even if they're not a gamer or speedrunner or may even feel
+
like they don't belong.
+
+
<!-- deno-fmt-ignore-start -->
+
> [!note]- One small note
+
> Please don't see this as me trying to force you to join, as much as I encourage it! Frame
+
> Fatales is a super inclusive and wonderful community, even for femme nonbinary folks, trans women,
+
> and of course cis women.
+
<!-- deno-fmt-ignore-end -->
+
+
## Frame Fatales
+
+
First, what is Frame Fatales?
+
+
To quote [its website](https://framefatales.com):
+
+
> Frame Fatales is a community of women and femmes who are interested in speedrunning, charity
+
> events, and gaming! It is a space for you if you identify as femme or a woman in any way that is
+
> meaningful to you. Cis, trans, nonbinary, and gender non-conforming individuals are all welcome to
+
> join the Fatales community!
+
+
And to put it more simply: If you see yourself as a woman or femme in any way that is meaningful to
+
you, you're welcome in the community. It's a space for anyone who feels they may belong. As a trans
+
woman, this space has been wonderful to help me explore my identity and find folks in the same place
+
as me. I was welcomed just as I am now even a year ago, when I identified as "fem-leaning
+
nonbinary", and you'll be welcomed the same.
+
+
## The Experience
+
+
<!-- deno-fmt-ignore-start -->
+
> [!info] Legal Stuff
+
> I am under an NDA for a lot of my experience. I'm trying to be as detailed as I can,
+
> but at the same time I am going to err on the side of caution when I need to.
+
> I can't show pictures of studio stuff, software interfaces, the address of the studio, or anything like that.
+
<!-- deno-fmt-ignore-end -->
+
+
With that out of the way, I will say that this has been a very good experience. The folks I worked
+
with were wonderful, and the atmosphere was very positive all around. GDQ has built a lot of nice
+
behind-the-scenes tooling that makes it really easy for beginners like me to do well and succeed,
+
and I genuinely think that its one of their strengths. I can do the same things that folks with 5+
+
years of experience can do, and in about the same amount of time, because the tooling has been
+
well-thought-out and is designed to make things intuitive and fast.
+29
src/static/scripts/highlight-accessibility.js
···
+
const delay = (ms) => new Promise((res) => setTimeout(res, ms));
+
+
function highlightElement(xpath, url) {
+
url2 = url.replace("index.html", "");
+
if (!(window.location.pathname == url2)) {
+
window.location.pathname = url2;
+
console.info(
+
`Returned Early: ${window.location.pathname} does not equal ${url2}`,
+
);
+
return;
+
}
+
const node = document.evaluate(
+
xpath,
+
document,
+
null,
+
XPathResult.FIRST_ORDERED_NODE_TYPE,
+
null,
+
);
+
+
el = node.singleNodeValue;
+
const prevBorder = el.style.border;
+
const prevRadius = el.style.borderRadius;
+
el.style.border = "solid red";
+
// el.style.borderRadius = "100%";
+
el.scrollIntoView({ behavior: "smooth", block: "center" });
+
// delay(5000);
+
// el.style.border = prevBorder;
+
// el.style.borderRadius = prevRadius;
+
}
+25 -115
src/static/styles.css
···
@import "tailwindcss";
-
/*
-
Remove latte classes
-
They're not being used right now, so no reason to ship them
-
*/
-
/* .latte {
-
--ctp-rosewater: rgb(220 138 120);
-
--ctp-flamingo: rgb(221 120 120);
-
--ctp-pink: rgb(234 118 203);
-
--ctp-mauve: rgb(136 57 239);
-
--ctp-red: rgb(210 15 57);
-
--ctp-maroon: rgb(230 69 83);
-
--ctp-peach: rgb(254 100 11);
-
--ctp-yellow: rgb(223 142 29);
-
--ctp-green: rgb(64 160 43);
-
--ctp-teal: rgb(23 146 153);
-
--ctp-sky: rgb(4 165 229);
-
--ctp-sapphire: rgb(32 159 181);
-
--ctp-blue: rgb(30 102 245);
-
--ctp-lavender: rgb(114 135 253);
-
--ctp-text: rgb(76 79 105);
-
--ctp-subtext1: rgb(92 95 119);
-
--ctp-subtext0: rgb(108 111 133);
-
--ctp-overlay2: rgb(124 127 147);
-
--ctp-overlay1: rgb(140 143 161);
-
--ctp-overlay0: rgb(156 160 176);
-
--ctp-surface2: rgb(172 176 190);
-
--ctp-surface1: rgb(188 192 204);
-
--ctp-surface0: rgb(204 208 218);
-
--ctp-base: rgb(239 241 245);
-
--ctp-mantle: rgb(230 233 239);
-
--ctp-crust: rgb(220 224 232);
-
--callout-blend-mode: darken;
-
} */
+
@import "mocha.css";
+
.mocha {
-
--ctp-rosewater: rgb(245 224 220);
-
--ctp-flamingo: rgb(242 205 205);
-
--ctp-pink: rgb(245 194 231);
-
--ctp-mauve: rgb(203 166 247);
-
--ctp-red: rgb(243 139 168);
-
--ctp-maroon: rgb(235 160 172);
-
--ctp-peach: rgb(250 179 135);
-
--ctp-yellow: rgb(249 226 175);
-
--ctp-green: rgb(166 227 161);
-
--ctp-teal: rgb(148 226 213);
-
--ctp-sky: rgb(137 220 235);
-
--ctp-sapphire: rgb(116 199 236);
-
--ctp-blue: rgb(137 180 250);
-
--ctp-lavender: rgb(180 190 254);
-
--ctp-text: rgb(205 214 244);
-
--ctp-subtext1: rgb(186 194 222);
-
--ctp-subtext0: rgb(166 173 200);
-
--ctp-overlay2: rgb(147 153 178);
-
--ctp-overlay1: rgb(127 132 156);
-
--ctp-overlay0: rgb(108 112 134);
-
--ctp-surface2: rgb(88 91 112);
-
--ctp-surface1: rgb(69 71 90);
-
--ctp-surface0: rgb(49 50 68);
-
--ctp-base: rgb(30 30 46);
-
--ctp-mantle: rgb(24 24 37);
-
--ctp-crust: rgb(17 17 27);
--callout-blend-mode: lighten;
}
@theme {
/* Remove initial variables we don't need */
-
--color-*: initial;
--blur-*: initial;
--perspective-*: initial;
--drop-shadow-*: initial;
···
--animate-*: initial;
--font-sans: "Inter", "ui-sans-serif", "system-ui", "sans-serif";
--font-serif: "IBM Plex Serif", "ui-serif", "serif";
-
/* CTP overrides --text-base, so we need this custom class for the base text size */
-
--text-default: 1rem;
-
--text-default--line-height: calc(1.5 / 1);
/* Flag Colors */
--color-trans-blue: #5bcffa;
···
--color-lesbian-pink3: #a50062;
}
-
@theme inline {
-
--color-rosewater: var(--ctp-rosewater);
-
--color-flamingo: var(--ctp-flamingo);
-
--color-pink: var(--ctp-pink);
-
--color-mauve: var(--ctp-mauve);
-
--color-red: var(--ctp-red);
-
--color-maroon: var(--ctp-maroon);
-
--color-peach: var(--ctp-peach);
-
--color-yellow: var(--ctp-yellow);
-
--color-green: var(--ctp-green);
-
--color-teal: var(--ctp-teal);
-
--color-sky: var(--ctp-sky);
-
--color-sapphire: var(--ctp-sapphire);
-
--color-blue: var(--ctp-blue);
-
--color-lavender: var(--ctp-lavender);
-
--color-text: var(--ctp-text);
-
--color-subtext1: var(--ctp-subtext1);
-
--color-subtext0: var(--ctp-subtext0);
-
--color-overlay2: var(--ctp-overlay2);
-
--color-overlay1: var(--ctp-overlay1);
-
--color-overlay0: var(--ctp-overlay0);
-
--color-surface2: var(--ctp-surface2);
-
--color-surface1: var(--ctp-surface1);
-
--color-surface0: var(--ctp-surface0);
-
--color-base: var(--ctp-base);
-
--color-mantle: var(--ctp-mantle);
-
--color-crust: var(--ctp-crust);
-
}
-
@layer components {
[data-editor-file] {
@apply transition-all rounded-md;
pointer-events: auto;
}
[data-editor-file]:hover {
-
@apply transition-all outline-blue outline-2 outline-offset-4
-
bg-blue/10 pl-1;
+
@apply transition-all outline-ctp-blue outline-2 outline-offset-4
+
bg-ctp-blue/10 pl-1;
}
}
@utility h-entry {
a {
-
@apply text-blue underline;
+
@apply text-ctp-blue underline;
}
h2 {
···
}
blockquote {
-
@apply border-l-2 pl-6 relative border-overlay0 italic;
+
@apply border-l-2 pl-6 relative border-ctp-overlay0 italic;
left: -0.5rem;
}
···
}
h2:has(a.header-anchor) {
-
@apply text-3xl text-mauve relative mb-8;
+
@apply text-3xl text-ctp-mauve relative mb-8;
left: -1.75rem;
}
h3:has(a.header-anchor) {
-
@apply text-2xl text-mauve relative mb-6;
+
@apply text-2xl text-ctp-mauve relative mb-6;
left: -1.75rem;
}
···
}
@utility header-anchor {
-
@apply text-mauve!;
+
@apply text-ctp-mauve!;
}
/* Disable <detail> folding on non-folding admonitions */
···
}
}
&[data-callout="note"] {
-
--callout-color: var(--ctp-blue);
+
--callout-color: var(--color-ctp-blue);
--callout-icon: "\F4CB";
}
&[data-callout="todo"] {
-
--callout-color: var(--ctp-blue);
+
--callout-color: var(--color-ctp-blue);
--callout-icon: "\F26B";
}
&[data-callout="info"] {
-
--callout-color: var(--ctp-blue);
+
--callout-color: var(--color-ctp-blue-700);
--callout-icon: "\F431";
}
&[data-callout="success"],
&[data-callout="check"],
&[data-callout="done"] {
-
--callout-color: var(--ctp-green);
+
--callout-color: var(--color-ctp-green);
--callout-icon: "\F272";
}
&[data-callout="warning"],
&[data-callout="caution"],
&[data-callout="attention"] {
-
--callout-color: var(--ctp-yellow);
+
--callout-color: var(--color-ctp-yellow);
--callout-icon: "\F33B";
}
&[data-callout="question"] {
-
--callout-color: var(--ctp-yellow);
+
--callout-color: var(--color-ctp-yellow-900);
--callout-icon: "\F505";
}
&[data-callout="danger"],
&[data-callout="error"] {
-
--callout-color: var(--ctp-maroon);
+
--callout-color: var(--color-ctp-maroon-400);
--callout-icon: "\F46F";
}
&[data-callout="failure"] {
-
--callout-color: var(--ctp-maroon);
+
--callout-color: var(--color-ctp-maroon-800);
--callout-icon: "\F659";
}
&[data-callout="bug"] {
-
--callout-color: var(--ctp-maroon);
+
--callout-color: var(--color-ctp-maroon);
--callout-icon: "\F1DC";
}
&[data-callout="tip"],
&[data-callout="hint"] {
-
--callout-color: var(--ctp-teal);
+
--callout-color: var(--color-ctp-teal);
--callout-icon: "\F7F6";
}
&[data-callout="example"] {
-
--callout-color: var(--ctp-mauve);
+
--callout-color: var(--color-ctp-mauve);
--callout-icon: "\F478";
}
&[data-callout="abstract"],
&[data-callout="summary"],
&[data-callout="tldr"] {
-
--callout-color: var(--ctp-sky);
+
--callout-color: var(--color-ctp-sky);
--callout-icon: "\F727";
}
&[data-callout="quote"],
&[data-callout="cite"] {
-
--callout-color: var(--ctp-overlay0);
+
--callout-color: var(--color-ctp-overlay0);
--callout-icon: "\F6B0";
}
}
···
@utility fn-backref {
&::before {
-
@apply inline-block text-blue align-bottom;
+
@apply inline-block text-ctp-blue align-bottom;
content: "\F131";
font-family: "bootstrap-icons";
}
···
}
@utility toc-l1 {
-
@apply border-l-2 border-overlay0 pl-2 ml-1 text-xl;
+
@apply border-l-2 border-ctp-overlay0 pl-2 ml-1 text-xl;
}
@utility toc-l2 {
-
@apply text-default border-l-2 pl-2 border-surface2 first-of-type:mt-1 last-of-type:mb-1;
+
@apply text-base border-l-2 pl-2 border-ctp-surface2 first-of-type:mt-1 last-of-type:mb-1;
}
/* End ToC */
+13
src/volunteering.md
···
+
---
+
title: dish's Volunteering
+
summary: "Who is dish? Find out here."
+
layout: "layouts/volunteering.vto"
+
templateEngine: [vto, md]
+
---
+
+
I'm a very active volunteer in a lot of communities. Find out what I've done below, and feel free to
+
contact me if you'd like a volunteer for your event!
+
+
> [!note]+ Notice of non-endorsement I am not an official spokesperson for these communities, nor
+
> should my involvement in their events be seen as an endorsement of me. This page is more for my
+
> own tracking.