commit c6c0af092a3066080864e994772f1606fd66aaf3 Author: Hans Fast Date: Tue Dec 10 08:28:47 2024 +0100 website with minimal content diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7c51d53 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +_cache +_site diff --git a/_comp/img-full-width.ts b/_comp/img-full-width.ts new file mode 100644 index 0000000..e2dbde0 --- /dev/null +++ b/_comp/img-full-width.ts @@ -0,0 +1 @@ +function diff --git a/_comp/index.ts b/_comp/index.ts new file mode 100644 index 0000000..10ae0e6 --- /dev/null +++ b/_comp/index.ts @@ -0,0 +1,53 @@ +import rehypeComponents from 'npm:rehype-components'; +import {h} from 'https://esm.sh/hastscript@9?pin=v135'; + +const wrapIt = (props, children) => { + return h(`div.wikkel ${props.className.join(' ')}`, [...children]); +} + +//wrap two block-level children side by side. +const sideBySide = (props, children) => { + return h(`div.wikkel naast-elkaar ${props.className ? props.className.join(' ') : ''}`, [...children]); +} + +const imgFloatRight = (props, children) => { + return h(`img.imgfloatright ${props.className ? props.className.join(' ') : ''}`, {src: props.src}); +} +const buttonAlone = (props, children) => { + return h(`button.button-alone ${props.className ? props.className.join(' ') : ''}`, [...children]); +} + +const figFloatRight = (props, children) => { + return h(`figure.imgfloatright ${props.className ? props.className.join(' ') : ''}`, [ + h(`img`, {src: props.src}), + h(`figcaption`, [children[0].value]) + ]); +} + +const nav = (props, children) => { + return h(`div.wikkel wikkel-nav ${props.className ? props.className.join(' ') : ''}`, [ + ...children + ]); +} +const note = (props, children) => { + return h(`div.wikkel wikkel-note ${props.className ? props.className.join(' ') : ''}`, [ + ...children + ]); +} + + +//the first set is a 'wrapper' that defines blocks with certain classnames. +//This is reusable as a +export default function componentIze() { + return [rehypeComponents, { + components: { + 'wikkel': wrapIt, + 'wikkel-side-by-side': sideBySide, + 'wikkel-img-right': imgFloatRight, + 'wikkel-fig-right': figFloatRight, + 'wikkel-button-alone': buttonAlone, + 'wikkel-nav': nav, + 'wikkel-note': note + } + }] +}; diff --git a/_config.ts b/_config.ts new file mode 100644 index 0000000..7d1adfc --- /dev/null +++ b/_config.ts @@ -0,0 +1,121 @@ +import lume from "lume/mod.ts"; +import feed from "lume/plugins/feed.ts"; +import postcss from "lume/plugins/postcss.ts"; +import postcssDesignTokens from "https://esm.sh/@csstools/postcss-design-tokens@3.1.5"; +import postcssUtopia from "https://esm.sh/postcss-utopia@1.0.1"; +import inline from "lume/plugins/inline.ts"; +import remark from "lume/plugins/remark.ts"; +import remarkDirective from 'https://esm.sh/remark-directive@3' +import remarkDirectiveRehype from 'https://cdn.skypack.dev/remark-directive-rehype'; +import remarkComponents from "https://esm.sh/rehype-components@0.3.0"; +import remarkToc from 'https://esm.sh/remark-toc@9' +import rehypeAutolinkHeadings from 'https://esm.sh/rehype-autolink-headings@7' +import rehypeSlug from 'https://esm.sh/rehype-slug@6' +import date from "lume/plugins/date.ts"; +import smartypants from "https://esm.sh/remark-smartypants@3.0.1"; +import {h} from "https:/esm.sh/hastscript@9.0.0"; +import redirects from "lume/plugins/redirects.ts"; +import multilanguage from "lume/plugins/multilanguage.ts"; + + +//hide private 'notes' (with tag 'hide') by default, unless in draft mode. +function hideNotes(props, children){ + if (Deno.env.get('LUME_DRAFTS') === 'true') { + return h('div.note-content', {...props}, [...children]); + } +}; + +//style 'draft' notes as such +function showDrafts(props, children){ + return h('div.draft-content', {...props}, [ + h('details', {...props}, [ + h('summary', ['DRAFT: ' + props.summary]), ...children + ]) + ]); +}; + +//add translation picker +function arrangeTranslations(props, children) { + return h('div.translated-content', {...props}, [ + h('input#lang-toggle', {type: 'radio'}), + h('label.lang-toggle-container', {for: 'lang-toggle'}, + props.langs.split(', ').map(l => h('div.'+l, l)) + ), + + ...children + ]) + +} + + +const site = lume({ + src: './src', + dest: '_site', + location: new URL("https://hansfast.net") +}); + +site.use(postcss({ + plugins: [ + postcssDesignTokens({ + valueFunctionName: 'tkn' + }), + postcssUtopia(), + ] +})); +site.use(remark({ + remarkPlugins: [ + [smartypants, {dashes: 'oldschool'}], + remarkDirective, + remarkToc, + remarkDirectiveRehype + ], + rehypePlugins: [ + rehypeSlug, + rehypeAutolinkHeadings, + [remarkComponents, { + components: { + 'hide': hideNotes, //show 'hide' components if LUME_DRAFTS is true. + 'draft': showDrafts, //show draft components with special rendering + // 'multilang': arrangeTranslations //enable when this is implemented: https://stackoverflow.com/questions/1431726/css-selector-for-a-checked-radio-buttons-label + } + }] + ] +})); + +site.use(feed({ + output: ['everything.rss'], + query: 'url^=/articles', + info: { + title: 'hansfast.net all articles' + }, + items: { + title: '=title', + description: '=excerpt', + published: '=date' + } +})); +site.use(feed({ + output: ['/changelog/changelog.rss'], + query: 'url^=/changelog level!=index', + info: { + title: 'hansfast.net — Changelog', + description:'Updates to the site presented in a changelog format with a summary of what changed.' + }, + items: { + title: '=title', + description: '=excerpt', + published: '=date' + } +})); +site.use(redirects()); + +site.use(date()); +site.use(inline()); +site.use(multilanguage({ + languages: ["en", "nl"], + defaultLanguage: "en" +})); + +site.copyRemainingFiles((path) => path.startsWith('/static')); + +export default site; diff --git a/deno.json b/deno.json new file mode 100644 index 0000000..f4ab648 --- /dev/null +++ b/deno.json @@ -0,0 +1,16 @@ +{ + "imports": { + "lume/": "https://deno.land/x/lume@v2.1.4/" + }, + "tasks": { + "lume": "echo \"import 'lume/cli.ts'\" | deno run -A -", + "build": "deno task lume", + "serve": "deno task lume -s", + "deploy": "rsync -rvaz _site/ huur2:/home/hans/hansfast.net" + }, + "compilerOptions": { + "types": [ + "lume/types.ts" + ] + } +} diff --git a/deno.lock b/deno.lock new file mode 100644 index 0000000..359ffed --- /dev/null +++ b/deno.lock @@ -0,0 +1,2000 @@ +{ + "version": "3", + "packages": { + "specifiers": { + "npm:@js-temporal/polyfill@0.4.4": "npm:@js-temporal/polyfill@0.4.4", + "npm:autoprefixer@10.4.19": "npm:autoprefixer@10.4.19_postcss@8.4.38", + "npm:date-fns@3.6.0": "npm:date-fns@3.6.0", + "npm:estree-walker@3.0.3": "npm:estree-walker@3.0.3", + "npm:markdown-it-attrs@4.1.6": "npm:markdown-it-attrs@4.1.6_markdown-it@14.1.0", + "npm:markdown-it-deflist@3.0.0": "npm:markdown-it-deflist@3.0.0", + "npm:markdown-it@14.1.0": "npm:markdown-it@14.1.0", + "npm:meriyah@4.4.0": "npm:meriyah@4.4.0", + "npm:octokit": "npm:octokit@4.0.2_@octokit+core@6.1.2", + "npm:postcss-import@16.1.0": "npm:postcss-import@16.1.0_postcss@8.4.38", + "npm:postcss-nesting@12.1.1": "npm:postcss-nesting@12.1.1_postcss@8.4.38_postcss-selector-parser@6.1.0", + "npm:postcss@8.4.38": "npm:postcss@8.4.38", + "npm:rehype-raw@7.0.0": "npm:rehype-raw@7.0.0", + "npm:rehype-sanitize@6.0.0": "npm:rehype-sanitize@6.0.0", + "npm:rehype-stringify@10.0.0": "npm:rehype-stringify@10.0.0", + "npm:remark-gfm@4.0.0": "npm:remark-gfm@4.0.0", + "npm:remark-parse@11.0.0": "npm:remark-parse@11.0.0", + "npm:remark-rehype@11.1.0": "npm:remark-rehype@11.1.0", + "npm:unified@11.0.4": "npm:unified@11.0.4" + }, + "npm": { + "@csstools/selector-resolve-nested@1.1.0_postcss-selector-parser@6.1.0": { + "integrity": "sha512-uWvSaeRcHyeNenKg8tp17EVDRkpflmdyvbE0DHo6D/GdBb6PDnCYYU6gRpXhtICMGMcahQmj2zGxwFM/WC8hCg==", + "dependencies": { + "postcss-selector-parser": "postcss-selector-parser@6.1.0" + } + }, + "@csstools/selector-specificity@3.1.1_postcss-selector-parser@6.1.0": { + "integrity": "sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==", + "dependencies": { + "postcss-selector-parser": "postcss-selector-parser@6.1.0" + } + }, + "@js-temporal/polyfill@0.4.4": { + "integrity": "sha512-2X6bvghJ/JAoZO52lbgyAPFj8uCflhTo2g7nkFzEQdXd/D8rEeD4HtmTEpmtGCva260fcd66YNXBOYdnmHqSOg==", + "dependencies": { + "jsbi": "jsbi@4.3.0", + "tslib": "tslib@2.6.3" + } + }, + "@octokit/app@15.1.0_@octokit+core@6.1.2": { + "integrity": "sha512-TkBr7QgOmE6ORxvIAhDbZsqPkF7RSqTY4pLTtUQCvr6dTXqvi2fFo46q3h1lxlk/sGMQjqyZ0kEahkD/NyzOHg==", + "dependencies": { + "@octokit/auth-app": "@octokit/auth-app@7.1.0", + "@octokit/auth-unauthenticated": "@octokit/auth-unauthenticated@6.1.0", + "@octokit/core": "@octokit/core@6.1.2", + "@octokit/oauth-app": "@octokit/oauth-app@7.1.3", + "@octokit/plugin-paginate-rest": "@octokit/plugin-paginate-rest@11.3.3_@octokit+core@6.1.2", + "@octokit/types": "@octokit/types@13.5.0", + "@octokit/webhooks": "@octokit/webhooks@13.2.7" + } + }, + "@octokit/auth-app@7.1.0": { + "integrity": "sha512-cazGaJPSgeZ8NkVYeM/C5l/6IQ5vZnsI8p1aMucadCkt/bndI+q+VqwrlnWbASRmenjOkf1t1RpCKrif53U8gw==", + "dependencies": { + "@octokit/auth-oauth-app": "@octokit/auth-oauth-app@8.1.1", + "@octokit/auth-oauth-user": "@octokit/auth-oauth-user@5.1.1", + "@octokit/request": "@octokit/request@9.1.1", + "@octokit/request-error": "@octokit/request-error@6.1.1", + "@octokit/types": "@octokit/types@13.5.0", + "lru-cache": "lru-cache@10.3.0", + "universal-github-app-jwt": "universal-github-app-jwt@2.2.0", + "universal-user-agent": "universal-user-agent@7.0.2" + } + }, + "@octokit/auth-oauth-app@8.1.1": { + "integrity": "sha512-5UtmxXAvU2wfcHIPPDWzVSAWXVJzG3NWsxb7zCFplCWEmMCArSZV0UQu5jw5goLQXbFyOr5onzEH37UJB3zQQg==", + "dependencies": { + "@octokit/auth-oauth-device": "@octokit/auth-oauth-device@7.1.1", + "@octokit/auth-oauth-user": "@octokit/auth-oauth-user@5.1.1", + "@octokit/request": "@octokit/request@9.1.1", + "@octokit/types": "@octokit/types@13.5.0", + "universal-user-agent": "universal-user-agent@7.0.2" + } + }, + "@octokit/auth-oauth-device@7.1.1": { + "integrity": "sha512-HWl8lYueHonuyjrKKIup/1tiy0xcmQCdq5ikvMO1YwkNNkxb6DXfrPjrMYItNLyCP/o2H87WuijuE+SlBTT8eg==", + "dependencies": { + "@octokit/oauth-methods": "@octokit/oauth-methods@5.1.2", + "@octokit/request": "@octokit/request@9.1.1", + "@octokit/types": "@octokit/types@13.5.0", + "universal-user-agent": "universal-user-agent@7.0.2" + } + }, + "@octokit/auth-oauth-user@5.1.1": { + "integrity": "sha512-rRkMz0ErOppdvEfnemHJXgZ9vTPhBuC6yASeFaB7I2yLMd7QpjfrL1mnvRPlyKo+M6eeLxrKanXJ9Qte29SRsw==", + "dependencies": { + "@octokit/auth-oauth-device": "@octokit/auth-oauth-device@7.1.1", + "@octokit/oauth-methods": "@octokit/oauth-methods@5.1.2", + "@octokit/request": "@octokit/request@9.1.1", + "@octokit/types": "@octokit/types@13.5.0", + "universal-user-agent": "universal-user-agent@7.0.2" + } + }, + "@octokit/auth-token@5.1.1": { + "integrity": "sha512-rh3G3wDO8J9wSjfI436JUKzHIxq8NaiL0tVeB2aXmG6p/9859aUOAjA9pmSPNGGZxfwmaJ9ozOJImuNVJdpvbA==", + "dependencies": {} + }, + "@octokit/auth-unauthenticated@6.1.0": { + "integrity": "sha512-zPSmfrUAcspZH/lOFQnVnvjQZsIvmfApQH6GzJrkIunDooU1Su2qt2FfMTSVPRp7WLTQyC20Kd55lF+mIYaohQ==", + "dependencies": { + "@octokit/request-error": "@octokit/request-error@6.1.1", + "@octokit/types": "@octokit/types@13.5.0" + } + }, + "@octokit/core@6.1.2": { + "integrity": "sha512-hEb7Ma4cGJGEUNOAVmyfdB/3WirWMg5hDuNFVejGEDFqupeOysLc2sG6HJxY2etBp5YQu5Wtxwi020jS9xlUwg==", + "dependencies": { + "@octokit/auth-token": "@octokit/auth-token@5.1.1", + "@octokit/graphql": "@octokit/graphql@8.1.1", + "@octokit/request": "@octokit/request@9.1.1", + "@octokit/request-error": "@octokit/request-error@6.1.1", + "@octokit/types": "@octokit/types@13.5.0", + "before-after-hook": "before-after-hook@3.0.2", + "universal-user-agent": "universal-user-agent@7.0.2" + } + }, + "@octokit/endpoint@10.1.1": { + "integrity": "sha512-JYjh5rMOwXMJyUpj028cu0Gbp7qe/ihxfJMLc8VZBMMqSwLgOxDI1911gV4Enl1QSavAQNJcwmwBF9M0VvLh6Q==", + "dependencies": { + "@octokit/types": "@octokit/types@13.5.0", + "universal-user-agent": "universal-user-agent@7.0.2" + } + }, + "@octokit/graphql@8.1.1": { + "integrity": "sha512-ukiRmuHTi6ebQx/HFRCXKbDlOh/7xEV6QUXaE7MJEKGNAncGI/STSbOkl12qVXZrfZdpXctx5O9X1AIaebiDBg==", + "dependencies": { + "@octokit/request": "@octokit/request@9.1.1", + "@octokit/types": "@octokit/types@13.5.0", + "universal-user-agent": "universal-user-agent@7.0.2" + } + }, + "@octokit/oauth-app@7.1.3": { + "integrity": "sha512-EHXbOpBkSGVVGF1W+NLMmsnSsJRkcrnVmDKt0TQYRBb6xWfWzoi9sBD4DIqZ8jGhOWO/V8t4fqFyJ4vDQDn9bg==", + "dependencies": { + "@octokit/auth-oauth-app": "@octokit/auth-oauth-app@8.1.1", + "@octokit/auth-oauth-user": "@octokit/auth-oauth-user@5.1.1", + "@octokit/auth-unauthenticated": "@octokit/auth-unauthenticated@6.1.0", + "@octokit/core": "@octokit/core@6.1.2", + "@octokit/oauth-authorization-url": "@octokit/oauth-authorization-url@7.1.1", + "@octokit/oauth-methods": "@octokit/oauth-methods@5.1.2", + "@types/aws-lambda": "@types/aws-lambda@8.10.140", + "universal-user-agent": "universal-user-agent@7.0.2" + } + }, + "@octokit/oauth-authorization-url@7.1.1": { + "integrity": "sha512-ooXV8GBSabSWyhLUowlMIVd9l1s2nsOGQdlP2SQ4LnkEsGXzeCvbSbCPdZThXhEFzleGPwbapT0Sb+YhXRyjCA==", + "dependencies": {} + }, + "@octokit/oauth-methods@5.1.2": { + "integrity": "sha512-C5lglRD+sBlbrhCUTxgJAFjWgJlmTx5bQ7Ch0+2uqRjYv7Cfb5xpX4WuSC9UgQna3sqRGBL9EImX9PvTpMaQ7g==", + "dependencies": { + "@octokit/oauth-authorization-url": "@octokit/oauth-authorization-url@7.1.1", + "@octokit/request": "@octokit/request@9.1.1", + "@octokit/request-error": "@octokit/request-error@6.1.1", + "@octokit/types": "@octokit/types@13.5.0" + } + }, + "@octokit/openapi-types@22.2.0": { + "integrity": "sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==", + "dependencies": {} + }, + "@octokit/openapi-webhooks-types@8.2.1": { + "integrity": "sha512-msAU1oTSm0ZmvAE0xDemuF4tVs5i0xNnNGtNmr4EuATi+1Rn8cZDetj6NXioSf5LwnxEc209COa/WOSbjuhLUA==", + "dependencies": {} + }, + "@octokit/plugin-paginate-graphql@5.2.2_@octokit+core@6.1.2": { + "integrity": "sha512-7znSVvlNAOJisCqAnjN1FtEziweOHSjPGAuc5W58NeGNAr/ZB57yCsjQbXDlWsVryA7hHQaEQPcBbJYFawlkyg==", + "dependencies": { + "@octokit/core": "@octokit/core@6.1.2" + } + }, + "@octokit/plugin-paginate-rest@11.3.3_@octokit+core@6.1.2": { + "integrity": "sha512-o4WRoOJZlKqEEgj+i9CpcmnByvtzoUYC6I8PD2SA95M+BJ2x8h7oLcVOg9qcowWXBOdcTRsMZiwvM3EyLm9AfA==", + "dependencies": { + "@octokit/core": "@octokit/core@6.1.2", + "@octokit/types": "@octokit/types@13.5.0" + } + }, + "@octokit/plugin-rest-endpoint-methods@13.2.4_@octokit+core@6.1.2": { + "integrity": "sha512-gusyAVgTrPiuXOdfqOySMDztQHv6928PQ3E4dqVGEtOvRXAKRbJR4b1zQyniIT9waqaWk/UDaoJ2dyPr7Bk7Iw==", + "dependencies": { + "@octokit/core": "@octokit/core@6.1.2", + "@octokit/types": "@octokit/types@13.5.0" + } + }, + "@octokit/plugin-retry@7.1.1_@octokit+core@6.1.2": { + "integrity": "sha512-G9Ue+x2odcb8E1XIPhaFBnTTIrrUDfXN05iFXiqhR+SeeeDMMILcAnysOsxUpEWcQp2e5Ft397FCXTcPkiPkLw==", + "dependencies": { + "@octokit/core": "@octokit/core@6.1.2", + "@octokit/request-error": "@octokit/request-error@6.1.1", + "@octokit/types": "@octokit/types@13.5.0", + "bottleneck": "bottleneck@2.19.5" + } + }, + "@octokit/plugin-throttling@9.3.0_@octokit+core@6.1.2": { + "integrity": "sha512-B5YTToSRTzNSeEyssnrT7WwGhpIdbpV9NKIs3KyTWHX6PhpYn7gqF/+lL3BvsASBM3Sg5BAUYk7KZx5p/Ec77w==", + "dependencies": { + "@octokit/core": "@octokit/core@6.1.2", + "@octokit/types": "@octokit/types@13.5.0", + "bottleneck": "bottleneck@2.19.5" + } + }, + "@octokit/request-error@6.1.1": { + "integrity": "sha512-1mw1gqT3fR/WFvnoVpY/zUM2o/XkMs/2AszUUG9I69xn0JFLv6PGkPhNk5lbfvROs79wiS0bqiJNxfCZcRJJdg==", + "dependencies": { + "@octokit/types": "@octokit/types@13.5.0" + } + }, + "@octokit/request@9.1.1": { + "integrity": "sha512-pyAguc0p+f+GbQho0uNetNQMmLG1e80WjkIaqqgUkihqUp0boRU6nKItXO4VWnr+nbZiLGEyy4TeKRwqaLvYgw==", + "dependencies": { + "@octokit/endpoint": "@octokit/endpoint@10.1.1", + "@octokit/request-error": "@octokit/request-error@6.1.1", + "@octokit/types": "@octokit/types@13.5.0", + "universal-user-agent": "universal-user-agent@7.0.2" + } + }, + "@octokit/types@13.5.0": { + "integrity": "sha512-HdqWTf5Z3qwDVlzCrP8UJquMwunpDiMPt5er+QjGzL4hqr/vBVY/MauQgS1xWxCDT1oMx1EULyqxncdCY/NVSQ==", + "dependencies": { + "@octokit/openapi-types": "@octokit/openapi-types@22.2.0" + } + }, + "@octokit/webhooks-methods@5.1.0": { + "integrity": "sha512-yFZa3UH11VIxYnnoOYCVoJ3q4ChuSOk2IVBBQ0O3xtKX4x9bmKb/1t+Mxixv2iUhzMdOl1qeWJqEhouXXzB3rQ==", + "dependencies": {} + }, + "@octokit/webhooks@13.2.7": { + "integrity": "sha512-sPHCyi9uZuCs1gg0yF53FFocM+GsiiBEhQQV/itGzzQ8gjyv2GMJ1YvgdDY4lC0ePZeiV3juEw4GbS6w1VHhRw==", + "dependencies": { + "@octokit/openapi-webhooks-types": "@octokit/openapi-webhooks-types@8.2.1", + "@octokit/request-error": "@octokit/request-error@6.1.1", + "@octokit/webhooks-methods": "@octokit/webhooks-methods@5.1.0", + "aggregate-error": "aggregate-error@5.0.0" + } + }, + "@types/aws-lambda@8.10.140": { + "integrity": "sha512-4Dh3dk2TUcbdfHrX0Al90mNGJDvA9NBiTQPzbrjGi/dLxzKCGOYgT8YQ47jUKNFALkAJAadifq0pzyjIUlhVhg==", + "dependencies": {} + }, + "@types/debug@4.1.12": { + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "dependencies": { + "@types/ms": "@types/ms@0.7.34" + } + }, + "@types/estree@1.0.5": { + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dependencies": {} + }, + "@types/hast@3.0.4": { + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "dependencies": { + "@types/unist": "@types/unist@3.0.2" + } + }, + "@types/mdast@4.0.4": { + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "dependencies": { + "@types/unist": "@types/unist@3.0.2" + } + }, + "@types/ms@0.7.34": { + "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==", + "dependencies": {} + }, + "@types/unist@3.0.2": { + "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==", + "dependencies": {} + }, + "@ungap/structured-clone@1.2.0": { + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dependencies": {} + }, + "aggregate-error@5.0.0": { + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "dependencies": { + "clean-stack": "clean-stack@5.2.0", + "indent-string": "indent-string@5.0.0" + } + }, + "argparse@2.0.1": { + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dependencies": {} + }, + "autoprefixer@10.4.19_postcss@8.4.38": { + "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", + "dependencies": { + "browserslist": "browserslist@4.23.1", + "caniuse-lite": "caniuse-lite@1.0.30001640", + "fraction.js": "fraction.js@4.3.7", + "normalize-range": "normalize-range@0.1.2", + "picocolors": "picocolors@1.0.1", + "postcss": "postcss@8.4.38", + "postcss-value-parser": "postcss-value-parser@4.2.0" + } + }, + "bail@2.0.2": { + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "dependencies": {} + }, + "before-after-hook@3.0.2": { + "integrity": "sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==", + "dependencies": {} + }, + "bottleneck@2.19.5": { + "integrity": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==", + "dependencies": {} + }, + "browserslist@4.23.1": { + "integrity": "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==", + "dependencies": { + "caniuse-lite": "caniuse-lite@1.0.30001640", + "electron-to-chromium": "electron-to-chromium@1.4.816", + "node-releases": "node-releases@2.0.14", + "update-browserslist-db": "update-browserslist-db@1.1.0_browserslist@4.23.1" + } + }, + "caniuse-lite@1.0.30001640": { + "integrity": "sha512-lA4VMpW0PSUrFnkmVuEKBUovSWKhj7puyCg8StBChgu298N1AtuF1sKWEvfDuimSEDbhlb/KqPKC3fs1HbuQUA==", + "dependencies": {} + }, + "ccount@2.0.1": { + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "dependencies": {} + }, + "character-entities-html4@2.1.0": { + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "dependencies": {} + }, + "character-entities-legacy@3.0.0": { + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "dependencies": {} + }, + "character-entities@2.0.2": { + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "dependencies": {} + }, + "clean-stack@5.2.0": { + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "dependencies": { + "escape-string-regexp": "escape-string-regexp@5.0.0" + } + }, + "comma-separated-tokens@2.0.3": { + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "dependencies": {} + }, + "cssesc@3.0.0": { + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dependencies": {} + }, + "date-fns@3.6.0": { + "integrity": "sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==", + "dependencies": {} + }, + "debug@4.3.5": { + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "dependencies": { + "ms": "ms@2.1.2" + } + }, + "decode-named-character-reference@1.0.2": { + "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", + "dependencies": { + "character-entities": "character-entities@2.0.2" + } + }, + "dequal@2.0.3": { + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dependencies": {} + }, + "devlop@1.1.0": { + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "dependencies": { + "dequal": "dequal@2.0.3" + } + }, + "electron-to-chromium@1.4.816": { + "integrity": "sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw==", + "dependencies": {} + }, + "entities@4.5.0": { + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dependencies": {} + }, + "escalade@3.1.2": { + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dependencies": {} + }, + "escape-string-regexp@5.0.0": { + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dependencies": {} + }, + "estree-walker@3.0.3": { + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dependencies": { + "@types/estree": "@types/estree@1.0.5" + } + }, + "extend@3.0.2": { + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dependencies": {} + }, + "fraction.js@4.3.7": { + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dependencies": {} + }, + "function-bind@1.1.2": { + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dependencies": {} + }, + "hasown@2.0.2": { + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dependencies": { + "function-bind": "function-bind@1.1.2" + } + }, + "hast-util-from-parse5@8.0.1": { + "integrity": "sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==", + "dependencies": { + "@types/hast": "@types/hast@3.0.4", + "@types/unist": "@types/unist@3.0.2", + "devlop": "devlop@1.1.0", + "hastscript": "hastscript@8.0.0", + "property-information": "property-information@6.5.0", + "vfile": "vfile@6.0.1", + "vfile-location": "vfile-location@5.0.2", + "web-namespaces": "web-namespaces@2.0.1" + } + }, + "hast-util-parse-selector@4.0.0": { + "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", + "dependencies": { + "@types/hast": "@types/hast@3.0.4" + } + }, + "hast-util-raw@9.0.4": { + "integrity": "sha512-LHE65TD2YiNsHD3YuXcKPHXPLuYh/gjp12mOfU8jxSrm1f/yJpsb0F/KKljS6U9LJoP0Ux+tCe8iJ2AsPzTdgA==", + "dependencies": { + "@types/hast": "@types/hast@3.0.4", + "@types/unist": "@types/unist@3.0.2", + "@ungap/structured-clone": "@ungap/structured-clone@1.2.0", + "hast-util-from-parse5": "hast-util-from-parse5@8.0.1", + "hast-util-to-parse5": "hast-util-to-parse5@8.0.0", + "html-void-elements": "html-void-elements@3.0.0", + "mdast-util-to-hast": "mdast-util-to-hast@13.2.0", + "parse5": "parse5@7.1.2", + "unist-util-position": "unist-util-position@5.0.0", + "unist-util-visit": "unist-util-visit@5.0.0", + "vfile": "vfile@6.0.1", + "web-namespaces": "web-namespaces@2.0.1", + "zwitch": "zwitch@2.0.4" + } + }, + "hast-util-sanitize@5.0.1": { + "integrity": "sha512-IGrgWLuip4O2nq5CugXy4GI2V8kx4sFVy5Hd4vF7AR2gxS0N9s7nEAVUyeMtZKZvzrxVsHt73XdTsno1tClIkQ==", + "dependencies": { + "@types/hast": "@types/hast@3.0.4", + "@ungap/structured-clone": "@ungap/structured-clone@1.2.0", + "unist-util-position": "unist-util-position@5.0.0" + } + }, + "hast-util-to-html@9.0.1": { + "integrity": "sha512-hZOofyZANbyWo+9RP75xIDV/gq+OUKx+T46IlwERnKmfpwp81XBFbT9mi26ws+SJchA4RVUQwIBJpqEOBhMzEQ==", + "dependencies": { + "@types/hast": "@types/hast@3.0.4", + "@types/unist": "@types/unist@3.0.2", + "ccount": "ccount@2.0.1", + "comma-separated-tokens": "comma-separated-tokens@2.0.3", + "hast-util-raw": "hast-util-raw@9.0.4", + "hast-util-whitespace": "hast-util-whitespace@3.0.0", + "html-void-elements": "html-void-elements@3.0.0", + "mdast-util-to-hast": "mdast-util-to-hast@13.2.0", + "property-information": "property-information@6.5.0", + "space-separated-tokens": "space-separated-tokens@2.0.2", + "stringify-entities": "stringify-entities@4.0.4", + "zwitch": "zwitch@2.0.4" + } + }, + "hast-util-to-parse5@8.0.0": { + "integrity": "sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==", + "dependencies": { + "@types/hast": "@types/hast@3.0.4", + "comma-separated-tokens": "comma-separated-tokens@2.0.3", + "devlop": "devlop@1.1.0", + "property-information": "property-information@6.5.0", + "space-separated-tokens": "space-separated-tokens@2.0.2", + "web-namespaces": "web-namespaces@2.0.1", + "zwitch": "zwitch@2.0.4" + } + }, + "hast-util-whitespace@3.0.0": { + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "dependencies": { + "@types/hast": "@types/hast@3.0.4" + } + }, + "hastscript@8.0.0": { + "integrity": "sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==", + "dependencies": { + "@types/hast": "@types/hast@3.0.4", + "comma-separated-tokens": "comma-separated-tokens@2.0.3", + "hast-util-parse-selector": "hast-util-parse-selector@4.0.0", + "property-information": "property-information@6.5.0", + "space-separated-tokens": "space-separated-tokens@2.0.2" + } + }, + "html-void-elements@3.0.0": { + "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", + "dependencies": {} + }, + "indent-string@5.0.0": { + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dependencies": {} + }, + "is-core-module@2.14.0": { + "integrity": "sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==", + "dependencies": { + "hasown": "hasown@2.0.2" + } + }, + "is-plain-obj@4.1.0": { + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "dependencies": {} + }, + "jsbi@4.3.0": { + "integrity": "sha512-SnZNcinB4RIcnEyZqFPdGPVgrg2AcnykiBy0sHVJQKHYeaLUvi3Exj+iaPpLnFVkDPZIV4U0yvgC9/R4uEAZ9g==", + "dependencies": {} + }, + "linkify-it@5.0.0": { + "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==", + "dependencies": { + "uc.micro": "uc.micro@2.1.0" + } + }, + "longest-streak@3.1.0": { + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "dependencies": {} + }, + "lru-cache@10.3.0": { + "integrity": "sha512-CQl19J/g+Hbjbv4Y3mFNNXFEL/5t/KCg8POCuUqd4rMKjGG+j1ybER83hxV58zL+dFI1PTkt3GNFSHRt+d8qEQ==", + "dependencies": {} + }, + "markdown-it-attrs@4.1.6_markdown-it@14.1.0": { + "integrity": "sha512-O7PDKZlN8RFMyDX13JnctQompwrrILuz2y43pW2GagcwpIIElkAdfeek+erHfxUOlXWPsjFeWmZ8ch1xtRLWpA==", + "dependencies": { + "markdown-it": "markdown-it@14.1.0" + } + }, + "markdown-it-deflist@3.0.0": { + "integrity": "sha512-OxPmQ/keJZwbubjiQWOvKLHwpV2wZ5I3Smc81OjhwbfJsjdRrvD5aLTQxmZzzePeO0kbGzAo3Krk4QLgA8PWLg==", + "dependencies": {} + }, + "markdown-it@14.1.0": { + "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==", + "dependencies": { + "argparse": "argparse@2.0.1", + "entities": "entities@4.5.0", + "linkify-it": "linkify-it@5.0.0", + "mdurl": "mdurl@2.0.0", + "punycode.js": "punycode.js@2.3.1", + "uc.micro": "uc.micro@2.1.0" + } + }, + "markdown-table@3.0.3": { + "integrity": "sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==", + "dependencies": {} + }, + "mdast-util-find-and-replace@3.0.1": { + "integrity": "sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==", + "dependencies": { + "@types/mdast": "@types/mdast@4.0.4", + "escape-string-regexp": "escape-string-regexp@5.0.0", + "unist-util-is": "unist-util-is@6.0.0", + "unist-util-visit-parents": "unist-util-visit-parents@6.0.1" + } + }, + "mdast-util-from-markdown@2.0.1": { + "integrity": "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==", + "dependencies": { + "@types/mdast": "@types/mdast@4.0.4", + "@types/unist": "@types/unist@3.0.2", + "decode-named-character-reference": "decode-named-character-reference@1.0.2", + "devlop": "devlop@1.1.0", + "mdast-util-to-string": "mdast-util-to-string@4.0.0", + "micromark": "micromark@4.0.0", + "micromark-util-decode-numeric-character-reference": "micromark-util-decode-numeric-character-reference@2.0.1", + "micromark-util-decode-string": "micromark-util-decode-string@2.0.0", + "micromark-util-normalize-identifier": "micromark-util-normalize-identifier@2.0.0", + "micromark-util-symbol": "micromark-util-symbol@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0", + "unist-util-stringify-position": "unist-util-stringify-position@4.0.0" + } + }, + "mdast-util-gfm-autolink-literal@2.0.0": { + "integrity": "sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==", + "dependencies": { + "@types/mdast": "@types/mdast@4.0.4", + "ccount": "ccount@2.0.1", + "devlop": "devlop@1.1.0", + "mdast-util-find-and-replace": "mdast-util-find-and-replace@3.0.1", + "micromark-util-character": "micromark-util-character@2.1.0" + } + }, + "mdast-util-gfm-footnote@2.0.0": { + "integrity": "sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==", + "dependencies": { + "@types/mdast": "@types/mdast@4.0.4", + "devlop": "devlop@1.1.0", + "mdast-util-from-markdown": "mdast-util-from-markdown@2.0.1", + "mdast-util-to-markdown": "mdast-util-to-markdown@2.1.0", + "micromark-util-normalize-identifier": "micromark-util-normalize-identifier@2.0.0" + } + }, + "mdast-util-gfm-strikethrough@2.0.0": { + "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", + "dependencies": { + "@types/mdast": "@types/mdast@4.0.4", + "mdast-util-from-markdown": "mdast-util-from-markdown@2.0.1", + "mdast-util-to-markdown": "mdast-util-to-markdown@2.1.0" + } + }, + "mdast-util-gfm-table@2.0.0": { + "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", + "dependencies": { + "@types/mdast": "@types/mdast@4.0.4", + "devlop": "devlop@1.1.0", + "markdown-table": "markdown-table@3.0.3", + "mdast-util-from-markdown": "mdast-util-from-markdown@2.0.1", + "mdast-util-to-markdown": "mdast-util-to-markdown@2.1.0" + } + }, + "mdast-util-gfm-task-list-item@2.0.0": { + "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", + "dependencies": { + "@types/mdast": "@types/mdast@4.0.4", + "devlop": "devlop@1.1.0", + "mdast-util-from-markdown": "mdast-util-from-markdown@2.0.1", + "mdast-util-to-markdown": "mdast-util-to-markdown@2.1.0" + } + }, + "mdast-util-gfm@3.0.0": { + "integrity": "sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==", + "dependencies": { + "mdast-util-from-markdown": "mdast-util-from-markdown@2.0.1", + "mdast-util-gfm-autolink-literal": "mdast-util-gfm-autolink-literal@2.0.0", + "mdast-util-gfm-footnote": "mdast-util-gfm-footnote@2.0.0", + "mdast-util-gfm-strikethrough": "mdast-util-gfm-strikethrough@2.0.0", + "mdast-util-gfm-table": "mdast-util-gfm-table@2.0.0", + "mdast-util-gfm-task-list-item": "mdast-util-gfm-task-list-item@2.0.0", + "mdast-util-to-markdown": "mdast-util-to-markdown@2.1.0" + } + }, + "mdast-util-phrasing@4.1.0": { + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "dependencies": { + "@types/mdast": "@types/mdast@4.0.4", + "unist-util-is": "unist-util-is@6.0.0" + } + }, + "mdast-util-to-hast@13.2.0": { + "integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==", + "dependencies": { + "@types/hast": "@types/hast@3.0.4", + "@types/mdast": "@types/mdast@4.0.4", + "@ungap/structured-clone": "@ungap/structured-clone@1.2.0", + "devlop": "devlop@1.1.0", + "micromark-util-sanitize-uri": "micromark-util-sanitize-uri@2.0.0", + "trim-lines": "trim-lines@3.0.1", + "unist-util-position": "unist-util-position@5.0.0", + "unist-util-visit": "unist-util-visit@5.0.0", + "vfile": "vfile@6.0.1" + } + }, + "mdast-util-to-markdown@2.1.0": { + "integrity": "sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==", + "dependencies": { + "@types/mdast": "@types/mdast@4.0.4", + "@types/unist": "@types/unist@3.0.2", + "longest-streak": "longest-streak@3.1.0", + "mdast-util-phrasing": "mdast-util-phrasing@4.1.0", + "mdast-util-to-string": "mdast-util-to-string@4.0.0", + "micromark-util-decode-string": "micromark-util-decode-string@2.0.0", + "unist-util-visit": "unist-util-visit@5.0.0", + "zwitch": "zwitch@2.0.4" + } + }, + "mdast-util-to-string@4.0.0": { + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "dependencies": { + "@types/mdast": "@types/mdast@4.0.4" + } + }, + "mdurl@2.0.0": { + "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==", + "dependencies": {} + }, + "meriyah@4.4.0": { + "integrity": "sha512-loEeDY1+BXyAlTsksyoqv0mtEAA6Tb9xTxq/Qo/J8CxR6Ap81Q/Dej4S6XWX1OFTQJZ/zILPHnvULB+gjtTs8A==", + "dependencies": {} + }, + "micromark-core-commonmark@2.0.1": { + "integrity": "sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==", + "dependencies": { + "decode-named-character-reference": "decode-named-character-reference@1.0.2", + "devlop": "devlop@1.1.0", + "micromark-factory-destination": "micromark-factory-destination@2.0.0", + "micromark-factory-label": "micromark-factory-label@2.0.0", + "micromark-factory-space": "micromark-factory-space@2.0.0", + "micromark-factory-title": "micromark-factory-title@2.0.0", + "micromark-factory-whitespace": "micromark-factory-whitespace@2.0.0", + "micromark-util-character": "micromark-util-character@2.1.0", + "micromark-util-chunked": "micromark-util-chunked@2.0.0", + "micromark-util-classify-character": "micromark-util-classify-character@2.0.0", + "micromark-util-html-tag-name": "micromark-util-html-tag-name@2.0.0", + "micromark-util-normalize-identifier": "micromark-util-normalize-identifier@2.0.0", + "micromark-util-resolve-all": "micromark-util-resolve-all@2.0.0", + "micromark-util-subtokenize": "micromark-util-subtokenize@2.0.1", + "micromark-util-symbol": "micromark-util-symbol@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-extension-gfm-autolink-literal@2.0.0": { + "integrity": "sha512-rTHfnpt/Q7dEAK1Y5ii0W8bhfJlVJFnJMHIPisfPK3gpVNuOP0VnRl96+YJ3RYWV/P4gFeQoGKNlT3RhuvpqAg==", + "dependencies": { + "micromark-util-character": "micromark-util-character@2.1.0", + "micromark-util-sanitize-uri": "micromark-util-sanitize-uri@2.0.0", + "micromark-util-symbol": "micromark-util-symbol@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-extension-gfm-footnote@2.0.0": { + "integrity": "sha512-6Rzu0CYRKDv3BfLAUnZsSlzx3ak6HAoI85KTiijuKIz5UxZxbUI+pD6oHgw+6UtQuiRwnGRhzMmPRv4smcz0fg==", + "dependencies": { + "devlop": "devlop@1.1.0", + "micromark-core-commonmark": "micromark-core-commonmark@2.0.1", + "micromark-factory-space": "micromark-factory-space@2.0.0", + "micromark-util-character": "micromark-util-character@2.1.0", + "micromark-util-normalize-identifier": "micromark-util-normalize-identifier@2.0.0", + "micromark-util-sanitize-uri": "micromark-util-sanitize-uri@2.0.0", + "micromark-util-symbol": "micromark-util-symbol@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-extension-gfm-strikethrough@2.0.0": { + "integrity": "sha512-c3BR1ClMp5fxxmwP6AoOY2fXO9U8uFMKs4ADD66ahLTNcwzSCyRVU4k7LPV5Nxo/VJiR4TdzxRQY2v3qIUceCw==", + "dependencies": { + "devlop": "devlop@1.1.0", + "micromark-util-chunked": "micromark-util-chunked@2.0.0", + "micromark-util-classify-character": "micromark-util-classify-character@2.0.0", + "micromark-util-resolve-all": "micromark-util-resolve-all@2.0.0", + "micromark-util-symbol": "micromark-util-symbol@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-extension-gfm-table@2.0.0": { + "integrity": "sha512-PoHlhypg1ItIucOaHmKE8fbin3vTLpDOUg8KAr8gRCF1MOZI9Nquq2i/44wFvviM4WuxJzc3demT8Y3dkfvYrw==", + "dependencies": { + "devlop": "devlop@1.1.0", + "micromark-factory-space": "micromark-factory-space@2.0.0", + "micromark-util-character": "micromark-util-character@2.1.0", + "micromark-util-symbol": "micromark-util-symbol@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-extension-gfm-tagfilter@2.0.0": { + "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", + "dependencies": { + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-extension-gfm-task-list-item@2.0.1": { + "integrity": "sha512-cY5PzGcnULaN5O7T+cOzfMoHjBW7j+T9D2sucA5d/KbsBTPcYdebm9zUd9zzdgJGCwahV+/W78Z3nbulBYVbTw==", + "dependencies": { + "devlop": "devlop@1.1.0", + "micromark-factory-space": "micromark-factory-space@2.0.0", + "micromark-util-character": "micromark-util-character@2.1.0", + "micromark-util-symbol": "micromark-util-symbol@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-extension-gfm@3.0.0": { + "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", + "dependencies": { + "micromark-extension-gfm-autolink-literal": "micromark-extension-gfm-autolink-literal@2.0.0", + "micromark-extension-gfm-footnote": "micromark-extension-gfm-footnote@2.0.0", + "micromark-extension-gfm-strikethrough": "micromark-extension-gfm-strikethrough@2.0.0", + "micromark-extension-gfm-table": "micromark-extension-gfm-table@2.0.0", + "micromark-extension-gfm-tagfilter": "micromark-extension-gfm-tagfilter@2.0.0", + "micromark-extension-gfm-task-list-item": "micromark-extension-gfm-task-list-item@2.0.1", + "micromark-util-combine-extensions": "micromark-util-combine-extensions@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-factory-destination@2.0.0": { + "integrity": "sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==", + "dependencies": { + "micromark-util-character": "micromark-util-character@2.1.0", + "micromark-util-symbol": "micromark-util-symbol@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-factory-label@2.0.0": { + "integrity": "sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==", + "dependencies": { + "devlop": "devlop@1.1.0", + "micromark-util-character": "micromark-util-character@2.1.0", + "micromark-util-symbol": "micromark-util-symbol@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-factory-space@2.0.0": { + "integrity": "sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==", + "dependencies": { + "micromark-util-character": "micromark-util-character@2.1.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-factory-title@2.0.0": { + "integrity": "sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==", + "dependencies": { + "micromark-factory-space": "micromark-factory-space@2.0.0", + "micromark-util-character": "micromark-util-character@2.1.0", + "micromark-util-symbol": "micromark-util-symbol@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-factory-whitespace@2.0.0": { + "integrity": "sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==", + "dependencies": { + "micromark-factory-space": "micromark-factory-space@2.0.0", + "micromark-util-character": "micromark-util-character@2.1.0", + "micromark-util-symbol": "micromark-util-symbol@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-util-character@2.1.0": { + "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", + "dependencies": { + "micromark-util-symbol": "micromark-util-symbol@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-util-chunked@2.0.0": { + "integrity": "sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==", + "dependencies": { + "micromark-util-symbol": "micromark-util-symbol@2.0.0" + } + }, + "micromark-util-classify-character@2.0.0": { + "integrity": "sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==", + "dependencies": { + "micromark-util-character": "micromark-util-character@2.1.0", + "micromark-util-symbol": "micromark-util-symbol@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-util-combine-extensions@2.0.0": { + "integrity": "sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==", + "dependencies": { + "micromark-util-chunked": "micromark-util-chunked@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-util-decode-numeric-character-reference@2.0.1": { + "integrity": "sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==", + "dependencies": { + "micromark-util-symbol": "micromark-util-symbol@2.0.0" + } + }, + "micromark-util-decode-string@2.0.0": { + "integrity": "sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==", + "dependencies": { + "decode-named-character-reference": "decode-named-character-reference@1.0.2", + "micromark-util-character": "micromark-util-character@2.1.0", + "micromark-util-decode-numeric-character-reference": "micromark-util-decode-numeric-character-reference@2.0.1", + "micromark-util-symbol": "micromark-util-symbol@2.0.0" + } + }, + "micromark-util-encode@2.0.0": { + "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==", + "dependencies": {} + }, + "micromark-util-html-tag-name@2.0.0": { + "integrity": "sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==", + "dependencies": {} + }, + "micromark-util-normalize-identifier@2.0.0": { + "integrity": "sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==", + "dependencies": { + "micromark-util-symbol": "micromark-util-symbol@2.0.0" + } + }, + "micromark-util-resolve-all@2.0.0": { + "integrity": "sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==", + "dependencies": { + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-util-sanitize-uri@2.0.0": { + "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", + "dependencies": { + "micromark-util-character": "micromark-util-character@2.1.0", + "micromark-util-encode": "micromark-util-encode@2.0.0", + "micromark-util-symbol": "micromark-util-symbol@2.0.0" + } + }, + "micromark-util-subtokenize@2.0.1": { + "integrity": "sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==", + "dependencies": { + "devlop": "devlop@1.1.0", + "micromark-util-chunked": "micromark-util-chunked@2.0.0", + "micromark-util-symbol": "micromark-util-symbol@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "micromark-util-symbol@2.0.0": { + "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "dependencies": {} + }, + "micromark-util-types@2.0.0": { + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "dependencies": {} + }, + "micromark@4.0.0": { + "integrity": "sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==", + "dependencies": { + "@types/debug": "@types/debug@4.1.12", + "debug": "debug@4.3.5", + "decode-named-character-reference": "decode-named-character-reference@1.0.2", + "devlop": "devlop@1.1.0", + "micromark-core-commonmark": "micromark-core-commonmark@2.0.1", + "micromark-factory-space": "micromark-factory-space@2.0.0", + "micromark-util-character": "micromark-util-character@2.1.0", + "micromark-util-chunked": "micromark-util-chunked@2.0.0", + "micromark-util-combine-extensions": "micromark-util-combine-extensions@2.0.0", + "micromark-util-decode-numeric-character-reference": "micromark-util-decode-numeric-character-reference@2.0.1", + "micromark-util-encode": "micromark-util-encode@2.0.0", + "micromark-util-normalize-identifier": "micromark-util-normalize-identifier@2.0.0", + "micromark-util-resolve-all": "micromark-util-resolve-all@2.0.0", + "micromark-util-sanitize-uri": "micromark-util-sanitize-uri@2.0.0", + "micromark-util-subtokenize": "micromark-util-subtokenize@2.0.1", + "micromark-util-symbol": "micromark-util-symbol@2.0.0", + "micromark-util-types": "micromark-util-types@2.0.0" + } + }, + "ms@2.1.2": { + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dependencies": {} + }, + "nanoid@3.3.7": { + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dependencies": {} + }, + "node-releases@2.0.14": { + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dependencies": {} + }, + "normalize-range@0.1.2": { + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dependencies": {} + }, + "octokit@4.0.2_@octokit+core@6.1.2": { + "integrity": "sha512-wbqF4uc1YbcldtiBFfkSnquHtECEIpYD78YUXI6ri1Im5OO2NLo6ZVpRdbJpdnpZ05zMrVPssNiEo6JQtea+Qg==", + "dependencies": { + "@octokit/app": "@octokit/app@15.1.0_@octokit+core@6.1.2", + "@octokit/core": "@octokit/core@6.1.2", + "@octokit/oauth-app": "@octokit/oauth-app@7.1.3", + "@octokit/plugin-paginate-graphql": "@octokit/plugin-paginate-graphql@5.2.2_@octokit+core@6.1.2", + "@octokit/plugin-paginate-rest": "@octokit/plugin-paginate-rest@11.3.3_@octokit+core@6.1.2", + "@octokit/plugin-rest-endpoint-methods": "@octokit/plugin-rest-endpoint-methods@13.2.4_@octokit+core@6.1.2", + "@octokit/plugin-retry": "@octokit/plugin-retry@7.1.1_@octokit+core@6.1.2", + "@octokit/plugin-throttling": "@octokit/plugin-throttling@9.3.0_@octokit+core@6.1.2", + "@octokit/request-error": "@octokit/request-error@6.1.1", + "@octokit/types": "@octokit/types@13.5.0" + } + }, + "parse5@7.1.2": { + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "dependencies": { + "entities": "entities@4.5.0" + } + }, + "path-parse@1.0.7": { + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dependencies": {} + }, + "picocolors@1.0.1": { + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", + "dependencies": {} + }, + "pify@2.3.0": { + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dependencies": {} + }, + "postcss-import@16.1.0_postcss@8.4.38": { + "integrity": "sha512-7hsAZ4xGXl4MW+OKEWCnF6T5jqBw80/EE9aXg1r2yyn1RsVEU8EtKXbijEODa+rg7iih4bKf7vlvTGYR4CnPNg==", + "dependencies": { + "postcss": "postcss@8.4.38", + "postcss-value-parser": "postcss-value-parser@4.2.0", + "read-cache": "read-cache@1.0.0", + "resolve": "resolve@1.22.8" + } + }, + "postcss-nesting@12.1.1_postcss@8.4.38_postcss-selector-parser@6.1.0": { + "integrity": "sha512-qc74KvIAQNa5ujZKG1UV286dhaDW6basbUy2i9AzNU/T8C9hpvGu9NZzm1SfePe2yP7sPYgpA8d4sPVopn2Hhw==", + "dependencies": { + "@csstools/selector-resolve-nested": "@csstools/selector-resolve-nested@1.1.0_postcss-selector-parser@6.1.0", + "@csstools/selector-specificity": "@csstools/selector-specificity@3.1.1_postcss-selector-parser@6.1.0", + "postcss": "postcss@8.4.38", + "postcss-selector-parser": "postcss-selector-parser@6.1.0" + } + }, + "postcss-selector-parser@6.1.0": { + "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", + "dependencies": { + "cssesc": "cssesc@3.0.0", + "util-deprecate": "util-deprecate@1.0.2" + } + }, + "postcss-value-parser@4.2.0": { + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dependencies": {} + }, + "postcss@8.4.38": { + "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", + "dependencies": { + "nanoid": "nanoid@3.3.7", + "picocolors": "picocolors@1.0.1", + "source-map-js": "source-map-js@1.2.0" + } + }, + "property-information@6.5.0": { + "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", + "dependencies": {} + }, + "punycode.js@2.3.1": { + "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", + "dependencies": {} + }, + "read-cache@1.0.0": { + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dependencies": { + "pify": "pify@2.3.0" + } + }, + "rehype-raw@7.0.0": { + "integrity": "sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==", + "dependencies": { + "@types/hast": "@types/hast@3.0.4", + "hast-util-raw": "hast-util-raw@9.0.4", + "vfile": "vfile@6.0.1" + } + }, + "rehype-sanitize@6.0.0": { + "integrity": "sha512-CsnhKNsyI8Tub6L4sm5ZFsme4puGfc6pYylvXo1AeqaGbjOYyzNv3qZPwvs0oMJ39eryyeOdmxwUIo94IpEhqg==", + "dependencies": { + "@types/hast": "@types/hast@3.0.4", + "hast-util-sanitize": "hast-util-sanitize@5.0.1" + } + }, + "rehype-stringify@10.0.0": { + "integrity": "sha512-1TX1i048LooI9QoecrXy7nGFFbFSufxVRAfc6Y9YMRAi56l+oB0zP51mLSV312uRuvVLPV1opSlJmslozR1XHQ==", + "dependencies": { + "@types/hast": "@types/hast@3.0.4", + "hast-util-to-html": "hast-util-to-html@9.0.1", + "unified": "unified@11.0.5" + } + }, + "remark-gfm@4.0.0": { + "integrity": "sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==", + "dependencies": { + "@types/mdast": "@types/mdast@4.0.4", + "mdast-util-gfm": "mdast-util-gfm@3.0.0", + "micromark-extension-gfm": "micromark-extension-gfm@3.0.0", + "remark-parse": "remark-parse@11.0.0", + "remark-stringify": "remark-stringify@11.0.0", + "unified": "unified@11.0.5" + } + }, + "remark-parse@11.0.0": { + "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", + "dependencies": { + "@types/mdast": "@types/mdast@4.0.4", + "mdast-util-from-markdown": "mdast-util-from-markdown@2.0.1", + "micromark-util-types": "micromark-util-types@2.0.0", + "unified": "unified@11.0.5" + } + }, + "remark-rehype@11.1.0": { + "integrity": "sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==", + "dependencies": { + "@types/hast": "@types/hast@3.0.4", + "@types/mdast": "@types/mdast@4.0.4", + "mdast-util-to-hast": "mdast-util-to-hast@13.2.0", + "unified": "unified@11.0.5", + "vfile": "vfile@6.0.1" + } + }, + "remark-stringify@11.0.0": { + "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", + "dependencies": { + "@types/mdast": "@types/mdast@4.0.4", + "mdast-util-to-markdown": "mdast-util-to-markdown@2.1.0", + "unified": "unified@11.0.5" + } + }, + "resolve@1.22.8": { + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "is-core-module@2.14.0", + "path-parse": "path-parse@1.0.7", + "supports-preserve-symlinks-flag": "supports-preserve-symlinks-flag@1.0.0" + } + }, + "source-map-js@1.2.0": { + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "dependencies": {} + }, + "space-separated-tokens@2.0.2": { + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "dependencies": {} + }, + "stringify-entities@4.0.4": { + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "dependencies": { + "character-entities-html4": "character-entities-html4@2.1.0", + "character-entities-legacy": "character-entities-legacy@3.0.0" + } + }, + "supports-preserve-symlinks-flag@1.0.0": { + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dependencies": {} + }, + "trim-lines@3.0.1": { + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "dependencies": {} + }, + "trough@2.2.0": { + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", + "dependencies": {} + }, + "tslib@2.6.3": { + "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", + "dependencies": {} + }, + "uc.micro@2.1.0": { + "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", + "dependencies": {} + }, + "unified@11.0.4": { + "integrity": "sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==", + "dependencies": { + "@types/unist": "@types/unist@3.0.2", + "bail": "bail@2.0.2", + "devlop": "devlop@1.1.0", + "extend": "extend@3.0.2", + "is-plain-obj": "is-plain-obj@4.1.0", + "trough": "trough@2.2.0", + "vfile": "vfile@6.0.1" + } + }, + "unified@11.0.5": { + "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", + "dependencies": { + "@types/unist": "@types/unist@3.0.2", + "bail": "bail@2.0.2", + "devlop": "devlop@1.1.0", + "extend": "extend@3.0.2", + "is-plain-obj": "is-plain-obj@4.1.0", + "trough": "trough@2.2.0", + "vfile": "vfile@6.0.1" + } + }, + "unist-util-is@6.0.0": { + "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", + "dependencies": { + "@types/unist": "@types/unist@3.0.2" + } + }, + "unist-util-position@5.0.0": { + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "dependencies": { + "@types/unist": "@types/unist@3.0.2" + } + }, + "unist-util-stringify-position@4.0.0": { + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "dependencies": { + "@types/unist": "@types/unist@3.0.2" + } + }, + "unist-util-visit-parents@6.0.1": { + "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", + "dependencies": { + "@types/unist": "@types/unist@3.0.2", + "unist-util-is": "unist-util-is@6.0.0" + } + }, + "unist-util-visit@5.0.0": { + "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", + "dependencies": { + "@types/unist": "@types/unist@3.0.2", + "unist-util-is": "unist-util-is@6.0.0", + "unist-util-visit-parents": "unist-util-visit-parents@6.0.1" + } + }, + "universal-github-app-jwt@2.2.0": { + "integrity": "sha512-G5o6f95b5BggDGuUfKDApKaCgNYy2x7OdHY0zSMF081O0EJobw+1130VONhrA7ezGSV2FNOGyM+KQpQZAr9bIQ==", + "dependencies": {} + }, + "universal-user-agent@7.0.2": { + "integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==", + "dependencies": {} + }, + "update-browserslist-db@1.1.0_browserslist@4.23.1": { + "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", + "dependencies": { + "browserslist": "browserslist@4.23.1", + "escalade": "escalade@3.1.2", + "picocolors": "picocolors@1.0.1" + } + }, + "util-deprecate@1.0.2": { + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dependencies": {} + }, + "vfile-location@5.0.2": { + "integrity": "sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==", + "dependencies": { + "@types/unist": "@types/unist@3.0.2", + "vfile": "vfile@6.0.1" + } + }, + "vfile-message@4.0.2": { + "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==", + "dependencies": { + "@types/unist": "@types/unist@3.0.2", + "unist-util-stringify-position": "unist-util-stringify-position@4.0.0" + } + }, + "vfile@6.0.1": { + "integrity": "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==", + "dependencies": { + "@types/unist": "@types/unist@3.0.2", + "unist-util-stringify-position": "unist-util-stringify-position@4.0.0", + "vfile-message": "vfile-message@4.0.2" + } + }, + "web-namespaces@2.0.1": { + "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", + "dependencies": {} + }, + "zwitch@2.0.4": { + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "dependencies": {} + } + } + }, + "redirects": { + "https://esm.sh/rehype-autolink-headings@7": "https://esm.sh/rehype-autolink-headings@7.1.0", + "https://esm.sh/rehype-slug@6": "https://esm.sh/rehype-slug@6.0.0", + "https://esm.sh/remark-directive@3": "https://esm.sh/remark-directive@3.0.0", + "https://esm.sh/remark-toc@9": "https://esm.sh/remark-toc@9.0.0" + }, + "remote": { + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/adapters/lume.ts": "d9cd3553d765886084b9446b816f02aec5d74ee03d7ab78a80b1a0db2c7430a0", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/cms.ts": "2e2df54c196aa432f12209131de97de0ac49870a443610a6c364b4ed3fa1f3db", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/collection.ts": "a064ea140bc11afc781349af9fb8cb4b8d18ebfbeece279cd378429b94f6f5c0", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/document.ts": "a71c9e8e6d3a94b45c8a9036ca6f93e6947edf24958330a997db0739595c24f9", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/fields.ts": "9e5fb8be60d47de5cc5307bbf8dbc5d8c8de4724beba8467557c1b914f11316d", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/routes/auth.ts": "bf1a5c5a9b7d6896762077f9b005d3b49f706adb1efb0b938f2ec6c228f56ea8", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/routes/collection.ts": "c20244bf31699e9410984842bcfca20fbd0c924f58eaf6f3f9d65727a08011f6", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/routes/document.ts": "3f1fba5502ec459b48ff8872252300af7dfda1ef95d5b8d6e85891aebdf3a825", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/routes/files.ts": "7833e118804fa400f4a917e92c8de17d71af6ec7b3a50be12fb6b4edf23d529a", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/routes/index.ts": "d140a7577b88ab06a1a401e1a91334c6e56b8988adc6635443db822a5bf214e9", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/routes/versions.tsx": "dcfd34b50fb0be72078915ae484a6c23868366c0afcbdc88d7cb4c1910c161c1", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/templates/breadcrumb.ts": "9edd11004c5043ff11dfbe99d63e0e6c3b9a908aa163aac776ead362ba0d67da", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/templates/collection/create.ts": "b7496d3df3552921e049637bd03a896e28bfc2b898ae9af4fb70d7a4800c4324", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/templates/collection/edit.ts": "8230a440297fb94306ca7d23c9b8aadd7e0db3df6087e45f28da0e9275493b25", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/templates/collection/list.ts": "a186a70150ad5765901abfced5bac631c96c85d0b648837d1fb0a04f80642b32", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/templates/document/edit.ts": "f49039d20d4fd6d89acb4e8924adeb12874605d6d88be03da8c9c7fda1a856cf", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/templates/index.ts": "d61a871ead2ad8514f9c9df1d01a20a07350ede2e7fa472ad0f3893ba287074c", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/templates/layout.ts": "66eba11ad9d466164ec7dd35aadb4640e82a3e51a4c27d3b47e40641879ebcfd", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/templates/notfound.ts": "c89b3b113a6cd847b7dfa6155688c01e8e53754e5f0548149971ae5da5c439cd", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/templates/tree.ts": "b99e66347519305d243cd4e4fbd04150e5ade1a6f51e9d0b6c383beacc90f966", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/templates/uploads/list.ts": "45205bdb2118e881490b8038cbcbd58dbc0e214985706ab49da3d45ef5abadbb", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/templates/uploads/view.ts": "ad5cc54795b0a1afbfb3447a5df62865de4650c3c7de12a7984fae6f6b5b865a", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/upload.ts": "9d68f3274bc480be0f5ffc4fc65b7c2354c5b269f70c1579dad9aaa964111728", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/utils/data.ts": "8c4c01cb04c1cf62e251bdab2dbc1efc3abb00f26732cef12c52fc817ae59874", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/utils/env.ts": "723cb01d9509e0942a32ff568314b5ac27152c94e0070dc0cd6a706c74f33a62", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/utils/event.ts": "a7915a3e6bf7b34c166ee3aefc8ca5aab1631de50e0d851f78d0e8c8d0c766d8", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/utils/path.ts": "a210f4dc0b040aa5fd6cf170640b79bd83315920ed7cd55b3382130b87e33487", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/core/utils/string.ts": "8c2aaeb133decd3475b91939274d1646778d0d9c168d82d127451a191a6ddbfd", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/deps/hono.ts": "8e8d389c7b4784c09158b62593bca86603be022a5e973a57672de012d7a08d1c", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/deps/std.ts": "5d794d64fe4bd00b62d877b668a936d63edff0f0dce63fe2d22568b6e69854e6", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/mod.ts": "6b784a57da16973c3a71f894aaa91751c6ca6c67f36b19ee92220f848af3db04", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/storage/fs.ts": "2d45319ce0ece128c6a86dbff4f18d392d07a641c0bf1b8d616b0ae4d63fec92", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/storage/github.ts": "5c823e0aa90906cba4e65ce5476906ffeb48c97a35c369e331c75f3de876f4ee", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/storage/kv.ts": "6151fc1e8201cf1becde3d9256568970f9aac9e301df48aef0fd9e006ed06e97", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/storage/transformers/front_matter.ts": "d357436c8fccf5aec59ec1ab63af08118863dd8d1f74cb5950dfde3700fa7c9e", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/storage/transformers/json.ts": "eb5d664be2042cc266a4fc737bbeeb1b4eb586e2beab8ca1965b07c2b066ee68", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/storage/transformers/mod.ts": "d828136358c98c93b45b5a1f1c7f383f9788ec47ede04bcb03de8ee0b19c2b3c", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/storage/transformers/yaml.ts": "87ce4b914a91ecec833558c29a5bbe8ca33f5cdf05141ba5e9c4e497aace561c", + "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/versioning/git.ts": "4132459df4a4dda82ccbed105aa32f8e7e41c71deb4dc99761600a5ede51731d", + "https://cdn.skypack.dev/-/comma-separated-tokens@v2.0.2-ln2RLX9fmfYuUY6K2C5M/dist=es2019,mode=imports/optimized/comma-separated-tokens.js": "a873139bc5bbd093472e7a1538f6f259a512c188e5b415a0cff7274232026ee6", + "https://cdn.skypack.dev/-/hast-util-parse-selector@v3.1.0-1WXyD0UUUk95q02Tx9Lc/dist=es2019,mode=imports/optimized/hast-util-parse-selector.js": "5305361042b48e2f27f7fda30cfae2c863f6be1cfd599b0e14ae8410303dbe02", + "https://cdn.skypack.dev/-/hastscript@v7.0.2-WlrJadpWp3FCIKJ17P3x/dist=es2019,mode=imports/optimized/common/core-93359c90.js": "95baae4091fc4045802084915b7e0f9cbee613824a02f1792ad10fe7161636a1", + "https://cdn.skypack.dev/-/hastscript@v7.0.2-WlrJadpWp3FCIKJ17P3x/dist=es2019,mode=imports/optimized/common/html-090bfaf6.js": "4f9671f3db94628d5bbe1c92a8f4da3307bd3e34c5aad8e70c4bc7f489386588", + "https://cdn.skypack.dev/-/hastscript@v7.0.2-WlrJadpWp3FCIKJ17P3x/dist=es2019,mode=imports/optimized/common/svg-d3e84658.js": "9f46261d8c405ddbfa8b3958392d13139a2382c0003b14064cd63234c522d44e", + "https://cdn.skypack.dev/-/hastscript@v7.0.2-WlrJadpWp3FCIKJ17P3x/dist=es2019,mode=imports/optimized/hastscript.js": "162a88f7203df39bf9bcf99f0d03afab4e623d222be80c1688094632b446cbbc", + "https://cdn.skypack.dev/-/property-information@v6.1.1-99r7iTlKeR7xsg0CkZmE/dist=es2019,mode=imports/optimized/property-information.js": "da21cdb2881f91eaa919af03739671d62c930f1988e23b25f106da9ba72e8d49", + "https://cdn.skypack.dev/-/remark-directive-rehype@v0.4.2-joBGoL1nb7cCtFnDyNel/dist=es2019,mode=imports/optimized/remark-directive-rehype.js": "a4cf5107f75874ae3eea7cbfafc3f6280515028ea55cebbf4771ec6e4a706d83", + "https://cdn.skypack.dev/-/space-separated-tokens@v2.0.1-3Gs3LlStmVL4UdTyBJo2/dist=es2019,mode=imports/optimized/space-separated-tokens.js": "7a67342e6c5a98f8a09d7d89322c18edc4f07916e91a2b292a795fc33bd9408f", + "https://cdn.skypack.dev/-/unist-util-map@v3.1.2-CJ4I2pPwHN0zUuRjKdWZ/dist=es2019,mode=imports/optimized/unist-util-map.js": "4ac5dbe7d1b57cde7c17c7cb44cb60e324a80ab31455ee730ad73ecb8b3266e1", + "https://cdn.skypack.dev/remark-directive-rehype": "b78a9bb292c74e05398ac244286d105b68763959728c86315ceb1dfe44cc26cd", + "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/encoding/base64.ts": "8605e018e49211efc767686f6f687827d7f5fd5217163e981d8d693105640d7a", + "https://deno.land/std@0.170.0/fmt/colors.ts": "03ad95e543d2808bc43c17a3dd29d25b43d0f16287fe562a0be89bf632454a12", + "https://deno.land/std@0.170.0/path/_constants.ts": "df1db3ffa6dd6d1252cc9617e5d72165cd2483df90e93833e13580687b6083c3", + "https://deno.land/std@0.170.0/path/_interface.ts": "ee3b431a336b80cf445441109d089b70d87d5e248f4f90ff906820889ecf8d09", + "https://deno.land/std@0.170.0/path/_util.ts": "d16be2a16e1204b65f9d0dfc54a9bc472cafe5f4a190b3c8471ec2016ccd1677", + "https://deno.land/std@0.170.0/path/common.ts": "bee563630abd2d97f99d83c96c2fa0cca7cee103e8cb4e7699ec4d5db7bd2633", + "https://deno.land/std@0.170.0/path/glob.ts": "81cc6c72be002cd546c7a22d1f263f82f63f37fe0035d9726aa96fc8f6e4afa1", + "https://deno.land/std@0.170.0/path/mod.ts": "cf7cec7ac11b7048bb66af8ae03513e66595c279c65cfa12bfc07d9599608b78", + "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.221.0/assert/assert.ts": "bec068b2fccdd434c138a555b19a2c2393b71dfaada02b7d568a01541e67cdc5", + "https://deno.land/std@0.221.0/assert/assertion_error.ts": "9f689a101ee586c4ce92f52fa7ddd362e86434ffdf1f848e45987dc7689976b8", + "https://deno.land/std@0.221.0/html/entities.ts": "fd5ac9d459355a377baea118f4e808a1268808fd9138b319c90f11024e2f1718", + "https://deno.land/std@0.221.0/html/mod.ts": "047624f883874f4b9781da872f9579a615fb5418af30663c9ce0c65074ace87f", + "https://deno.land/std@0.221.0/path/_common/assert_path.ts": "dbdd757a465b690b2cc72fc5fb7698c51507dec6bfafce4ca500c46b76ff7bd8", + "https://deno.land/std@0.221.0/path/_common/basename.ts": "569744855bc8445f3a56087fd2aed56bdad39da971a8d92b138c9913aecc5fa2", + "https://deno.land/std@0.221.0/path/_common/common.ts": "ef73c2860694775fe8ffcbcdd387f9f97c7a656febf0daa8c73b56f4d8a7bd4c", + "https://deno.land/std@0.221.0/path/_common/constants.ts": "dc5f8057159f4b48cd304eb3027e42f1148cf4df1fb4240774d3492b5d12ac0c", + "https://deno.land/std@0.221.0/path/_common/dirname.ts": "684df4aa71a04bbcc346c692c8485594fc8a90b9408dfbc26ff32cf3e0c98cc8", + "https://deno.land/std@0.221.0/path/_common/format.ts": "92500e91ea5de21c97f5fe91e178bae62af524b72d5fcd246d6d60ae4bcada8b", + "https://deno.land/std@0.221.0/path/_common/from_file_url.ts": "d672bdeebc11bf80e99bf266f886c70963107bdd31134c4e249eef51133ceccf", + "https://deno.land/std@0.221.0/path/_common/glob_to_reg_exp.ts": "6cac16d5c2dc23af7d66348a7ce430e5de4e70b0eede074bdbcf4903f4374d8d", + "https://deno.land/std@0.221.0/path/_common/normalize.ts": "684df4aa71a04bbcc346c692c8485594fc8a90b9408dfbc26ff32cf3e0c98cc8", + "https://deno.land/std@0.221.0/path/_common/normalize_string.ts": "33edef773c2a8e242761f731adeb2bd6d683e9c69e4e3d0092985bede74f4ac3", + "https://deno.land/std@0.221.0/path/_common/relative.ts": "faa2753d9b32320ed4ada0733261e3357c186e5705678d9dd08b97527deae607", + "https://deno.land/std@0.221.0/path/_common/strip_trailing_separators.ts": "7024a93447efcdcfeaa9339a98fa63ef9d53de363f1fbe9858970f1bba02655a", + "https://deno.land/std@0.221.0/path/_common/to_file_url.ts": "7f76adbc83ece1bba173e6e98a27c647712cab773d3f8cbe0398b74afc817883", + "https://deno.land/std@0.221.0/path/_interface.ts": "8dfeb930ca4a772c458a8c7bbe1e33216fe91c253411338ad80c5b6fa93ddba0", + "https://deno.land/std@0.221.0/path/_os.ts": "8fb9b90fb6b753bd8c77cfd8a33c2ff6c5f5bc185f50de8ca4ac6a05710b2c15", + "https://deno.land/std@0.221.0/path/basename.ts": "7ee495c2d1ee516ffff48fb9a93267ba928b5a3486b550be73071bc14f8cc63e", + "https://deno.land/std@0.221.0/path/common.ts": "03e52e22882402c986fe97ca3b5bb4263c2aa811c515ce84584b23bac4cc2643", + "https://deno.land/std@0.221.0/path/constants.ts": "0c206169ca104938ede9da48ac952de288f23343304a1c3cb6ec7625e7325f36", + "https://deno.land/std@0.221.0/path/dirname.ts": "85bd955bf31d62c9aafdd7ff561c4b5fb587d11a9a5a45e2b01aedffa4238a7c", + "https://deno.land/std@0.221.0/path/extname.ts": "593303db8ae8c865cbd9ceec6e55d4b9ac5410c1e276bfd3131916591b954441", + "https://deno.land/std@0.221.0/path/format.ts": "6ce1779b0980296cf2bc20d66436b12792102b831fd281ab9eb08fa8a3e6f6ac", + "https://deno.land/std@0.221.0/path/from_file_url.ts": "911833ae4fd10a1c84f6271f36151ab785955849117dc48c6e43b929504ee069", + "https://deno.land/std@0.221.0/path/glob_to_regexp.ts": "7f30f0a21439cadfdae1be1bf370880b415e676097fda584a63ce319053b5972", + "https://deno.land/std@0.221.0/path/is_absolute.ts": "4791afc8bfd0c87f0526eaa616b0d16e7b3ab6a65b62942e50eac68de4ef67d7", + "https://deno.land/std@0.221.0/path/is_glob.ts": "a65f6195d3058c3050ab905705891b412ff942a292bcbaa1a807a74439a14141", + "https://deno.land/std@0.221.0/path/join.ts": "ae2ec5ca44c7e84a235fd532e4a0116bfb1f2368b394db1c4fb75e3c0f26a33a", + "https://deno.land/std@0.221.0/path/join_globs.ts": "5b3bf248b93247194f94fa6947b612ab9d3abd571ca8386cf7789038545e54a0", + "https://deno.land/std@0.221.0/path/mod.ts": "2821a1bb3a4148a0ffe79c92aa41aa9319fef73c6d6f5178f52b2c720d3eb02d", + "https://deno.land/std@0.221.0/path/normalize.ts": "4155743ccceeed319b350c1e62e931600272fad8ad00c417b91df093867a8352", + "https://deno.land/std@0.221.0/path/normalize_glob.ts": "cc89a77a7d3b1d01053b9dcd59462b75482b11e9068ae6c754b5cf5d794b374f", + "https://deno.land/std@0.221.0/path/parse.ts": "3e172974e3c71025f5fbd2bd9db4307acb9cc2de14cf6f4464bf40957663cabe", + "https://deno.land/std@0.221.0/path/posix/_util.ts": "1e3937da30f080bfc99fe45d7ed23c47dd8585c5e473b2d771380d3a6937cf9d", + "https://deno.land/std@0.221.0/path/posix/basename.ts": "d2fa5fbbb1c5a3ab8b9326458a8d4ceac77580961b3739cd5bfd1d3541a3e5f0", + "https://deno.land/std@0.221.0/path/posix/common.ts": "26f60ccc8b2cac3e1613000c23ac5a7d392715d479e5be413473a37903a2b5d4", + "https://deno.land/std@0.221.0/path/posix/constants.ts": "93481efb98cdffa4c719c22a0182b994e5a6aed3047e1962f6c2c75b7592bef1", + "https://deno.land/std@0.221.0/path/posix/dirname.ts": "76cd348ffe92345711409f88d4d8561d8645353ac215c8e9c80140069bf42f00", + "https://deno.land/std@0.221.0/path/posix/extname.ts": "e398c1d9d1908d3756a7ed94199fcd169e79466dd88feffd2f47ce0abf9d61d2", + "https://deno.land/std@0.221.0/path/posix/format.ts": "185e9ee2091a42dd39e2a3b8e4925370ee8407572cee1ae52838aed96310c5c1", + "https://deno.land/std@0.221.0/path/posix/from_file_url.ts": "951aee3a2c46fd0ed488899d024c6352b59154c70552e90885ed0c2ab699bc40", + "https://deno.land/std@0.221.0/path/posix/glob_to_regexp.ts": "76f012fcdb22c04b633f536c0b9644d100861bea36e9da56a94b9c589a742e8f", + "https://deno.land/std@0.221.0/path/posix/is_absolute.ts": "cebe561ad0ae294f0ce0365a1879dcfca8abd872821519b4fcc8d8967f888ede", + "https://deno.land/std@0.221.0/path/posix/is_glob.ts": "8a8b08c08bf731acf2c1232218f1f45a11131bc01de81e5f803450a5914434b9", + "https://deno.land/std@0.221.0/path/posix/join.ts": "7fc2cb3716aa1b863e990baf30b101d768db479e70b7313b4866a088db016f63", + "https://deno.land/std@0.221.0/path/posix/join_globs.ts": "a9475b44645feddceb484ee0498e456f4add112e181cb94042cdc6d47d1cdd25", + "https://deno.land/std@0.221.0/path/posix/mod.ts": "2301fc1c54a28b349e20656f68a85f75befa0ee9b6cd75bfac3da5aca9c3f604", + "https://deno.land/std@0.221.0/path/posix/normalize.ts": "baeb49816a8299f90a0237d214cef46f00ba3e95c0d2ceb74205a6a584b58a91", + "https://deno.land/std@0.221.0/path/posix/normalize_glob.ts": "9c87a829b6c0f445d03b3ecadc14492e2864c3ebb966f4cea41e98326e4435c6", + "https://deno.land/std@0.221.0/path/posix/parse.ts": "0b1fc4cb890dbb699ec1d2c232d274843b4a7142e1ad976b69fe51c954eb6080", + "https://deno.land/std@0.221.0/path/posix/relative.ts": "3907d6eda41f0ff723d336125a1ad4349112cd4d48f693859980314d5b9da31c", + "https://deno.land/std@0.221.0/path/posix/resolve.ts": "08b699cfeee10cb6857ccab38fa4b2ec703b0ea33e8e69964f29d02a2d5257cf", + "https://deno.land/std@0.221.0/path/posix/to_file_url.ts": "7aa752ba66a35049e0e4a4be5a0a31ac6b645257d2e031142abb1854de250aaf", + "https://deno.land/std@0.221.0/path/posix/to_namespaced_path.ts": "28b216b3c76f892a4dca9734ff1cc0045d135532bfd9c435ae4858bfa5a2ebf0", + "https://deno.land/std@0.221.0/path/relative.ts": "ab739d727180ed8727e34ed71d976912461d98e2b76de3d3de834c1066667add", + "https://deno.land/std@0.221.0/path/resolve.ts": "a6f977bdb4272e79d8d0ed4333e3d71367cc3926acf15ac271f1d059c8494d8d", + "https://deno.land/std@0.221.0/path/to_file_url.ts": "88f049b769bce411e2d2db5bd9e6fd9a185a5fbd6b9f5ad8f52bef517c4ece1b", + "https://deno.land/std@0.221.0/path/to_namespaced_path.ts": "b706a4103b104cfadc09600a5f838c2ba94dbcdb642344557122dda444526e40", + "https://deno.land/std@0.221.0/path/windows/_util.ts": "d5f47363e5293fced22c984550d5e70e98e266cc3f31769e1710511803d04808", + "https://deno.land/std@0.221.0/path/windows/basename.ts": "6bbc57bac9df2cec43288c8c5334919418d784243a00bc10de67d392ab36d660", + "https://deno.land/std@0.221.0/path/windows/common.ts": "26f60ccc8b2cac3e1613000c23ac5a7d392715d479e5be413473a37903a2b5d4", + "https://deno.land/std@0.221.0/path/windows/constants.ts": "5afaac0a1f67b68b0a380a4ef391bf59feb55856aa8c60dfc01bd3b6abb813f5", + "https://deno.land/std@0.221.0/path/windows/dirname.ts": "33e421be5a5558a1346a48e74c330b8e560be7424ed7684ea03c12c21b627bc9", + "https://deno.land/std@0.221.0/path/windows/extname.ts": "165a61b00d781257fda1e9606a48c78b06815385e7d703232548dbfc95346bef", + "https://deno.land/std@0.221.0/path/windows/format.ts": "bbb5ecf379305b472b1082cd2fdc010e44a0020030414974d6029be9ad52aeb6", + "https://deno.land/std@0.221.0/path/windows/from_file_url.ts": "ced2d587b6dff18f963f269d745c4a599cf82b0c4007356bd957cb4cb52efc01", + "https://deno.land/std@0.221.0/path/windows/glob_to_regexp.ts": "e45f1f89bf3fc36f94ab7b3b9d0026729829fabc486c77f414caebef3b7304f8", + "https://deno.land/std@0.221.0/path/windows/is_absolute.ts": "4a8f6853f8598cf91a835f41abed42112cebab09478b072e4beb00ec81f8ca8a", + "https://deno.land/std@0.221.0/path/windows/is_glob.ts": "8a8b08c08bf731acf2c1232218f1f45a11131bc01de81e5f803450a5914434b9", + "https://deno.land/std@0.221.0/path/windows/join.ts": "8d03530ab89195185103b7da9dfc6327af13eabdcd44c7c63e42e27808f50ecf", + "https://deno.land/std@0.221.0/path/windows/join_globs.ts": "a9475b44645feddceb484ee0498e456f4add112e181cb94042cdc6d47d1cdd25", + "https://deno.land/std@0.221.0/path/windows/mod.ts": "2301fc1c54a28b349e20656f68a85f75befa0ee9b6cd75bfac3da5aca9c3f604", + "https://deno.land/std@0.221.0/path/windows/normalize.ts": "78126170ab917f0ca355a9af9e65ad6bfa5be14d574c5fb09bb1920f52577780", + "https://deno.land/std@0.221.0/path/windows/normalize_glob.ts": "9c87a829b6c0f445d03b3ecadc14492e2864c3ebb966f4cea41e98326e4435c6", + "https://deno.land/std@0.221.0/path/windows/parse.ts": "dbdfe2bc6db482d755b5f63f7207cd019240fcac02ad2efa582adf67ff10553a", + "https://deno.land/std@0.221.0/path/windows/relative.ts": "3e1abc7977ee6cc0db2730d1f9cb38be87b0ce4806759d271a70e4997fc638d7", + "https://deno.land/std@0.221.0/path/windows/resolve.ts": "8dae1dadfed9d46ff46cc337c9525c0c7d959fb400a6308f34595c45bdca1972", + "https://deno.land/std@0.221.0/path/windows/to_file_url.ts": "40e560ee4854fe5a3d4d12976cef2f4e8914125c81b11f1108e127934ced502e", + "https://deno.land/std@0.221.0/path/windows/to_namespaced_path.ts": "4ffa4fb6fae321448d5fe810b3ca741d84df4d7897e61ee29be961a6aac89a4c", + "https://deno.land/std@0.223.0/assert/assert.ts": "09d30564c09de846855b7b071e62b5974b001bb72a4b797958fe0660e7849834", + "https://deno.land/std@0.223.0/assert/assertion_error.ts": "ba8752bd27ebc51f723702fac2f54d3e94447598f54264a6653d6413738a8917", + "https://deno.land/std@0.223.0/cli/_data.json": "cf2cc9d039a192b3adbfe64627167c7e6212704c888c25c769fc8f1709e1e1b8", + "https://deno.land/std@0.223.0/cli/_run_length.ts": "7da8642a0f4f41ac27c0adb1364e18886be856c1d08c5cce6c6b5c00543c8722", + "https://deno.land/std@0.223.0/cli/mod.ts": "9548eaf4fefac2ab9b02e0f8e4de8a08cac5d24b721a6019452efec172b59de3", + "https://deno.land/std@0.223.0/cli/parse_args.ts": "5250832fb7c544d9111e8a41ad272c016f5a53f975ef84d5a9fe5fcb70566ece", + "https://deno.land/std@0.223.0/cli/prompt_secret.ts": "3b2f95214422226482fba4a00cb25441475b6f97069a6f70f442c1c9a16c744c", + "https://deno.land/std@0.223.0/cli/spinner.ts": "cf873605771270b4324cc063b5031ab250d8efee8799e45e1a3bfdd333ff721d", + "https://deno.land/std@0.223.0/cli/unicode_width.ts": "656dd4271ecc90684b6bf23a5fb8c1cf833da625ef2906b61273ad617038072f", + "https://deno.land/std@0.223.0/collections/_utils.ts": "b2ec8ada31b5a72ebb1d99774b849b4c09fe4b3a38d07794bd010bd218a16e0b", + "https://deno.land/std@0.223.0/collections/deep_merge.ts": "04f8d2a6cfa15c7580e788689bcb5e162512b9ccb18bab1241824b432a78551e", + "https://deno.land/std@0.223.0/crypto/_wasm/lib/deno_std_wasm_crypto.generated.mjs": "376be64de048805874ebbc21c5ea7ce75a7f7d01da6f901cc697b1d4ffd6a721", + "https://deno.land/std@0.223.0/crypto/_wasm/mod.ts": "e89fbbc3c4722602ff975dd85f18273c7741ec766a9b68f6de4fd1d9876409f8", + "https://deno.land/std@0.223.0/crypto/crypto.ts": "451837d00409e40401e01e2ddad3c376e69a11a36e3fa67ec8dfe8b967fe0bf0", + "https://deno.land/std@0.223.0/crypto/mod.ts": "9148fb70ca3d64977e9487b2002d3b1026e8ad8a2078774b807586ba3c77e3bb", + "https://deno.land/std@0.223.0/crypto/timing_safe_equal.ts": "bc3622b5aec05e2d8b735bf60633425c34333c06cfb6c4a9f102e4a0f3931ced", + "https://deno.land/std@0.223.0/crypto/unstable_keystack.ts": "c2a6f6ed67a4e78745e3c9b490ebb7c12f6066f5c2fe0c69d353961909dc82dd", + "https://deno.land/std@0.223.0/encoding/_util.ts": "beacef316c1255da9bc8e95afb1fa56ed69baef919c88dc06ae6cb7a6103d376", + "https://deno.land/std@0.223.0/encoding/base64.ts": "dd59695391584c8ffc5a296ba82bcdba6dd8a84d41a6a539fbee8e5075286eaf", + "https://deno.land/std@0.223.0/encoding/base64url.ts": "ef40e0f18315ab539f17cebcc32839779e018d86dea9df39d94d302f342a1713", + "https://deno.land/std@0.223.0/encoding/hex.ts": "6270f25e5d85f99fcf315278670ba012b04b7c94b67715b53f30d03249687c07", + "https://deno.land/std@0.223.0/fmt/bytes.ts": "7b294a4b9cf0297efa55acb55d50610f3e116a0ac772d1df0ae00f0b833ccd4a", + "https://deno.land/std@0.223.0/fmt/colors.ts": "d239d84620b921ea520125d778947881f62c50e78deef2657073840b8af9559a", + "https://deno.land/std@0.223.0/front_matter/_formats.ts": "9a8ac1524f93b3ae093bd66864a49fc0088037920c6d60863da136d10f92e04d", + "https://deno.land/std@0.223.0/front_matter/any.ts": "f2d8a6d87df5404e767069a7b9560631b1fa11e7370986d273a6b1923c6c30af", + "https://deno.land/std@0.223.0/front_matter/create_extractor.ts": "642e6e55cd07864b7c8068f88d271290d5d0a13d979ad335e10a7f52046b1f80", + "https://deno.land/std@0.223.0/front_matter/mod.ts": "ed57ed6de52ec90bd1212852c5a1daa0dcc0df8110d18444fb55b9aa5f86fbb5", + "https://deno.land/std@0.223.0/front_matter/test.ts": "6a72a690ef9bd606411e3e78dfd44f382fce58f722ed6e56ce57d65140368822", + "https://deno.land/std@0.223.0/front_matter/yaml.ts": "103b8338bec480c6b7a7e245cf6bda72682eb78ed2231c799a4526d52cb6888a", + "https://deno.land/std@0.223.0/fs/_create_walk_entry.ts": "5d9d2aaec05bcf09a06748b1684224d33eba7a4de24cf4cf5599991ca6b5b412", + "https://deno.land/std@0.223.0/fs/_get_file_info_type.ts": "da7bec18a7661dba360a1db475b826b18977582ce6fc9b25f3d4ee0403fe8cbd", + "https://deno.land/std@0.223.0/fs/_is_same_path.ts": "709c95868345fea051c58b9e96af95cff94e6ae98dfcff2b66dee0c212c4221f", + "https://deno.land/std@0.223.0/fs/_is_subdir.ts": "c68b309d46cc8568ed83c000f608a61bbdba0943b7524e7a30f9e450cf67eecd", + "https://deno.land/std@0.223.0/fs/_to_path_string.ts": "29bfc9c6c112254961d75cbf6ba814d6de5349767818eb93090cecfa9665591e", + "https://deno.land/std@0.223.0/fs/copy.ts": "7ab12a16adb65d155d4943c88081ca16ce3b0b5acada64c1ce93800653678039", + "https://deno.land/std@0.223.0/fs/empty_dir.ts": "e400e96e1d2c8c558a5a1712063bd43939e00619c1d1cc29959babc6f1639418", + "https://deno.land/std@0.223.0/fs/ensure_dir.ts": "313e8a62b8bb20d900138ff794bde6a6ac0a6bebc91220fba6dfc3303bde56c6", + "https://deno.land/std@0.223.0/fs/ensure_file.ts": "67608cf550529f3d4aa1f8b6b36bf817bdc40b14487bf8f60e61cbf68f507cf3", + "https://deno.land/std@0.223.0/fs/ensure_link.ts": "5c98503ebfa9cc05e2f2efaa30e91e60b4dd5b43ebbda82f435c0a5c6e3ffa01", + "https://deno.land/std@0.223.0/fs/ensure_symlink.ts": "cafe904cebacb9a761977d6dbf5e3af938be946a723bb394080b9a52714fafe4", + "https://deno.land/std@0.223.0/fs/eol.ts": "18c4ac009d0318504c285879eb7f47942643f13619e0ff070a0edc59353306bd", + "https://deno.land/std@0.223.0/fs/exists.ts": "3d38cb7dcbca3cf313be343a7b8af18a87bddb4b5ca1bd2314be12d06533b50f", + "https://deno.land/std@0.223.0/fs/expand_glob.ts": "2e428d90acc6676b2aa7b5c78ef48f30641b13f1fe658e7976c9064fb4b05309", + "https://deno.land/std@0.223.0/fs/mod.ts": "c25e6802cbf27f3050f60b26b00c2d8dba1cb7fcdafe34c66006a7473b7b34d4", + "https://deno.land/std@0.223.0/fs/move.ts": "ca205d848908d7f217353bc5c623627b1333490b8b5d3ef4cab600a700c9bd8f", + "https://deno.land/std@0.223.0/fs/walk.ts": "cddf87d2705c0163bff5d7767291f05b0f46ba10b8b28f227c3849cace08d303", + "https://deno.land/std@0.223.0/html/entities.ts": "fd5ac9d459355a377baea118f4e808a1268808fd9138b319c90f11024e2f1718", + "https://deno.land/std@0.223.0/http/etag.ts": "9ca56531be682f202e4239971931060b688ee5c362688e239eeaca39db9e72cb", + "https://deno.land/std@0.223.0/http/file_server.ts": "fe0a77a4de8c3dae3afa206b4317e2dce0b497252fb7319bf7febd6e65fded80", + "https://deno.land/std@0.223.0/http/status.ts": "ed61b4882af2514a81aefd3245e8df4c47b9a8e54929a903577643d2d1ebf514", + "https://deno.land/std@0.223.0/io/write_all.ts": "24aac2312bb21096ae3ae0b102b22c26164d3249dff96dbac130958aa736f038", + "https://deno.land/std@0.223.0/jsonc/mod.ts": "1756f094e00894ec27416b4fcccbcf445e73892a83cf1937de3aad7de2d5da7c", + "https://deno.land/std@0.223.0/jsonc/parse.ts": "06fbe10f0bb0cba684f7902bf7de5126b16eb0e5a82220c98a4b86675c7f9cff", + "https://deno.land/std@0.223.0/log/_config.ts": "489e11b6d3c917bf5fc954c5e914c095d3480efd924d1e85f2fc576468581c54", + "https://deno.land/std@0.223.0/log/_state.ts": "314c0c31ab9c8f4fb33326ad446757d35f75e5bb21746b7720ed4e3f3a939da1", + "https://deno.land/std@0.223.0/log/base_handler.ts": "f03f013dac9c1a226aab60c6f5751b3131cc4f2808720715285e0dab5697a54e", + "https://deno.land/std@0.223.0/log/console_handler.ts": "9b17b9025c7d94eab950a25eccca81fd9dd71d063b9f458f149e52db52ab0295", + "https://deno.land/std@0.223.0/log/critical.ts": "a8b44a4c6768629d2a506ffe1a1a048da7ae76d3146000f8a492008eac4ecba0", + "https://deno.land/std@0.223.0/log/debug.ts": "ddd63a549fedc3061deba47e41cd2170263831fc266e503a12b610b77439333b", + "https://deno.land/std@0.223.0/log/error.ts": "3979ee3aadc962345ad50eff8a5470ad3fe07c70370808ddc178ee08c3d6c89c", + "https://deno.land/std@0.223.0/log/file_handler.ts": "68d6d81ec53bdd6ba61eaceec19d12de59a8ad12ace0d7980a592a51f924a242", + "https://deno.land/std@0.223.0/log/formatters.ts": "29e0325902c3b1cbb3b9ffc1f9d77ac2d2e5af35d27b9bdfe4fdbbd83588d4a8", + "https://deno.land/std@0.223.0/log/get_logger.ts": "36a5febf5338f68aadafaf23bbe38a208e2a3150ec02ca2ec5d3c6bbaf840641", + "https://deno.land/std@0.223.0/log/info.ts": "e6c4971e35092d85cd3241fe7eccdb42999083d14db6aadc5e741f6231e275ad", + "https://deno.land/std@0.223.0/log/levels.ts": "632ba12baa2600750d004cc5cb4eabe10e410f3f2bdfcb9f7142b6d767f2fee6", + "https://deno.land/std@0.223.0/log/logger.ts": "57109848fb587fb3843a7b893f22f1a86c1b78c289172627a6305906738f238a", + "https://deno.land/std@0.223.0/log/mod.ts": "650c53c2c5d9eb05210c4ec54184ecb5bd24fb32ce28e65fad039853978f53f3", + "https://deno.land/std@0.223.0/log/rotating_file_handler.ts": "a6e7c712e568b618303273ff95483f6ab86dec0a485c73c2e399765f752b5aa8", + "https://deno.land/std@0.223.0/log/setup.ts": "42425c550da52c7def7f63a4fcc1ac01a4aec6c73336697a640978d6a324e7a6", + "https://deno.land/std@0.223.0/log/warn.ts": "f1a6bc33a481f231a0257e6d66e26c2e695b931d5e917d8de4f2b825778dfd4e", + "https://deno.land/std@0.223.0/media_types/_db.ts": "19563a2491cd81b53b9c1c6ffd1a9145c355042d4a854c52f6e1424f73ff3923", + "https://deno.land/std@0.223.0/media_types/_util.ts": "e0b8da0c7d8ad2015cf27ac16ddf0809ac984b2f3ec79f7fa4206659d4f10deb", + "https://deno.land/std@0.223.0/media_types/content_type.ts": "ed3f2e1f243b418ad3f441edc95fd92efbadb0f9bde36219c7564c67f9639513", + "https://deno.land/std@0.223.0/media_types/extension.ts": "ec91e1818864cb84f8053ecafb270eaca702412c15c2086929ae34132e11c56a", + "https://deno.land/std@0.223.0/media_types/extensions_by_type.ts": "9db10797e09421815688c8f7a2fbfd5dcb040fa5c488278f1b9e04359369bd0b", + "https://deno.land/std@0.223.0/media_types/format_media_type.ts": "ffef4718afa2489530cb94021bb865a466eb02037609f7e82899c017959d288a", + "https://deno.land/std@0.223.0/media_types/get_charset.ts": "277ebfceb205bd34e616fe6764ef03fb277b77f040706272bea8680806ae3f11", + "https://deno.land/std@0.223.0/media_types/mod.ts": "c8acfa43ce3993e99f4d8aa60fb828a4eee3ab6920aaeb90f6a3d63f6f4f3435", + "https://deno.land/std@0.223.0/media_types/parse_media_type.ts": "487f000a38c230ccbac25420a50f600862e06796d0eee19d19631b9e84ee9654", + "https://deno.land/std@0.223.0/media_types/type_by_extension.ts": "bf4e3f5d6b58b624d5daa01cbb8b1e86d9939940a77e7c26e796a075b60ec73b", + "https://deno.land/std@0.223.0/media_types/vendor/mime-db.v1.52.0.ts": "0218d2c7d900e8cd6fa4a866e0c387712af4af9a1bae55d6b2546c73d273a1e6", + "https://deno.land/std@0.223.0/path/_common/assert_path.ts": "dbdd757a465b690b2cc72fc5fb7698c51507dec6bfafce4ca500c46b76ff7bd8", + "https://deno.land/std@0.223.0/path/_common/basename.ts": "569744855bc8445f3a56087fd2aed56bdad39da971a8d92b138c9913aecc5fa2", + "https://deno.land/std@0.223.0/path/_common/common.ts": "ef73c2860694775fe8ffcbcdd387f9f97c7a656febf0daa8c73b56f4d8a7bd4c", + "https://deno.land/std@0.223.0/path/_common/constants.ts": "dc5f8057159f4b48cd304eb3027e42f1148cf4df1fb4240774d3492b5d12ac0c", + "https://deno.land/std@0.223.0/path/_common/dirname.ts": "684df4aa71a04bbcc346c692c8485594fc8a90b9408dfbc26ff32cf3e0c98cc8", + "https://deno.land/std@0.223.0/path/_common/format.ts": "92500e91ea5de21c97f5fe91e178bae62af524b72d5fcd246d6d60ae4bcada8b", + "https://deno.land/std@0.223.0/path/_common/from_file_url.ts": "d672bdeebc11bf80e99bf266f886c70963107bdd31134c4e249eef51133ceccf", + "https://deno.land/std@0.223.0/path/_common/glob_to_reg_exp.ts": "6cac16d5c2dc23af7d66348a7ce430e5de4e70b0eede074bdbcf4903f4374d8d", + "https://deno.land/std@0.223.0/path/_common/normalize.ts": "684df4aa71a04bbcc346c692c8485594fc8a90b9408dfbc26ff32cf3e0c98cc8", + "https://deno.land/std@0.223.0/path/_common/normalize_string.ts": "33edef773c2a8e242761f731adeb2bd6d683e9c69e4e3d0092985bede74f4ac3", + "https://deno.land/std@0.223.0/path/_common/relative.ts": "faa2753d9b32320ed4ada0733261e3357c186e5705678d9dd08b97527deae607", + "https://deno.land/std@0.223.0/path/_common/strip_trailing_separators.ts": "7024a93447efcdcfeaa9339a98fa63ef9d53de363f1fbe9858970f1bba02655a", + "https://deno.land/std@0.223.0/path/_common/to_file_url.ts": "7f76adbc83ece1bba173e6e98a27c647712cab773d3f8cbe0398b74afc817883", + "https://deno.land/std@0.223.0/path/_interface.ts": "8dfeb930ca4a772c458a8c7bbe1e33216fe91c253411338ad80c5b6fa93ddba0", + "https://deno.land/std@0.223.0/path/_os.ts": "8fb9b90fb6b753bd8c77cfd8a33c2ff6c5f5bc185f50de8ca4ac6a05710b2c15", + "https://deno.land/std@0.223.0/path/basename.ts": "7ee495c2d1ee516ffff48fb9a93267ba928b5a3486b550be73071bc14f8cc63e", + "https://deno.land/std@0.223.0/path/common.ts": "03e52e22882402c986fe97ca3b5bb4263c2aa811c515ce84584b23bac4cc2643", + "https://deno.land/std@0.223.0/path/constants.ts": "0c206169ca104938ede9da48ac952de288f23343304a1c3cb6ec7625e7325f36", + "https://deno.land/std@0.223.0/path/dirname.ts": "85bd955bf31d62c9aafdd7ff561c4b5fb587d11a9a5a45e2b01aedffa4238a7c", + "https://deno.land/std@0.223.0/path/extname.ts": "593303db8ae8c865cbd9ceec6e55d4b9ac5410c1e276bfd3131916591b954441", + "https://deno.land/std@0.223.0/path/format.ts": "6ce1779b0980296cf2bc20d66436b12792102b831fd281ab9eb08fa8a3e6f6ac", + "https://deno.land/std@0.223.0/path/from_file_url.ts": "911833ae4fd10a1c84f6271f36151ab785955849117dc48c6e43b929504ee069", + "https://deno.land/std@0.223.0/path/glob_to_regexp.ts": "7f30f0a21439cadfdae1be1bf370880b415e676097fda584a63ce319053b5972", + "https://deno.land/std@0.223.0/path/is_absolute.ts": "4791afc8bfd0c87f0526eaa616b0d16e7b3ab6a65b62942e50eac68de4ef67d7", + "https://deno.land/std@0.223.0/path/is_glob.ts": "a65f6195d3058c3050ab905705891b412ff942a292bcbaa1a807a74439a14141", + "https://deno.land/std@0.223.0/path/join.ts": "ae2ec5ca44c7e84a235fd532e4a0116bfb1f2368b394db1c4fb75e3c0f26a33a", + "https://deno.land/std@0.223.0/path/join_globs.ts": "5b3bf248b93247194f94fa6947b612ab9d3abd571ca8386cf7789038545e54a0", + "https://deno.land/std@0.223.0/path/mod.ts": "2821a1bb3a4148a0ffe79c92aa41aa9319fef73c6d6f5178f52b2c720d3eb02d", + "https://deno.land/std@0.223.0/path/normalize.ts": "4155743ccceeed319b350c1e62e931600272fad8ad00c417b91df093867a8352", + "https://deno.land/std@0.223.0/path/normalize_glob.ts": "cc89a77a7d3b1d01053b9dcd59462b75482b11e9068ae6c754b5cf5d794b374f", + "https://deno.land/std@0.223.0/path/parse.ts": "3e172974e3c71025f5fbd2bd9db4307acb9cc2de14cf6f4464bf40957663cabe", + "https://deno.land/std@0.223.0/path/posix/_util.ts": "1e3937da30f080bfc99fe45d7ed23c47dd8585c5e473b2d771380d3a6937cf9d", + "https://deno.land/std@0.223.0/path/posix/basename.ts": "d2fa5fbbb1c5a3ab8b9326458a8d4ceac77580961b3739cd5bfd1d3541a3e5f0", + "https://deno.land/std@0.223.0/path/posix/common.ts": "26f60ccc8b2cac3e1613000c23ac5a7d392715d479e5be413473a37903a2b5d4", + "https://deno.land/std@0.223.0/path/posix/constants.ts": "93481efb98cdffa4c719c22a0182b994e5a6aed3047e1962f6c2c75b7592bef1", + "https://deno.land/std@0.223.0/path/posix/dirname.ts": "76cd348ffe92345711409f88d4d8561d8645353ac215c8e9c80140069bf42f00", + "https://deno.land/std@0.223.0/path/posix/extname.ts": "e398c1d9d1908d3756a7ed94199fcd169e79466dd88feffd2f47ce0abf9d61d2", + "https://deno.land/std@0.223.0/path/posix/format.ts": "185e9ee2091a42dd39e2a3b8e4925370ee8407572cee1ae52838aed96310c5c1", + "https://deno.land/std@0.223.0/path/posix/from_file_url.ts": "951aee3a2c46fd0ed488899d024c6352b59154c70552e90885ed0c2ab699bc40", + "https://deno.land/std@0.223.0/path/posix/glob_to_regexp.ts": "76f012fcdb22c04b633f536c0b9644d100861bea36e9da56a94b9c589a742e8f", + "https://deno.land/std@0.223.0/path/posix/is_absolute.ts": "cebe561ad0ae294f0ce0365a1879dcfca8abd872821519b4fcc8d8967f888ede", + "https://deno.land/std@0.223.0/path/posix/is_glob.ts": "8a8b08c08bf731acf2c1232218f1f45a11131bc01de81e5f803450a5914434b9", + "https://deno.land/std@0.223.0/path/posix/join.ts": "7fc2cb3716aa1b863e990baf30b101d768db479e70b7313b4866a088db016f63", + "https://deno.land/std@0.223.0/path/posix/join_globs.ts": "a9475b44645feddceb484ee0498e456f4add112e181cb94042cdc6d47d1cdd25", + "https://deno.land/std@0.223.0/path/posix/mod.ts": "2301fc1c54a28b349e20656f68a85f75befa0ee9b6cd75bfac3da5aca9c3f604", + "https://deno.land/std@0.223.0/path/posix/normalize.ts": "baeb49816a8299f90a0237d214cef46f00ba3e95c0d2ceb74205a6a584b58a91", + "https://deno.land/std@0.223.0/path/posix/normalize_glob.ts": "9c87a829b6c0f445d03b3ecadc14492e2864c3ebb966f4cea41e98326e4435c6", + "https://deno.land/std@0.223.0/path/posix/parse.ts": "0b1fc4cb890dbb699ec1d2c232d274843b4a7142e1ad976b69fe51c954eb6080", + "https://deno.land/std@0.223.0/path/posix/relative.ts": "3907d6eda41f0ff723d336125a1ad4349112cd4d48f693859980314d5b9da31c", + "https://deno.land/std@0.223.0/path/posix/resolve.ts": "08b699cfeee10cb6857ccab38fa4b2ec703b0ea33e8e69964f29d02a2d5257cf", + "https://deno.land/std@0.223.0/path/posix/to_file_url.ts": "7aa752ba66a35049e0e4a4be5a0a31ac6b645257d2e031142abb1854de250aaf", + "https://deno.land/std@0.223.0/path/posix/to_namespaced_path.ts": "28b216b3c76f892a4dca9734ff1cc0045d135532bfd9c435ae4858bfa5a2ebf0", + "https://deno.land/std@0.223.0/path/relative.ts": "ab739d727180ed8727e34ed71d976912461d98e2b76de3d3de834c1066667add", + "https://deno.land/std@0.223.0/path/resolve.ts": "a6f977bdb4272e79d8d0ed4333e3d71367cc3926acf15ac271f1d059c8494d8d", + "https://deno.land/std@0.223.0/path/to_file_url.ts": "88f049b769bce411e2d2db5bd9e6fd9a185a5fbd6b9f5ad8f52bef517c4ece1b", + "https://deno.land/std@0.223.0/path/to_namespaced_path.ts": "b706a4103b104cfadc09600a5f838c2ba94dbcdb642344557122dda444526e40", + "https://deno.land/std@0.223.0/path/windows/_util.ts": "d5f47363e5293fced22c984550d5e70e98e266cc3f31769e1710511803d04808", + "https://deno.land/std@0.223.0/path/windows/basename.ts": "6bbc57bac9df2cec43288c8c5334919418d784243a00bc10de67d392ab36d660", + "https://deno.land/std@0.223.0/path/windows/common.ts": "26f60ccc8b2cac3e1613000c23ac5a7d392715d479e5be413473a37903a2b5d4", + "https://deno.land/std@0.223.0/path/windows/constants.ts": "5afaac0a1f67b68b0a380a4ef391bf59feb55856aa8c60dfc01bd3b6abb813f5", + "https://deno.land/std@0.223.0/path/windows/dirname.ts": "33e421be5a5558a1346a48e74c330b8e560be7424ed7684ea03c12c21b627bc9", + "https://deno.land/std@0.223.0/path/windows/extname.ts": "165a61b00d781257fda1e9606a48c78b06815385e7d703232548dbfc95346bef", + "https://deno.land/std@0.223.0/path/windows/format.ts": "bbb5ecf379305b472b1082cd2fdc010e44a0020030414974d6029be9ad52aeb6", + "https://deno.land/std@0.223.0/path/windows/from_file_url.ts": "ced2d587b6dff18f963f269d745c4a599cf82b0c4007356bd957cb4cb52efc01", + "https://deno.land/std@0.223.0/path/windows/glob_to_regexp.ts": "e45f1f89bf3fc36f94ab7b3b9d0026729829fabc486c77f414caebef3b7304f8", + "https://deno.land/std@0.223.0/path/windows/is_absolute.ts": "4a8f6853f8598cf91a835f41abed42112cebab09478b072e4beb00ec81f8ca8a", + "https://deno.land/std@0.223.0/path/windows/is_glob.ts": "8a8b08c08bf731acf2c1232218f1f45a11131bc01de81e5f803450a5914434b9", + "https://deno.land/std@0.223.0/path/windows/join.ts": "8d03530ab89195185103b7da9dfc6327af13eabdcd44c7c63e42e27808f50ecf", + "https://deno.land/std@0.223.0/path/windows/join_globs.ts": "a9475b44645feddceb484ee0498e456f4add112e181cb94042cdc6d47d1cdd25", + "https://deno.land/std@0.223.0/path/windows/mod.ts": "2301fc1c54a28b349e20656f68a85f75befa0ee9b6cd75bfac3da5aca9c3f604", + "https://deno.land/std@0.223.0/path/windows/normalize.ts": "78126170ab917f0ca355a9af9e65ad6bfa5be14d574c5fb09bb1920f52577780", + "https://deno.land/std@0.223.0/path/windows/normalize_glob.ts": "9c87a829b6c0f445d03b3ecadc14492e2864c3ebb966f4cea41e98326e4435c6", + "https://deno.land/std@0.223.0/path/windows/parse.ts": "dbdfe2bc6db482d755b5f63f7207cd019240fcac02ad2efa582adf67ff10553a", + "https://deno.land/std@0.223.0/path/windows/relative.ts": "3e1abc7977ee6cc0db2730d1f9cb38be87b0ce4806759d271a70e4997fc638d7", + "https://deno.land/std@0.223.0/path/windows/resolve.ts": "8dae1dadfed9d46ff46cc337c9525c0c7d959fb400a6308f34595c45bdca1972", + "https://deno.land/std@0.223.0/path/windows/to_file_url.ts": "40e560ee4854fe5a3d4d12976cef2f4e8914125c81b11f1108e127934ced502e", + "https://deno.land/std@0.223.0/path/windows/to_namespaced_path.ts": "4ffa4fb6fae321448d5fe810b3ca741d84df4d7897e61ee29be961a6aac89a4c", + "https://deno.land/std@0.223.0/streams/byte_slice_stream.ts": "5bbdcadb118390affa9b3d0a0f73ef8e83754f59bb89df349add669dd9369713", + "https://deno.land/std@0.223.0/toml/_parser.ts": "187560eb4465977808b18c68299e1f5a6e4631c0a181d868c8f24722cf9146d1", + "https://deno.land/std@0.223.0/toml/mod.ts": "a457ea7877a6d5e7f3d6985c43da4d2ecd7461038d5c4c7a0089737e90a7ee90", + "https://deno.land/std@0.223.0/toml/parse.ts": "2f0729a8f62c7e508af8dfada0386a4bc2c0d664ef4d26090df03cf495dcb25a", + "https://deno.land/std@0.223.0/toml/stringify.ts": "8b9ba3c1bf8fa7d58d7b62ad62b3174dbbc51050d5cc302aa8e2834089c00d73", + "https://deno.land/std@0.223.0/version.ts": "a25bd16c3b9f0d2861d9fc570eb356441e862cb35013a4d8333b946c0c39fa21", + "https://deno.land/std@0.223.0/yaml/_dumper/dumper.ts": "08b595b40841a2e1c75303f5096392323b6baf8e9662430a91e3b36fbe175fe9", + "https://deno.land/std@0.223.0/yaml/_dumper/dumper_state.ts": "9e29f700ea876ed230b43f11fa006fcb1a62eedc1e27d32baaeaf3210f19f1e7", + "https://deno.land/std@0.223.0/yaml/_error.ts": "f38cdebdb69cde16903d9aa2f3b8a3dd9d13e5f7f3570bf662bfaca69fef669e", + "https://deno.land/std@0.223.0/yaml/_loader/loader.ts": "bf9e8a99770b59bc887b43ebccea108cbe9146ae32d91f7ce558d62c946d3fe3", + "https://deno.land/std@0.223.0/yaml/_loader/loader_state.ts": "ee216de6040551940b85473c3185fdb7a6f3030b77153f87a6b7f63f82e489ea", + "https://deno.land/std@0.223.0/yaml/_mark.ts": "61097a614857fcebf7b2ecad057916d74c90cd160117a33c9e74bac60457410a", + "https://deno.land/std@0.223.0/yaml/_state.ts": "f3b1c1fd11860302f1f33e35e9ce089bf069d4943e8d67516cd6bedbba058c13", + "https://deno.land/std@0.223.0/yaml/_type/binary.ts": "f1a6e1d83dcc52b21cc3639cd98be44051cfc54065cc4f2a42065bce07ebc07d", + "https://deno.land/std@0.223.0/yaml/_type/bool.ts": "121743b23ba82a27ad6a3ec6298c7f5b0908f90e52707f8644a91f7ad51ed2ef", + "https://deno.land/std@0.223.0/yaml/_type/float.ts": "c5ed84b0aec1ec5dc05f6abfaaff672e8890d4d44a42120b4445c9754fca4eba", + "https://deno.land/std@0.223.0/yaml/_type/function.ts": "bbf705058942bf3370604b37eb77a10aadd72f986c237c9f69b43378a42202c1", + "https://deno.land/std@0.223.0/yaml/_type/int.ts": "c2dc88438a60fccc8d2226042bd18b9967753adaf6bd145feb8b99d567e432ce", + "https://deno.land/std@0.223.0/yaml/_type/map.ts": "ae2acb1cb837fb8e96c75c98611cfd45af847d0114ab5336333c318e7d4b12f4", + "https://deno.land/std@0.223.0/yaml/_type/merge.ts": "ad0d971f91d2fb9f4ab3eba0c837eae357b1804d6b798adc99dc917bc5306b11", + "https://deno.land/std@0.223.0/yaml/_type/mod.ts": "e8929d7b1c969a74f76338d4eb380ef8c4a26cd6441117d521f076b766e9c265", + "https://deno.land/std@0.223.0/yaml/_type/nil.ts": "cbe4387d02d5933322c21b25d8955c5e6228c492e391a6fb82dcf4f498cc421c", + "https://deno.land/std@0.223.0/yaml/_type/omap.ts": "cda915105ab22ba9e1d6317adacee8eec2d8ddaf864cc2f814e3e476946e72c6", + "https://deno.land/std@0.223.0/yaml/_type/pairs.ts": "dd39bb44c1b9abaf6172c63f73350475933151f07e05253b81f7860c9b507177", + "https://deno.land/std@0.223.0/yaml/_type/regexp.ts": "e49eb9e1c9356fd142bc15f7f323820d411fcc537b5ba3896df9a8b812d270a4", + "https://deno.land/std@0.223.0/yaml/_type/seq.ts": "2deffc7f970869bc01a1541b4961d076329a1c2b30b95e07918f3132db7c3fe2", + "https://deno.land/std@0.223.0/yaml/_type/set.ts": "be8a9e7237a7ffc92dfbe7f5e552d84b7eeba60f3f73cc77fc3c59d3506c74ea", + "https://deno.land/std@0.223.0/yaml/_type/str.ts": "88f0a1ba12295520cd57e96cd78d53aa0787d53c7a1c506155f418c496c2f550", + "https://deno.land/std@0.223.0/yaml/_type/timestamp.ts": "277a41a40fb93c3b2b3f5c373bf11b0b7856cc6a7b919e8ea130755e4029edc5", + "https://deno.land/std@0.223.0/yaml/_type/undefined.ts": "9d215953c65740f1764e0bdca021007573473f0c49e087f00d9ff02817ecfc97", + "https://deno.land/std@0.223.0/yaml/_utils.ts": "91bbe28b5e7000b9594e40ff5353f8fe7a7ba914eec917e1202cbaf5ac931c58", + "https://deno.land/std@0.223.0/yaml/mod.ts": "54e9bfad77c8cd58f49b65f4d568045ff08989ed36318a2ca733a43cb6f1bc00", + "https://deno.land/std@0.223.0/yaml/parse.ts": "f45278d9ebccb789af4eceeffa5c291e194bcf1fa9aab1b34ff52c2bd4a9d886", + "https://deno.land/std@0.223.0/yaml/schema.ts": "a0f7956d997852b5d1c6564bd73eb7352175cfba439707ac819b65b5a2ec173a", + "https://deno.land/std@0.223.0/yaml/schema/core.ts": "2b15086a0524f6c22d69474760946718ce28cc77f45f25066d1d5022c5a30445", + "https://deno.land/std@0.223.0/yaml/schema/default.ts": "8affc97a02d686ca421419c11ff4c74764d8d0b74b9eee83bc965654c6c45ccf", + "https://deno.land/std@0.223.0/yaml/schema/extended.ts": "3017d6c9556f9e6ad152cb9fb6ba209d4690cfb143d55f8fadb1174b152a2a0a", + "https://deno.land/std@0.223.0/yaml/schema/failsafe.ts": "35d79a203c1ead1790c37967358c02500826b3623139efcc9a0dd172b3817a21", + "https://deno.land/std@0.223.0/yaml/schema/json.ts": "d793ad5d1a5e0463aa58a2de8333d8a1a16284752b7f36ead701da0378d1730a", + "https://deno.land/std@0.223.0/yaml/schema/mod.ts": "0e1558a4823834f106675e48ddc15338e04f6f18469d1a7d6b3f0e1ab06abcb2", + "https://deno.land/std@0.223.0/yaml/stringify.ts": "f0ed4e419cb40c807cf79ae4039d6cdf492be9a947121fff4d4b7cd1d4738bae", + "https://deno.land/std@0.223.0/yaml/type.ts": "708dde5f20b01cc1096489b7155b6af79a217d585afb841128e78c3c2391eb5c", + "https://deno.land/x/astring@v1.8.6/src/astring.js": "457e5fd0b72da2a365c33059c8846d9cb37dc5e5f1010332d13afae540323da0", + "https://deno.land/x/cliffy@v0.25.7/_utils/distance.ts": "02af166952c7c358ac83beae397aa2fbca4ad630aecfcd38d92edb1ea429f004", + "https://deno.land/x/cliffy@v0.25.7/ansi/ansi.ts": "7f43d07d31dd7c24b721bb434c39cbb5132029fa4be3dd8938873065f65e5810", + "https://deno.land/x/cliffy@v0.25.7/ansi/ansi_escapes.ts": "885f61f343223f27b8ec69cc138a54bea30542924eacd0f290cd84edcf691387", + "https://deno.land/x/cliffy@v0.25.7/ansi/chain.ts": "31fb9fcbf72fed9f3eb9b9487270d2042ccd46a612d07dd5271b1a80ae2140a0", + "https://deno.land/x/cliffy@v0.25.7/ansi/colors.ts": "5f71993af5bd1aa0a795b15f41692d556d7c89584a601fed75997df844b832c9", + "https://deno.land/x/cliffy@v0.25.7/ansi/cursor_position.ts": "d537491e31d9c254b208277448eff92ff7f55978c4928dea363df92c0df0813f", + "https://deno.land/x/cliffy@v0.25.7/ansi/deps.ts": "0f35cb7e91868ce81561f6a77426ea8bc55dc15e13f84c7352f211023af79053", + "https://deno.land/x/cliffy@v0.25.7/ansi/mod.ts": "bb4e6588e6704949766205709463c8c33b30fec66c0b1846bc84a3db04a4e075", + "https://deno.land/x/cliffy@v0.25.7/ansi/tty.ts": "8fb064c17ead6cdf00c2d3bc87a9fd17b1167f2daa575c42b516f38bdb604673", + "https://deno.land/x/cliffy@v0.25.7/command/_errors.ts": "a9bd23dc816b32ec96c9b8f3057218241778d8c40333b43341138191450965e5", + "https://deno.land/x/cliffy@v0.25.7/command/_utils.ts": "9ab3d69fabab6c335b881b8a5229cbd5db0c68f630a1c307aff988b6396d9baf", + "https://deno.land/x/cliffy@v0.25.7/command/command.ts": "a2b83c612acd65c69116f70dec872f6da383699b83874b70fcf38cddf790443f", + "https://deno.land/x/cliffy@v0.25.7/command/completions/_bash_completions_generator.ts": "43b4abb543d4dc60233620d51e69d82d3b7c44e274e723681e0dce2a124f69f9", + "https://deno.land/x/cliffy@v0.25.7/command/completions/_fish_completions_generator.ts": "d0289985f5cf0bd288c05273bfa286b24c27feb40822eb7fd9d7fee64e6580e8", + "https://deno.land/x/cliffy@v0.25.7/command/completions/_zsh_completions_generator.ts": "14461eb274954fea4953ee75938821f721da7da607dc49bcc7db1e3f33a207bd", + "https://deno.land/x/cliffy@v0.25.7/command/completions/bash.ts": "053aa2006ec327ccecacb00ba28e5eb836300e5c1bec1b3cfaee9ddcf8189756", + "https://deno.land/x/cliffy@v0.25.7/command/completions/complete.ts": "58df61caa5e6220ff2768636a69337923ad9d4b8c1932aeb27165081c4d07d8b", + "https://deno.land/x/cliffy@v0.25.7/command/completions/fish.ts": "9938beaa6458c6cf9e2eeda46a09e8cd362d4f8c6c9efe87d3cd8ca7477402a5", + "https://deno.land/x/cliffy@v0.25.7/command/completions/mod.ts": "aeef7ec8e319bb157c39a4bab8030c9fe8fa327b4c1e94c9c1025077b45b40c0", + "https://deno.land/x/cliffy@v0.25.7/command/completions/zsh.ts": "8b04ab244a0b582f7927d405e17b38602428eeb347a9968a657e7ea9f40e721a", + "https://deno.land/x/cliffy@v0.25.7/command/deprecated.ts": "bbe6670f1d645b773d04b725b8b8e7814c862c9f1afba460c4d599ffe9d4983c", + "https://deno.land/x/cliffy@v0.25.7/command/deps.ts": "275b964ce173770bae65f6b8ebe9d2fd557dc10292cdd1ed3db1735f0d77fa1d", + "https://deno.land/x/cliffy@v0.25.7/command/help/_help_generator.ts": "f7c349cb2ddb737e70dc1f89bcb1943ca9017a53506be0d4138e0aadb9970a49", + "https://deno.land/x/cliffy@v0.25.7/command/help/mod.ts": "09d74d3eb42d21285407cda688074c29595d9c927b69aedf9d05ff3f215820d3", + "https://deno.land/x/cliffy@v0.25.7/command/mod.ts": "d0a32df6b14028e43bb2d41fa87d24bc00f9662a44e5a177b3db02f93e473209", + "https://deno.land/x/cliffy@v0.25.7/command/type.ts": "24e88e3085e1574662b856ccce70d589959648817135d4469fab67b9cce1b364", + "https://deno.land/x/cliffy@v0.25.7/command/types.ts": "ae02eec0ed7a769f7dba2dd5d3a931a61724b3021271b1b565cf189d9adfd4a0", + "https://deno.land/x/cliffy@v0.25.7/command/types/action_list.ts": "33c98d449617c7a563a535c9ceb3741bde9f6363353fd492f90a74570c611c27", + "https://deno.land/x/cliffy@v0.25.7/command/types/boolean.ts": "3879ec16092b4b5b1a0acb8675f8c9250c0b8a972e1e4c7adfba8335bd2263ed", + "https://deno.land/x/cliffy@v0.25.7/command/types/child_command.ts": "f1fca390c7fbfa7a713ca15ef55c2c7656bcbb394d50e8ef54085bdf6dc22559", + "https://deno.land/x/cliffy@v0.25.7/command/types/command.ts": "325d0382e383b725fd8d0ef34ebaeae082c5b76a1f6f2e843fee5dbb1a4fe3ac", + "https://deno.land/x/cliffy@v0.25.7/command/types/enum.ts": "2178345972adf7129a47e5f02856ca3e6852a91442a1c78307dffb8a6a3c6c9f", + "https://deno.land/x/cliffy@v0.25.7/command/types/file.ts": "8618f16ac9015c8589cbd946b3de1988cc4899b90ea251f3325c93c46745140e", + "https://deno.land/x/cliffy@v0.25.7/command/types/integer.ts": "29864725fd48738579d18123d7ee78fed37515e6dc62146c7544c98a82f1778d", + "https://deno.land/x/cliffy@v0.25.7/command/types/number.ts": "aeba96e6f470309317a16b308c82e0e4138a830ec79c9877e4622c682012bc1f", + "https://deno.land/x/cliffy@v0.25.7/command/types/string.ts": "e4dadb08a11795474871c7967beab954593813bb53d9f69ea5f9b734e43dc0e0", + "https://deno.land/x/cliffy@v0.25.7/command/upgrade/mod.ts": "17e2df3b620905583256684415e6c4a31e8de5c59066eb6d6c9c133919292dc4", + "https://deno.land/x/cliffy@v0.25.7/command/upgrade/provider.ts": "d6fb846043232cbd23c57d257100c7fc92274984d75a5fead0f3e4266dc76ab8", + "https://deno.land/x/cliffy@v0.25.7/command/upgrade/provider/deno_land.ts": "24f8d82e38c51e09be989f30f8ad21f9dd41ac1bb1973b443a13883e8ba06d6d", + "https://deno.land/x/cliffy@v0.25.7/command/upgrade/provider/github.ts": "99e1b133dd446c6aa79f69e69c46eb8bc1c968dd331c2a7d4064514a317c7b59", + "https://deno.land/x/cliffy@v0.25.7/command/upgrade/provider/nest_land.ts": "0e07936cea04fa41ac9297f32d87f39152ea873970c54cb5b4934b12fee1885e", + "https://deno.land/x/cliffy@v0.25.7/command/upgrade/upgrade_command.ts": "3640a287d914190241ea1e636774b1b4b0e1828fa75119971dd5304784061e05", + "https://deno.land/x/cliffy@v0.25.7/flags/_errors.ts": "f1fbb6bfa009e7950508c9d491cfb4a5551027d9f453389606adb3f2327d048f", + "https://deno.land/x/cliffy@v0.25.7/flags/_utils.ts": "340d3ecab43cde9489187e1f176504d2c58485df6652d1cdd907c0e9c3ce4cc2", + "https://deno.land/x/cliffy@v0.25.7/flags/_validate_flags.ts": "16eb5837986c6f6f7620817820161a78d66ce92d690e3697068726bbef067452", + "https://deno.land/x/cliffy@v0.25.7/flags/deprecated.ts": "a72a35de3cc7314e5ebea605ca23d08385b218ef171c32a3f135fb4318b08126", + "https://deno.land/x/cliffy@v0.25.7/flags/flags.ts": "68a9dfcacc4983a84c07ba19b66e5e9fccd04389fad215210c60fb414cc62576", + "https://deno.land/x/cliffy@v0.25.7/flags/mod.ts": "b21c2c135cd2437cc16245c5f168a626091631d6d4907ad10db61c96c93bdb25", + "https://deno.land/x/cliffy@v0.25.7/flags/types.ts": "7452ea5296758fb7af89930349ce40d8eb9a43b24b3f5759283e1cb5113075fd", + "https://deno.land/x/cliffy@v0.25.7/flags/types/boolean.ts": "4c026dd66ec9c5436860dc6d0241427bdb8d8e07337ad71b33c08193428a2236", + "https://deno.land/x/cliffy@v0.25.7/flags/types/integer.ts": "b60d4d590f309ddddf066782d43e4dc3799f0e7d08e5ede7dc62a5ee94b9a6d9", + "https://deno.land/x/cliffy@v0.25.7/flags/types/number.ts": "610936e2d29de7c8c304b65489a75ebae17b005c6122c24e791fbed12444d51e", + "https://deno.land/x/cliffy@v0.25.7/flags/types/string.ts": "e89b6a5ce322f65a894edecdc48b44956ec246a1d881f03e97bbda90dd8638c5", + "https://deno.land/x/cliffy@v0.25.7/keycode/key_code.ts": "c4ab0ffd102c2534962b765ded6d8d254631821bf568143d9352c1cdcf7a24be", + "https://deno.land/x/cliffy@v0.25.7/keycode/key_codes.ts": "917f0a2da0dbace08cf29bcfdaaa2257da9fe7e705fff8867d86ed69dfb08cfe", + "https://deno.land/x/cliffy@v0.25.7/keycode/mod.ts": "292d2f295316c6e0da6955042a7b31ab2968ff09f2300541d00f05ed6c2aa2d4", + "https://deno.land/x/cliffy@v0.25.7/mod.ts": "e3515ccf6bd4e4ac89322034e07e2332ed71901e4467ee5bc9d72851893e167b", + "https://deno.land/x/cliffy@v0.25.7/prompt/_generic_input.ts": "737cff2de02c8ce35250f5dd79c67b5fc176423191a2abd1f471a90dd725659e", + "https://deno.land/x/cliffy@v0.25.7/prompt/_generic_list.ts": "79b301bf09eb19f0d070d897f613f78d4e9f93100d7e9a26349ef0bfaa7408d2", + "https://deno.land/x/cliffy@v0.25.7/prompt/_generic_prompt.ts": "8630ce89a66d83e695922df41721cada52900b515385d86def597dea35971bb2", + "https://deno.land/x/cliffy@v0.25.7/prompt/_generic_suggestions.ts": "2a8b619f91e8f9a270811eff557f10f1343a444a527b5fc22c94de832939920c", + "https://deno.land/x/cliffy@v0.25.7/prompt/_utils.ts": "676cca30762656ed1a9bcb21a7254244278a23ffc591750e98a501644b6d2df3", + "https://deno.land/x/cliffy@v0.25.7/prompt/checkbox.ts": "e5a5a9adbb86835dffa2afbd23c6f7a8fe25a9d166485388ef25aba5dc3fbf9e", + "https://deno.land/x/cliffy@v0.25.7/prompt/confirm.ts": "94c8e55de3bbcd53732804420935c432eab29945497d1c47c357d236a89cb5f6", + "https://deno.land/x/cliffy@v0.25.7/prompt/deps.ts": "4c38ab18e55a792c9a136c1c29b2b6e21ea4820c45de7ef4cf517ce94012c57d", + "https://deno.land/x/cliffy@v0.25.7/prompt/figures.ts": "26af0fbfe21497220e4b887bb550fab997498cde14703b98e78faf370fbb4b94", + "https://deno.land/x/cliffy@v0.25.7/prompt/input.ts": "ee45532e0a30c2463e436e08ae291d79d1c2c40872e17364c96d2b97c279bf4d", + "https://deno.land/x/cliffy@v0.25.7/prompt/list.ts": "6780427ff2a932a48c9b882d173c64802081d6cdce9ff618d66ba6504b6abc50", + "https://deno.land/x/cliffy@v0.25.7/prompt/mod.ts": "195aed14d10d279914eaa28c696dec404d576ca424c097a5bc2b4a7a13b66c89", + "https://deno.land/x/cliffy@v0.25.7/prompt/number.ts": "015305a76b50138234dde4fd50eb886c6c7c0baa1b314caf811484644acdc2cf", + "https://deno.land/x/cliffy@v0.25.7/prompt/prompt.ts": "0e7f6a1d43475ee33fb25f7d50749b2f07fc0bcddd9579f3f9af12d05b4a4412", + "https://deno.land/x/cliffy@v0.25.7/prompt/secret.ts": "58745f5231fb2c44294c4acf2511f8c5bfddfa1e12f259580ff90dedea2703d6", + "https://deno.land/x/cliffy@v0.25.7/prompt/select.ts": "1e982eae85718e4e15a3ee10a5ae2233e532d7977d55888f3a309e8e3982b784", + "https://deno.land/x/cliffy@v0.25.7/prompt/toggle.ts": "842c3754a40732f2e80bcd4670098713e402e64bd930e6cab2b787f7ad4d931a", + "https://deno.land/x/cliffy@v0.25.7/table/border.ts": "2514abae4e4f51eda60a5f8c927ba24efd464a590027e900926b38f68e01253c", + "https://deno.land/x/cliffy@v0.25.7/table/cell.ts": "1d787d8006ac8302020d18ec39f8d7f1113612c20801b973e3839de9c3f8b7b3", + "https://deno.land/x/cliffy@v0.25.7/table/deps.ts": "5b05fa56c1a5e2af34f2103fd199e5f87f0507549963019563eae519271819d2", + "https://deno.land/x/cliffy@v0.25.7/table/layout.ts": "46bf10ae5430cf4fbb92f23d588230e9c6336edbdb154e5c9581290562b169f4", + "https://deno.land/x/cliffy@v0.25.7/table/mod.ts": "e74f69f38810ee6139a71132783765feb94436a6619c07474ada45b465189834", + "https://deno.land/x/cliffy@v0.25.7/table/row.ts": "5f519ba7488d2ef76cbbf50527f10f7957bfd668ce5b9169abbc44ec88302645", + "https://deno.land/x/cliffy@v0.25.7/table/table.ts": "ec204c9d08bb3ff1939c5ac7412a4c9ed7d00925d4fc92aff9bfe07bd269258d", + "https://deno.land/x/cliffy@v0.25.7/table/utils.ts": "187bb7dcbcfb16199a5d906113f584740901dfca1007400cba0df7dcd341bc29", + "https://deno.land/x/deno_dom@v0.1.45/build/deno-wasm/deno-wasm.js": "d6841a06342eb6a2798ef28de79ad69c0f2fa349fa04d3ca45e5fcfbf50a9340", + "https://deno.land/x/deno_dom@v0.1.45/deno-dom-wasm.ts": "a33d160421bbb6e3104285ea5ebf33352b7ad50d82ea8765e3cf65f972b25119", + "https://deno.land/x/deno_dom@v0.1.45/src/api.ts": "0ff5790f0a3eeecb4e00b7d8fbfa319b165962cf6d0182a65ba90f158d74f7d7", + "https://deno.land/x/deno_dom@v0.1.45/src/constructor-lock.ts": "59714df7e0571ec7bd338903b1f396202771a6d4d7f55a452936bd0de9deb186", + "https://deno.land/x/deno_dom@v0.1.45/src/deserialize.ts": "1cf4096678d8afed8ed28dbad690504c4d2c28149ba768b26eacd1416873425b", + "https://deno.land/x/deno_dom@v0.1.45/src/dom/document-fragment.ts": "1c7352a3c816587ed7fad574b42636198f680f17abc3836fcfe7799b31e7718f", + "https://deno.land/x/deno_dom@v0.1.45/src/dom/document.ts": "a182727dd9179e5712e31be66f4f72b766a5b714c765a75950babe6dd756b4ee", + "https://deno.land/x/deno_dom@v0.1.45/src/dom/dom-parser.ts": "609097b426f8c2358f3e5d2bca55ed026cf26cdf86562e94130dfdb0f2537f92", + "https://deno.land/x/deno_dom@v0.1.45/src/dom/element.ts": "d5371cd83ff2128353c1975465c368ef83d7441568626b386557deba51315111", + "https://deno.land/x/deno_dom@v0.1.45/src/dom/elements/html-template-element.ts": "740b97a5378c9a14cccf3429299846eda240b613013e2d2d7f20b393897453c2", + "https://deno.land/x/deno_dom@v0.1.45/src/dom/html-collection.ts": "829a965f419f8286d5f43a12e27886d10836d519ca2d5e74cb3f2e1d35f35746", + "https://deno.land/x/deno_dom@v0.1.45/src/dom/node-list.ts": "9008303fe236e40e74f9f93e398bd173d2e9b09065932a0153dd0142c759397b", + "https://deno.land/x/deno_dom@v0.1.45/src/dom/node.ts": "3069e6fc93ac4111a136ed68199d76673339842b9751610ba06f111ba7dc10a7", + "https://deno.land/x/deno_dom@v0.1.45/src/dom/selectors/custom-api.ts": "852696bd58e534bc41bd3be9e2250b60b67cd95fd28ed16b1deff1d548531a71", + "https://deno.land/x/deno_dom@v0.1.45/src/dom/selectors/nwsapi-types.ts": "c43b36c36acc5d32caabaa54fda8c9d239b2b0fcbce9a28efb93c84aa1021698", + "https://deno.land/x/deno_dom@v0.1.45/src/dom/selectors/nwsapi.js": "985d7d8fc1eabbb88946b47a1c44c1b2d4aa79ff23c21424219f1528fa27a2ff", + "https://deno.land/x/deno_dom@v0.1.45/src/dom/selectors/selectors.ts": "83eab57be2290fb48e3130533448c93c6c61239f2a2f3b85f1917f80ca0fdc75", + "https://deno.land/x/deno_dom@v0.1.45/src/dom/selectors/sizzle-types.ts": "78149e2502409989ce861ed636b813b059e16bc267bb543e7c2b26ef43e4798b", + "https://deno.land/x/deno_dom@v0.1.45/src/dom/selectors/sizzle.js": "c3aed60c1045a106d8e546ac2f85cc82e65f62d9af2f8f515210b9212286682a", + "https://deno.land/x/deno_dom@v0.1.45/src/dom/utils-types.ts": "96db30e3e4a75b194201bb9fa30988215da7f91b380fca6a5143e51ece2a8436", + "https://deno.land/x/deno_dom@v0.1.45/src/dom/utils.ts": "4c6206516fb8f61f37a209c829e812c4f5a183e46d082934dd14c91bde939263", + "https://deno.land/x/deno_dom@v0.1.45/src/parser.ts": "e06b2300d693e6ae7564e53dfa5c9a9e97fdb8c044c39c52c8b93b5d60860be3", + "https://deno.land/x/hono@v4.2.4/adapter/deno/serve-static.ts": "62b57d461ecebbc7b98809c4fc2a8358f0828d6e89cdc6841054e5bb3828fc80", + "https://deno.land/x/hono@v4.2.4/client/client.ts": "f188999c7495bbbeb04005774fffa4e2df6e40c3f1afe06f428c2a1989c77a87", + "https://deno.land/x/hono@v4.2.4/client/index.ts": "30def535310a37bede261f1b23d11a9758983b8e9d60a6c56309cee5f6746ab2", + "https://deno.land/x/hono@v4.2.4/client/utils.ts": "0eb7687102393ee8160d08964c13bf7733ce6b369e3576bac5ef2fe7622ce78b", + "https://deno.land/x/hono@v4.2.4/compose.ts": "37d6e33b7db80e4c43a0629b12fd3a1e3406e7d9e62a4bfad4b30426ea7ae4f1", + "https://deno.land/x/hono@v4.2.4/context.ts": "3d8c8a1aaea396fe22e2db822e1a270482c7f4b3b273f8f05ae3b240408bc7b2", + "https://deno.land/x/hono@v4.2.4/helper/adapter/index.ts": "5a4ca736487a2a8303bdac9fff710eae38e6f39ed70eb171eed78e5f64da84df", + "https://deno.land/x/hono@v4.2.4/helper/cookie/index.ts": "80b98f8a014e8b03a9130cce9fb03f6175f82a64367e954d120634f8543556e2", + "https://deno.land/x/hono@v4.2.4/helper/html/index.ts": "48a0ddc576c10452db6c3cab03dd4ee6986ab61ebdc667335b40a81fa0487f69", + "https://deno.land/x/hono@v4.2.4/hono-base.ts": "2a508c026687a1fc12c0458e100e66d5d72e17f6e6532b407d19663aa7300327", + "https://deno.land/x/hono@v4.2.4/hono.ts": "23edd0140bf0bd5a68c14ae96e5856a5cec6b844277e853b91025e91ea74f416", + "https://deno.land/x/hono@v4.2.4/http-exception.ts": "cd387c6f7357db375ac3375f0346c6da80b46193b661881f660d6b15293fc086", + "https://deno.land/x/hono@v4.2.4/jsx/base.ts": "4c1e9f841b8f287ed95541f4e0c6ba9afac2a353cb2a88dc373f27e2261b118b", + "https://deno.land/x/hono@v4.2.4/jsx/components.ts": "f79ab215f59388f01a69e2d6ec0b841fd3b42ba38e0ee7c93a525cdf06e159f9", + "https://deno.land/x/hono@v4.2.4/jsx/constants.ts": "03dbf805f4d07e3b34ab05ac84f3c0cb4fbafb2096fba7789a5f6226ca6f21ad", + "https://deno.land/x/hono@v4.2.4/jsx/context.ts": "2b7a86e6b35da171fab27aa05f09748bb3eba64b26c037ea1da655c07e8f6bc1", + "https://deno.land/x/hono@v4.2.4/jsx/dom/components.ts": "733da654edb3d4c178a4479649fac2c64e79069e37e848add0c3a49f90e7f2d7", + "https://deno.land/x/hono@v4.2.4/jsx/dom/context.ts": "39cd1108f0933934075fd88ef98139b0f29cce35b5d30d5fed2231daaa19c208", + "https://deno.land/x/hono@v4.2.4/jsx/dom/jsx-dev-runtime.ts": "266a61edb91f596f8581218c2afb253449fa700e069298b5a3e96ee064a57183", + "https://deno.land/x/hono@v4.2.4/jsx/dom/jsx-runtime.ts": "6a50a65306771a9000030f494d92a5fdeeb055112e0126234b2fd9179de1d4f5", + "https://deno.land/x/hono@v4.2.4/jsx/dom/render.ts": "ca76952d936e4994c08a8eef291a353ea39815f42b547f1b3cb143559b3227ca", + "https://deno.land/x/hono@v4.2.4/jsx/hooks/index.ts": "6a5e712581f29d1c28469006ec534833e600841939b5d0e13688bbcbaaf658f1", + "https://deno.land/x/hono@v4.2.4/jsx/index.ts": "ca3b63c99e446b29d5d1a6ec79948146e9c3c88121bcbfa4982d0e9b21e33906", + "https://deno.land/x/hono@v4.2.4/jsx/streaming.ts": "5e5dde9a546041353b9a3860fc9020471f762813f10e1290009ab6bd40e7bdcf", + "https://deno.land/x/hono@v4.2.4/jsx/types.ts": "880971bd1e0704a6fba6b786ca596cbe23fc06e36c506f42ea17f84f9879f278", + "https://deno.land/x/hono@v4.2.4/jsx/utils.ts": "7b9d84ce478c66a5f4709dc3a873ac7104ba3427597683221827abec2761da0e", + "https://deno.land/x/hono@v4.2.4/middleware.ts": "2e7c6062e36b0e5f84b44a62e7b0e1cef33a9827c19937c648be4b63e1b7d7c6", + "https://deno.land/x/hono@v4.2.4/middleware/basic-auth/index.ts": "2c8cb563f3b89df1a7a2232be37377c3df6194af38613dc0a823c6595816fc66", + "https://deno.land/x/hono@v4.2.4/middleware/bearer-auth/index.ts": "6a2361ca273a0dbbc9213b535a82dc434472f1e2ca85ab6d993b68f11d2067cd", + "https://deno.land/x/hono@v4.2.4/middleware/body-limit/index.ts": "3fefeaf7e6e576aa1b33f2694072d2eaab692842acd29cb360d98e20eebfe5aa", + "https://deno.land/x/hono@v4.2.4/middleware/cache/index.ts": "9bb67a362a9f06151709039a890837b8a1689a5a84a948a9a1483da876a99c0e", + "https://deno.land/x/hono@v4.2.4/middleware/compress/index.ts": "98c403a5fe7e9c5f5d776350b422b0a125fb34696851b8b14f825b9b7b06f2ac", + "https://deno.land/x/hono@v4.2.4/middleware/cors/index.ts": "976eb9ce8cefc214b403a2939503a13177cec76223274609a07ca554e0dc623b", + "https://deno.land/x/hono@v4.2.4/middleware/csrf/index.ts": "077bb0ce299d79d0d232cb9e462aaa4eaa901164f1310f74a7630f7e6cfe74e8", + "https://deno.land/x/hono@v4.2.4/middleware/etag/index.ts": "3392aabea4d02dfec51455c5919bff9aad76538b9fde375dd542fbc3f389dd3a", + "https://deno.land/x/hono@v4.2.4/middleware/jsx-renderer/index.ts": "76b08d24c7b8cf3c808dc1d2063358c8b284e4fc48c8966b731a5d32286f62fd", + "https://deno.land/x/hono@v4.2.4/middleware/jwt/index.ts": "4cb997d3d7a09d0b0c0e273841d29729e13e35dfc00021089aebaad868a7f8c6", + "https://deno.land/x/hono@v4.2.4/middleware/logger/index.ts": "52a2e968890ada2c11ce89a7a783692c5767b8ed7fb23ccf6b559d255d13ccbc", + "https://deno.land/x/hono@v4.2.4/middleware/method-override/index.ts": "303797bf0dc0600847f0a5f23a6351232c8bda596a64d38b3ef05e40ca354b42", + "https://deno.land/x/hono@v4.2.4/middleware/powered-by/index.ts": "6faba0cf042278d60b317b690640bb0b58747690cf280fa09024424c5174e66d", + "https://deno.land/x/hono@v4.2.4/middleware/pretty-json/index.ts": "2216ce4c9910be009fecac63367c3626b46137d4cf7cb9a82913e501104b4a88", + "https://deno.land/x/hono@v4.2.4/middleware/secure-headers/index.ts": "24cf3544002e882972842800bce223738b32c9c84bef7f74892e994819765f84", + "https://deno.land/x/hono@v4.2.4/middleware/serve-static/index.ts": "e94a035ba3d5f45408dd739472d66ac38dc9d54bf7f6044412e8ebb666ff7416", + "https://deno.land/x/hono@v4.2.4/middleware/timing/index.ts": "241702aa10ab66cc832e8b556c57c236f3bf338a8817d802cb142eae0f852582", + "https://deno.land/x/hono@v4.2.4/middleware/trailing-slash/index.ts": "419cf0af99a137f591b72cc71c053e524fe3574393ce81e0e9dbce84a4046e24", + "https://deno.land/x/hono@v4.2.4/mod.ts": "35fd2a2e14b52365e0ad66f168b067363fd0a60d75cbcb1b01685b04de97d60e", + "https://deno.land/x/hono@v4.2.4/request.ts": "6f6e435955667425391f7626f4aa088211e33689a709ff9c4417746fc0b0dd96", + "https://deno.land/x/hono@v4.2.4/router.ts": "880316f561918fc197481755aac2165fdbe2f530b925c5357a9f98d6e2cc85c7", + "https://deno.land/x/hono@v4.2.4/router/linear-router/index.ts": "8a2a7144c50b1f4a92d9ee99c2c396716af144c868e10608255f969695efccd0", + "https://deno.land/x/hono@v4.2.4/router/linear-router/router.ts": "928d29894e4b45b047a4f453c7f1745c8b1869cd68447e1cb710c7bbf99a4e29", + "https://deno.land/x/hono@v4.2.4/router/pattern-router/index.ts": "304a66c50e243872037ed41c7dd79ed0c89d815e17e172e7ad7cdc4bc07d3383", + "https://deno.land/x/hono@v4.2.4/router/pattern-router/router.ts": "1b5f68e6af942579d3a40ee834294fea3d1f05fd5f70514e46ae301dd0107e46", + "https://deno.land/x/hono@v4.2.4/router/reg-exp-router/index.ts": "52755829213941756159b7a963097bafde5cc4fc22b13b1c7c9184dc0512d1db", + "https://deno.land/x/hono@v4.2.4/router/reg-exp-router/node.ts": "7efaa6f4301efc2aad0519c84973061be8555da02e5868409293a1fd98536aaf", + "https://deno.land/x/hono@v4.2.4/router/reg-exp-router/router.ts": "632f2fa426b3e45a66aeed03f7205dad6d13e8081bed6f8d1d987b6cad8fb455", + "https://deno.land/x/hono@v4.2.4/router/reg-exp-router/trie.ts": "852ce7207e6701e47fa30889a0d2b8bfcd56d8862c97e7bc9831e0a64bd8835f", + "https://deno.land/x/hono@v4.2.4/router/smart-router/index.ts": "74f9b4fe15ea535900f2b9b048581915f12fe94e531dd2b0032f5610e61c3bef", + "https://deno.land/x/hono@v4.2.4/router/smart-router/router.ts": "f1848a2a1eefa316a11853ae12e749552747771fb8a11fe713ae04ea6461140b", + "https://deno.land/x/hono@v4.2.4/router/trie-router/index.ts": "3eb75e7f71ba81801631b30de6b1f5cefb2c7239c03797e2b2cbab5085911b41", + "https://deno.land/x/hono@v4.2.4/router/trie-router/node.ts": "d3e00e8f1ba7fb26896459d5bba882356891a07793387c4655d1864c519a91de", + "https://deno.land/x/hono@v4.2.4/router/trie-router/router.ts": "54ced78d35676302c8fcdda4204f7bdf5a7cc907fbf9967c75674b1e394f830d", + "https://deno.land/x/hono@v4.2.4/utils/body.ts": "1c7013f83bbef8216b3d862111efd5a183eaa29e86decf9a7eec6cdf25757e93", + "https://deno.land/x/hono@v4.2.4/utils/buffer.ts": "9066a973e64498cb262c7e932f47eed525a51677b17f90893862b7279dc0773e", + "https://deno.land/x/hono@v4.2.4/utils/color.ts": "23f8494d4cace2a74d4baf8216c69328ef7e5ed6ca8a402ba92f50144763d927", + "https://deno.land/x/hono@v4.2.4/utils/cookie.ts": "6eaaf6909a4ae11f6c82404e9398e1c247e3f1854d73994a9e2e6fc3cdf7b584", + "https://deno.land/x/hono@v4.2.4/utils/crypto.ts": "bda0e141bbe46d3a4a20f8fbcb6380d473b617123d9fdfa93e4499410b537acc", + "https://deno.land/x/hono@v4.2.4/utils/encode.ts": "311dfdfae7eb0b6345e9680f7ebbb3a692e872ed964e2029aca38567af8d1f33", + "https://deno.land/x/hono@v4.2.4/utils/filepath.ts": "a83e5fe87396bb291a6c5c28e13356fcbea0b5547bad2c3ba9660100ff964000", + "https://deno.land/x/hono@v4.2.4/utils/html.ts": "6ea4f6bf41587a51607dff7a6d2865ef4d5001e4203b07e5c8a45b63a098e871", + "https://deno.land/x/hono@v4.2.4/utils/jwt/index.ts": "3b66f48cdd3fcc2caed5e908ca31776e11b1c30391008931276da3035e6ba1e9", + "https://deno.land/x/hono@v4.2.4/utils/jwt/jwa.ts": "6874cacd8b6dde386636b81b5ea2754f8e4c61757802fa908dd1ce54b91a52fa", + "https://deno.land/x/hono@v4.2.4/utils/jwt/jws.ts": "878fa7d1966b0db20ae231cfee279ba2bb198943e949049cab3f5845cd5ee2d1", + "https://deno.land/x/hono@v4.2.4/utils/jwt/jwt.ts": "f87d29808aa02022e83b3f7170bc80a6dd4d3e27095cc36da915309e08aa96eb", + "https://deno.land/x/hono@v4.2.4/utils/jwt/types.ts": "2845fe8633a5d39c958651ffef2733637e1a647f4b7b061de0458f0435f0f0f5", + "https://deno.land/x/hono@v4.2.4/utils/jwt/utf8.ts": "b9649f21ef91d1e83b3031a53970b29f13ff82053db3ffae372030706fa07d0e", + "https://deno.land/x/hono@v4.2.4/utils/mime.ts": "1e5db0919d2127995ec466dfd1ee637c3d63084f516ccbd3c6906ccf0d3f3c46", + "https://deno.land/x/hono@v4.2.4/utils/url.ts": "855169632c61d03703bd08cafb27664ba3fdb352892f01687d5cce8fd49e3cb1", + "https://deno.land/x/hono@v4.2.4/validator/index.ts": "6c986e8b91dcf857ecc8164a506ae8eea8665792a4ff7215471df669c632ae7c", + "https://deno.land/x/hono@v4.2.4/validator/validator.ts": "99618538b9b283d854656f7375169c0b5006c7198d64be1dfcd79fc6ea01628a", + "https://deno.land/x/lume@v2.1.4/cli.ts": "eaaa788fb717c04121fb99cbc88c8047c7bf5121c71b0f09a0e898cf0bddc194", + "https://deno.land/x/lume@v2.1.4/cli/build.ts": "5c0108bc0555cd5fef7bd036b2a8aab7d4ccd378c046dff0b46dfc4367fced72", + "https://deno.land/x/lume@v2.1.4/cli/cms.ts": "714d18171fc5c52f46922297b54602fa7bf0eae0dcc2f44b7b941507bc328e7d", + "https://deno.land/x/lume@v2.1.4/cli/create.ts": "f4173fd79c6a97480839e1bd47a0ec8c79de1f24d2e92c83baad637c476c9c01", + "https://deno.land/x/lume@v2.1.4/cli/run.ts": "6f60a8c03b085ed71e67c595d02428259526db6095f41389d3933d98433e9f0c", + "https://deno.land/x/lume@v2.1.4/cli/upgrade.ts": "312ac61a4ba61af0faf94b3baf6c6064d77da74fc5be2ef56e3f72d9af0994ba", + "https://deno.land/x/lume@v2.1.4/cms.ts": "9a9e450d15a91c58edf289f205adcecb5ba9de3e2fb753a206b329aa137c615d", + "https://deno.land/x/lume@v2.1.4/core/component_loader.ts": "da80bf80a168d0b91b59eb3449fbf62627d8bf67879df34e71970616d47ce2ec", + "https://deno.land/x/lume@v2.1.4/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215", + "https://deno.land/x/lume@v2.1.4/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557", + "https://deno.land/x/lume@v2.1.4/core/file.ts": "99f164adbf645d2c381cea92367a2153ed582beb13448e5b7b731456c246232a", + "https://deno.land/x/lume@v2.1.4/core/formats.ts": "7358e5e2738f48770f42554405c392c491e07b9475bb68f11462dc3a25f1ea50", + "https://deno.land/x/lume@v2.1.4/core/fs.ts": "54d1a052fe5432fe5b8eeafcdc8c4852fa2a483dc60bef4ffc953b1f3ba626dd", + "https://deno.land/x/lume@v2.1.4/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33", + "https://deno.land/x/lume@v2.1.4/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce", + "https://deno.land/x/lume@v2.1.4/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6", + "https://deno.land/x/lume@v2.1.4/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd", + "https://deno.land/x/lume@v2.1.4/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452", + "https://deno.land/x/lume@v2.1.4/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e", + "https://deno.land/x/lume@v2.1.4/core/processors.ts": "ce9b97307740723afd86d1773e946981a96769189ba6acd649b412e48552045d", + "https://deno.land/x/lume@v2.1.4/core/renderer.ts": "54d33353f6b0c32e2957691429db1d57f16905b3eed36aa64de64bff2fd738a6", + "https://deno.land/x/lume@v2.1.4/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9", + "https://deno.land/x/lume@v2.1.4/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30", + "https://deno.land/x/lume@v2.1.4/core/searcher.ts": "cf580b0d9d81de0287c7345a8d50c0af4945e0800e623c6e8be0620486edf5c2", + "https://deno.land/x/lume@v2.1.4/core/server.ts": "f0446cbe56b6d8e04517cb0b994f1f3b8d4f5a5cd2bdbafa2a7aa671520cc012", + "https://deno.land/x/lume@v2.1.4/core/site.ts": "de74d151ccd882450b1e383a257def8df338a1916eb6d5344cb407ddac39cabd", + "https://deno.land/x/lume@v2.1.4/core/source.ts": "d7406da5bf055868f2106275220e624a20efc40737e346ed96c954e9dbe3a8da", + "https://deno.land/x/lume@v2.1.4/core/utils/cli_options.ts": "c44f3666b8cff8055bb0d738a4ea0c87df69d24e167c7f716aaff35da3a807dc", + "https://deno.land/x/lume@v2.1.4/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504", + "https://deno.land/x/lume@v2.1.4/core/utils/data_values.ts": "40cc18575c35d64797b06fb8638920f54d22c650c50e8760756a7ccbaa37da75", + "https://deno.land/x/lume@v2.1.4/core/utils/date.ts": "b989369496b9a6fba04cf1dee7f58f157911ae273aa3ca16abf9a047e4e091c2", + "https://deno.land/x/lume@v2.1.4/core/utils/deno_config.ts": "41ff641a7f26692473651e8dbe6ef8e61944393ae44380faef4e41a903bea2ee", + "https://deno.land/x/lume@v2.1.4/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8", + "https://deno.land/x/lume@v2.1.4/core/utils/dom.ts": "d406fb5c48ceb012286d0aff66ef635261eda666de2ce07538c0cf9366b8fecd", + "https://deno.land/x/lume@v2.1.4/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7", + "https://deno.land/x/lume@v2.1.4/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877", + "https://deno.land/x/lume@v2.1.4/core/utils/log.ts": "c04df547a673aaecaaeb1f5d90f2a973c1cca9e4545353e94b3cd0074a8ec2b4", + "https://deno.land/x/lume@v2.1.4/core/utils/lume_config.ts": "344bafe9bdd5b69b44d3106de90cbd822dcc21f2916261dddde7eb2b94f336b1", + "https://deno.land/x/lume@v2.1.4/core/utils/lume_version.ts": "368d68675cb5d3ed3b03461ac2f86d5c0fe25b2f194531216c4308b3376f49ce", + "https://deno.land/x/lume@v2.1.4/core/utils/merge_data.ts": "f4771c4f027b17487bf9a33bc2b04701a97f0578fd4a7feb31809cc119e5ee63", + "https://deno.land/x/lume@v2.1.4/core/utils/net.ts": "7827473a96b28950ab8083582a1f810e56ab265c28196494d9d714f1e0c17e8a", + "https://deno.land/x/lume@v2.1.4/core/utils/object.ts": "e00ee6e91264064772c87e69e128a09ba0e30c2c41be4a5302881f59f456fc31", + "https://deno.land/x/lume@v2.1.4/core/utils/page_date.ts": "096b21d1832c74bc338c8d8d8762f1f5106259b73e6b2caa72fb50986d4f1f5b", + "https://deno.land/x/lume@v2.1.4/core/utils/page_url.ts": "fbfcb121c3c0b8b84760ff678c85b9fa7bb66b3ed6db4fa294cab44699e6eb3f", + "https://deno.land/x/lume@v2.1.4/core/utils/path.ts": "a7bae3ad1ff3c9d1d838b044c9d4d4a0410f657cde493f090241345429e833f2", + "https://deno.land/x/lume@v2.1.4/core/utils/read.ts": "5655deaf6bea0b106f0c00dbbbc263076d138342d9500b5fabd8cb2470273661", + "https://deno.land/x/lume@v2.1.4/core/watcher.ts": "2487018b7b860fec08194b6b46ca3793852e2bf72ac9479ef513624b085becdc", + "https://deno.land/x/lume@v2.1.4/core/writer.ts": "a849b3f631f762ab3c673cc78a47e3cc77d857442200ad7fba2b039299338efa", + "https://deno.land/x/lume@v2.1.4/deps/base64.ts": "9f988c171210757b7bff433d26bbbd89cc054c54d6f896c96ce4b60681bc2185", + "https://deno.land/x/lume@v2.1.4/deps/cli.ts": "4057be1f4e8831a8b6dc6321406a40014833b720f44ed5f6d223f165fcd20eaa", + "https://deno.land/x/lume@v2.1.4/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310", + "https://deno.land/x/lume@v2.1.4/deps/colors.ts": "fc02db519fb269cfc47d244612e44e43b56cc0d5a99963a4fbd01ac68b49010a", + "https://deno.land/x/lume@v2.1.4/deps/crypto.ts": "213562ae7a047c8bc9d5d025bc2a754fdb8a6a3db2d071b794bcd61e20c182e1", + "https://deno.land/x/lume@v2.1.4/deps/date.ts": "fdd2d83d96ff02b486aca730e6fef1c687422c950ecc537c17775c758bd1851a", + "https://deno.land/x/lume@v2.1.4/deps/dom.ts": "3dd675f5ecb9690d236184852081a68c0308f6f475a3b324e06e34996a201744", + "https://deno.land/x/lume@v2.1.4/deps/front_matter.ts": "ceb1445df9e0f99b3fb93379db7fd3ceb29d7836df58caa60b8f3f0cc9896f57", + "https://deno.land/x/lume@v2.1.4/deps/fs.ts": "530437b0e23ac20133a49a89860e7d2a05e7d77b0c5afb850ff08265a349d3fb", + "https://deno.land/x/lume@v2.1.4/deps/hex.ts": "629a484165bc972253666969b0c4dd73cc3184a6d22b1ed62baae41b7c6da5f5", + "https://deno.land/x/lume@v2.1.4/deps/http.ts": "c834faf5e800f5c6ea390462b305fb7bfa107dea0538b875579b2880ecf36020", + "https://deno.land/x/lume@v2.1.4/deps/jsonc.ts": "78f52b241bfe9766ac65cfac7dd28a1bc5b7c16d527e4afb3f0e167ceec8067c", + "https://deno.land/x/lume@v2.1.4/deps/log.ts": "9185902d12296ee68343872ab052d6aa68020de54d385c8cb9703695af700bd7", + "https://deno.land/x/lume@v2.1.4/deps/markdown_it.ts": "5da22a23e59f86bb7f0a0aa7c9cb9012a2444b8c3a0896d92a07492626a8c21f", + "https://deno.land/x/lume@v2.1.4/deps/media_types.ts": "a9e04ba91c64cfda719fcd86c944108f88fef0f0a26bd8a44e3a46e19aa77e12", + "https://deno.land/x/lume@v2.1.4/deps/path.ts": "ecd2b53c808e4d4049c0ce441725f5a49fd1c71c5b283c7f05ed624b018c3b9f", + "https://deno.land/x/lume@v2.1.4/deps/postcss.ts": "2069ea4cffc3722ff348c3504efbcfcdf230e76bd1090634c2cea2ea16db1972", + "https://deno.land/x/lume@v2.1.4/deps/remark.ts": "c8d33cd94c16ab1e11c3c295f70a48722d77f75909555484b51c71841de7f0c7", + "https://deno.land/x/lume@v2.1.4/deps/temporal.ts": "1958b134c4186b0ab39316fa33ba19d1a4203e2ea445080429d60d296b91a552", + "https://deno.land/x/lume@v2.1.4/deps/toml.ts": "8939d4df045ae45943f7055de6be67fe336929d4f26dd1aa0ae4409c9164cc5d", + "https://deno.land/x/lume@v2.1.4/deps/vento.ts": "67a21075aabbc3adefe7d0c948a11f509d5ac9773b0985f192d449b895f949c5", + "https://deno.land/x/lume@v2.1.4/deps/xml.ts": "148b6e49cef5be1d1860a84b74915bc42dc8fdb63c69009d25315e160633521c", + "https://deno.land/x/lume@v2.1.4/deps/yaml.ts": "e117e643af22dc7abd17bf5827fe5a39b56a58830be95e6841035c5dd5b1c259", + "https://deno.land/x/lume@v2.1.4/middlewares/logger.ts": "84fb60e1631cd839053eaaba7b3b802eab7d320dfd1b940d982aa1ae5951a85c", + "https://deno.land/x/lume@v2.1.4/middlewares/no_cache.ts": "c576ae2323c8b5657681721377c806672d5e1811d8cf35fba5efebc2645b37ae", + "https://deno.land/x/lume@v2.1.4/middlewares/not_found.ts": "0fcd2da81a9573faf3f6f650f8e126ab5600bf0dd0b49b211303274b5d9afa4e", + "https://deno.land/x/lume@v2.1.4/middlewares/reload.ts": "c9999bdd52e18e85a1634659506542ce0e942cc91b69e3fc9887cabf23ca4592", + "https://deno.land/x/lume@v2.1.4/middlewares/reload_client.js": "34d75e01503fae8180796de882af42b1125fac88f22a010a99d5548de1ba7d72", + "https://deno.land/x/lume@v2.1.4/mod.ts": "79b72a3b7f102be55058682948f2f969a88d69f55cf5bcec7cc8cf9f06609c0f", + "https://deno.land/x/lume@v2.1.4/plugins/date.ts": "52c0928ad1e828ea3249af7d7f09eeca30b95d572967f31b97828fd419b7ff71", + "https://deno.land/x/lume@v2.1.4/plugins/feed.ts": "d6573ac801319cd842e0b260fd1645450c1aeb983fe1877fcdc243ad4c66f7fc", + "https://deno.land/x/lume@v2.1.4/plugins/inline.ts": "7e861b0dd1e880d5715f5075b6dc7784caad79b2c13d08a9f3d016e796c29111", + "https://deno.land/x/lume@v2.1.4/plugins/json.ts": "f6429bbd865e3666ef3385fd205fcc92df02ca2c0f74f20baa5c0798a81e1642", + "https://deno.land/x/lume@v2.1.4/plugins/markdown.ts": "b0f224dcffa0abeb30af178d7ec21f50515c2a7ccd42a3347aac3bea53c4ca27", + "https://deno.land/x/lume@v2.1.4/plugins/modules.ts": "19a66398a5494f506458e48b8443a7c4700b7577e8fcc0818c39b1d0530c8950", + "https://deno.land/x/lume@v2.1.4/plugins/multilanguage.ts": "fc08d7467d398f19ca2f989116bf293a811d8b9359b6292354ae80396419c0b6", + "https://deno.land/x/lume@v2.1.4/plugins/paginate.ts": "e86617ec1ad491c86bc4866db41f070a6b393e8c2ac94ed28a51ca309f88477d", + "https://deno.land/x/lume@v2.1.4/plugins/postcss.ts": "dab926cc277176dfc6eeb9f556c2c2955bd65ffb089334db4d378e974fda155d", + "https://deno.land/x/lume@v2.1.4/plugins/redirects.ts": "8f7706599f0a5ddc038c7b16a149f5379207d5e32ae8269f224178fbe0348a9d", + "https://deno.land/x/lume@v2.1.4/plugins/remark.ts": "e780bb6c054649dad076966319645109617b2a7a616bf77a3eaf369019527327", + "https://deno.land/x/lume@v2.1.4/plugins/search.ts": "8ec3a8f082b8ff1532bbe8f8bf76dfaa2d0feab7c2ec5c824d0ccc044c26f640", + "https://deno.land/x/lume@v2.1.4/plugins/source_maps.ts": "2fb5a23d22768a92e04c6feefe2c704dd8d970780a90d0e069f784353f5c545f", + "https://deno.land/x/lume@v2.1.4/plugins/toml.ts": "60191e1e8fd0922def0b3f0eaad13988217511571a54659481759db4b0ca4f82", + "https://deno.land/x/lume@v2.1.4/plugins/url.ts": "3d298886cb16e1110d427d2f257de6c2ae0da3cd7076b6abcbbd41e7536ed094", + "https://deno.land/x/lume@v2.1.4/plugins/vento.ts": "03b2121ca5e14b589d9add0a390e0c0c4e591436617ef899011440325c878392", + "https://deno.land/x/lume@v2.1.4/plugins/yaml.ts": "21b1604304240d4de42b2ba0fcfd81b8330fcff8b365a1ee4ff164de6ef3de75", + "https://deno.land/x/lume@v2.1.4/types.ts": "80cd59bcb94955ea5cfcb8f23a88db5a3f6e241d5e12d2f8b970af660eca3c15", + "https://deno.land/x/vento@v0.12.5/deps.ts": "ba5e6dc00dbc6f89290b8c7614a15a1cf19b6891dc424617466fb29b7d4b913a", + "https://deno.land/x/vento@v0.12.5/mod.ts": "1c226f165e6c995bcb0f68b7d78623c263ea7bc3e0dae131617fd053703bc742", + "https://deno.land/x/vento@v0.12.5/plugins/echo.ts": "f7c064fb6d34b29852f46f6e01583ed87656dcbbc5cae51c8f29198d6951d0cf", + "https://deno.land/x/vento@v0.12.5/plugins/escape.ts": "605511d54319fb07d63428e16b6ece96f04f8abafc97d9f8e6643d9c1579fb42", + "https://deno.land/x/vento@v0.12.5/plugins/export.ts": "ef54811ed0205aaeef6ad09557c94b8ae98e1457234898da5a1c5461a7dcf424", + "https://deno.land/x/vento@v0.12.5/plugins/for.ts": "7cfd603cc5ef0a46011b6c8a2cdca25c84945faa29baf56a0a1396f856852397", + "https://deno.land/x/vento@v0.12.5/plugins/function.ts": "cdf610a98493e4a093c53473abdad7d47cbcff40aa8362d280e39910620cb8d6", + "https://deno.land/x/vento@v0.12.5/plugins/if.ts": "9de295f8675cacaec7866ad21068b6b089bfcadf72d3c62e1df50ca378c04279", + "https://deno.land/x/vento@v0.12.5/plugins/import.ts": "406204ab9d785db206da5d5cbcffa9a111cef2a39a19574e630cdea89b0691c5", + "https://deno.land/x/vento@v0.12.5/plugins/include.ts": "feeb3621517759d45ed3b62d581084baf08f943a1a0689c1f28e59bac3bc04e2", + "https://deno.land/x/vento@v0.12.5/plugins/js.ts": "4ce7742b9454c64c19a20b1f8e43ced54d776c89fe4d698ae68c896034f5bb3f", + "https://deno.land/x/vento@v0.12.5/plugins/layout.ts": "b7428ddb0db60338050837ff8f41db1cccbf650bf44bba72eea5a1f62c1729db", + "https://deno.land/x/vento@v0.12.5/plugins/set.ts": "9b20f4f699f592b159fe81994ee5902d29417228ca1b66ff96df86803d39e701", + "https://deno.land/x/vento@v0.12.5/plugins/trim.ts": "708dedbf068c4a9a0f568505fcfce84370530a4e4333254571d4fc2e4f652529", + "https://deno.land/x/vento@v0.12.5/plugins/unescape.ts": "92d5cd2f5c256cc50f3cde2b14efb49dd40518b2bd74ad6f1a695a80210496ea", + "https://deno.land/x/vento@v0.12.5/src/environment.ts": "6fa89a131b884147ab473412e0631f9925c14975b97777b5549a74b5fcdd2ccf", + "https://deno.land/x/vento@v0.12.5/src/js.ts": "c4ac5e2b2cd2995523d3167c5708c424686fd30d2d3951ff965a76dbdfb74e37", + "https://deno.land/x/vento@v0.12.5/src/loader.ts": "eb01b0dca7ea8bcdcdfd30b1f90f2fad28fb7f2cfd943900322a85bfaa86130c", + "https://deno.land/x/vento@v0.12.5/src/tokenizer.ts": "acafb05ca528a27cb99bb1c34765362fc0a4dc2982848dd4b7983e27dcb17d69", + "https://deno.land/x/vento@v0.12.5/src/transformer.ts": "4f49beff489374859b7fb4c2abdb5d44d2485917ed96c6252571912923f51090", + "https://deno.land/x/xml@2.1.3/mod.ts": "4a314a7a28d1ec92f899ce4c6991f0356c77550a75955ec3f4a36733f08548e8", + "https://deno.land/x/xml@2.1.3/parse.ts": "614b8648345ae93c641368836947484d321c7ac9312ae12ec750434353cd7385", + "https://deno.land/x/xml@2.1.3/stringify.ts": "930d35431f153b29d36549cff08fcfbe978e52ccb56af1e3baa2e0760f418b04", + "https://deno.land/x/xml@2.1.3/utils/parser.ts": "263e06191bf7ec983eb542743f377f29f8a715590d67d1ffe4c848dd13389452", + "https://deno.land/x/xml@2.1.3/utils/stream.ts": "056e2f368d47932d77e431bbc4a8292359171cc9ce881ea31ce0aae30d763e68", + "https://deno.land/x/xml@2.1.3/utils/streamable.ts": "1603a5f10c859b95d4e9502365a0fba0b19d5d068356e20d5a6813cd37fee780", + "https://deno.land/x/xml@2.1.3/utils/stringifier.ts": "c701b506835237c0c6c0a08fd94e0a012b644def3f4c819c64788daf2e649ea3", + "https://deno.land/x/xml@2.1.3/utils/types.ts": "ecaf7785e54a6f1da6f8e56da2bce9853407ceb7d5b3b70f0a60a0890151fe4c", + "https://esm.sh/@csstools/postcss-design-tokens@3.1.5": "808d10b23c9ce7c5f5f3d40b0e097c92fe20cb5521419ff82a7eff95194d355b", + "https://esm.sh/hastscript@9.0.0": "2593f19b64c9652d947dadf1c6a7bc59ed5574020c7fb2a182b35774c0b6f1d7", + "https://esm.sh/postcss-utopia@1.0.1": "05bdd654dd1151c98859237389486780f2cb9cc48ef6221bd3ca318937b14386", + "https://esm.sh/rehype-autolink-headings@7.1.0": "66d11d07f8e5cc477b261c80652bf3004706408c6016712a160cc83149a2c04a", + "https://esm.sh/rehype-components@0.3.0": "81b83c1611107ee00cc6aaeb26c6b45595248fe1a1daf1b4786d5c400b990768", + "https://esm.sh/rehype-slug@6.0.0": "e806dd9c81a7d6dcbd3850febbdbf204b37cecb551a2b3159a1be0abaf228c6c", + "https://esm.sh/remark-directive@3.0.0": "5163a615ad913b8b7a3ad1e9f8d3a2313d49ee09ffcebb24e7d9d9c5dc2dcd92", + "https://esm.sh/remark-smartypants@3.0.1": "5c17bed1ddac437196c345c2d7a6166038f572cfb1d94cabdaa95cd74b7b91a1", + "https://esm.sh/remark-toc@9.0.0": "15375f467d541e8ba1dd52ca58805597dd3def38e803bde25444d4e3748d27e5", + "https://esm.sh/v135/@csstools/css-parser-algorithms@2.6.1/denonext/css-parser-algorithms.mjs": "9793aed5208405e6dad807e43308808d569c0793b7ffe07b9fa4cc0b84f274a7", + "https://esm.sh/v135/@csstools/css-tokenizer@2.2.4/denonext/css-tokenizer.mjs": "b041d751af1a0c6f35939d4c4b311c3118bd2bf5b128cc4327ba01431425378d", + "https://esm.sh/v135/@csstools/postcss-design-tokens@3.1.5/denonext/postcss-design-tokens.mjs": "f516ecb7145c4190aa51dc87059f2f84157bfcdc04dd922768ff52cc288aa583", + "https://esm.sh/v135/@ungap/structured-clone@1.2.0/denonext/structured-clone.mjs": "e683ab48ef7a3afd3bce9d1589d14177ddbdbf76fa1483524dddbeb6b142469f", + "https://esm.sh/v135/array-iterate@2.0.1/denonext/array-iterate.mjs": "5e35cc886f0a434c4c3326e6e8b0432f3340cfb16746ef0f53d5a64f5685ef57", + "https://esm.sh/v135/bail@2.0.2/denonext/bail.mjs": "cab740cf24417dfad8567cbb78a49ae7e492ecca299f2b3185520805aba4d073", + "https://esm.sh/v135/character-entities-html4@2.1.0/denonext/character-entities-html4.mjs": "0b4e64d1b0152acbeec6d854eadce6ceb2de05b0f459ad47485afa206f745f10", + "https://esm.sh/v135/character-entities-legacy@3.0.0/denonext/character-entities-legacy.mjs": "5da76ada1554e4956dc6b702ba92b56a3faf158b24bf45279c522e85f5d9cd21", + "https://esm.sh/v135/character-entities@2.0.2/denonext/character-entities.mjs": "9e8657f056310ac3ca8058eaf96cef695ee13a4bf6c302674796a882464f305c", + "https://esm.sh/v135/character-reference-invalid@2.0.1/denonext/character-reference-invalid.mjs": "41034e591247fb2bc6a12dd190e776b84cfe1da74e984fef3efbff2a97814d53", + "https://esm.sh/v135/comma-separated-tokens@2.0.3/denonext/comma-separated-tokens.mjs": "ad5df8a36487e0a63d15bbbb6bab8b153e08583d0d5eb6d0058cd0fc619252e0", + "https://esm.sh/v135/decode-named-character-reference@1.0.2/denonext/decode-named-character-reference.mjs": "1a5a8f9cbe302be478e964ab701be8644dbdfd4d8ce9f14de186cf84ee2a4bc1", + "https://esm.sh/v135/devlop@1.1.0/denonext/devlop.mjs": "05fffa5a5168daec45963b784734dbc468758e130a340af874adfe0d457e394a", + "https://esm.sh/v135/extend@3.0.2/denonext/extend.mjs": "6ab9e4890dfa54ec88fa326fca525c211141d6da72188f54e9610d1281219c9e", + "https://esm.sh/v135/github-slugger@2.0.0/denonext/github-slugger.mjs": "42ff6fe7ba4f63d8a048970e5a32cd5b0348905dde3f9e270d90e44a6e7635ae", + "https://esm.sh/v135/hast-util-heading-rank@3.0.0/denonext/hast-util-heading-rank.mjs": "e246a2970de527835b62651d5c38bb0be5031eb1f74e336bb7315a257db6d527", + "https://esm.sh/v135/hast-util-is-element@3.0.0/denonext/hast-util-is-element.mjs": "d6abf8aaf1da9775a8731295649387cf59ceb0b50eae25953bee6ea9af8043af", + "https://esm.sh/v135/hast-util-parse-selector@4.0.0/denonext/hast-util-parse-selector.mjs": "bd794c65760a29b2ba20eef4de4f94d4b480a45ae01d2047957143a37e4adbb5", + "https://esm.sh/v135/hast-util-to-string@3.0.0/denonext/hast-util-to-string.mjs": "4f7c061733fa8e99e3055e443c09a8d4e7f6e95ccd7a06b61d38682989bf6ba8", + "https://esm.sh/v135/hastscript@9.0.0/denonext/hastscript.mjs": "30c8562cced3e4f8d4f1afb374220bb3faf1e12adf1fdb2ea2dd668b8cb58c2d", + "https://esm.sh/v135/is-alphabetical@2.0.1/denonext/is-alphabetical.mjs": "d0feb3b8b248c1c89544825a12db253946e94532c3ba2df47c5ce9ed06a10242", + "https://esm.sh/v135/is-alphanumerical@2.0.1/denonext/is-alphanumerical.mjs": "978a2d980f37c9b42b82e6dc915455d43a9ba5f7d11c6f314d5ef5694ed9427e", + "https://esm.sh/v135/is-decimal@2.0.1/denonext/is-decimal.mjs": "d58375f587816fc947898747f8e6986158dec29151c185e7a510641b17668e46", + "https://esm.sh/v135/is-hexadecimal@2.0.1/denonext/is-hexadecimal.mjs": "7e5d0abd99e5d66839f55c05df59e144465bfa47ce974815557481d53d6fd919", + "https://esm.sh/v135/is-plain-obj@4.1.0/denonext/is-plain-obj.mjs": "d3d86a7174ad7935de7b00f904b6424c103bce530c502efb7f42114cbb1a555f", + "https://esm.sh/v135/mdast-util-directive@3.0.0/denonext/mdast-util-directive.mjs": "704eea2ba252ce96e661c3be1d858f537d9dd6bc71aec0822e07171f052a55fe", + "https://esm.sh/v135/mdast-util-to-string@4.0.0/denonext/mdast-util-to-string.mjs": "eda9725fc0c7dc0e7b56998d2d8e4f29312cc5493cb7834c70f32fab2609103b", + "https://esm.sh/v135/mdast-util-toc@7.0.0/denonext/mdast-util-toc.mjs": "533c8f1317129350db102e9116b48b03e12e327a203852bb3d16d5ffb217d07c", + "https://esm.sh/v135/micromark-extension-directive@3.0.0/denonext/micromark-extension-directive.mjs": "af14120ebe843e4fa3b32ab2889dee2cb1bf3484571fe0b304d3789f623c5f66", + "https://esm.sh/v135/micromark-factory-space@2.0.0/denonext/micromark-factory-space.mjs": "1ac7c90dec53f7f634767c5470c2dcf204f4df99ec318a27832786153d5c8110", + "https://esm.sh/v135/micromark-factory-whitespace@2.0.0/denonext/micromark-factory-whitespace.mjs": "f85efacaec053453a9445b4147d2fb7ce02c1d083f0b0da9a730a112ff934d9e", + "https://esm.sh/v135/micromark-util-character@2.0.1/denonext/micromark-util-character.mjs": "18b451d148e1ccc3a9b18e5c4061d44a0485e8ec65ad805d20b2950a51c7213b", + "https://esm.sh/v135/nlcst-to-string@4.0.0/denonext/nlcst-to-string.mjs": "7316bb56d5e7f4d7f7704b4b01ba7e179cc01d5f9d3c3cdd104413715d07afae", + "https://esm.sh/v135/parse-entities@4.0.1/denonext/parse-entities.mjs": "d850db8f1291c1f42a880afb290f6c0774871651092c3fed6f9dedfee8f971c4", + "https://esm.sh/v135/parse-latin@7.0.0/denonext/parse-latin.mjs": "e89d8421f5ec32255f9642b6ecee08e50f3ae8c45e4bed93a27efea1343a843b", + "https://esm.sh/v135/postcss-utopia@1.0.1/denonext/postcss-utopia.mjs": "3838e3985e633bacbd4834636e82031d2cdea80816be23718a9dedd5e8beaaea", + "https://esm.sh/v135/postcss-value-parser@4.2.0/denonext/postcss-value-parser.mjs": "0873445cb149a5a1d815b526f77a989991ee196cbbc578c508f44c9974d7505c", + "https://esm.sh/v135/property-information@6.4.0/denonext/property-information.mjs": "8a61ad4cc589e3a30c752bd2eea7703cf286139c919f55f4fd289b90a7ac65a9", + "https://esm.sh/v135/property-information@6.5.0/denonext/property-information.mjs": "462b8eb379aa32acbc3c144ad6e9442bc96f01c766e10d6467a121c80d62ab71", + "https://esm.sh/v135/rehype-autolink-headings@7.1.0/denonext/rehype-autolink-headings.mjs": "73cb4db0d8e339c15f4484a4c59241d5e3ff5e65d8e3a77c14ee06d6311cb323", + "https://esm.sh/v135/rehype-components@0.3.0/denonext/rehype-components.mjs": "436065f161f5dbdeb37192234055e2d6897edd3707dd2a395e46ea20c1efa634", + "https://esm.sh/v135/rehype-slug@6.0.0/denonext/rehype-slug.mjs": "bc9b9d4d864da2e40c57425f0a993e8eb7e68bb12a07c93442b76d2c2663c99e", + "https://esm.sh/v135/remark-directive@3.0.0/denonext/remark-directive.mjs": "053b6ef0c56b84368728d0e700129be6f916002ab0fdcedc4cd25be98723bf8d", + "https://esm.sh/v135/remark-smartypants@3.0.1/denonext/remark-smartypants.mjs": "64488f98a8aa5b5034dcd44b3716ea73f09af319f96fc98eb6d1ab0c0d9335d8", + "https://esm.sh/v135/remark-toc@9.0.0/denonext/remark-toc.mjs": "56782a63d575624f318e5057ff25c1a1108c201eca6adcb4f89cf1d4b4c4b5af", + "https://esm.sh/v135/retext-latin@4.0.0/denonext/retext-latin.mjs": "2d2457bf406d3b53daa219447fa8f783f0b83f4595465c25f1f0673ec19bdb73", + "https://esm.sh/v135/retext-smartypants@6.1.0/denonext/retext-smartypants.mjs": "5a2e599cbfc28ba6fe69938585e312bd36b0ce6d4523942ebc403b7a33bb36f6", + "https://esm.sh/v135/retext-stringify@4.0.0/denonext/retext-stringify.mjs": "70654a303242e8201cd263db6bc3ce0d5dc4409647d5066b89185dac2d81daa6", + "https://esm.sh/v135/retext@9.0.0/denonext/retext.mjs": "80e7d2ae28111e9e8a922c6b0cb56537edf74d6f839324f17ccfd5b2c48638dc", + "https://esm.sh/v135/space-separated-tokens@2.0.2/denonext/space-separated-tokens.mjs": "f30773a9959cacfe7511c250e5d125a9f88ee00d3aef6e87b4d17fe49806b276", + "https://esm.sh/v135/stringify-entities@4.0.3/denonext/stringify-entities.mjs": "379aaecccdf6a05e9725a5eff4de4fa61193f0a793ddacaa1033f071bd0e2842", + "https://esm.sh/v135/trough@2.1.0/denonext/trough.mjs": "d7c1b66bf8739a28bcc6bbf17919f6b54b7b25cceabfb0e694d192232c83f1fd", + "https://esm.sh/v135/unified@11.0.4/denonext/unified.mjs": "53c0d08ac60e982cbceb7b51cecbe72412a16e2b8c2d373c9533ab1750ff54e6", + "https://esm.sh/v135/unist-util-is@6.0.0/denonext/unist-util-is.mjs": "d92da46b3a1084450f150cc06c02f3bf85b93ab4c4b43a960d72a4f5678e95cc", + "https://esm.sh/v135/unist-util-modify-children@4.0.0/denonext/unist-util-modify-children.mjs": "02db5659e28b724ea15cf2a86d9ebd7a6f7c0cc0f2406c8ea06887c3b1b28862", + "https://esm.sh/v135/unist-util-stringify-position@4.0.0/denonext/unist-util-stringify-position.mjs": "dabd32cb2b590bbb077fc6f6591a2e065cffd6c55646ba383455926a27ea64d7", + "https://esm.sh/v135/unist-util-visit-children@3.0.0/denonext/unist-util-visit-children.mjs": "55bdfbefaee64138355654df4e9dc1b6336dc48e9477a06b6eec9c15d4249334", + "https://esm.sh/v135/unist-util-visit-parents@6.0.1/denonext/do-not-use-color.js": "a1c0a6b93471dd4ed996804dd8a2b9f753c83c4a2da98373253e6b312c8492e2", + "https://esm.sh/v135/unist-util-visit-parents@6.0.1/denonext/unist-util-visit-parents.mjs": "5f7ececae47bea6d87b7e323153a7415ad8f299dc42e61aefda6d28eaf264c64", + "https://esm.sh/v135/unist-util-visit@5.0.0/denonext/unist-util-visit.mjs": "6c1b5b3d517cc6dbc88406b2dbab1735d503a797e994dbd4a89f3764098318f7", + "https://esm.sh/v135/utopia-core@1.3.0/denonext/utopia-core.mjs": "717995ab0cc912cd16f899f07757c653583800cf5dc757565fc92921ecd6a4b3", + "https://esm.sh/v135/vfile-message@4.0.2/denonext/vfile-message.mjs": "efc85b18bedda337fb1c20cdc452fac3addac32ee55948cebf2845396ae641ac", + "https://esm.sh/v135/vfile@6.0.1/denonext/do-not-use-conditional-minpath.js": "9a7ca0443aa0dff4d6a74822ba54cd1a5077a75d2f740d4d99cd8897a7f62a3c", + "https://esm.sh/v135/vfile@6.0.1/denonext/do-not-use-conditional-minproc.js": "34e683b50c7d1e17a90a522afafcdb032ceaeff2e0eb5dbca28f9b4783de73ba", + "https://esm.sh/v135/vfile@6.0.1/denonext/do-not-use-conditional-minurl.js": "79e90ed8915870371874d7ca17f8cbb3a8cab5b4e054bbcff85f7c91df32d0ba", + "https://esm.sh/v135/vfile@6.0.1/denonext/vfile.mjs": "31065c960cf79824afc0bc6890688c540f09d067eb5415effb7fafac6ef33c13" + } +} diff --git a/src/_data.yaml b/src/_data.yaml new file mode 100644 index 0000000..1861f86 --- /dev/null +++ b/src/_data.yaml @@ -0,0 +1,14 @@ +--- +translation_of: translation of +translated_into: translated into + +nl: + +langnames: + nl: + translation_of: vertaling van + translated_as: vertaald als + en: + translation_of: translation of + translated_as: translated as + diff --git a/src/_data/contact.yml b/src/_data/contact.yml new file mode 100644 index 0000000..82d4fb3 --- /dev/null +++ b/src/_data/contact.yml @@ -0,0 +1,2 @@ +text: | + Contact me at hans [at] this domain. diff --git a/src/_includes/functions/next_prev_links.vto b/src/_includes/functions/next_prev_links.vto new file mode 100644 index 0000000..674f24f --- /dev/null +++ b/src/_includes/functions/next_prev_links.vto @@ -0,0 +1,22 @@ +{{export function nextPrev (url, query) }} +{{ set prev = search.previousPage(url, query) }} +{{ set next = search.nextPage(url, query) }} + + + +{{/export}} + + + diff --git a/src/_includes/layouts/alles.vto b/src/_includes/layouts/alles.vto new file mode 100644 index 0000000..2db2897 --- /dev/null +++ b/src/_includes/layouts/alles.vto @@ -0,0 +1,32 @@ +--- +layout: layouts/wrapper.vto +--- + +

{{title}}

+ +

Artikelen

+

in volgorde van datum

+ +

EN:See the list of English articles here

+{{for item of search.pages("url^=/nl/articles lang=nl", "date=desc")}} +

{{item.title}}{{item.date |> date('DATE')}}

+{{/for}} + + +

Notes

+

(Mostly in English)

+

by date

+ +{{for item of search.pages("url^=/notes", "date=desc")}} +

{{item.title}}{{item.date |> date('DATE')}}

+{{/for}} + +

Andere Pagina's

+ + +{{for item of search.pages("!url^=/articles !url^= !url^=/notes !url^=/changelog")}} +

{{item.title}}{{item.date |> date('DATE')}}

+{{/for}} + + + diff --git a/src/_includes/layouts/changelog-entry.vto b/src/_includes/layouts/changelog-entry.vto new file mode 100644 index 0000000..f43545a --- /dev/null +++ b/src/_includes/layouts/changelog-entry.vto @@ -0,0 +1,6 @@ +--- +layout: layouts/wrapper.vto +--- +

← Changelog

+ +{{include "partials/article.vto" {item: page.data} }} diff --git a/src/_includes/layouts/changelog.vto b/src/_includes/layouts/changelog.vto new file mode 100644 index 0000000..5024c7e --- /dev/null +++ b/src/_includes/layouts/changelog.vto @@ -0,0 +1,17 @@ +--- +layout: layouts/wrapper.vto +--- + +

{{title}}

+ +{{console.log( page.data.url)}} + +{{- content -}} + + +{{set items = search.pages("url^=/changelog level!=index ", "date=desc")}} +{{ for item of items }} +

{{item.title}}{{item.date |> date('DATE')}}

+{{/for}} + +{{page.data.notes |> md}} diff --git a/src/_includes/layouts/everything.vto b/src/_includes/layouts/everything.vto new file mode 100644 index 0000000..576a831 --- /dev/null +++ b/src/_includes/layouts/everything.vto @@ -0,0 +1,31 @@ +--- +layout: layouts/wrapper.vto +--- + +

{{title}}

+ +

Articles

+

by date

+ +

🇳🇱 Zie ook de lijst van alle Nederlandse artikelen hier

+{{for item of search.pages("url^=/articles lang=en", "date=desc")}} +

{{item.title}}{{item.date |> date('DATE')}}

+{{/for}} + + +

Notes

+

by date

+ +{{for item of search.pages("url^=/notes", "date=desc")}} +

{{item.title}}{{item.date |> date('DATE')}}

+{{/for}} + +

Other pages

+ + +{{for item of search.pages("!url^=/articles !url^=/notes !url^=/changelog !url^=/nl/")}} +

{{item.title}}{{item.date |> date('DATE')}}

+{{/for}} +

Changelog

+ + diff --git a/src/_includes/layouts/index.vto b/src/_includes/layouts/index.vto new file mode 100644 index 0000000..1573835 --- /dev/null +++ b/src/_includes/layouts/index.vto @@ -0,0 +1,9 @@ +--- +layout: layouts/wrapper.vto +--- + + {{- content -}} + + {{set item = search.page("url^=/articles", "date=desc")}} + {{include "partials/article.vto" {on_homepage: true} }} + diff --git a/src/_includes/layouts/page.vto b/src/_includes/layouts/page.vto new file mode 100644 index 0000000..8d4921f --- /dev/null +++ b/src/_includes/layouts/page.vto @@ -0,0 +1,6 @@ +--- +layout: layouts/wrapper.vto +--- + +{{include "partials/article.vto" {item: page.data} }} + diff --git a/src/_includes/layouts/thread.vto b/src/_includes/layouts/thread.vto new file mode 100644 index 0000000..01eb438 --- /dev/null +++ b/src/_includes/layouts/thread.vto @@ -0,0 +1,21 @@ +--- +layout: layouts/wrapper.vto +--- + +{{- content -}} + + +{{ set pages = search.pages("thread="+page.data.threadId) }} + +{{if pages }} + +{{for page of pages }} +

{{page.title}}

+ + +{{/for}} + + +{{/if}} + + diff --git a/src/_includes/layouts/wrapper.vto b/src/_includes/layouts/wrapper.vto new file mode 100644 index 0000000..c5e5f69 --- /dev/null +++ b/src/_includes/layouts/wrapper.vto @@ -0,0 +1,66 @@ + + + + + + + + + + + +
+ +
+
+ + Logo + +
+ + + +
+ +
+ +
+ + {{- content -}} + +
+ + + + + + + diff --git a/src/_includes/partials/article.vto b/src/_includes/partials/article.vto new file mode 100644 index 0000000..6ec09fc --- /dev/null +++ b/src/_includes/partials/article.vto @@ -0,0 +1,22 @@ +{{import {nextPrev} from 'functions/next_prev_links.vto'}} +{{if on_homepage}} +

Latest article

+{{/if}} + + +

{{item.title}}

+{{if item.page.data.translated }} + {{set translation = search.page("id="+item.page.data.translated)}} + {{if translation }} +

{{langnames[translation.page.data.lang]["translated_as"]}}/{{langnames[lang]["translated_as"]}}: {{translation.page.data.title}}

+ {{/if}} +{{else if item.page.data.translates }} + {{set translation=search.page("id="+item.page.data.translates)}} + {{if translation }} + {{console.log(translations)}} +

{{langnames[lang]["translation_of"]}}/{{langnames[translation.page.data.lang]["translation_of"]}}: {{translation.page.data.title}}

+ {{/if}} +{{/if}} +{{item.content |> md}} +{{nextPrev(item.url, 'url^=/articles')}} + diff --git a/src/_includes/styles/comp/space.css b/src/_includes/styles/comp/space.css new file mode 100644 index 0000000..a5634f5 --- /dev/null +++ b/src/_includes/styles/comp/space.css @@ -0,0 +1,61 @@ +/*stack: vertical spacing between elements*/ + +/*.stack * {*/ + /*margin-block-end: 0;*/ +/*}*/ + +/*The basics of stacking or flow. All 'joining' elements get a leading margin of line-height.*/ +.stack > * + * { + --space: var(--line-height); + margin-block-start: var(--space); +} + +h1, h2, h3, h4, h5 { + margin-block-end: calc(var(--space) * 0.58); +} + + +/*In the following, we will override this setting for flow items which should have more spacing. + * This is mostly headings. + * instead of growing from line-height, though, we are going to use the utopia-generated fluid space variables. + * The key is that the --space variable gets reassigned for each type.*/ + + +.stack h1{ + --space: var(--space-xl-2xl); +} + + +/*.stack h1 + * {*/ + /*--space: calc(var(--space) * 0.666);*/ +/*}*/ +.stack h2{ + --space: var(--space-l-xl); +} + +/*.stack h2 + * {*/ + /*--space: calc(var(--space) * 0.666);*/ +/*}*/ + +.stack h3 { + --space: var(--space-l); +} + +/*.stack h3 + * {*/ + /*--space: calc(var(--space) * 0.666);*/ + +/*}*/ + + +.stack h4 { + --space: var(--space-m); +} + +/*.stack h4 + * {*/ + /*--space: calc(var(--space) * 0.666)*/ +/*}*/ + +/*This special case seems necessary because the * + * selector doesn't match the first item.*/ +.stack > :nth-child(1) { + margin-block-start: var(--space); +} diff --git a/src/_includes/styles/footer.css b/src/_includes/styles/footer.css new file mode 100644 index 0000000..de9c612 --- /dev/null +++ b/src/_includes/styles/footer.css @@ -0,0 +1,9 @@ +footer h1 { + font-size: 1.5rem; +} + +footer > .wrapper { + display: flex; + flex-wrap: wrap; + gap: var(--space-3xl); +} diff --git a/src/_includes/styles/global/global.css b/src/_includes/styles/global/global.css new file mode 100644 index 0000000..663b7bb --- /dev/null +++ b/src/_includes/styles/global/global.css @@ -0,0 +1,9 @@ +html { + background-color: tkn('colors.mist'); +} +body { + color: tkn('colors.dark'); + padding: 0 3px; + line-height: var(--line-height); +} + diff --git a/src/_includes/styles/global/normalize.css b/src/_includes/styles/global/normalize.css new file mode 100644 index 0000000..fbda3ef --- /dev/null +++ b/src/_includes/styles/global/normalize.css @@ -0,0 +1,350 @@ +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ + +/* Document + ========================================================================== */ + +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ + +html { + /*line-height: 1.15; [> 1 <]*/ /*set in my css*/ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/* Sections + ========================================================================== */ + +/** + * Remove the margin in all browsers. + */ + +body { + margin: 0; +} + +/** + * Render the `main` element consistently in IE. + */ + +main { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + +hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +pre { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Remove the gray background on active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + +abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + text-decoration: underline dotted; /* 2 */ +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +code, +kbd, +samp { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** + * Add the correct font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove the border on images inside links in IE 10. + */ + +img { + border-style: none; +} + +/* Forms + ========================================================================== */ + +/** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + +button, +input { /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + +button, +select { /* 1 */ + text-transform: none; +} + +/** + * Correct the inability to style clickable types in iOS and Safari. + */ + +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +/** + * Remove the inner border and padding in Firefox. + */ + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ + +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ + +fieldset { + padding: 0.35em 0.75em 0.625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + +legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +progress { + vertical-align: baseline; +} + +/** + * Remove the default vertical scrollbar in IE 10+. + */ + +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ + +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + +[type="search"] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/** + * Remove the inner padding in Chrome and Safari on macOS. + */ + +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* Interactive + ========================================================================== */ + +/* + * Add the correct display in Edge, IE 10+, and Firefox. + */ + +details { + display: block; +} + +/* + * Add the correct display in all browsers. + */ + +summary { + display: list-item; +} + +/* Misc + ========================================================================== */ + +/** + * Add the correct display in IE 10+. + */ + +template { + display: none; +} + +/** + * Add the correct display in IE 10. + */ + +[hidden] { + display: none; +} + diff --git a/src/_includes/styles/global/typography.css b/src/_includes/styles/global/typography.css new file mode 100644 index 0000000..9170b1e --- /dev/null +++ b/src/_includes/styles/global/typography.css @@ -0,0 +1,99 @@ + +@font-face { + font-family: "Charter"; + src: url('/static/fonts/charter_bold.woff2'); + font-weight: bold; +} +@font-face { + font-family: "Charter"; + src: url('/static/fonts/charter_italic.woff2'); + font-style: italic; +} +@font-face { + font-family: "Charter"; + src: url('/static/fonts/charter_bold_italic.woff2'); + font-weight: bold; + font-style: italic; +} +@font-face { + font-family: "Charter"; + src: url('/static/fonts/charter_regular.woff2'); + font-style: normal; + font-weight: normal; +} + +@font-face { + font-family: 'Charis'; +} +/*@font-face {*/ + /*font-family: "Comfortaa";*/ + /*src: url('/static/fonts/Comfortaa-VariableFont_wght.ttf');*/ +/*}*/ +/*@font-face {*/ + /*font-family: "Montserrat";*/ + /*font-style: normal;*/ + /*src: url('/static/fonts/Montserrat-VariableFont_wght.ttf');*/ +/*}*/ +:root { + @utopia typeScale({ + minWidth: 320, + maxWidth: 1240, + minFontSize: 16, + maxFontSize: 20, + minTypeScale: 1.2, + maxTypeScale: 1.25, + positiveSteps: 5, + negativeSteps: 2, + prefix: "step", + }); +} + +:root { + --text-color: tkn('colors.dark'); + --heading-color: tkn('colors.dark'); + --link-color: tkn('colors.dark'); + --link-color-visited: tkn('colors.dark'); + --link-color-hover: tkn('colors.blue'); +} + +html { + font-family: 'Charter', serif; + font-style: normal; + font-size: var(--step-0); + color: var(--text-color); + line-height: 1.4em; +} + +h1, h2, h3, h4, h5, h6, header, .hero-text { + color: var(--heading-color); + font-weight: bold; + line-height: initial; +} + +h1 { + font-size: var(--step-5); +} +h2 { + font-size: var(--step-3); +} +h3 { + font-size: var(--step-2); +} +h4 { + font-size: var(--step-1); +} + +/*From css-tricks: https://css-tricks.com/snippets/css/prevent-superscripts-and-subscripts-from-affecting-line-height/*/ +sup, sub { + vertical-align: baseline; + position: relative; + top: -0.4em; +} + +sub { + top: 0.4em; +} + +.emphasis { + font-style: italic; +} diff --git a/src/_includes/styles/global/variables.css b/src/_includes/styles/global/variables.css new file mode 100644 index 0000000..852fe18 --- /dev/null +++ b/src/_includes/styles/global/variables.css @@ -0,0 +1,21 @@ + +/* @link https://utopia.fyi/space/calculator?c=320,16,1.2,1240,20,1.25,5,2,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12 */ + +:root { + @utopia spaceScale({ + minWidth: 320, + maxWidth: 1240, + minSize: 16, + maxSize: 20, + positiveSteps: [1.5, 2, 3, 4, 6], + negativeSteps: [0.75, 0.5, 0.25], + customSizes: ["s-l"], + prefix: "space", + }); +} + +:root { + --line-height: tkn('leading.standard' to em); +} + + diff --git a/src/_includes/styles/grid.css b/src/_includes/styles/grid.css new file mode 100644 index 0000000..61cc6ad --- /dev/null +++ b/src/_includes/styles/grid.css @@ -0,0 +1,27 @@ +@design-tokens url('./design-tokens.json') format('style-dictionary3'); + +:root { + --padding-inline: tkn('spacing.padding-inline'); + --content-max-width: tkn('spacing.content-max-width'); + --breakout-max-width: calc(var(--content-max-width) + 250px); + + --breakout-size: calc( + (var(--breakout-max-width) - var(--content-max-width)) / 2 + ); + +} + +.content-grid { + + display: grid; + grid-template-columns: + [full-width-start] minmax(var(--padding-inline), 1fr) + [breakout-start] minmax(0, var(--breakout-size)) + [content-start] min( + 100% - (var(--padding-inline) * 2), + var(--content-max-width) + ) + [content-end] + minmax(0, var(--breakout-size)) [breakout-end] + minmax(var(--padding-inline), 1fr) [full-width-end]; +} diff --git a/src/_includes/styles/header.css b/src/_includes/styles/header.css new file mode 100644 index 0000000..1ac5fd7 --- /dev/null +++ b/src/_includes/styles/header.css @@ -0,0 +1,77 @@ +/*.header_layout {*/ + /*display: flex;*/ + /*flex-direction: row;*/ + /*justify-content: space-between;*/ + /*align-items: baseline;*/ +/*}*/ + +header { + background-image: url('/static/img/water1.jpg'); + background-image: url('/static/media/boot_demo_2048.jpg'); + background-size: cover; + background-position-y: center; + background-position-x: left; +} + +/*For images part of template, not content*/ +.template-img { + padding-top: var(--space-xs); + padding-bottom: var(--space-xs); + max-width: var(--space-xl-2xl); +} + + +ul.menu { + background-color: tkn('colors.text.main'); + list-style: none; +} + +/*ul.menu li {*/ + /*padding: 0 var(--space-2xs);*/ +/*}*/ + + +/*Now add flex for menu*/ +ul.menu { + display: flex; + flex-direction: row; + justify-content: space-between; + flex-wrap: wrap; + padding: 0 var(--space-xs); +} + +header > .wrapper { + display: flex; + justify-content: space-between; + flex-wrap: wrap; +} + + + +header > .wrapper > .logo-group { + min-width: 100px; + flex-grow: 1; + +} + + +/*Could we make the menu wrap with the same kind of technique?*/ + +nav { + max-width: 90%; +} + +ul.menu { + width: 100%; + --modifier: calc(650px - 100%); +} +ul.menu li { + min-width: fit-content; + flex-grow: 1; + padding: var(--space-xs); + flex-basis: calc(var(--modifier) * 999); +} + + + +/*I think the menu needs some breakpointing ...*/ diff --git a/src/about/index.md b/src/about/index.md new file mode 100644 index 0000000..61e1644 --- /dev/null +++ b/src/about/index.md @@ -0,0 +1,7 @@ +--- +layout: layouts/page.vto +title: About me +--- + +I'm a designer and builder. + diff --git a/src/alles.md b/src/alles.md new file mode 100644 index 0000000..74c78b7 --- /dev/null +++ b/src/alles.md @@ -0,0 +1,4 @@ +--- +layout: layouts/alles.vto +title: Alles +--- diff --git a/src/articles/_data.yml b/src/articles/_data.yml new file mode 100644 index 0000000..e77516f --- /dev/null +++ b/src/articles/_data.yml @@ -0,0 +1,8 @@ +layout: layouts/page.vto +articles_path: articles +notes_path: notes +nl: + articles_path: artikelen + notes_path: notities +# url: '/${page.data.lang}/${articles_path}/${page.data.slug}' + diff --git a/src/articles/gemenge-meertaligheid.md b/src/articles/gemenge-meertaligheid.md new file mode 100644 index 0000000..287f327 --- /dev/null +++ b/src/articles/gemenge-meertaligheid.md @@ -0,0 +1,50 @@ +--- +title: "Denkt jou website software in jouw tal(en)?" +date: 2024-10-31 +id: "trnslNL" +lang: nl +translates: "trnslEN" +--- + +_Dit is mijn inzending voor de [IndieWeb Carnaval editie october 2024](https://tilde.team/~zinricky/multilingualism/)._ + +Elk systeem om websites te vertalen moet een structuur imponeren, anders wordt de complexiteit te groot. Maar structuur brengt beperkingen. Je moet aannames maken over hoe texten-in-meerdere-talen-als-data zich tot elkaar gaan verhouden. + +Voor een grote zakelijke of overheidssite zijn die beperkingen het misschien waard omdat systematische, volledige vertaling de doelen van de organisatie bevordert. + +Maar dit is een persoonlijk website en het mag dus mijn manier van taalgebruik weerspiegelen. Ik ben opgegroeid in een zeer meertalige omgeving, waar taal en vertalen zelfs expliciete onderwerpen van aandacht waren vanwege het werk dat mijn ouders deden als expats. Hierdoor is mijn moedertaal eigenlijk een mix van talen. Als dat een onbekend idee is voor jou, kijk dan naar de eerste video op de Wikipedia pagina over [code-switching](https://en.wikipedia.org/wiki/Code-switching). + +Ik heb dus gereedschap nodig voor mijn website die een soort code-switching toestaat: op een ongestructureerde manier schakelen tussen talen. In de toekomst, wanneer deze site meer zakelijke doeleinden ondersteunt, zou een voorspelbare structuur met automatische links tussen vertalingen wel nuttig kunnen zijn. Maar zelfs dan zullen Engelse en Nederlandse delen waarschijnlijk voor verschillende doelgroepen worden geschreven. Of zal er nog steeds veel op één pagina gemengd willen worden. Technische documentatie heeft ten slotte van nature veel Engelse termen, ongeacht de hoofdtaal waarin het wordt geschreven. En Nederlanders kunnen over het algemeen wel wat Engels aan. + +Voor nu, echter, zijn doodgewone handgemaakte hyperlinks de beste manier om meertaligheid binnen documenten weer te kunnen geven. + +Het is licht ironisch dat de vertaling-links boven aan dit artikel en het Engelse origineel mijn probleem juist illustreren. + +Ik had de [Multilanguage Plugin](https://lume.land/plugins/multilanguage/) geïnstalleerd van de [static site generator Lume ](https://lume.land) die ik gebruik, maar het voegt taalcodes toe aan het begin van elke URL. Dat wil ik niet, om verschillende redenen waar ik het een andere keer over zal hebben. + +:::draft +Het dwingt je om keuzes te maken die ik helemaal niet wil maken, zoals hoe/of je artikelen in verschillende talen opneemt in overzichtslijsten op je site ... +::: + +Maar, hoewel ik dacht dat ik mijn code onafhankelijk had gemaakt van de plugin, gingen de links toch stuk toen ik die uitzette. Kennelijk had ik toch een variabel gebruikt die door de plugin werdt geïntroduceerd. Dus om dit artikel op tijd af te krijgen, moest ik kiezen tussen géén vertaling, of suboptimale URLs. + +Ik ga daarom links naar vertalingen met de hand toevoegen, niet automatisch. De enige automatisering zal wellicht zijn de markup genereren en de URLs opzoeken op basis van een kortere ID. Mijn code zal geen aannames maken over de URL structuur van artikelen in verschillende talen. Dat wil niet zeggen dat ik nooit dergelijke structuur zal willen hebben, maar het is nu nog te vroeg voor mij om die beslissing te maken. + +--- + +Stop de pers: gelukkig had onze gastheer ons tot 11:00 op 1 november gegeven om onze bijdragen in te sturen. Want vanochtend vroeg bedacht ik een oplossing. + +I was van plan om af te sluiten met de vraag of het Web uberhaupt mijn soort flexibele meertaligheid kan ondersteunen. Het Web is georganiseerd in domeinnamen, mappen en paden, en elke html zou idealiter een `lang=…` attribuut moeten hebben. Geen wonder dat elk vertaalsysteem allemaal rigiditeit introduceert, want ze zijn allemaal gebaseerd op een substraat die werkt met stricte scheidingen. + +Maar ik werd wakker uit een lichte slaap met een oplossing, in ieder geval een deeloplossing. Het was iets dat ik in de documentatie van Lume had gezien: een [selectie-mechanisme op niveau van een alinea](https://lume.land/plugins/multilanguage/#link-to-a-page-in-current-language). + +Net als alle oplossingen heeft ook deze zijn nadelen. In dit geval komt er wat meer markup bij die de auteur moet schrijven. Maar het idee is: afzonderelijke alinea's of hele pagina's kunnen een keuzeknop erboven krijgen om de taal te veranderen. + +Dit maakt het mogelijk om hele documenten te vertalen, of alleen delen ervan, zonder een afhankelijkheid van enige externe processen. Alles zit in de markup van een pagina. Je kunt hiermee bijvoorbeeld alleen de samenvatting bovenaan vertalen, of de paragrafen één voor één vertalen wanneer je tijd hebt. + +Dit kan aan de voorkant met enkel CSS worden gemaakt. Het genereren van HTML vergt wel wat sjabloon-scripting, maar dat is vrij simpel want het hoeft niet verder te kijken dan de huidige sectie of pagina. + +Ik zal binnenkort een demo hiervan maken. + + + diff --git a/src/articles/green-and-blue.md b/src/articles/green-and-blue.md new file mode 100644 index 0000000..91e954e --- /dev/null +++ b/src/articles/green-and-blue.md @@ -0,0 +1,10 @@ +--- +title: Green and blue of spring +date: 2024-05-08 13:14 +--- + +Every spring I'm amazed at how green the greens are and how blue the blues. + +![an oak tree against blue sky](/static/img/oaktree_may7.jpg) + +![poplars against blue sky with clouds](/static/img/poplars_may7.jpg) diff --git a/src/articles/making-yoghurt.md b/src/articles/making-yoghurt.md new file mode 100644 index 0000000..a06a8ec --- /dev/null +++ b/src/articles/making-yoghurt.md @@ -0,0 +1,84 @@ +--- +title: Low-tech, low-energy yoghurt making +draft: true +date: 2024-05-25 21:00 +--- + +I make yoghurt. I'm continuously tweaking and experimenting with the procedure, +to try to make it as efficient, easy, and low-energy as possible. + +There's a tension between taste/texture, energy use, and ease of the process. +Yoghurt is the result of various species of bacteria fermenting milk. +The bacteria in question are classified as 'thermophilic' meaning they +thrive in fairly warm temperatures of 30-50 degrees Celcius. +Since they need typically 8-12 hours to do their thing, +that's a not-insignificant amount of energy use. +Further, I usually heat the milk well above that first, for two reasons. + +First, for safety. Though I'm personally not too concerned about consuming +unpasteurized milk from healthy cows, I do like to reduce the risk +especially if things are going to be stored for a while. + +The second reason I heat the milk has more to to with taste. +Heating the milk to 91 degrees breaks down proteins in the milk, +which allows the bacteria to get a lot more done, +resulting in a very firm yoghurt which I much prefer. + +I probably like this so much because the yoghurt my mother used to make was so thick and firm. +But she made it with powdered milk, +which means you can 'supersaturate' the milk proteins. +Nowadays I avoid such heavily processed things as powdered milk. + +I like to try to do things as 'low tech' as possible, +to be mindful of energy use but also just because it's a fun challenge +that grows my skills and keeps me learning. +So my method of incubating yoghurt is with a 'hay box'. +That's an insulated container which keeps food hot/warm for slow cooking +(we do all our water-cooked foods in here, like potatoes or rice). +In our case it's a plywood box stuffed with eight centimetres of wool +that doubles as a seat. +So, for the long wait, I'm using no extra energy at all. +The yoghurt goes in at 49 degrees, and comes out the next morning, 8-12 hours later, +at around 38 degrees -- still within the yoghurt-making range. + +This phase is not only low-energy, it's extremely hands-off (I'm sleeping the whole time). +But it's getting everything too this point which is both energy- and attention intensive. +The effort required often would put me off doing it. +But I've persevered and can say that its starting to feel a lot easier, +thanks to practise and one piece of tech that I added to my process. + +That is a simple digital thermometer with a probe on a long cable, +and, crucially, a temperature alarm. It cost about 19 Euros. +This allows me to set-and-forget the milk in the heating process. +Before, I would have to be constantly checking and stirring, +especially as I approached boiling point, +to avoid the milk boiling over. + +There are also low-tech devices to alert for boiling over. +They're called pot minders or milk minders, +and they work by capturing and then releasing bubbles, +bouncing on the bottom of the pot and making a noise. +But I have not been able to find one for sale anywhere. +Moreover, the thermometer is useful for a multitude of things, +including makng the second phase, the cooldown, much easier too. + +The goal is to heat the milk to 85 or 90, then keep it there for ten or twenty minutes, +then cool it to 49, add the yoghurt starter, and then get it in the incubator as quickly as possible. +In order to have enough mass to maintain heat overnight, +I heat about three litres of water to 49 degrees, +and put the two or three pots of yoghurt, 600ml each, in there. + +The cooldown can go slow, but I usually speed it up by putting the pot of yoghurt in a tub of cold water. +The thermometer lets me cool it down as fast as possible and know when to stop. +It also helps me mix the water accurately. I pour boiling or near-boiling water +into cold water and stir, checking and repeating until I get the right temperature. + +Today I did this process, and I feel like I've hit on a routine that works well and is reproducable, +takes as little time as possible, and saves some energy. + +I re-use the cooling water as the basis for the incubating bath. Today this water was 27 degrees when it had +absorbed the energy from the heated milk. That saves quite a bit of energy since that's already a third of the difference from tap water (16 degrees) to my target of 49. I also had just enough of this warm water left over for washing up afterwards. + +I've always been hesitant to do this, for heygiene reasons. But I figure if I work really clean, and since the yoghurt +is sealed in the pots, it should be ok. I think if I was selling yoghurt I'd need to be more strict about this. + diff --git a/src/articles/mixed-multilingual-content.md b/src/articles/mixed-multilingual-content.md new file mode 100644 index 0000000..2fc8835 --- /dev/null +++ b/src/articles/mixed-multilingual-content.md @@ -0,0 +1,52 @@ +--- +title: "Does your site publishing system think in your language(s)?" +date: 2024-10-31 +id: "trnslEN" +lang: en +translated: "trnslNL" +--- + +_This is my entry for the [October 2024 IndieWeb Carnaval](https://tilde.team/~zinricky/multilingualism/)._ + + +Every framework for translating a website needs to impose some kind of structure. Whenever you add structure, you introduce tradeoffs. You need to make some assumptions about how content-in-languages-as-data are going to behave and relate to each other, otherwise the complexity of your information model will explode. Those assumptions invariably introduce inflexibility that limits what your system can handle. + +For a large corporate or government site, the limitations on flexibility might be worth it because exhaustive systematic translation furthers the organisations goals. + + +But this is a personal website and it gets to reflect my personal way of using language. And as someone who grew up in a very multilingual environment where language and translation were indeed always explicit topics of attention because of the work my parents were doing as expats, my native language is arguably a mix of several languages. If that sounds strange to you, check out the first video on the Wikipedia page about [code-switching](https://en.wikipedia.org/wiki/Code-switching), the act of mixing languages within a discourse unit. + + +So I need website-building tools that allow for the textual equivalent of code-switching. +In the future, when this site serves more business purposes, a more predictable structure with some automatic linking of translations might be useful. But even then, I suspect Dutch and English content will be either written for different audiences, or will still want to mix within a single page. It's the nature of technical documentation to include a lot of English, regardless of the main language, and Dutch people can generally handle a fair bit of English. + +But for now, plain handmade hyperlinks are the best way to represent the kind of sub-publication multilingualism I envision. + +Ironically, the links at the top of this article and it's Dutch translation illustrate the problem. + +I installed [Lume's](https://lume.land) [Multilanguage Plugin](https://lume.land/plugins/multilanguage/) to provide the links between translations. But it adds a language prefix to every URL, as seen on the Dutch version. I don't want that, for various reasons conceptual and technical, which I'll get into another time. + +:::draft +It forces you to make choices you don't want to make, like including different language articles in overview lists or not ... +::: + +However, while I thought my code ended up independent of the plugin, when I disabled it, my links broke. Without realizing it, I made them dependent on a variable which is defined by the plugin. So to finish this article on time, I was stuck with either no translations, or URLs that I didn't want. + +My plan is to add links to translations or other-language-versions by hand, as necessary. The only automation I'll add is the generating of the markup and maybe looking up the target URL using a shorter ID. My code will make no assumptions about the URLs of articles in different languages. It's not to say I'll never want that, but it's too early for me to make that decision yet. + +--- + +Stop press: luckily our host gave us until 11:00 on 1 November to submit our contributions. +Because early this morning I thought of a simple solution to my problem. + +I was going to conclude that I almost think the Web itself can't handle such flexible linguistic mixing, with the way it's organised into domain names, folders, and paths, with every HTML page strongly encouraged to include a single `lang=…` property. It's no wonder every site translation system ends up making choices that preclude the kind of fluidity I want, because they're based on a fabric which only works with strict separation. + +But I woke from light sleep with at least a partial solution in my head. It was, in fact, something I saw on Lume's documentation page itself: a [section-level switcher](https://lume.land/plugins/multilanguage/#link-to-a-page-in-current-language). + +Like all solutions it has its own tradeoffs; in this case, the author has to add some more markup to their document source. The idea is that individual paragraphs or whole sections get a selector above them to switch their language. + +This allows translating whole documents or just parts of them, without depending on any processing logic -- it's encoded in the markup. You could just translate the summary at the top, or translate the various sections as you have time, or translate the whole page. + +The selector/switcher can be implemented in CSS only. Processing the markup requires some template scripting, but it is fairly simle as it doesn't have to look beyond the current section or page. + +I'll make a demo as soon as I have time. diff --git a/src/articles/notes.md b/src/articles/notes.md new file mode 100644 index 0000000..a4a9467 --- /dev/null +++ b/src/articles/notes.md @@ -0,0 +1,25 @@ +--- +title: "Adding a 'notes' section to the site" +date: 2024-07-09 +--- + +I can't keep up with all the online discussion threads, and with all my ideas for those threads. +When I have time to work on an article on any subject, I want to reference all the articles on that subject. +But then my article becomes too big of a project to finish in the time I have available. + +So I'm doing what quite a few people do in this space: adding a 'notes' section. +The purpose is to help me feel less pressure on my writing. I can put my thoughts on the ongoing conversations out there, +without feeling like I have to full justice to everyone who has said wiser and more coherent things about the topic. + +After all, we're not really having a conversation. A conversation is when you're in the same room taking turns speaking and listening. + +We are doing something very valuable -- reading and referring to each others' writing -- but in the end it's asynchronous writing. + +#### Disclaimer +I shold probably have a disclaimer about my opinion on all these topics being subject to change. + +#### What to do with the Feed? +For now I'm going to keep the Notes section out of the RSS feed, which will only contain Articles. While I think about how I want to present the combination of notes and articles. + +#### Where to find them +You can find the notes on the [Everything](/everything/) page, below the 'Articles' section. diff --git a/src/changelog/24ub-1.md b/src/changelog/24ub-1.md new file mode 100644 index 0000000..c4a98c8 --- /dev/null +++ b/src/changelog/24ub-1.md @@ -0,0 +1,8 @@ +--- +title: 2024-10-08 — Unidentified Release +date: 2024-10-08 +--- + +* Added note [Creating a changelog](/notes/creating-a-changelog/) (502 words) + + diff --git a/src/changelog/24uc-1.md b/src/changelog/24uc-1.md new file mode 100644 index 0000000..1bf21bd --- /dev/null +++ b/src/changelog/24uc-1.md @@ -0,0 +1,7 @@ +--- +title: Release 24uc-1 – 2024-10-09 +date: 2024-10-09 +--- + +* Added note [Sketch: changelog commit workflow](/notes/sketch-changelog-commit-workflow/) (98 words, 1 drawing) + diff --git a/src/changelog/24uc-2.md b/src/changelog/24uc-2.md new file mode 100644 index 0000000..66b4991 --- /dev/null +++ b/src/changelog/24uc-2.md @@ -0,0 +1,8 @@ +--- +title: Release 24uc-2 – 2024-10-09 +date: 2024-10-09 +--- +* Added note [Publish first, release later](/notes/publish-first-release-later/) (175 words) + + + diff --git a/src/changelog/24uc-3.md b/src/changelog/24uc-3.md new file mode 100644 index 0000000..dfa1692 --- /dev/null +++ b/src/changelog/24uc-3.md @@ -0,0 +1,14 @@ +--- +title: Release 24uc-3 – 2024-10-09 — more notes about changelog +date: 2024-10-09 +--- + +Adds an article about what the units in the feed will be. + +Adds the final part of the previous note, [Publish first, release later](/notes/publish-first-release-later/), +as part of a test of the release workflow. + +* Added: [Changelog: what are the meaningful units?](/notes/changelog-units/) (514 words) +* Expanded: [Publish first, release later](/notes/publish-first-release-later/) (+99 words) + + diff --git a/src/changelog/24v1-1.md b/src/changelog/24v1-1.md new file mode 100644 index 0000000..27d5119 --- /dev/null +++ b/src/changelog/24v1-1.md @@ -0,0 +1,10 @@ +--- +title: Release 24v1-1 – 2024-10-15 +date: 2024-10-15 +--- + +Add a note about paper being advanced technology. +Very disjointed evening thoughts. +Publishing more to aim for my quota than for anything else. + +* Added: [Advanced technology isn't necessarily complex](/notes/paper-is-advanced-tech/) (115 words) diff --git a/src/changelog/24w5-1.md b/src/changelog/24w5-1.md new file mode 100644 index 0000000..16494ac --- /dev/null +++ b/src/changelog/24w5-1.md @@ -0,0 +1,12 @@ +--- +title: 24w5-1 IndieWeb Carnaval on Multilingualism +date: 2024-11-01 +--- + +This is my submission for the October 2024 IndieWeb Carnaval on the topic of multilingualism! + +Appropriately, I added a Dutch translation and page translation links, too. +However, the articles are mostly about how website translation frameworks don't do what I envision. + +Added: [Mixed Multilingual content](/articles/mixed-multilingual-content/) with Dutch translation: [Gemengde meertaligheid](/nl/articles/gemenge-meertaligheid/) + diff --git a/src/changelog/_data.yaml b/src/changelog/_data.yaml new file mode 100644 index 0000000..0d9f4b7 --- /dev/null +++ b/src/changelog/_data.yaml @@ -0,0 +1,2 @@ +--- +layout: layouts/changelog-entry.vto diff --git a/src/changelog/index.md b/src/changelog/index.md new file mode 100644 index 0000000..ee5a1a1 --- /dev/null +++ b/src/changelog/index.md @@ -0,0 +1,22 @@ +--- +layout: layouts/changelog.vto +title: Changelog +level: index +notes: | + ### Notes + This is how I generate the wordcount: + + ``` + sed '{ /^---/ { :a N; /\n---/! ba; d} }' FILENAME | \ + sed '{/^```/ { :a N; /\n```/! ba; d} }' \ + | wc -w + ``` + + This excludes yaml frontmatter (between `---` lines) and code blocks (between ``` lines). +--- + +This is a provisional changelog. Currently it shows statistics for words written. +It will eventually become a proper changelog with all modifications. + +You can subscribe to this changelog as an [RSS Feed](/changelog/changelog.rss). + diff --git a/src/everything/index.md b/src/everything/index.md new file mode 100644 index 0000000..cb427ef --- /dev/null +++ b/src/everything/index.md @@ -0,0 +1,4 @@ +--- +layout: layouts/everything.vto +title: Site Index +--- diff --git a/src/index.md b/src/index.md new file mode 100644 index 0000000..c054622 --- /dev/null +++ b/src/index.md @@ -0,0 +1,22 @@ +--- +title: "Home" +layout: layouts/index.vto +--- + +# I'm Hans, +a creator of spaces that work for people. + + +## Information spaces +visual design and interactive layouts to make complex information clear. Tools for digital data ownership and unfettered sharing. + +## learning spaces +sharing knowledge with care for effective learning and meaningful connection. +## physical spaces +implements and space design for joyful, purposeful living and working. + +--- + +_more coming end of 2024 …_ + +--- diff --git a/src/notes.md b/src/notes.md new file mode 100644 index 0000000..def6cf5 --- /dev/null +++ b/src/notes.md @@ -0,0 +1,9 @@ +--- +title: Notes and drafts +date: 2024-06-18 09:03 +layout: layouts/page.vto +draft: true +--- + +I ~~explained~~ will explain the purpose of the 'notes and drafts' category in [this article](/articles/its-called-a-digital-garden/). + diff --git a/src/notes/_data.yml b/src/notes/_data.yml new file mode 100644 index 0000000..3d7a88e --- /dev/null +++ b/src/notes/_data.yml @@ -0,0 +1 @@ +layout: layouts/page.vto diff --git a/src/notes/paper-is-advanced-tech.md b/src/notes/paper-is-advanced-tech.md new file mode 100644 index 0000000..deed046 --- /dev/null +++ b/src/notes/paper-is-advanced-tech.md @@ -0,0 +1,18 @@ +--- +title: advanced technology isn't necessary complex +date: 2024-10-15 +--- + +Sometimes, we can forget how advanced seemingly simple technologies are. +It can be tempting to want to erase complicated stuff and start again more simply. +But let's not forget that technologies we take for granted are anything but. + +After coming back to web development following a hiatus making things in the real world, +one thought that keeps getting stronger is that I can't wait for this domain to go the way of paper. +Paper, pens and pencils are ubiquitous. That doesn't mean they aren't marvelous feats of engineering and production. +I rely on factory-produced, precision products for the simple, more natural practise of writing on paper. + +I think websites should be standardized just like this. + + + diff --git a/src/static/fonts/Overpass-Italic-VariableFont_wght.ttf b/src/static/fonts/Overpass-Italic-VariableFont_wght.ttf new file mode 100644 index 0000000..a989438 Binary files /dev/null and b/src/static/fonts/Overpass-Italic-VariableFont_wght.ttf differ diff --git a/src/static/fonts/Overpass-VariableFont_wght.ttf b/src/static/fonts/Overpass-VariableFont_wght.ttf new file mode 100644 index 0000000..ea3a5ec Binary files /dev/null and b/src/static/fonts/Overpass-VariableFont_wght.ttf differ diff --git a/src/static/fonts/charter_bold.woff2 b/src/static/fonts/charter_bold.woff2 new file mode 100644 index 0000000..008c4f5 Binary files /dev/null and b/src/static/fonts/charter_bold.woff2 differ diff --git a/src/static/fonts/charter_bold_italic.woff2 b/src/static/fonts/charter_bold_italic.woff2 new file mode 100644 index 0000000..8a2cacc Binary files /dev/null and b/src/static/fonts/charter_bold_italic.woff2 differ diff --git a/src/static/fonts/charter_italic.woff2 b/src/static/fonts/charter_italic.woff2 new file mode 100644 index 0000000..ea15e1a Binary files /dev/null and b/src/static/fonts/charter_italic.woff2 differ diff --git a/src/static/fonts/charter_regular.woff2 b/src/static/fonts/charter_regular.woff2 new file mode 100644 index 0000000..d4bc9e0 Binary files /dev/null and b/src/static/fonts/charter_regular.woff2 differ diff --git a/src/static/img/24uc-bdb_sketch-website-changelog-commit-flow.jpg b/src/static/img/24uc-bdb_sketch-website-changelog-commit-flow.jpg new file mode 100644 index 0000000..20ace0a Binary files /dev/null and b/src/static/img/24uc-bdb_sketch-website-changelog-commit-flow.jpg differ diff --git a/src/static/img/a_logo2.svg b/src/static/img/a_logo2.svg new file mode 100644 index 0000000..aa36c5d --- /dev/null +++ b/src/static/img/a_logo2.svg @@ -0,0 +1,70 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/src/static/img/aubergines-frying.jpg b/src/static/img/aubergines-frying.jpg new file mode 100644 index 0000000..9798570 Binary files /dev/null and b/src/static/img/aubergines-frying.jpg differ diff --git a/src/static/img/drawing.svg b/src/static/img/drawing.svg new file mode 100644 index 0000000..f14de39 --- /dev/null +++ b/src/static/img/drawing.svg @@ -0,0 +1,325 @@ + + + + + + + + + + + Now, we will type some textand see where it ends up.no one is going to tell me anything. + + I am organising a whole bunch of things. + + + I am very close to getting Johnny Decimal system for our setup. + + In process of migrating/reinstalling OS. + + + Why? +Because I want to set up terminal, shell, and development tools properly. I've tried this sometimes ... how will I make it work this time? + + I need to keep from losing files! +Create a repository for hansfast.net! + + A list of tasks to get opdeboot.com finished. + + I can do this. I know I can. I am a smart individual. I can break it down into smaller chunks, and work on them one at a time. + +It's interesting to think about this in terms of leegte. Emotionele, lichamelijke leegte. Does every non-growth activity of ours result from emptiness? Trying to fill it? And does every growth activity also come from imitation? + +I think so. That resonates. I feel like I'm on to something here. + +Everything is imitation... and whom shall we imitate? + + Some infrastructure. Make it visual. Very visual. On the wall. Think of things in terms of a design which is being implemented, rather than individual things which have to be attacked. It's a whole; see it as such! + + [Border around formatted text in Inkscape - Graphic Design Stack Exchange](https://graphicdesign.stackexchange.com/questions/25249/border-around-formatted-text-in-inkscape ) + + + diff --git a/src/static/img/oaktree_may7.jpg b/src/static/img/oaktree_may7.jpg new file mode 100644 index 0000000..c8387cd Binary files /dev/null and b/src/static/img/oaktree_may7.jpg differ diff --git a/src/static/img/poplars_may7.jpg b/src/static/img/poplars_may7.jpg new file mode 100644 index 0000000..00be60a Binary files /dev/null and b/src/static/img/poplars_may7.jpg differ diff --git a/src/static/img/tempeh-frying.jpg b/src/static/img/tempeh-frying.jpg new file mode 100644 index 0000000..6866744 Binary files /dev/null and b/src/static/img/tempeh-frying.jpg differ diff --git a/src/styles/design-tokens.json b/src/styles/design-tokens.json new file mode 100644 index 0000000..7fbf3ae --- /dev/null +++ b/src/styles/design-tokens.json @@ -0,0 +1,26 @@ +{ + "colors": { + "blue": {"value": "#4794d1"}, + "mist": {"value": "#f3f3ef"}, + "sea": {"value": "#6093ac"}, + "dark": {"value": "#333333"} + }, + "font": { + "size": { + "min": {"value": 16}, + "max": {"value": 20}, + "base": {"value": "16px"} + } + }, + "leading": { + "flat": {"value": 1}, + "fine": {"value": 1.38}, + "standard": {"value": 1.5}, + "loose": {"value": 1.9} + }, + "spacing": + { + "padding-inline": {"value": "1rem"}, + "content-max": {"value": "900px"} + } +} diff --git a/src/styles/main.css b/src/styles/main.css new file mode 100644 index 0000000..9fcd78e --- /dev/null +++ b/src/styles/main.css @@ -0,0 +1,225 @@ +@import 'styles/global/variables.css'; +@import 'styles/global/global.css'; +@import 'styles/global/typography.css'; +@import 'styles/comp/space.css'; +@import 'styles/header.css'; +@import 'styles/footer.css'; + +/*A single top-level import of design tokens suffices. + * All @import-ed files have access to the `tkn()` function, + * because design-tokens processes all @design-tokens declarations + * in one go and thus they are available to entire final CSS.*/ +@design-tokens url('./design-tokens.json') format('style-dictionary3'); + +/*Reset links!*/ +a { + outline-color: transparent; +} + +a:link { + color: var(--link-color); +} + +a:visited { + color: var(--link-color-visited); +} + +a:focus { + text-decoration: none; + color: var(--link-color); +} + +a:hover , a:hover p, a:hover h3{ + color: var(--link-color-hover); +} +a:hover:visited , a:visited:hover p, a:visited:hover h3{ + color: tkn('colors.blue'); +} + +a:active { + color: tkn('colors.white'); +} + +.grid-item:hover{ + background-color: tkn('colors.blue'); +} + +/*override link styling in page header*/ +header { + & a:link { + color: var(--link-color); + text-decoration: none; + } + + & a:visited { + color: var(--link-color); + } + + & a:focus { + text-decoration: none; + color: var(--link-color); + } + + & a:hover , a:hover p, a:hover h3{ + color: tkn('colors.rust'); + text-decoration: underline; + } + + & a:active { + background-color: var(--link-color); + color: tkn('colors.white'); + } + + & a.current { + font-weight: bold; + text-decoration: underline; + } +} + +body { + display: flex; + flex-direction: column; + min-height: 100vh; +} + + + +/*Set the max width of the body ... + * incompatible with later grid-based wrapping*/ +main, .wrapper { + max-width: calc(var(--space-3xl) * 4.5); + width: 90vw; + margin: 0 auto; + /*hyphens: auto;*/ +} + + +main { + flex: 1 +} + +main img { + max-width: 100%; +} + + + +.item_layout a:hover img{ + transition: all 300ms ease-out; +} + + +.item_layout a:hover img{ + transform: scale(1.04) +} + +.footnotes { + font-size: var(--step--1); + + & h2 { + font-size: var(--step-1); + } +} + +.next-prev-links { + font-size: var(--step--1); + margin-block-start: var(--space-xl); + margin-block-end: var(--space-xl); + + & > * { + max-width: 100%; + min-width: 30%; + width: calc((500px - 100%) * 999); + } +} + + + +.flex { + display: flex; +} +.stretch { + justify-content: space-between; +} + +.flex-wrap { + flex-wrap: wrap; +} + + +.article-list { + gap: var(--space-l); +} + +.article-list > :last-child { + flex-grow: 1; + max-width: 50%; + text-align: end; +} + +/*metadata paragraph should hug closer to next (override stack/flow spacing)*/ +.metadata-paragraph { + font-size: var(--step--1); + margin-block-end: var(--space-2xs); + font-style: italic; + background-color: lightgray; + border-radius: 5px; + padding: 3px 7px; + max-width: fit-content; +} +.metadata-paragraph + * { + margin-block-start: 0; + line-height: 1.1em; +} + +.draft-content{ + border-left: 5px solid #eee; + border-right: 5px solid #eee; + padding: 0 3px; +} + +.draft-content p { + color: #555; +} + +.draft-content summary{ + color: #bbb; + background-color: #eee; +} + +.draft-content details[open]::after { + color: #bbb; + display: block; + content: 'END DRAFT MATERIAL'; + text-align: center; + background-color: #eee; +} + +.note-content { + border-left: 5px solid red; + border-right: 5px solid red; + padding: 0 3px; + +} +.note-content::before { + display: block; + content: 'PRIVATE NOTES'; + text-align: center; + background-color: red; +} + +#lang-toggle { + display: none; +} +.lang-toggle-container { + display: flex; + + & * { + padding: 0 1rem; + cursor: pointer; + } + +} + + +