initial commit

pyrox.dev 386fa206

verified
+6
.envrc
···
+
if ! has nix_direnv_version || ! nix_direnv_version 2.3.0; then
+
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/2.3.0/direnvrc" "sha256-Dmd+j63L84wuzgyjITIfSxSD57Tx7v51DMxVZOsiUD8="
+
fi
+
PATH_add $HOME/.deno/bin
+
export ROOT="$PWD"
+
use flake . --impure
+1
.gitattributes
···
+
package-lock.json -diff
+7
.gitignore
···
+
node_modules/
+
public/
+
.DS_Store
+
_site
+
_cache
+
.direnv/bin
+
.direnv
+21
LICENSE
···
+
MIT License
+
+
Copyright (c) 2023 Spencer Scorcelletti
+
+
Permission is hereby granted, free of charge, to any person obtaining a copy
+
of this software and associated documentation files (the "Software"), to deal
+
in the Software without restriction, including without limitation the rights
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
copies of the Software, and to permit persons to whom the Software is
+
furnished to do so, subject to the following conditions:
+
+
The above copyright notice and this permission notice shall be included in all
+
copies or substantial portions of the Software.
+
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+
SOFTWARE.
README.md

This is a binary file and will not be displayed.

+18
_cms.ts
···
+
import lumeCMS from "lume/cms/mod.ts";
+
+
const cms = lumeCMS({
+
site: {
+
name: "dish cms",
+
description: "cms for dish's blog"
+
}
+
});
+
+
cms.document("homepage", "src:index.vto", [
+
"title: text",
+
"subtitle: text",
+
"summary: text",
+
"date: datetime",
+
"content: markdown",
+
]);
+
+
export default cms;
+120
_config.ts
···
+
import lume from "lume/mod.ts";
+
import brotli from "lume/plugins/brotli.ts";
+
import code_highlight from "lume/plugins/code_highlight.ts";
+
import feed from "lume/plugins/feed.ts";
+
import lightningcss from "lume/plugins/lightningcss.ts";
+
import icons from "lume/plugins/icons.ts";
+
import inline from "lume/plugins/inline.ts";
+
import metas from "lume/plugins/metas.ts";
+
import minify_html from "lume/plugins/minify_html.ts";
+
import nav from "lume/plugins/nav.ts";
+
import og_images from "lume/plugins/og_images.ts";
+
import pagefind from "lume/plugins/pagefind.ts";
+
import picture from "lume/plugins/picture.ts";
+
import postcss from "lume/plugins/postcss.ts";
+
import purgecss from "lume/plugins/purgecss.ts";
+
import relations from "lume/plugins/relations.ts";
+
import robots from "lume/plugins/robots.ts";
+
import sitemap from "lume/plugins/sitemap.ts";
+
import slugify_urls from "lume/plugins/slugify_urls.ts";
+
import source_maps from "lume/plugins/source_maps.ts";
+
import sri from "lume/plugins/sri.ts";
+
import svgo from "lume/plugins/svgo.ts";
+
import tailwindcss from "lume/plugins/tailwindcss.ts";
+
import toml from "lume/plugins/toml.ts";
+
import transform_images from "lume/plugins/transform_images.ts";
+
+
import catppuccin from "npm:@catppuccin/tailwindcss";
+
+
const site = lume({
+
src: "./src",
+
location: new URL("https://blog.pyrox.dev"),
+
});
+
+
site.loadAssets([".css"]);
+
site.copy([".woff2"]);
+
+
site.use(code_highlight());
+
site.use(icons());
+
site.use(inline());
+
site.use(metas());
+
site.use(minify_html());
+
site.use(nav());
+
site.use(og_images());
+
site.use(pagefind());
+
site.use(picture());
+
site.use(transform_images());
+
site.use(relations());
+
site.use(robots());
+
site.use(sitemap());
+
site.use(slugify_urls());
+
site.use(sri());
+
site.use(svgo());
+
site.use(toml());
+
+
// Tailwind CSS
+
site.use(tailwindcss({
+
extensions: [".html", ".vto"],
+
options: {
+
plugins: [catppuccin],
+
safelist: ['latte']
+
}
+
}))
+
site.use(postcss())
+
+
// RSS/JSON Feed Generation
+
site.use(feed({
+
output: ["/blog.rss", "/blog.json"],
+
query: "type=blog",
+
sort: "date=desc",
+
info: {
+
title: "dish blog",
+
description: "dish's thoughts on many things",
+
published: new Date(),
+
lang: "en",
+
generator: true,
+
authorName: "dish",
+
authorUrl: "https://blog.pyrox.dev",
+
},
+
items: {
+
title: "=title",
+
description: "=summary",
+
published: "=published",
+
updated: "=updated || undefined",
+
content: "=children",
+
lang: "=lang",
+
image: "=banner",
+
authorName: "=author.name",
+
authorUrl: "=author.url",
+
},
+
}));
+
+
// CSS postprocessing
+
site.use(purgecss())
+
site.use(lightningcss({
+
options: {
+
minify: true,
+
bundle: false,
+
}
+
}));
+
+
// Source Map Generation
+
site.use(source_maps());
+
+
// Compress everything with Brotli
+
site.use(brotli({
+
extensions: [
+
".html",
+
".css",
+
".js",
+
".mjs",
+
".svg",
+
".json",
+
".xml",
+
".txt",
+
".rss",
+
".map"
+
]
+
}));
+
+
export default site;
+19
deno.json
···
+
{
+
"imports": {
+
"@catppuccin/tailwindcss": "npm:@catppuccin/tailwindcss@^0.1.6",
+
"lume/": "https://deno.land/x/lume@v2.5.1/",
+
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/"
+
},
+
"tasks": {
+
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
+
"build": "deno task lume",
+
"serve": "deno task lume -s",
+
"cms": "deno task lume cms"
+
},
+
"compilerOptions": {
+
"types": [
+
"lume/types.ts"
+
]
+
},
+
"nodeModulesDir": "auto"
+
}
+1918
deno.lock
···
+
{
+
"version": "4",
+
"specifiers": {
+
"jsr:@davidbonnet/astring@1.8.6": "1.8.6",
+
"jsr:@hono/hono@4.6.16": "4.6.16",
+
"jsr:@std/cli@1.0.11": "1.0.11",
+
"jsr:@std/cli@^1.0.8": "1.0.11",
+
"jsr:@std/collections@^1.0.9": "1.0.10",
+
"jsr:@std/crypto@1.0.3": "1.0.3",
+
"jsr:@std/encoding@1.0.6": "1.0.6",
+
"jsr:@std/encoding@^1.0.5": "1.0.6",
+
"jsr:@std/fmt@1.0.4": "1.0.4",
+
"jsr:@std/fmt@^1.0.3": "1.0.4",
+
"jsr:@std/fmt@^1.0.4": "1.0.4",
+
"jsr:@std/front-matter@1.0.5": "1.0.5",
+
"jsr:@std/fs@1.0.10": "1.0.10",
+
"jsr:@std/fs@1.0.9": "1.0.9",
+
"jsr:@std/fs@^1.0.9": "1.0.10",
+
"jsr:@std/html@1.0.3": "1.0.3",
+
"jsr:@std/html@^1.0.3": "1.0.3",
+
"jsr:@std/http@1.0.12": "1.0.12",
+
"jsr:@std/io@0.225": "0.225.2",
+
"jsr:@std/json@1": "1.0.1",
+
"jsr:@std/jsonc@1.0.1": "1.0.1",
+
"jsr:@std/log@0.224.13": "0.224.13",
+
"jsr:@std/media-types@1.1.0": "1.1.0",
+
"jsr:@std/media-types@^1.1.0": "1.1.0",
+
"jsr:@std/net@^1.0.4": "1.0.4",
+
"jsr:@std/path@1.0.8": "1.0.8",
+
"jsr:@std/path@^1.0.8": "1.0.8",
+
"jsr:@std/streams@^1.0.8": "1.0.9",
+
"jsr:@std/tar@0.1.4": "0.1.4",
+
"jsr:@std/toml@1.0.2": "1.0.2",
+
"jsr:@std/toml@^1.0.1": "1.0.2",
+
"jsr:@std/yaml@1.0.5": "1.0.5",
+
"jsr:@std/yaml@^1.0.5": "1.0.5",
+
"npm:@catppuccin/tailwindcss@*": "0.1.6_tailwindcss@3.4.17__postcss@8.5.1",
+
"npm:@catppuccin/tailwindcss@~0.1.6": "0.1.6_tailwindcss@3.4.17__postcss@8.5.1",
+
"npm:@imagemagick/magick-wasm@0.0.31": "0.0.31",
+
"npm:@js-temporal/polyfill@0.4.4": "0.4.4",
+
"npm:@types/estree@1.0.6": "1.0.6",
+
"npm:autoprefixer@10.4.20": "10.4.20_postcss@8.5.1",
+
"npm:estree-walker@3.0.3": "3.0.3",
+
"npm:highlight.js@11.11.1": "11.11.1",
+
"npm:ico-endec@0.1.6": "0.1.6",
+
"npm:lightningcss-wasm@1.29.1": "1.29.1",
+
"npm:markdown-it-attrs@4.3.1": "4.3.1_markdown-it@14.1.0",
+
"npm:markdown-it-deflist@3.0.0": "3.0.0",
+
"npm:markdown-it@14.1.0": "14.1.0",
+
"npm:meriyah@6.0.5": "6.0.5",
+
"npm:pagefind@1.3.0": "1.3.0",
+
"npm:postcss-import@16.1.0": "16.1.0_postcss@8.5.1",
+
"npm:postcss@8.5.1": "8.5.1",
+
"npm:purgecss-from-html@7.0.2": "7.0.2",
+
"npm:purgecss@7.0.2": "7.0.2",
+
"npm:remove-markdown@0.6.0": "0.6.0",
+
"npm:satori@0.12.1": "0.12.1",
+
"npm:sharp@0.33.5": "0.33.5",
+
"npm:svg2png-wasm@1.4.1": "1.4.1",
+
"npm:svgo@3.3.2": "3.3.2",
+
"npm:tailwindcss@3.4.17": "3.4.17_postcss@8.5.1",
+
"npm:unidecode@1.1.0": "1.1.0"
+
},
+
"jsr": {
+
"@davidbonnet/astring@1.8.6": {
+
"integrity": "98b4914c8863cdf8c0ff83bb5c528caa67a8dca6020ad6234113499f00583e3a"
+
},
+
"@hono/hono@4.6.16": {
+
"integrity": "b540c6b1352d73142895f7bb6bfd0b6cc514ede61c12940338c4ae5dd06cb326"
+
},
+
"@std/cli@1.0.11": {
+
"integrity": "ec219619fdcd31bcf0d8e53bee1e2706ec9a02f70255365a094f69755dadd340"
+
},
+
"@std/collections@1.0.10": {
+
"integrity": "903af106a3d92970d74e20f7ebff77d9658af9bef4403f1dc42a7801c0575899"
+
},
+
"@std/crypto@1.0.3": {
+
"integrity": "a2a32f51ddef632d299e3879cd027c630dcd4d1d9a5285d6e6788072f4e51e7f"
+
},
+
"@std/encoding@1.0.6": {
+
"integrity": "ca87122c196e8831737d9547acf001766618e78cd8c33920776c7f5885546069"
+
},
+
"@std/fmt@1.0.4": {
+
"integrity": "e14fe5bedee26f80877e6705a97a79c7eed599e81bb1669127ef9e8bc1e29a74"
+
},
+
"@std/front-matter@1.0.5": {
+
"integrity": "abddc64030a33eb5bc524b8c73e7c417cea09177aaeb4abf75a56b540c4b6e60",
+
"dependencies": [
+
"jsr:@std/toml@^1.0.1",
+
"jsr:@std/yaml@^1.0.5"
+
]
+
},
+
"@std/fs@1.0.9": {
+
"integrity": "3eef7e3ed3d317b29432c7dcb3b20122820dbc574263f721cb0248ad91bad890",
+
"dependencies": [
+
"jsr:@std/path@^1.0.8"
+
]
+
},
+
"@std/fs@1.0.10": {
+
"integrity": "bf041f9d7a0a460817f0421be8946d0e06011b3433e6c83a215628de5e3c7c2c",
+
"dependencies": [
+
"jsr:@std/path@^1.0.8"
+
]
+
},
+
"@std/html@1.0.3": {
+
"integrity": "7a0ac35e050431fb49d44e61c8b8aac1ebd55937e0dc9ec6409aa4bab39a7988"
+
},
+
"@std/http@1.0.12": {
+
"integrity": "85246d8bfe9c8e2538518725b158bdc31f616e0869255f4a8d9e3de919cab2aa",
+
"dependencies": [
+
"jsr:@std/cli@^1.0.8",
+
"jsr:@std/encoding@^1.0.5",
+
"jsr:@std/fmt@^1.0.3",
+
"jsr:@std/html@^1.0.3",
+
"jsr:@std/media-types@^1.1.0",
+
"jsr:@std/net",
+
"jsr:@std/path@^1.0.8",
+
"jsr:@std/streams"
+
]
+
},
+
"@std/io@0.225.2": {
+
"integrity": "3c740cd4ee4c082e6cfc86458f47e2ab7cb353dc6234d5e9b1f91a2de5f4d6c7"
+
},
+
"@std/json@1.0.1": {
+
"integrity": "1f0f70737e8827f9acca086282e903677bc1bb0c8ffcd1f21bca60039563049f"
+
},
+
"@std/jsonc@1.0.1": {
+
"integrity": "6b36956e2a7cbb08ca5ad7fbec72e661e6217c202f348496ea88747636710dda",
+
"dependencies": [
+
"jsr:@std/json"
+
]
+
},
+
"@std/log@0.224.13": {
+
"integrity": "f04d82f676c9eb4306194ca166d296d9f1456fe4b7edf2a404a0d55c94d31df7",
+
"dependencies": [
+
"jsr:@std/fmt@^1.0.4",
+
"jsr:@std/fs@^1.0.9",
+
"jsr:@std/io"
+
]
+
},
+
"@std/media-types@1.1.0": {
+
"integrity": "c9d093f0c05c3512932b330e3cc1fe1d627b301db33a4c2c2185c02471d6eaa4"
+
},
+
"@std/net@1.0.4": {
+
"integrity": "2f403b455ebbccf83d8a027d29c5a9e3a2452fea39bb2da7f2c04af09c8bc852"
+
},
+
"@std/path@1.0.8": {
+
"integrity": "548fa456bb6a04d3c1a1e7477986b6cffbce95102d0bb447c67c4ee70e0364be"
+
},
+
"@std/streams@1.0.9": {
+
"integrity": "a9d26b1988cdd7aa7b1f4b51e1c36c1557f3f252880fa6cc5b9f37078b1a5035"
+
},
+
"@std/tar@0.1.4": {
+
"integrity": "1bc1f1f9bfd557e849b31d6521348fdf5848886d87c851f1f0f992d002fe0ff5",
+
"dependencies": [
+
"jsr:@std/streams"
+
]
+
},
+
"@std/toml@1.0.2": {
+
"integrity": "5892ba489c5b512265a384238a8fe8dddbbb9498b4b210ef1b9f0336a423a39b",
+
"dependencies": [
+
"jsr:@std/collections"
+
]
+
},
+
"@std/yaml@1.0.5": {
+
"integrity": "71ba3d334305ee2149391931508b2c293a8490f94a337eef3a09cade1a2a2742"
+
}
+
},
+
"npm": {
+
"@alloc/quick-lru@5.2.0": {
+
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw=="
+
},
+
"@catppuccin/tailwindcss@0.1.6_tailwindcss@3.3.3__postcss@8.5.1": {
+
"integrity": "sha512-V+Y0AwZ5SSyvOVAcDl7Ng30xy+m82OKnEJ+9+kcZZ7lRyXuZrAb2GScdq9XR3v+ggt8qiZ/G4TvaC9cJ88AAXA==",
+
"dependencies": [
+
"tailwindcss@3.3.3_postcss@8.5.1"
+
]
+
},
+
"@catppuccin/tailwindcss@0.1.6_tailwindcss@3.4.17__postcss@8.5.1": {
+
"integrity": "sha512-V+Y0AwZ5SSyvOVAcDl7Ng30xy+m82OKnEJ+9+kcZZ7lRyXuZrAb2GScdq9XR3v+ggt8qiZ/G4TvaC9cJ88AAXA==",
+
"dependencies": [
+
"tailwindcss@3.4.17_postcss@8.5.1"
+
]
+
},
+
"@emnapi/runtime@1.3.1": {
+
"integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==",
+
"dependencies": [
+
"tslib"
+
]
+
},
+
"@imagemagick/magick-wasm@0.0.31": {
+
"integrity": "sha512-QNivAUxSaItuiY8ziI/vRy6TtoecD7TOsD1LGZCG3wv8lfbdGbIj2QiJk0FlGkGwAVR966NlD3mkxPNvQrvq0w=="
+
},
+
"@img/sharp-darwin-arm64@0.33.5": {
+
"integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==",
+
"dependencies": [
+
"@img/sharp-libvips-darwin-arm64"
+
]
+
},
+
"@img/sharp-darwin-x64@0.33.5": {
+
"integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==",
+
"dependencies": [
+
"@img/sharp-libvips-darwin-x64"
+
]
+
},
+
"@img/sharp-libvips-darwin-arm64@1.0.4": {
+
"integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg=="
+
},
+
"@img/sharp-libvips-darwin-x64@1.0.4": {
+
"integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ=="
+
},
+
"@img/sharp-libvips-linux-arm64@1.0.4": {
+
"integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA=="
+
},
+
"@img/sharp-libvips-linux-arm@1.0.5": {
+
"integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g=="
+
},
+
"@img/sharp-libvips-linux-s390x@1.0.4": {
+
"integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA=="
+
},
+
"@img/sharp-libvips-linux-x64@1.0.4": {
+
"integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw=="
+
},
+
"@img/sharp-libvips-linuxmusl-arm64@1.0.4": {
+
"integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA=="
+
},
+
"@img/sharp-libvips-linuxmusl-x64@1.0.4": {
+
"integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw=="
+
},
+
"@img/sharp-linux-arm64@0.33.5": {
+
"integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-arm64"
+
]
+
},
+
"@img/sharp-linux-arm@0.33.5": {
+
"integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-arm"
+
]
+
},
+
"@img/sharp-linux-s390x@0.33.5": {
+
"integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-s390x"
+
]
+
},
+
"@img/sharp-linux-x64@0.33.5": {
+
"integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==",
+
"dependencies": [
+
"@img/sharp-libvips-linux-x64"
+
]
+
},
+
"@img/sharp-linuxmusl-arm64@0.33.5": {
+
"integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==",
+
"dependencies": [
+
"@img/sharp-libvips-linuxmusl-arm64"
+
]
+
},
+
"@img/sharp-linuxmusl-x64@0.33.5": {
+
"integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==",
+
"dependencies": [
+
"@img/sharp-libvips-linuxmusl-x64"
+
]
+
},
+
"@img/sharp-wasm32@0.33.5": {
+
"integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==",
+
"dependencies": [
+
"@emnapi/runtime"
+
]
+
},
+
"@img/sharp-win32-ia32@0.33.5": {
+
"integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ=="
+
},
+
"@img/sharp-win32-x64@0.33.5": {
+
"integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg=="
+
},
+
"@isaacs/cliui@8.0.2": {
+
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
+
"dependencies": [
+
"string-width@5.1.2",
+
"string-width-cjs@npm:string-width@4.2.3",
+
"strip-ansi@7.1.0",
+
"strip-ansi-cjs@npm:strip-ansi@6.0.1",
+
"wrap-ansi@8.1.0",
+
"wrap-ansi-cjs@npm:wrap-ansi@7.0.0"
+
]
+
},
+
"@jridgewell/gen-mapping@0.3.8": {
+
"integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
+
"dependencies": [
+
"@jridgewell/set-array",
+
"@jridgewell/sourcemap-codec",
+
"@jridgewell/trace-mapping"
+
]
+
},
+
"@jridgewell/resolve-uri@3.1.2": {
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="
+
},
+
"@jridgewell/set-array@1.2.1": {
+
"integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A=="
+
},
+
"@jridgewell/sourcemap-codec@1.5.0": {
+
"integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="
+
},
+
"@jridgewell/trace-mapping@0.3.25": {
+
"integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
+
"dependencies": [
+
"@jridgewell/resolve-uri",
+
"@jridgewell/sourcemap-codec"
+
]
+
},
+
"@js-temporal/polyfill@0.4.4": {
+
"integrity": "sha512-2X6bvghJ/JAoZO52lbgyAPFj8uCflhTo2g7nkFzEQdXd/D8rEeD4HtmTEpmtGCva260fcd66YNXBOYdnmHqSOg==",
+
"dependencies": [
+
"jsbi",
+
"tslib"
+
]
+
},
+
"@nodelib/fs.scandir@2.1.5": {
+
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+
"dependencies": [
+
"@nodelib/fs.stat",
+
"run-parallel"
+
]
+
},
+
"@nodelib/fs.stat@2.0.5": {
+
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
+
},
+
"@nodelib/fs.walk@1.2.8": {
+
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+
"dependencies": [
+
"@nodelib/fs.scandir",
+
"fastq"
+
]
+
},
+
"@pagefind/darwin-arm64@1.3.0": {
+
"integrity": "sha512-365BEGl6ChOsauRjyVpBjXybflXAOvoMROw3TucAROHIcdBvXk9/2AmEvGFU0r75+vdQI4LJdJdpH4Y6Yqaj4A=="
+
},
+
"@pagefind/darwin-x64@1.3.0": {
+
"integrity": "sha512-zlGHA23uuXmS8z3XxEGmbHpWDxXfPZ47QS06tGUq0HDcZjXjXHeLG+cboOy828QIV5FXsm9MjfkP5e4ZNbOkow=="
+
},
+
"@pagefind/linux-arm64@1.3.0": {
+
"integrity": "sha512-8lsxNAiBRUk72JvetSBXs4WRpYrQrVJXjlRRnOL6UCdBN9Nlsz0t7hWstRk36+JqHpGWOKYiuHLzGYqYAqoOnQ=="
+
},
+
"@pagefind/linux-x64@1.3.0": {
+
"integrity": "sha512-hAvqdPJv7A20Ucb6FQGE6jhjqy+vZ6pf+s2tFMNtMBG+fzcdc91uTw7aP/1Vo5plD0dAOHwdxfkyw0ugal4kcQ=="
+
},
+
"@pagefind/windows-x64@1.3.0": {
+
"integrity": "sha512-BR1bIRWOMqkf8IoU576YDhij1Wd/Zf2kX/kCI0b2qzCKC8wcc2GQJaaRMCpzvCCrmliO4vtJ6RITp/AnoYUUmQ=="
+
},
+
"@pkgjs/parseargs@0.11.0": {
+
"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="
+
},
+
"@shuding/opentype.js@1.4.0-beta.0": {
+
"integrity": "sha512-3NgmNyH3l/Hv6EvsWJbsvpcpUba6R8IREQ83nH83cyakCw7uM1arZKNfHwv1Wz6jgqrF/j4x5ELvR6PnK9nTcA==",
+
"dependencies": [
+
"fflate",
+
"string.prototype.codepointat"
+
]
+
},
+
"@trysound/sax@0.2.0": {
+
"integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="
+
},
+
"@types/estree@1.0.6": {
+
"integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw=="
+
},
+
"ansi-regex@5.0.1": {
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
+
},
+
"ansi-regex@6.1.0": {
+
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA=="
+
},
+
"ansi-styles@4.3.0": {
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+
"dependencies": [
+
"color-convert"
+
]
+
},
+
"ansi-styles@6.2.1": {
+
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="
+
},
+
"any-promise@1.3.0": {
+
"integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A=="
+
},
+
"anymatch@3.1.3": {
+
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
+
"dependencies": [
+
"normalize-path",
+
"picomatch"
+
]
+
},
+
"arg@5.0.2": {
+
"integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="
+
},
+
"argparse@2.0.1": {
+
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
+
},
+
"autoprefixer@10.4.20_postcss@8.5.1": {
+
"integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==",
+
"dependencies": [
+
"browserslist",
+
"caniuse-lite",
+
"fraction.js",
+
"normalize-range",
+
"picocolors",
+
"postcss",
+
"postcss-value-parser"
+
]
+
},
+
"balanced-match@1.0.2": {
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
+
},
+
"base64-js@0.0.8": {
+
"integrity": "sha512-3XSA2cR/h/73EzlXXdU6YNycmYI7+kicTxks4eJg2g39biHR84slg2+des+p7iHYhbRg/udIS4TD53WabcOUkw=="
+
},
+
"binary-extensions@2.3.0": {
+
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw=="
+
},
+
"boolbase@1.0.0": {
+
"integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="
+
},
+
"brace-expansion@1.1.11": {
+
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+
"dependencies": [
+
"balanced-match",
+
"concat-map"
+
]
+
},
+
"brace-expansion@2.0.1": {
+
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+
"dependencies": [
+
"balanced-match"
+
]
+
},
+
"braces@3.0.3": {
+
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
+
"dependencies": [
+
"fill-range"
+
]
+
},
+
"browserslist@4.24.4": {
+
"integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==",
+
"dependencies": [
+
"caniuse-lite",
+
"electron-to-chromium",
+
"node-releases",
+
"update-browserslist-db"
+
]
+
},
+
"camelcase-css@2.0.1": {
+
"integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA=="
+
},
+
"camelize@1.0.1": {
+
"integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ=="
+
},
+
"caniuse-lite@1.0.30001696": {
+
"integrity": "sha512-pDCPkvzfa39ehJtJ+OwGT/2yvT2SbjfHhiIW2LWOAcMQ7BzwxT/XuyUp4OTOd0XFWA6BKw0JalnBHgSi5DGJBQ=="
+
},
+
"chokidar@3.6.0": {
+
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
+
"dependencies": [
+
"anymatch",
+
"braces",
+
"fsevents",
+
"glob-parent@5.1.2",
+
"is-binary-path",
+
"is-glob",
+
"normalize-path",
+
"readdirp"
+
]
+
},
+
"color-convert@2.0.1": {
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+
"dependencies": [
+
"color-name"
+
]
+
},
+
"color-name@1.1.4": {
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+
},
+
"color-string@1.9.1": {
+
"integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
+
"dependencies": [
+
"color-name",
+
"simple-swizzle"
+
]
+
},
+
"color@4.2.3": {
+
"integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
+
"dependencies": [
+
"color-convert",
+
"color-string"
+
]
+
},
+
"commander@12.1.0": {
+
"integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA=="
+
},
+
"commander@4.1.1": {
+
"integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA=="
+
},
+
"commander@7.2.0": {
+
"integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="
+
},
+
"concat-map@0.0.1": {
+
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
+
},
+
"cross-spawn@7.0.6": {
+
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
+
"dependencies": [
+
"path-key",
+
"shebang-command",
+
"which"
+
]
+
},
+
"css-background-parser@0.1.0": {
+
"integrity": "sha512-2EZLisiZQ+7m4wwur/qiYJRniHX4K5Tc9w93MT3AS0WS1u5kaZ4FKXlOTBhOjc+CgEgPiGY+fX1yWD8UwpEqUA=="
+
},
+
"css-box-shadow@1.0.0-3": {
+
"integrity": "sha512-9jaqR6e7Ohds+aWwmhe6wILJ99xYQbfmK9QQB9CcMjDbTxPZjwEmUQpU91OG05Xgm8BahT5fW+svbsQGjS/zPg=="
+
},
+
"css-color-keywords@1.0.0": {
+
"integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg=="
+
},
+
"css-gradient-parser@0.0.16": {
+
"integrity": "sha512-3O5QdqgFRUbXvK1x5INf1YkBz1UKSWqrd63vWsum8MNHDBYD5urm3QtxZbKU259OrEXNM26lP/MPY3d1IGkBgA=="
+
},
+
"css-select@5.1.0": {
+
"integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==",
+
"dependencies": [
+
"boolbase",
+
"css-what",
+
"domhandler",
+
"domutils",
+
"nth-check"
+
]
+
},
+
"css-to-react-native@3.2.0": {
+
"integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==",
+
"dependencies": [
+
"camelize",
+
"css-color-keywords",
+
"postcss-value-parser"
+
]
+
},
+
"css-tree@2.2.1": {
+
"integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==",
+
"dependencies": [
+
"mdn-data@2.0.28",
+
"source-map-js"
+
]
+
},
+
"css-tree@2.3.1": {
+
"integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==",
+
"dependencies": [
+
"mdn-data@2.0.30",
+
"source-map-js"
+
]
+
},
+
"css-what@6.1.0": {
+
"integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw=="
+
},
+
"cssesc@3.0.0": {
+
"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="
+
},
+
"csso@5.0.5": {
+
"integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==",
+
"dependencies": [
+
"css-tree@2.2.1"
+
]
+
},
+
"detect-libc@2.0.3": {
+
"integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw=="
+
},
+
"didyoumean@1.2.2": {
+
"integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw=="
+
},
+
"dlv@1.1.3": {
+
"integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA=="
+
},
+
"dom-serializer@2.0.0": {
+
"integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
+
"dependencies": [
+
"domelementtype",
+
"domhandler",
+
"entities"
+
]
+
},
+
"domelementtype@2.3.0": {
+
"integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw=="
+
},
+
"domhandler@5.0.3": {
+
"integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
+
"dependencies": [
+
"domelementtype"
+
]
+
},
+
"domutils@3.2.2": {
+
"integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==",
+
"dependencies": [
+
"dom-serializer",
+
"domelementtype",
+
"domhandler"
+
]
+
},
+
"eastasianwidth@0.2.0": {
+
"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="
+
},
+
"electron-to-chromium@1.5.90": {
+
"integrity": "sha512-C3PN4aydfW91Natdyd449Kw+BzhLmof6tzy5W1pFC5SpQxVXT+oyiyOG9AgYYSN9OdA/ik3YkCrpwqI8ug5Tug=="
+
},
+
"emoji-regex@10.4.0": {
+
"integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw=="
+
},
+
"emoji-regex@8.0.0": {
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
+
},
+
"emoji-regex@9.2.2": {
+
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
+
},
+
"entities@4.5.0": {
+
"integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw=="
+
},
+
"escalade@3.2.0": {
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="
+
},
+
"escape-html@1.0.3": {
+
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
+
},
+
"estree-walker@3.0.3": {
+
"integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
+
"dependencies": [
+
"@types/estree"
+
]
+
},
+
"fast-glob@3.3.1": {
+
"integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==",
+
"dependencies": [
+
"@nodelib/fs.stat",
+
"@nodelib/fs.walk",
+
"glob-parent@5.1.2",
+
"merge2",
+
"micromatch@4.0.5"
+
]
+
},
+
"fast-glob@3.3.3": {
+
"integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
+
"dependencies": [
+
"@nodelib/fs.stat",
+
"@nodelib/fs.walk",
+
"glob-parent@5.1.2",
+
"merge2",
+
"micromatch@4.0.8"
+
]
+
},
+
"fastq@1.15.0": {
+
"integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==",
+
"dependencies": [
+
"reusify"
+
]
+
},
+
"fflate@0.7.4": {
+
"integrity": "sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw=="
+
},
+
"fill-range@7.1.1": {
+
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+
"dependencies": [
+
"to-regex-range"
+
]
+
},
+
"foreground-child@3.3.0": {
+
"integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==",
+
"dependencies": [
+
"cross-spawn",
+
"signal-exit"
+
]
+
},
+
"fraction.js@4.3.7": {
+
"integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew=="
+
},
+
"fs.realpath@1.0.0": {
+
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
+
},
+
"fsevents@2.3.3": {
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="
+
},
+
"glob-parent@5.1.2": {
+
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+
"dependencies": [
+
"is-glob"
+
]
+
},
+
"glob-parent@6.0.2": {
+
"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
+
"dependencies": [
+
"is-glob"
+
]
+
},
+
"glob@10.4.5": {
+
"integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
+
"dependencies": [
+
"foreground-child",
+
"jackspeak@3.4.3",
+
"minimatch@9.0.5",
+
"minipass",
+
"package-json-from-dist",
+
"path-scurry@1.11.1"
+
]
+
},
+
"glob@11.0.1": {
+
"integrity": "sha512-zrQDm8XPnYEKawJScsnM0QzobJxlT/kHOOlRTio8IH/GrmxRE5fjllkzdaHclIuNjUQTJYH2xHNIGfdpJkDJUw==",
+
"dependencies": [
+
"foreground-child",
+
"jackspeak@4.0.2",
+
"minimatch@10.0.1",
+
"minipass",
+
"package-json-from-dist",
+
"path-scurry@2.0.0"
+
]
+
},
+
"glob@7.1.6": {
+
"integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
+
"dependencies": [
+
"fs.realpath",
+
"inflight",
+
"inherits",
+
"minimatch@3.1.2",
+
"once",
+
"path-is-absolute"
+
]
+
},
+
"has@1.0.4": {
+
"integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ=="
+
},
+
"hex-rgb@4.3.0": {
+
"integrity": "sha512-Ox1pJVrDCyGHMG9CFg1tmrRUMRPRsAWYc/PinY0XzJU4K7y7vjNoLKIQ7BR5UJMCxNN8EM1MNDmHWA/B3aZUuw=="
+
},
+
"highlight.js@11.11.1": {
+
"integrity": "sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w=="
+
},
+
"ico-endec@0.1.6": {
+
"integrity": "sha512-ZdLU38ZoED3g1j3iEyzcQj+wAkY2xfWNkymszfJPoxucIUhK7NayQ+/C4Kv0nDFMIsbtbEHldv3V8PU494/ueQ=="
+
},
+
"inflight@1.0.6": {
+
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
+
"dependencies": [
+
"once",
+
"wrappy"
+
]
+
},
+
"inherits@2.0.4": {
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
+
},
+
"is-arrayish@0.3.2": {
+
"integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
+
},
+
"is-binary-path@2.1.0": {
+
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
+
"dependencies": [
+
"binary-extensions"
+
]
+
},
+
"is-core-module@2.13.0": {
+
"integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==",
+
"dependencies": [
+
"has"
+
]
+
},
+
"is-extglob@2.1.1": {
+
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="
+
},
+
"is-fullwidth-code-point@3.0.0": {
+
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
+
},
+
"is-glob@4.0.3": {
+
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+
"dependencies": [
+
"is-extglob"
+
]
+
},
+
"is-number@7.0.0": {
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
+
},
+
"isexe@2.0.0": {
+
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
+
},
+
"jackspeak@3.4.3": {
+
"integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
+
"dependencies": [
+
"@isaacs/cliui",
+
"@pkgjs/parseargs"
+
]
+
},
+
"jackspeak@4.0.2": {
+
"integrity": "sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==",
+
"dependencies": [
+
"@isaacs/cliui"
+
]
+
},
+
"jiti@1.21.7": {
+
"integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A=="
+
},
+
"jsbi@4.3.0": {
+
"integrity": "sha512-SnZNcinB4RIcnEyZqFPdGPVgrg2AcnykiBy0sHVJQKHYeaLUvi3Exj+iaPpLnFVkDPZIV4U0yvgC9/R4uEAZ9g=="
+
},
+
"lightningcss-wasm@1.29.1": {
+
"integrity": "sha512-yrcX5OfnB5NJY32h2kOCaUr/OUz/os51uy/dTqSi+Z5lkUgnI9XIzlFDjbru/DaMkJ7v08QKN14Yr75SvDnqjA==",
+
"dependencies": [
+
"napi-wasm"
+
]
+
},
+
"lilconfig@2.1.0": {
+
"integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ=="
+
},
+
"lilconfig@3.1.3": {
+
"integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw=="
+
},
+
"linebreak@1.1.0": {
+
"integrity": "sha512-MHp03UImeVhB7XZtjd0E4n6+3xr5Dq/9xI/5FptGk5FrbDR3zagPa2DS6U8ks/3HjbKWG9Q1M2ufOzxV2qLYSQ==",
+
"dependencies": [
+
"base64-js",
+
"unicode-trie"
+
]
+
},
+
"lines-and-columns@1.2.4": {
+
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="
+
},
+
"linkify-it@5.0.0": {
+
"integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==",
+
"dependencies": [
+
"uc.micro"
+
]
+
},
+
"lru-cache@10.4.3": {
+
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="
+
},
+
"lru-cache@11.0.2": {
+
"integrity": "sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA=="
+
},
+
"markdown-it-attrs@4.3.1_markdown-it@14.1.0": {
+
"integrity": "sha512-/ko6cba+H6gdZ0DOw7BbNMZtfuJTRp9g/IrGIuz8lYc/EfnmWRpaR3CFPnNbVz0LDvF8Gf1hFGPqrQqq7De0rg==",
+
"dependencies": [
+
"markdown-it"
+
]
+
},
+
"markdown-it-deflist@3.0.0": {
+
"integrity": "sha512-OxPmQ/keJZwbubjiQWOvKLHwpV2wZ5I3Smc81OjhwbfJsjdRrvD5aLTQxmZzzePeO0kbGzAo3Krk4QLgA8PWLg=="
+
},
+
"markdown-it@14.1.0": {
+
"integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==",
+
"dependencies": [
+
"argparse",
+
"entities",
+
"linkify-it",
+
"mdurl",
+
"punycode.js",
+
"uc.micro"
+
]
+
},
+
"mdn-data@2.0.28": {
+
"integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g=="
+
},
+
"mdn-data@2.0.30": {
+
"integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA=="
+
},
+
"mdurl@2.0.0": {
+
"integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w=="
+
},
+
"merge2@1.4.1": {
+
"integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="
+
},
+
"meriyah@6.0.5": {
+
"integrity": "sha512-SrMqQCox7TTwtftWKHy/ZaVe+ZRpRl20pAgDo+PS9hzcAJrMjYsBJQPPiLXTnjztrqdfGS+Zz99r6Bwvydta1w=="
+
},
+
"micromatch@4.0.5": {
+
"integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
+
"dependencies": [
+
"braces",
+
"picomatch"
+
]
+
},
+
"micromatch@4.0.8": {
+
"integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
+
"dependencies": [
+
"braces",
+
"picomatch"
+
]
+
},
+
"minimatch@10.0.1": {
+
"integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==",
+
"dependencies": [
+
"brace-expansion@2.0.1"
+
]
+
},
+
"minimatch@3.1.2": {
+
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+
"dependencies": [
+
"brace-expansion@1.1.11"
+
]
+
},
+
"minimatch@9.0.5": {
+
"integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+
"dependencies": [
+
"brace-expansion@2.0.1"
+
]
+
},
+
"minipass@7.1.2": {
+
"integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="
+
},
+
"mz@2.7.0": {
+
"integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
+
"dependencies": [
+
"any-promise",
+
"object-assign",
+
"thenify-all"
+
]
+
},
+
"nanoid@3.3.8": {
+
"integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w=="
+
},
+
"napi-wasm@1.1.3": {
+
"integrity": "sha512-h/4nMGsHjZDCYmQVNODIrYACVJ+I9KItbG+0si6W/jSjdA9JbWDoU4LLeMXVcEQGHjttI2tuXqDrbGF7qkUHHg=="
+
},
+
"node-releases@2.0.19": {
+
"integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw=="
+
},
+
"normalize-path@3.0.0": {
+
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
+
},
+
"normalize-range@0.1.2": {
+
"integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA=="
+
},
+
"nth-check@2.1.1": {
+
"integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
+
"dependencies": [
+
"boolbase"
+
]
+
},
+
"object-assign@4.1.1": {
+
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="
+
},
+
"object-hash@3.0.0": {
+
"integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw=="
+
},
+
"once@1.4.0": {
+
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
+
"dependencies": [
+
"wrappy"
+
]
+
},
+
"package-json-from-dist@1.0.1": {
+
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="
+
},
+
"pagefind@1.3.0": {
+
"integrity": "sha512-8KPLGT5g9s+olKMRTU9LFekLizkVIu9tes90O1/aigJ0T5LmyPqTzGJrETnSw3meSYg58YH7JTzhTTW/3z6VAw==",
+
"dependencies": [
+
"@pagefind/darwin-arm64",
+
"@pagefind/darwin-x64",
+
"@pagefind/linux-arm64",
+
"@pagefind/linux-x64",
+
"@pagefind/windows-x64"
+
]
+
},
+
"pako@0.2.9": {
+
"integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA=="
+
},
+
"parse-css-color@0.2.1": {
+
"integrity": "sha512-bwS/GGIFV3b6KS4uwpzCFj4w297Yl3uqnSgIPsoQkx7GMLROXfMnWvxfNkL0oh8HVhZA4hvJoEoEIqonfJ3BWg==",
+
"dependencies": [
+
"color-name",
+
"hex-rgb"
+
]
+
},
+
"parse5-htmlparser2-tree-adapter@7.1.0": {
+
"integrity": "sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==",
+
"dependencies": [
+
"domhandler",
+
"parse5"
+
]
+
},
+
"parse5@7.2.1": {
+
"integrity": "sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==",
+
"dependencies": [
+
"entities"
+
]
+
},
+
"path-is-absolute@1.0.1": {
+
"integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="
+
},
+
"path-key@3.1.1": {
+
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="
+
},
+
"path-parse@1.0.7": {
+
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
+
},
+
"path-scurry@1.11.1": {
+
"integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
+
"dependencies": [
+
"lru-cache@10.4.3",
+
"minipass"
+
]
+
},
+
"path-scurry@2.0.0": {
+
"integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==",
+
"dependencies": [
+
"lru-cache@11.0.2",
+
"minipass"
+
]
+
},
+
"picocolors@1.1.1": {
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="
+
},
+
"picomatch@2.3.1": {
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="
+
},
+
"pify@2.3.0": {
+
"integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog=="
+
},
+
"pirates@4.0.6": {
+
"integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg=="
+
},
+
"postcss-import@15.1.0_postcss@8.5.1": {
+
"integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
+
"dependencies": [
+
"postcss",
+
"postcss-value-parser",
+
"read-cache",
+
"resolve"
+
]
+
},
+
"postcss-import@16.1.0_postcss@8.5.1": {
+
"integrity": "sha512-7hsAZ4xGXl4MW+OKEWCnF6T5jqBw80/EE9aXg1r2yyn1RsVEU8EtKXbijEODa+rg7iih4bKf7vlvTGYR4CnPNg==",
+
"dependencies": [
+
"postcss",
+
"postcss-value-parser",
+
"read-cache",
+
"resolve"
+
]
+
},
+
"postcss-js@4.0.1_postcss@8.5.1": {
+
"integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==",
+
"dependencies": [
+
"camelcase-css",
+
"postcss"
+
]
+
},
+
"postcss-load-config@4.0.1_postcss@8.5.1": {
+
"integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==",
+
"dependencies": [
+
"lilconfig@2.1.0",
+
"postcss",
+
"yaml"
+
]
+
},
+
"postcss-load-config@4.0.2_postcss@8.5.1": {
+
"integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==",
+
"dependencies": [
+
"lilconfig@3.1.3",
+
"postcss",
+
"yaml"
+
]
+
},
+
"postcss-nested@6.0.1_postcss@8.5.1": {
+
"integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==",
+
"dependencies": [
+
"postcss",
+
"postcss-selector-parser"
+
]
+
},
+
"postcss-nested@6.2.0_postcss@8.5.1": {
+
"integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==",
+
"dependencies": [
+
"postcss",
+
"postcss-selector-parser"
+
]
+
},
+
"postcss-selector-parser@6.1.2": {
+
"integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
+
"dependencies": [
+
"cssesc",
+
"util-deprecate"
+
]
+
},
+
"postcss-value-parser@4.2.0": {
+
"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="
+
},
+
"postcss@8.5.1": {
+
"integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==",
+
"dependencies": [
+
"nanoid",
+
"picocolors",
+
"source-map-js"
+
]
+
},
+
"punycode.js@2.3.1": {
+
"integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA=="
+
},
+
"purgecss-from-html@7.0.2": {
+
"integrity": "sha512-eJOLW9wIt30qvruvz+FCBmaW5XLt+bx0VCGKn+ZhEDzj69e834kt4pIWhIn0APFfwYu4t9x5rSkjyAvbI77xqg==",
+
"dependencies": [
+
"parse5",
+
"parse5-htmlparser2-tree-adapter"
+
]
+
},
+
"purgecss@7.0.2": {
+
"integrity": "sha512-4Ku8KoxNhOWi9X1XJ73XY5fv+I+hhTRedKpGs/2gaBKU8ijUiIKF/uyyIyh7Wo713bELSICF5/NswjcuOqYouQ==",
+
"dependencies": [
+
"commander@12.1.0",
+
"glob@11.0.1",
+
"postcss",
+
"postcss-selector-parser"
+
]
+
},
+
"queue-microtask@1.2.3": {
+
"integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="
+
},
+
"read-cache@1.0.0": {
+
"integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
+
"dependencies": [
+
"pify"
+
]
+
},
+
"readdirp@3.6.0": {
+
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+
"dependencies": [
+
"picomatch"
+
]
+
},
+
"remove-markdown@0.6.0": {
+
"integrity": "sha512-B9g8yo5Zp1wXfZ77M1RLpqI7xrBBERkp7+3/Btm9N/uZV5xhXZjzIxDbCKz7CSj141lWDuCnQuH12DKLUv4Ghw=="
+
},
+
"resolve@1.22.8": {
+
"integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
+
"dependencies": [
+
"is-core-module",
+
"path-parse",
+
"supports-preserve-symlinks-flag"
+
]
+
},
+
"reusify@1.0.4": {
+
"integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="
+
},
+
"run-parallel@1.2.0": {
+
"integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+
"dependencies": [
+
"queue-microtask"
+
]
+
},
+
"satori@0.12.1": {
+
"integrity": "sha512-0SbjchvDrDbeXeQgxWVtSWxww7qcFgk3DtSE2/blHOSlLsSHwIqO2fCrtVa/EudJ7Eqno8A33QNx56rUyGbLuw==",
+
"dependencies": [
+
"@shuding/opentype.js",
+
"css-background-parser",
+
"css-box-shadow",
+
"css-gradient-parser",
+
"css-to-react-native",
+
"emoji-regex@10.4.0",
+
"escape-html",
+
"linebreak",
+
"parse-css-color",
+
"postcss-value-parser",
+
"yoga-wasm-web"
+
]
+
},
+
"semver@7.7.0": {
+
"integrity": "sha512-DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ=="
+
},
+
"sharp@0.33.5": {
+
"integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==",
+
"dependencies": [
+
"@img/sharp-darwin-arm64",
+
"@img/sharp-darwin-x64",
+
"@img/sharp-libvips-darwin-arm64",
+
"@img/sharp-libvips-darwin-x64",
+
"@img/sharp-libvips-linux-arm",
+
"@img/sharp-libvips-linux-arm64",
+
"@img/sharp-libvips-linux-s390x",
+
"@img/sharp-libvips-linux-x64",
+
"@img/sharp-libvips-linuxmusl-arm64",
+
"@img/sharp-libvips-linuxmusl-x64",
+
"@img/sharp-linux-arm",
+
"@img/sharp-linux-arm64",
+
"@img/sharp-linux-s390x",
+
"@img/sharp-linux-x64",
+
"@img/sharp-linuxmusl-arm64",
+
"@img/sharp-linuxmusl-x64",
+
"@img/sharp-wasm32",
+
"@img/sharp-win32-ia32",
+
"@img/sharp-win32-x64",
+
"color",
+
"detect-libc",
+
"semver"
+
]
+
},
+
"shebang-command@2.0.0": {
+
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+
"dependencies": [
+
"shebang-regex"
+
]
+
},
+
"shebang-regex@3.0.0": {
+
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="
+
},
+
"signal-exit@4.1.0": {
+
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="
+
},
+
"simple-swizzle@0.2.2": {
+
"integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==",
+
"dependencies": [
+
"is-arrayish"
+
]
+
},
+
"source-map-js@1.2.1": {
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="
+
},
+
"string-width@4.2.3": {
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+
"dependencies": [
+
"emoji-regex@8.0.0",
+
"is-fullwidth-code-point",
+
"strip-ansi@6.0.1"
+
]
+
},
+
"string-width@5.1.2": {
+
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
+
"dependencies": [
+
"eastasianwidth",
+
"emoji-regex@9.2.2",
+
"strip-ansi@7.1.0"
+
]
+
},
+
"string.prototype.codepointat@0.2.1": {
+
"integrity": "sha512-2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg=="
+
},
+
"strip-ansi@6.0.1": {
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+
"dependencies": [
+
"ansi-regex@5.0.1"
+
]
+
},
+
"strip-ansi@7.1.0": {
+
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+
"dependencies": [
+
"ansi-regex@6.1.0"
+
]
+
},
+
"sucrase@3.34.0": {
+
"integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==",
+
"dependencies": [
+
"@jridgewell/gen-mapping",
+
"commander@4.1.1",
+
"glob@7.1.6",
+
"lines-and-columns",
+
"mz",
+
"pirates",
+
"ts-interface-checker"
+
]
+
},
+
"sucrase@3.35.0": {
+
"integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==",
+
"dependencies": [
+
"@jridgewell/gen-mapping",
+
"commander@4.1.1",
+
"glob@10.4.5",
+
"lines-and-columns",
+
"mz",
+
"pirates",
+
"ts-interface-checker"
+
]
+
},
+
"supports-preserve-symlinks-flag@1.0.0": {
+
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="
+
},
+
"svg2png-wasm@1.4.1": {
+
"integrity": "sha512-ZFy1NtwZVAsslaTQoI+/QqX2sg0vjmgJ/jGAuLZZvYcRlndI54hLPiwLC9JzXlFBerfxN5JiS7kpEUG0mrXS3Q=="
+
},
+
"svgo@3.3.2": {
+
"integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==",
+
"dependencies": [
+
"@trysound/sax",
+
"commander@7.2.0",
+
"css-select",
+
"css-tree@2.3.1",
+
"css-what",
+
"csso",
+
"picocolors"
+
]
+
},
+
"tailwindcss@3.3.3_postcss@8.5.1": {
+
"integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==",
+
"dependencies": [
+
"@alloc/quick-lru",
+
"arg",
+
"chokidar",
+
"didyoumean",
+
"dlv",
+
"fast-glob@3.3.1",
+
"glob-parent@6.0.2",
+
"is-glob",
+
"jiti",
+
"lilconfig@2.1.0",
+
"micromatch@4.0.5",
+
"normalize-path",
+
"object-hash",
+
"picocolors",
+
"postcss",
+
"postcss-import@15.1.0_postcss@8.5.1",
+
"postcss-js",
+
"postcss-load-config@4.0.1_postcss@8.5.1",
+
"postcss-nested@6.0.1_postcss@8.5.1",
+
"postcss-selector-parser",
+
"resolve",
+
"sucrase@3.34.0"
+
]
+
},
+
"tailwindcss@3.4.17_postcss@8.5.1": {
+
"integrity": "sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==",
+
"dependencies": [
+
"@alloc/quick-lru",
+
"arg",
+
"chokidar",
+
"didyoumean",
+
"dlv",
+
"fast-glob@3.3.3",
+
"glob-parent@6.0.2",
+
"is-glob",
+
"jiti",
+
"lilconfig@3.1.3",
+
"micromatch@4.0.8",
+
"normalize-path",
+
"object-hash",
+
"picocolors",
+
"postcss",
+
"postcss-import@15.1.0_postcss@8.5.1",
+
"postcss-js",
+
"postcss-load-config@4.0.2_postcss@8.5.1",
+
"postcss-nested@6.2.0_postcss@8.5.1",
+
"postcss-selector-parser",
+
"resolve",
+
"sucrase@3.35.0"
+
]
+
},
+
"thenify-all@1.6.0": {
+
"integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
+
"dependencies": [
+
"thenify"
+
]
+
},
+
"thenify@3.3.1": {
+
"integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
+
"dependencies": [
+
"any-promise"
+
]
+
},
+
"tiny-inflate@1.0.3": {
+
"integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw=="
+
},
+
"to-regex-range@5.0.1": {
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+
"dependencies": [
+
"is-number"
+
]
+
},
+
"ts-interface-checker@0.1.13": {
+
"integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA=="
+
},
+
"tslib@2.8.1": {
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
+
},
+
"uc.micro@2.1.0": {
+
"integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A=="
+
},
+
"unicode-trie@2.0.0": {
+
"integrity": "sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==",
+
"dependencies": [
+
"pako",
+
"tiny-inflate"
+
]
+
},
+
"unidecode@1.1.0": {
+
"integrity": "sha512-GIp57N6DVVJi8dpeIU6/leJGdv7W65ZSXFLFiNmxvexXkc0nXdqUvhA/qL9KqBKsILxMwg5MnmYNOIDJLb5JVA=="
+
},
+
"update-browserslist-db@1.1.2_browserslist@4.24.4": {
+
"integrity": "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==",
+
"dependencies": [
+
"browserslist",
+
"escalade",
+
"picocolors"
+
]
+
},
+
"util-deprecate@1.0.2": {
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
+
},
+
"which@2.0.2": {
+
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+
"dependencies": [
+
"isexe"
+
]
+
},
+
"wrap-ansi@7.0.0": {
+
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+
"dependencies": [
+
"ansi-styles@4.3.0",
+
"string-width@4.2.3",
+
"strip-ansi@6.0.1"
+
]
+
},
+
"wrap-ansi@8.1.0": {
+
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
+
"dependencies": [
+
"ansi-styles@6.2.1",
+
"string-width@5.1.2",
+
"strip-ansi@7.1.0"
+
]
+
},
+
"wrappy@1.0.2": {
+
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
+
},
+
"yaml@2.7.0": {
+
"integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA=="
+
},
+
"yoga-wasm-web@0.3.3": {
+
"integrity": "sha512-N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA=="
+
}
+
},
+
"remote": {
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/adapters/lume.ts": "ce2f4c68b1461bd9f208c31c61196fda8d60086cac441af1e7cde10c3683555d",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/cms.ts": "274a3ca6a53543107e1dc7f93dec2c66dc25db5bbb647456d434210032ad77a4",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/collection.ts": "5066e101d10ac402cc9a1f7a1469fd0ad7a5abf99c3dd95d1f3353ddd14cab2a",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/document.ts": "7086d5c4f71c37c6737d703f985adfb9c236bed6e64f4b43644987e176c913d0",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/git.ts": "a61a3a41b8c736d1f0db1bf580c862a83d95803f5a74bc17af68e62c7e6aff00",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/routes/auth.ts": "fed0ac4b94588ac1a469b0982a525ae412c6a8316bd24d51ae7e94e3580373c1",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/routes/collection.ts": "77b2e9e9133995a4e77cac2087e540c7aa70c5dd90d312422fa8446953cf77a3",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/routes/document.ts": "5f9b01893b4f435dd64d28d16c647b3ed7373fcc56f6a658420850348198109f",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/routes/files.ts": "42ac6579f651f61a00849f0f69d37af769d1f52ca1c0cdf9f5d23a66b0dfedc7",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/routes/index.ts": "96454ddf14ec2adc13ef3875e79fd9c6df1dbc4d10bdb7cb0e0ff2b206dff015",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/routes/versions.ts": "4d56ef0a1fe97a2864eeda04f0256d6f45f2d79da8c50c1f3079cea94d1b56cf",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/breadcrumb.ts": "7a7ed1704382bb73e45d807b526b0ccc8713f6e04034948c9bf8f12fd1c05394",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/collection/create.ts": "2781633aaecf7de23804758c66a5c93eb77feeed38d70e00688a4bd51bda109b",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/collection/edit.ts": "23262a5125de0730345db897b32cd5cbc76225fa57c8ff134b94b18de31d7840",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/collection/list.ts": "07f4ceff2fc8e7f6b20da8ebdf1ca091f6fd75c6a1355945d393ac90901a9dd1",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/document/edit.ts": "bca9067901a39f8ff2b14c264fde080ff5bf6b42b6278d29b26dd097c20cea71",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/index.ts": "8bc174ff229e43ab751e6d6274b315a6399f3bab9bd7b4ad3975ac8d0437101c",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/layout.ts": "fcbc1f3c82659a97a0414856ed257290b5be8c03141c18483ecf56bbae7b789f",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/notfound.ts": "c89b3b113a6cd847b7dfa6155688c01e8e53754e5f0548149971ae5da5c439cd",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/tree.ts": "45150ba7337ba38cdecaa68e01ef79172cd609d711dd56829769be5d5df08c5c",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/uploads/create.ts": "8c6119cdce5a5a822333d3819496cda21eb287f1ef75dcfb3a9523f78ee0d304",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/uploads/crop.ts": "be789439a70b835094e133d2e4ac6bde11fd0ac8cc85e2ccae5620f5861d4082",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/uploads/list.ts": "04ed7e891596e5222be5087d87f72285ac0fe78053ff1e0e949c6a9fbc70cc16",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/templates/uploads/view.ts": "fec98bf13603d30df682d2526fca1dc78ce88f536a740068e82c284bf93b11f0",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/upload.ts": "cb99f605ec831b9f91c5ae4889b012adee612a31a9744898e345d55aeb920204",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/utils/data.ts": "b7e2dcd3f07b142aba97e5540741fd0724d583dd4d6ec12115e3907ae6258025",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/utils/env.ts": "723cb01d9509e0942a32ff568314b5ac27152c94e0070dc0cd6a706c74f33a62",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/utils/event.ts": "a7915a3e6bf7b34c166ee3aefc8ca5aab1631de50e0d851f78d0e8c8d0c766d8",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/utils/path.ts": "cd949fd0db7ca4bc8f05abbaa8a1398868784c424b6edff953a29ee8f6c87490",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/core/utils/string.ts": "6e287cfb18e4a3093b4c0d4e73bdcbc34557f3e8268f09e83e0ff438dcf999a2",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/deps/hono.ts": "2f2fc71e8c620604b3767171440f6971943125b1c15ff2df0f3c3c3a7d82eccd",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/deps/imagick.ts": "e2054263419bad3a1a58e391b2ca007aaa9d33f66bc7c149c6f8f217b73c869a",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/deps/std.ts": "6d54d857a476776ea342ceff5b8bcf84ca45e24f1b7bb39cd1c1996a2c20c3b1",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/fields/core.ts": "1488b5d506ee3f913a87f8d0e27d25eeeb64599ff4d84991f51dc068b4f0b8b1",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/mod.ts": "8c0e794889d779e84137f4d3b9673f5a5a1083777afdffa571d0a7af54ddceac",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/storage/fs.ts": "166caec312350faec096d7a95f2625c1b4f440192676efe55e03e52442f95679",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/storage/transformers/front_matter.ts": "d0809292ae1ccb367c7e7852a2b6bd383e4da531ff95da4a640afa181412fe0d",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/storage/transformers/json.ts": "eb5d664be2042cc266a4fc737bbeeb1b4eb586e2beab8ca1965b07c2b066ee68",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/storage/transformers/mod.ts": "d828136358c98c93b45b5a1f1c7f383f9788ec47ede04bcb03de8ee0b19c2b3c",
+
"https://cdn.jsdelivr.net/gh/lumeland/cms@v0.9.2/storage/transformers/yaml.ts": "87ce4b914a91ecec833558c29a5bbe8ca33f5cdf05141ba5e9c4e497aace561c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli/build_worker.ts": "ef70f1b58f42bd4fd15ee528b3a40593621207c2d40bd877150f453cb8610d04",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/cli/utils.ts": "4697e4280ff62b537507ed707ec84ea707b0519f8de32e2e762f498104a8d1ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/cache.ts": "2a76b1561b1870317c7ba2b88021a2f7e18233dd8dcb15eb8e5d4b98bbb280b9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/component_loader.ts": "7262ea89c7b898d1c86815759e8235729db0725a72075fabc9f4a0e274f7b5aa",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/file.ts": "7c3f24a86b5a2c59c6ddc15ce7d86d171eab25495ebfe87f2530b924af18c9ea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/formats.ts": "e65130e5c5f2e49435619479710c812199b480a9e145fdc6b2bac11cfe6ea08e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/fs.ts": "361cd6cbb575a329013d7098542d45a5c28aa2fdd1de0b15c9015f47403f4f06",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/processors.ts": "0f4eef7e2dc44ef8eea1b8ab1fcc0dc577b0d3c47f800a8482379db7d94241a8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/renderer.ts": "beeefafbc45030cc3d9c8ca7a214e1a28d70431574090045f0e63f2f9414843a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/searcher.ts": "9093c2c64d1190b55a886b2905a224e0cbf86532bea4883e065e391851a8f14c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/server.ts": "3d663ed7cffed0af107ff03adf344ab62f25ac302d49b3fb85ec4a479b2e12ab",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/site.ts": "97ce888262f060501e8b4117c1e9863eb3fc7d370fcb9f6f553f59904dee2667",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/slugifier.ts": "70427c98d32533171933304d34867c15d6b7bcfd48c7d1e0347184b8c4fb8b8e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/source.ts": "dcdb3e4d5edee754b322ae34829d46a02ead0815f912e7cbf4d60a964faa9886",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/data_values.ts": "ff6866d0c61bdca40c6ba98826ccc8626d8a553d4f8f4a7d320041eea21aa900",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/date.ts": "4972e6e43d9756a3858494004e1b45df3b947033abe68db02acfc0bbb7847ce1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/dom.ts": "d406fb5c48ceb012286d0aff66ef635261eda666de2ce07538c0cf9366b8fecd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/log.ts": "371a419a167f3002e28fd3cb8d8409e210a844f5f1212f36e607417f77d65a8a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/lume_config.ts": "6898667e47285849e775d409aafbc6e807acdb2062e752aae26fe2ebaee36197",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/lume_version.ts": "c1c63818097e4a273183429ab5b2446a253307f7bc2d0d6361a17b4f230a617d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/merge_data.ts": "a574d97eeaa1513d30440488f52e988f0fe2085397611852673cea10076f01ff",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/object.ts": "2ae792cc546e452f92bec9cb92a572bb750162d787a11f0dfda5a1d806049883",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/page_content.ts": "bbadb588f9d9fcf1a2af156ce4b68974dfad39b65c3c8d42a6f1895b194c7eec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/page_url.ts": "ff59e321814efbb921d3e62392c0e4f27d2b67799c4f25dd884d04eb35ba9bb8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/path.ts": "82a45e232b20d656b3a24541f602fa8d623d30183fe284576bfb322781860304",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/utils/read.ts": "e096b1f37f8f0a6820e6ee00af1832d133598d55c961b226d057a5467207c5cd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/core/writer.ts": "7c56cdae2fcbaebe3c4d66d6c75bc056906d82517d880ba8e02acbb464e6c6b6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/base64.ts": "5ef648c7379d3f2b949442d75a6a28792be2113c6edb5860a64205b29f89030d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/cli.ts": "d9b7db60c2345e08c6f6fd461711e56e70f8539d5f5974a506c06bc81e97c710",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/colors.ts": "d0fc91d58b85772bff7f77349a114162f09aa98dd8b38e85249605ae603de7c9",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/crypto.ts": "020df39e6ba16ec8f3936b0ceff03a3d64bde8900a976ba3a519b5cc09d337d2",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/front_matter.ts": "279c53db46ac7f557f217ffb7fbd0c307ad6cbd8ff64d91cd8b023a3b50b2c92",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/fs.ts": "3c3f866b438f37d8f00e0c306c2610415587e861927d7550c8d764bba7b295a0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/hex.ts": "a24dd4cebd12358d5c5860af61c3ef732837cbfc97437af59c4b7d49e2f24e1a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/highlight.ts": "e8f830a1137ff7e8246ce21518452b8cbf8089db409458c6d9c31040c11d8428",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/http.ts": "499d1e2f89bad31d06adb3d6a76207b7fc81b3fb91f274d46ca9ae2464fed97d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/lightningcss.ts": "e0866a0b15ff5411d4f70c3fc4a46be2929c9a7499acc549ce0e2b22ae9facbd",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/log.ts": "a7c738aa0d4b3a7595816499ccbddbcb045239a2c441166e3fc961d1698054d4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/minify_html.ts": "d6b88e9bcbcef9d0658916f852e6f9322ed88622368b01da4477533b66c11591",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/pagefind.ts": "b88cbf55ec97a7b02100a9b68c9f16bcc622e0d93122b6a19c766c389a167e35",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/purgecss.ts": "524914d3311933aaeb8052c89c361efdc4656bf6fb8aeec9d1b3d7750dbf8d3f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/satori.ts": "4ed807a234a0abe729e4e583775501332c788750bf934d03ea5ed4dccaeb8320",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/sharp.ts": "b0692f7293a33a6b191ef672420e3eb37c308ccbe5cf55d15231254e2972a8e0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/tailwindcss.ts": "a94c7e0431995304fb6a88a55c04bcc527ba6d4eeda207dd67d4f9b314f6683f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/temporal.ts": "1958b134c4186b0ab39316fa33ba19d1a4203e2ea445080429d60d296b91a552",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/toml.ts": "cc55b94f0c44e4113ff09e153e8b1c58bc5f585b7ea1e8f14f96c8152241b166",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/unidecode.ts": "e476000bf9278edd64eb79a426ec68ac45e1c691a114ee07f9b89b4d30ffca1c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/unocss.ts": "9a98cde5e492a026c2735c84e4fd3a7940415d34273a147ca45d4c6da21c214f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/vento.ts": "c905c9d3cf1553fa489dc3657de6183e0d6149f17ed0e27f84426556a5ed7267",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/middlewares/not_found.ts": "4507842d422267062c34662dceab17affcaad01858a5890fda163a8ddeb31487",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/middlewares/reload.ts": "ed0ec1c4627243d035895e2d7ecaf7a0bd1c04415476a34d13861ea9a6f9a6c5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/middlewares/reload_client.js": "992ac4a2f4a9fb4a1ab5f23f674ef202a43d73652cdebcf7b1552b482a7410ef",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/mod.ts": "b91306d53104315c28b14ec8938b7a16a03da5202cb5488cd9b5deeda34103b5",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/brotli.ts": "549bf246f6bc31c91da59b27a42328f3cfc1d5357b359549ca344678799ff4bc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/code_highlight.ts": "de9dd53e4a86b1ee7c9ac637961d4113e3b92b8b9b74f47397f039b1aa39b83d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/feed.ts": "cfb10ca5bab8a44d5d8fa6d0624035b6300110be8a21cda0f815b827ba2bf307",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/json.ts": "5c49499e56b919ec848d4118ec97dd4fe0a323a6cc4c648dc45ab55297614c12",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/lightningcss.ts": "2006c712b89e9f0b88852127efc7f4c856eefec565941c5ab9ea362d35ae996a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/markdown.ts": "7e82d897c1e35bf119dcd18b6aec7a6ba5aa06848897b34ff9cd161ec7c8757e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/metas.ts": "a4fd1c073a00b527f91ba00f2ae61e55ee81f96b8807614c01fbf358f4f57363",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/minify_html.ts": "3a8b2037199cda2814e8c712086789b8be3646d7c29ea31c27f4fa5b03de5c41",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/modules.ts": "4e177c0ffe972b9deef10db2bf0ae52b405418af4dbac03db9e7ffbd6a3ec6ae",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/nav.ts": "bb20bb3fb8eeec2486f26b671c0c131f32b38587d1d8d56c0ae1bbee77f72dfc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/og_images.ts": "9029f8a15d6a3f9e2aff380285d1b283cd9aa78c6970a7e50661a7e834a12f6b",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/pagefind.ts": "1e3b99c9104d85ba0cd8548cde23e02ee25f8f3d7f449d7420cf9d4ba487eb3c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/paginate.ts": "6a1a9a24d0fabed2f722a6a6f29d98559219c69475685034181816e82d367f2e",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/picture.ts": "6e3a19d2e8fc464ea0139a8a784666924e55f98c4358a5f4e6348d56788cf8a8",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/purgecss.ts": "7d4906ea2415d8611b8af6947eaaaf56bc33040806e5b840410368f1b62fb86c",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/relations.ts": "0228745729a6361b6da6daee0df72ce4c1ebcd4e100d20e00778ff1e643c0a27",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/robots.ts": "97bf9b5e0957f7229a1a3e6fc11d708af42b968ad35f0cf00b770ebf5eaa717f",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/search.ts": "5acb5be828bbbd012fb9226cb97ec3e370d43d05aa44d16e7e7d50bab368b442",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/sitemap.ts": "9e2054569e6dd380a6ba3093eb2b4c63b1263590dd62bab134ebcd52c6616125",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/slugify_urls.ts": "95dffa7d5d7fbe06b97e6a4237df087def04e133d0a2d543d1f8023e6b9505f0",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/source_maps.ts": "afd62c4e911d2037c9edd70b1f5fe0b7b8d9cf66c1748f210a5731947b494fe4",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/sri.ts": "a1c7ff7458f55e830ed0563c8aa1d23310258c652050d7bb6cef15d908a38780",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/svgo.ts": "e22a4998b3793e1b583a1290bd8bf2b8f37b8df5d7014f45a629a5547440c24d",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/tailwindcss.ts": "b7830504a89caf2a56583cd914f1227a291b3af5b2206b338bfd877d7559a262",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/toml.ts": "e5bf35ed4915587acd453f002b00ae9b88c1782cadc25c703d7642a390af43ea",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/transform_images.ts": "165b093f280bf0174c54d04b8344b2b610c92c3ced97121149fda13b1ad25887",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/unocss.ts": "0331e3dff39b42e21229999ec369626df15c50c21eb623d0ece950fd26045edb",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/url.ts": "15f2e80b6fcbf86f8795a3676b8d533bab003ac016ff127e58165a6ac3bffc1a",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/vento.ts": "cf36711e93ce30664759306dd283328604e7669e209d28cd8f7df581e4ba9b66",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/plugins/yaml.ts": "d0ebf37c38648172c6b95c502753a3edf60278ab4f6a063f3ca00f31e0dd90cc",
+
"https://cdn.jsdelivr.net/gh/lumeland/lume@a96db7d36b23a1f8ac4c89ec92cdfff49da5e2e8/types.ts": "5f580502f366b9b25106eb72d49b30d9af7715c8a304fe6e21f382d3c2a4cc38",
+
"https://deno.land/std@0.159.0/encoding/ascii85.ts": "f2b9cb8da1a55b3f120d3de2e78ac993183a4fd00dfa9cb03b51cf3a75bc0baa",
+
"https://deno.land/std@0.170.0/_util/asserts.ts": "d0844e9b62510f89ce1f9878b046f6a57bf88f208a10304aab50efcb48365272",
+
"https://deno.land/std@0.170.0/_util/os.ts": "8a33345f74990e627b9dfe2de9b040004b08ea5146c7c9e8fe9a29070d193934",
+
"https://deno.land/std@0.170.0/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.224.0/assert/assert.ts": "09d30564c09de846855b7b071e62b5974b001bb72a4b797958fe0660e7849834",
+
"https://deno.land/std@0.224.0/assert/assertion_error.ts": "ba8752bd27ebc51f723702fac2f54d3e94447598f54264a6653d6413738a8917",
+
"https://deno.land/std@0.224.0/cli/parse_args.ts": "5250832fb7c544d9111e8a41ad272c016f5a53f975ef84d5a9fe5fcb70566ece",
+
"https://deno.land/std@0.224.0/fmt/colors.ts": "508563c0659dd7198ba4bbf87e97f654af3c34eb56ba790260f252ad8012e1c5",
+
"https://deno.land/std@0.224.0/fs/_get_file_info_type.ts": "da7bec18a7661dba360a1db475b826b18977582ce6fc9b25f3d4ee0403fe8cbd",
+
"https://deno.land/std@0.224.0/fs/ensure_dir.ts": "51a6279016c65d2985f8803c848e2888e206d1b510686a509fa7cc34ce59d29f",
+
"https://deno.land/std@0.224.0/jsonc/parse.ts": "06fbe10f0bb0cba684f7902bf7de5126b16eb0e5a82220c98a4b86675c7f9cff",
+
"https://deno.land/std@0.224.0/path/_common/assert_path.ts": "dbdd757a465b690b2cc72fc5fb7698c51507dec6bfafce4ca500c46b76ff7bd8",
+
"https://deno.land/std@0.224.0/path/_common/constants.ts": "dc5f8057159f4b48cd304eb3027e42f1148cf4df1fb4240774d3492b5d12ac0c",
+
"https://deno.land/std@0.224.0/path/_common/dirname.ts": "684df4aa71a04bbcc346c692c8485594fc8a90b9408dfbc26ff32cf3e0c98cc8",
+
"https://deno.land/std@0.224.0/path/_common/normalize.ts": "684df4aa71a04bbcc346c692c8485594fc8a90b9408dfbc26ff32cf3e0c98cc8",
+
"https://deno.land/std@0.224.0/path/_common/normalize_string.ts": "33edef773c2a8e242761f731adeb2bd6d683e9c69e4e3d0092985bede74f4ac3",
+
"https://deno.land/std@0.224.0/path/_common/strip_trailing_separators.ts": "7024a93447efcdcfeaa9339a98fa63ef9d53de363f1fbe9858970f1bba02655a",
+
"https://deno.land/std@0.224.0/path/posix/_util.ts": "1e3937da30f080bfc99fe45d7ed23c47dd8585c5e473b2d771380d3a6937cf9d",
+
"https://deno.land/std@0.224.0/path/posix/dirname.ts": "76cd348ffe92345711409f88d4d8561d8645353ac215c8e9c80140069bf42f00",
+
"https://deno.land/std@0.224.0/path/posix/join.ts": "7fc2cb3716aa1b863e990baf30b101d768db479e70b7313b4866a088db016f63",
+
"https://deno.land/std@0.224.0/path/posix/normalize.ts": "baeb49816a8299f90a0237d214cef46f00ba3e95c0d2ceb74205a6a584b58a91",
+
"https://deno.land/std@0.224.0/semver/_shared.ts": "5c53a675225cba9ad74ae2e17c124e333728fc2b551a13e8a32b99433b90c1c2",
+
"https://deno.land/std@0.224.0/semver/compare.ts": "7b5610c25ded57dc4aa41034ee02857d1a6fff609ab183afea17849284f86236",
+
"https://deno.land/std@0.224.0/semver/less_than.ts": "890eb36e6294d245934a33dbe6818164c4ec6fddf3aa585a590031393f781719",
+
"https://deno.land/std@0.224.0/semver/parse.ts": "94c09f3486643853e7438e64f2c6741462fbeb84cf141ad5bfe88b73ec4cb0f3",
+
"https://deno.land/x/brotli@0.1.7/mod.ts": "08b913e51488b6e7fa181f2814b9ad087fdb5520041db0368f8156bfa45fd73e",
+
"https://deno.land/x/brotli@0.1.7/wasm.js": "77771b89e89ec7ff6e3e0939a7fb4f9b166abec3504cec0532ad5c127d6f35d2",
+
"https://deno.land/x/cliffy@v0.25.7/_utils/distance.ts": "02af166952c7c358ac83beae397aa2fbca4ad630aecfcd38d92edb1ea429f004",
+
"https://deno.land/x/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/dbin@v0.3.0/mod.ts": "59ab427a025578770aabffb5be3060db3c92b1f4b94b5d73e5f4eb1a2d1eaa86",
+
"https://deno.land/x/deno_dom@v0.1.49/build/deno-wasm/deno-wasm.js": "d6841a06342eb6a2798ef28de79ad69c0f2fa349fa04d3ca45e5fcfbf50a9340",
+
"https://deno.land/x/deno_dom@v0.1.49/deno-dom-wasm.ts": "0669396686fb207f1354af33df6aabe2189b4eceafdb1bf7f3d6bbb2637b6b03",
+
"https://deno.land/x/deno_dom@v0.1.49/src/api.ts": "0ff5790f0a3eeecb4e00b7d8fbfa319b165962cf6d0182a65ba90f158d74f7d7",
+
"https://deno.land/x/deno_dom@v0.1.49/src/constructor-lock.ts": "0e7b297e8b9cf921a3b0d3a692ec5fb462c5afc47ec554292e20090b9e16b40a",
+
"https://deno.land/x/deno_dom@v0.1.49/src/deserialize.ts": "514953418b7ae558ed7361ad9be21013f46cba2f58bd7f4acc90cf1e89f9c8cf",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/document-fragment.ts": "0b915d094830d43b330dc2fb8012b990f2c815773c6cdcd4a9fdff99fe47412e",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/document.ts": "ad584ac4ce6dce03f0ff6ef4b7db86fd598f9c7824da1387f7f2acd7d6948e4a",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/dom-parser.ts": "784ee0e766d4a01e14420f328053fd3a0016c6b40ee442edc3ae80f5d9777927",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/element.ts": "7d330192fbfd406fb67ab7a3387576fe35fec129b7c52c2ea38615144fa5b12e",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/elements/html-template-element.ts": "1707dfb4cbb145f3bcb94426d7cdedbaa336620d0afed30e99f50fe87ba24a98",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/html-collection.ts": "68046d3f7380f1cb148188c53f48e337123acf3af533c52e74cba6d5e9846c3d",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/node-list.ts": "31b45dafce91d5f6d7e8f5c91cf4f6667842a971f09d40fd08f5ddd7cb3b1dab",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/node.ts": "53ada9e4b2ae21f10f5941ff257ed4585920ae392020544648f349c05d15d30c",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/selectors/custom-api.ts": "852696bd58e534bc41bd3be9e2250b60b67cd95fd28ed16b1deff1d548531a71",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/selectors/nwsapi-types.ts": "c43b36c36acc5d32caabaa54fda8c9d239b2b0fcbce9a28efb93c84aa1021698",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/selectors/nwsapi.js": "985d7d8fc1eabbb88946b47a1c44c1b2d4aa79ff23c21424219f1528fa27a2ff",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/selectors/selectors.ts": "83eab57be2290fb48e3130533448c93c6c61239f2a2f3b85f1917f80ca0fdc75",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/selectors/sizzle-types.ts": "78149e2502409989ce861ed636b813b059e16bc267bb543e7c2b26ef43e4798b",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/selectors/sizzle.js": "c3aed60c1045a106d8e546ac2f85cc82e65f62d9af2f8f515210b9212286682a",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/string-cache.ts": "8e935804f7bac244cc70cec90a28c9f6d30fea14c61c2c4ea48fca274376d786",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/utils-types.ts": "96db30e3e4a75b194201bb9fa30988215da7f91b380fca6a5143e51ece2a8436",
+
"https://deno.land/x/deno_dom@v0.1.49/src/dom/utils.ts": "bc429635e9204051ba1ecc1b212031b5ee7c6bcd95120c91bef696804aa67e74",
+
"https://deno.land/x/deno_dom@v0.1.49/src/parser.ts": "e06b2300d693e6ae7564e53dfa5c9a9e97fdb8c044c39c52c8b93b5d60860be3",
+
"https://deno.land/x/imagemagick_deno@0.0.31/mod.ts": "124d7f045429f6e6c486b86e72d025410d09576bc0d8075e69f97118a1a33413",
+
"https://deno.land/x/lume@v2.5.1/cli.ts": "a3254363ab2d55df4ff1f25e253f5edc53da1088c33a74efe36e605e74bb67c4",
+
"https://deno.land/x/lume@v2.5.1/cli/build.ts": "a3acda3c702d6a51a8fe65ea3abc17813deea0db71e442de6120a747f56a2466",
+
"https://deno.land/x/lume@v2.5.1/cli/build_worker.ts": "ef70f1b58f42bd4fd15ee528b3a40593621207c2d40bd877150f453cb8610d04",
+
"https://deno.land/x/lume@v2.5.1/cli/cms.ts": "7f3f46c3353661a7679926d0ddcfe3e596f3c97ad2de7f535bde5906e42c3f5a",
+
"https://deno.land/x/lume@v2.5.1/cli/cms_worker.ts": "c053e8d97b46e499309269f97b6429a6c0acdfd5ef797d783861dfd5a8b9a755",
+
"https://deno.land/x/lume@v2.5.1/cli/create.ts": "f340056e3b01a61007f82b47a174ede55df2d80d343e492a3853d44007bb8fc6",
+
"https://deno.land/x/lume@v2.5.1/cli/missing_worker_apis.ts": "70625ded7fee5de7d215e0829ce8dc4bb7060f6a496c09db880ebaec8b3efb92",
+
"https://deno.land/x/lume@v2.5.1/cli/run.ts": "27e7c84c2bcadc3aa4ca4fbad02330f33000dca9a2ef41780bad3676606bc029",
+
"https://deno.land/x/lume@v2.5.1/cli/upgrade.ts": "a11e7c9024f78c2e7376c57b4a99e389dbf490769779d2d37a4a3ccd6ef27d9e",
+
"https://deno.land/x/lume@v2.5.1/cli/utils.ts": "4697e4280ff62b537507ed707ec84ea707b0519f8de32e2e762f498104a8d1ae",
+
"https://deno.land/x/lume@v2.5.1/core/cache.ts": "e0d7f71e84bcc1c7f76d7ad35b9e9260a694215019f9c80763e17489b628f909",
+
"https://deno.land/x/lume@v2.5.1/core/component_loader.ts": "da80bf80a168d0b91b59eb3449fbf62627d8bf67879df34e71970616d47ce2ec",
+
"https://deno.land/x/lume@v2.5.1/core/data_loader.ts": "8698a9e9b1aac27147dc835ba89a0e30828c81338eceae86630607d78f146215",
+
"https://deno.land/x/lume@v2.5.1/core/events.ts": "e4fd1786eb7dd4a041d7d922779b9edf1ee89e51fd17ba5e756f380879ccb557",
+
"https://deno.land/x/lume@v2.5.1/core/file.ts": "27c04304793dec9972a24575ade217ace1eb204dd342d03930fd51fa5b8c2fbb",
+
"https://deno.land/x/lume@v2.5.1/core/formats.ts": "24d9f5ccf384b2474f457cc0d3855e6ad411ded0d6acf4afe36547ba93fc706f",
+
"https://deno.land/x/lume@v2.5.1/core/fs.ts": "0409ca756906a066300e8bdbad590a122aeffa4fa4192cd20b854c6f555bf00d",
+
"https://deno.land/x/lume@v2.5.1/core/loaders/binary.ts": "bb1e1cf3faac49f6007dc6814168dc0f633da17356db18e68862e4b2a87a3f33",
+
"https://deno.land/x/lume@v2.5.1/core/loaders/json.ts": "632e840340edf7d79091fb37474a1cbf86dd2d218090fb6f6c0420f5f5e9c2ce",
+
"https://deno.land/x/lume@v2.5.1/core/loaders/mod.ts": "f33af1a2fa0913cf393cd9ef6bf5aea2d03d1058e8966ad7f1483efbcc7df118",
+
"https://deno.land/x/lume@v2.5.1/core/loaders/module.ts": "abcb210fa6724b83407407cd0f7ef90462b35a2017bc135a3d124dd7f38843f6",
+
"https://deno.land/x/lume@v2.5.1/core/loaders/text.ts": "42860fc3482651fa6cfba18a734bb548d6e6e1163bf1015c2abc447ab150acbd",
+
"https://deno.land/x/lume@v2.5.1/core/loaders/toml.ts": "72ddfef2deea62815c28e27faa2c5356e09b3109e9547e47a6defea3d3332452",
+
"https://deno.land/x/lume@v2.5.1/core/loaders/yaml.ts": "241dc41fbe51b92e38dc748eda614c35d80fb8c63a6d40253453c6bb78c9c47e",
+
"https://deno.land/x/lume@v2.5.1/core/processors.ts": "ce9b97307740723afd86d1773e946981a96769189ba6acd649b412e48552045d",
+
"https://deno.land/x/lume@v2.5.1/core/renderer.ts": "b1879895f7544326e61e95a6413689975e79eabae0c48ca5912f06d2b4afde43",
+
"https://deno.land/x/lume@v2.5.1/core/scopes.ts": "dbdf93d7a9cead84833779e974f190b1379356ec7c0ccd34aa92f917c2cdd2f9",
+
"https://deno.land/x/lume@v2.5.1/core/scripts.ts": "286969b120d2290ba57a7fdd9b37e587aacf4e4162d92f51f1f1e9e18c864f30",
+
"https://deno.land/x/lume@v2.5.1/core/searcher.ts": "9093c2c64d1190b55a886b2905a224e0cbf86532bea4883e065e391851a8f14c",
+
"https://deno.land/x/lume@v2.5.1/core/server.ts": "3d663ed7cffed0af107ff03adf344ab62f25ac302d49b3fb85ec4a479b2e12ab",
+
"https://deno.land/x/lume@v2.5.1/core/site.ts": "b1698b4c722358538f3160487457dbca3e43a4a838d94e1c8d4c4ca3b5ef77f5",
+
"https://deno.land/x/lume@v2.5.1/core/slugifier.ts": "70427c98d32533171933304d34867c15d6b7bcfd48c7d1e0347184b8c4fb8b8e",
+
"https://deno.land/x/lume@v2.5.1/core/source.ts": "1a5bc2c5fe89e7acbafcc38c4b72de8f609064b9ecf454472fadfe6f44d3dd4d",
+
"https://deno.land/x/lume@v2.5.1/core/utils/cli_options.ts": "ce8731a5e9c23b95217b6967dc4e5c434637a33d16806189acc6a87728b2e649",
+
"https://deno.land/x/lume@v2.5.1/core/utils/concurrent.ts": "cb0775b3d95f3faa356aa3a3e489dccef8807ed93cc4f84fcf5bc81e87c29504",
+
"https://deno.land/x/lume@v2.5.1/core/utils/data_values.ts": "ff6866d0c61bdca40c6ba98826ccc8626d8a553d4f8f4a7d320041eea21aa900",
+
"https://deno.land/x/lume@v2.5.1/core/utils/date.ts": "4972e6e43d9756a3858494004e1b45df3b947033abe68db02acfc0bbb7847ce1",
+
"https://deno.land/x/lume@v2.5.1/core/utils/digest.ts": "445b387983391af73269686292a65bb677119a25a327776885ff1242a9397ad8",
+
"https://deno.land/x/lume@v2.5.1/core/utils/dom.ts": "d406fb5c48ceb012286d0aff66ef635261eda666de2ce07538c0cf9366b8fecd",
+
"https://deno.land/x/lume@v2.5.1/core/utils/env.ts": "d2440f14ad27e65b0a42b35a52f59ccce0430dd52950bd5df103bb1c9ba1a4a7",
+
"https://deno.land/x/lume@v2.5.1/core/utils/generator.ts": "1e664e9fd4c469e38a0acf5c94fd49dac4f38cb6334563ea4b7fc498b5958877",
+
"https://deno.land/x/lume@v2.5.1/core/utils/log.ts": "9b229e345d85ce8bd2d108bff99c8c57fcbded62e65776af294f94f349b48641",
+
"https://deno.land/x/lume@v2.5.1/core/utils/lume_config.ts": "f2d03d5343b944bc35a0915470fffe907a2df73e22b49d95d51a79bc268e790f",
+
"https://deno.land/x/lume@v2.5.1/core/utils/lume_version.ts": "96ce8c0144b5adbc170f388b60be706244d1bd100413e748e9cf23878838c87c",
+
"https://deno.land/x/lume@v2.5.1/core/utils/merge_data.ts": "a574d97eeaa1513d30440488f52e988f0fe2085397611852673cea10076f01ff",
+
"https://deno.land/x/lume@v2.5.1/core/utils/net.ts": "21698915e73bd493d66343e9c197200e08e7b0602b2e1fa4e5393c9cf9d6c6e2",
+
"https://deno.land/x/lume@v2.5.1/core/utils/object.ts": "e00ee6e91264064772c87e69e128a09ba0e30c2c41be4a5302881f59f456fc31",
+
"https://deno.land/x/lume@v2.5.1/core/utils/page_content.ts": "e7d4323a7b66d1ae26c1263dd5a13a0c5e9f73583c9cf83454ad61f157d8351d",
+
"https://deno.land/x/lume@v2.5.1/core/utils/page_date.ts": "2a3d9c203df298ca61f568fdf509945f127f990769623c3edfd753d39807b757",
+
"https://deno.land/x/lume@v2.5.1/core/utils/page_url.ts": "8d672d6e292a50952727dda75edd70d7ec98d793de569b24e1f90a35e7836b16",
+
"https://deno.land/x/lume@v2.5.1/core/utils/path.ts": "109b9a6c450929db4f7b133859f5eebbe92999d3cc523a19988a058abec582b5",
+
"https://deno.land/x/lume@v2.5.1/core/utils/read.ts": "e096b1f37f8f0a6820e6ee00af1832d133598d55c961b226d057a5467207c5cd",
+
"https://deno.land/x/lume@v2.5.1/core/watcher.ts": "6c6c4b5feb540958bfd3ca78f420f4278d39eb317e9476aeec85d0ca69368873",
+
"https://deno.land/x/lume@v2.5.1/core/writer.ts": "7c56cdae2fcbaebe3c4d66d6c75bc056906d82517d880ba8e02acbb464e6c6b6",
+
"https://deno.land/x/lume@v2.5.1/deps/base64.ts": "5ef648c7379d3f2b949442d75a6a28792be2113c6edb5860a64205b29f89030d",
+
"https://deno.land/x/lume@v2.5.1/deps/brotli.ts": "7500a8ea7474fa73fae329b00974379de587b4fcdcc68449097e6504c49f19a1",
+
"https://deno.land/x/lume@v2.5.1/deps/cli.ts": "d9b7db60c2345e08c6f6fd461711e56e70f8539d5f5974a506c06bc81e97c710",
+
"https://deno.land/x/lume@v2.5.1/deps/cliffy.ts": "faff0c2ca187ec9fd1ad8660141f85b9d05b5c36bab25b40eb5038c02590a310",
+
"https://deno.land/x/lume@v2.5.1/deps/colors.ts": "d0fc91d58b85772bff7f77349a114162f09aa98dd8b38e85249605ae603de7c9",
+
"https://deno.land/x/lume@v2.5.1/deps/crypto.ts": "020df39e6ba16ec8f3936b0ceff03a3d64bde8900a976ba3a519b5cc09d337d2",
+
"https://deno.land/x/lume@v2.5.1/deps/dom.ts": "82cd9bc09d35f39d73cb6d4e8ea79bdbc6e19f68021476161440a88959b3323c",
+
"https://deno.land/x/lume@v2.5.1/deps/front_matter.ts": "279c53db46ac7f557f217ffb7fbd0c307ad6cbd8ff64d91cd8b023a3b50b2c92",
+
"https://deno.land/x/lume@v2.5.1/deps/fs.ts": "3c3f866b438f37d8f00e0c306c2610415587e861927d7550c8d764bba7b295a0",
+
"https://deno.land/x/lume@v2.5.1/deps/hex.ts": "a24dd4cebd12358d5c5860af61c3ef732837cbfc97437af59c4b7d49e2f24e1a",
+
"https://deno.land/x/lume@v2.5.1/deps/highlight.ts": "e8f830a1137ff7e8246ce21518452b8cbf8089db409458c6d9c31040c11d8428",
+
"https://deno.land/x/lume@v2.5.1/deps/http.ts": "499d1e2f89bad31d06adb3d6a76207b7fc81b3fb91f274d46ca9ae2464fed97d",
+
"https://deno.land/x/lume@v2.5.1/deps/icons.ts": "1b5b4b0518edf26a9d07eaa37198c364baf32474ec8a399d46f7ca954685c588",
+
"https://deno.land/x/lume@v2.5.1/deps/init.ts": "05d45af66ebdfe63e43540618f51ece8f99d98dc49de890f10eeb43abe9ed0f3",
+
"https://deno.land/x/lume@v2.5.1/deps/jsonc.ts": "e359eb0ef9f5f15518e6afe9bafb5b48bd5798dc000c8e210953c29cb319e607",
+
"https://deno.land/x/lume@v2.5.1/deps/lightningcss.ts": "e0866a0b15ff5411d4f70c3fc4a46be2929c9a7499acc549ce0e2b22ae9facbd",
+
"https://deno.land/x/lume@v2.5.1/deps/log.ts": "a7c738aa0d4b3a7595816499ccbddbcb045239a2c441166e3fc961d1698054d4",
+
"https://deno.land/x/lume@v2.5.1/deps/markdown_it.ts": "24c1c0fd18c99b9067d9ff5d051f934cb7c3446e6afbad934f6268af8d1ceb4d",
+
"https://deno.land/x/lume@v2.5.1/deps/media_types.ts": "fab5c276f8abd1db34ed7c5ccdc3d88f7a1a075cc1d1156919cab0ef35587afc",
+
"https://deno.land/x/lume@v2.5.1/deps/minify_html.ts": "d6b88e9bcbcef9d0658916f852e6f9322ed88622368b01da4477533b66c11591",
+
"https://deno.land/x/lume@v2.5.1/deps/pagefind.ts": "b88cbf55ec97a7b02100a9b68c9f16bcc622e0d93122b6a19c766c389a167e35",
+
"https://deno.land/x/lume@v2.5.1/deps/path.ts": "2cb9b457032c687de61df71a5855a97d7de18386bfe3048c03377c733e96b3ab",
+
"https://deno.land/x/lume@v2.5.1/deps/postcss.ts": "3cba55033b826def9d9c07e432b1e147d9ed8e16df4e41ce953d5b3e539ee62d",
+
"https://deno.land/x/lume@v2.5.1/deps/purgecss.ts": "524914d3311933aaeb8052c89c361efdc4656bf6fb8aeec9d1b3d7750dbf8d3f",
+
"https://deno.land/x/lume@v2.5.1/deps/remove-markdown.ts": "c975349bb4b0a325384b8171b1648d5b79366efc8814413c8e93bfeded3280e3",
+
"https://deno.land/x/lume@v2.5.1/deps/satori.ts": "4ed807a234a0abe729e4e583775501332c788750bf934d03ea5ed4dccaeb8320",
+
"https://deno.land/x/lume@v2.5.1/deps/sharp.ts": "fa8536302a8137d3bfe6f0f4de7153424998115db053bff8131b6344906501e7",
+
"https://deno.land/x/lume@v2.5.1/deps/svg2png.ts": "d761fb39c37e5c5ba4ac2db25768cf0c2ff34643d3d1847a9fe736449175d5ec",
+
"https://deno.land/x/lume@v2.5.1/deps/svgo.ts": "688d1272b1a2113d8ad35e70854a189d6c238b04b8237529acdaa8028abc40d6",
+
"https://deno.land/x/lume@v2.5.1/deps/tailwindcss.ts": "36f3d8f8833345ae2f316b97e28a4b343b7614a567a2e99032b79b336cf91f03",
+
"https://deno.land/x/lume@v2.5.1/deps/temporal.ts": "1958b134c4186b0ab39316fa33ba19d1a4203e2ea445080429d60d296b91a552",
+
"https://deno.land/x/lume@v2.5.1/deps/toml.ts": "cc55b94f0c44e4113ff09e153e8b1c58bc5f585b7ea1e8f14f96c8152241b166",
+
"https://deno.land/x/lume@v2.5.1/deps/unidecode.ts": "e476000bf9278edd64eb79a426ec68ac45e1c691a114ee07f9b89b4d30ffca1c",
+
"https://deno.land/x/lume@v2.5.1/deps/unocss.ts": "9a98cde5e492a026c2735c84e4fd3a7940415d34273a147ca45d4c6da21c214f",
+
"https://deno.land/x/lume@v2.5.1/deps/vento.ts": "c905c9d3cf1553fa489dc3657de6183e0d6149f17ed0e27f84426556a5ed7267",
+
"https://deno.land/x/lume@v2.5.1/deps/xml.ts": "a2171f6ed75576354faa685ebd62b63cf1d4ee518477f295604526416dd27e2f",
+
"https://deno.land/x/lume@v2.5.1/deps/yaml.ts": "cbcf4d295ed88066e12a718750f09cebbf30fefa32e186844b597bce74b35557",
+
"https://deno.land/x/lume@v2.5.1/middlewares/logger.ts": "c96f1a9f9d5757555b6f141865ce8551ac176f90c8ee3e9ad797b2b400a9a567",
+
"https://deno.land/x/lume@v2.5.1/middlewares/no_cache.ts": "0119e3ae3a596ab12c42df693b93e5b03dd9608e289d862242751a9739438f35",
+
"https://deno.land/x/lume@v2.5.1/middlewares/no_cors.ts": "4d24619b5373c98bcc3baf404db47ba088c87ac8538ea1784e58d197b81d4d02",
+
"https://deno.land/x/lume@v2.5.1/middlewares/not_found.ts": "4507842d422267062c34662dceab17affcaad01858a5890fda163a8ddeb31487",
+
"https://deno.land/x/lume@v2.5.1/middlewares/reload.ts": "ed0ec1c4627243d035895e2d7ecaf7a0bd1c04415476a34d13861ea9a6f9a6c5",
+
"https://deno.land/x/lume@v2.5.1/middlewares/reload_client.js": "992ac4a2f4a9fb4a1ab5f23f674ef202a43d73652cdebcf7b1552b482a7410ef",
+
"https://deno.land/x/lume@v2.5.1/mod.ts": "097c8497b7bc917b3558f87611b21fa0507d4ad28b863fd41a9bf7683aed1042",
+
"https://deno.land/x/lume@v2.5.1/plugins/brotli.ts": "eae2e4c959bfa0d1e8d8cd43504269ed08a2b0597b6de229b57ca5c4afb5b4a7",
+
"https://deno.land/x/lume@v2.5.1/plugins/code_highlight.ts": "5f53c1de6ac37424bd65a057a40cbb97a45161f5dd991abd0d906fce8562717a",
+
"https://deno.land/x/lume@v2.5.1/plugins/favicon.ts": "5822264902eb1ab06d9b5c56767ac2997f40c31eba66983b083d02af2d7244e5",
+
"https://deno.land/x/lume@v2.5.1/plugins/feed.ts": "dca36538791d0128cba55eaeeebd8c61cea9de61783d338676cf900f9b085902",
+
"https://deno.land/x/lume@v2.5.1/plugins/icons.ts": "9565658cadfb619629b4fe3eccdde4f0267f469950a2e63b834ffac80c33ab6f",
+
"https://deno.land/x/lume@v2.5.1/plugins/inline.ts": "bda09ad738b7b2940ccc1155446f847c6c14ee3213fa34314f799c132a99b33c",
+
"https://deno.land/x/lume@v2.5.1/plugins/json.ts": "67e5e2e00f8e8640f33c1f97a2bf82a7c97a67a838804637b87b16b72f9042e1",
+
"https://deno.land/x/lume@v2.5.1/plugins/lightningcss.ts": "66e1ba77047fc0b0b490460f05b82068d654394121bf3b339077731d8e54ec1d",
+
"https://deno.land/x/lume@v2.5.1/plugins/markdown.ts": "c7027605edee274762edb20f7040ccba6415c5fe656cc6e25ce91c448f467fd8",
+
"https://deno.land/x/lume@v2.5.1/plugins/metas.ts": "f15088136492bf6ffe869afd029467cd5a46099a273571b1e74beda2553708d7",
+
"https://deno.land/x/lume@v2.5.1/plugins/minify_html.ts": "521bdd0e00c2bb9bb486818f8909616945aaf11f127a67a3d11687d9893294d0",
+
"https://deno.land/x/lume@v2.5.1/plugins/modules.ts": "e64197315d930e462aca24e444d0cfcefb37bfea168b2306122b892a1e1c5b8e",
+
"https://deno.land/x/lume@v2.5.1/plugins/nav.ts": "94ebec9e576ff96697cae85af8d8a7dffb9e48aa90db9fb3f4308a2efc5edbb6",
+
"https://deno.land/x/lume@v2.5.1/plugins/og_images.ts": "5e53962fd5129b76a6a06c92509d4101111a27919de68efead1b9c84ccc20755",
+
"https://deno.land/x/lume@v2.5.1/plugins/pagefind.ts": "9b38d8ffb322d7fa4a4e9e8db36f6688835df00eb9901cebeb0b719ea65204fb",
+
"https://deno.land/x/lume@v2.5.1/plugins/paginate.ts": "7dfee977a205dfe0af33a3e406f73017badd2d4593cf27e5bd897da7ab12ba8a",
+
"https://deno.land/x/lume@v2.5.1/plugins/picture.ts": "51c353193e0d2b4f9f3d3e64177216d4e0605a9e572e1bd1378f725710c627f3",
+
"https://deno.land/x/lume@v2.5.1/plugins/postcss.ts": "0f3e78e44c7503e8d597ed286c5eab39ad5e212cb7912424b7ad2a072e8d07aa",
+
"https://deno.land/x/lume@v2.5.1/plugins/purgecss.ts": "b9ab7ac977fc3f404428fb2df73c8202e3083b6556020439589becf2cc1867e4",
+
"https://deno.land/x/lume@v2.5.1/plugins/relations.ts": "0228745729a6361b6da6daee0df72ce4c1ebcd4e100d20e00778ff1e643c0a27",
+
"https://deno.land/x/lume@v2.5.1/plugins/robots.ts": "154607ea9976b8c4dbbfb8791bdb2a65c5e9540073fcca03d80642582f16fba5",
+
"https://deno.land/x/lume@v2.5.1/plugins/search.ts": "ff570560c6ca95598a1cbfb3a77611477ee7dbb53300bcc3ba14d18c9e5eba79",
+
"https://deno.land/x/lume@v2.5.1/plugins/sitemap.ts": "a8f7ce33eb4b5fe480d170bb0b69bc219f5a8612ea31ca5b8643d68a3e5531ad",
+
"https://deno.land/x/lume@v2.5.1/plugins/slugify_urls.ts": "e96aca4b6fcf8f0abd70d211204efe758e28beb07c36f907095fa617d8bf1cb9",
+
"https://deno.land/x/lume@v2.5.1/plugins/source_maps.ts": "6260905d95155c1fd44eb221a8dee096c6c13052899477bd84e8e180d3a740b3",
+
"https://deno.land/x/lume@v2.5.1/plugins/sri.ts": "fae1bc58158d96827219f410a5f7fb4b54b2601caeea706a924311414500abc0",
+
"https://deno.land/x/lume@v2.5.1/plugins/svgo.ts": "f63a913294f753ad7e3bfaae571577590da767828c8d744a3650ca1f746d1221",
+
"https://deno.land/x/lume@v2.5.1/plugins/tailwindcss.ts": "0438edca49cd3097e665e5c1f1270cc280a40a446c8f22fa86bfb9733063b1d1",
+
"https://deno.land/x/lume@v2.5.1/plugins/toml.ts": "72c75546056e503a59752e33dc25542f2aa21d743bd47f498d722b97958212f5",
+
"https://deno.land/x/lume@v2.5.1/plugins/transform_images.ts": "d77f2c9aed9f5087d8e396ecc81d4692ae0f3c0123a869d42b64072ade008d40",
+
"https://deno.land/x/lume@v2.5.1/plugins/unocss.ts": "f89d32f81ad34e37612503bab8481b15a9f4fd12d05cd00ad72647ca07bf967c",
+
"https://deno.land/x/lume@v2.5.1/plugins/url.ts": "3718185697778f3b4dd17924d9d282d0a5a74030301e7fcae8a7f1b21f0ef9a9",
+
"https://deno.land/x/lume@v2.5.1/plugins/vento.ts": "cc1db79fe3f75757269fd75ff18382d222ec3bb00a4329ddb56e0a00f28c0302",
+
"https://deno.land/x/lume@v2.5.1/plugins/yaml.ts": "8cb20b4bf3a265be0d975235b537c9807db2f34d357fc27546c05d628d3fda9f",
+
"https://deno.land/x/lume@v2.5.1/types.ts": "516bec311f10083c5b1d8109e8afd17f02b49cc62c45dca53706f286cb855dba",
+
"https://deno.land/x/lume_init@v0.3.0/deps.ts": "51061dea0c2f1cb2a326062c6cdd531dfaa6b8c9692e7f786cef2eef709e612a",
+
"https://deno.land/x/lume_init@v0.3.0/init.ts": "051fa551fca62c4844a986a18e1e15084b6332366fbe05613a1b1399d03f8bec",
+
"https://deno.land/x/lume_init@v0.3.0/mod.ts": "8f2731c650153c640e74e693c212fe30ae32d6d55ae636397f6644b3ccc45907",
+
"https://deno.land/x/lume_init@v0.3.0/steps/cms.ts": "02d6e24c7a38038ec109dedf501c2424a2cf6dc56b29a44f7c1da55d55c82958",
+
"https://deno.land/x/lume_init@v0.3.0/steps/git.ts": "58236a061310228d6442a2d60bb670d22794c50d9cbfb22da040ac5126c8d6b6",
+
"https://deno.land/x/lume_init@v0.3.0/steps/load.ts": "30047e55ad89f8f674192eec30f2fdf3ce7dc2e39250eb75e434308570df70db",
+
"https://deno.land/x/lume_init@v0.3.0/steps/plugins.ts": "d0c916800e97c1f4664e83c3dd2c780f8e491664bc6b050a60e3f563237f77ba",
+
"https://deno.land/x/lume_init@v0.3.0/steps/save.ts": "8ae5b20ac02d43a8ab608825ad2c1f093aa2cd0099fb80da1ecc866aeea58c6f",
+
"https://deno.land/x/lume_init@v0.3.0/steps/start.ts": "cce583f821157722545f5058d3ccfaa0526468a618c34982705fa01603cb320a",
+
"https://deno.land/x/lume_init@v0.3.0/steps/success.ts": "986a3cf2f1ac795f398cf04ea3fded39266fa169e87fae61b3377be1649f04be",
+
"https://deno.land/x/lume_init@v0.3.0/steps/themes.ts": "008d9c7c9371bd73c0f86d18a46f17aa70d775181934a2d4cea3bf2cb5e466a7",
+
"https://deno.land/x/lume_init@v0.3.0/steps/update.ts": "ae09f416ab44b628f1d3f9d1e3394f4e661bbb3d915661a4585c79e4147fdf0a",
+
"https://deno.land/x/lume_init@v0.3.0/steps/utils.ts": "55fb173934c2f8db41cc0b0801783458f26f8c78ddb37fe67d2b38aba4513570",
+
"https://deno.land/x/lume_init@v0.3.0/upgrade.ts": "2a5ca0b4ae0db1f6771e6ec4cede420b6c267e882a38e5647bc7218fda862483",
+
"https://deno.land/x/lz4@v0.1.2/mod.ts": "4decfc1a3569d03fd1813bd39128b71c8f082850fe98ecfdde20025772916582",
+
"https://deno.land/x/lz4@v0.1.2/wasm.js": "b9c65605327ba273f0c76a6dc596ec534d4cda0f0225d7a94ebc606782319e46",
+
"https://deno.land/x/minify_html@0.15.0/mod.js": "0974387d0bee4646a9cb959c641c170442b0d2a6bddcb9857758636afd8676d5",
+
"https://deno.land/x/vento@v1.12.15/deps.ts": "155958dfada8d8cb3c8a001413c759928647b23e0e9db25195614549b58d085f",
+
"https://deno.land/x/vento@v1.12.15/mod.ts": "cfaac455f70af8e59aa0c03ef39b641635094225255f0fbaa76f4771e683f2ca",
+
"https://deno.land/x/vento@v1.12.15/plugins/auto_trim.ts": "503137c3f5cec20e0c491d7963b0dc310de1a6a2e74d41913bbf6475eb1c807e",
+
"https://deno.land/x/vento@v1.12.15/plugins/echo.ts": "59adb9137e736029cf18e3d95e010803c8728046d0d040702c16c4930c7b6160",
+
"https://deno.land/x/vento@v1.12.15/plugins/escape.ts": "22754819f9a8437ecb4de0df1d3513c5b92fd6be74274d344d9750811030b181",
+
"https://deno.land/x/vento@v1.12.15/plugins/export.ts": "4cda1bd2d7e28e6d23382a64a6d72e7340bef07fcbc32f604a4705c148b914f1",
+
"https://deno.land/x/vento@v1.12.15/plugins/for.ts": "7eabf1f5f4b52aa3cccafcdfcbbd808628e386b90e61527adbcf1f23e4ab1777",
+
"https://deno.land/x/vento@v1.12.15/plugins/function.ts": "24c33bf586844ff8940daac2535dcae7f5ce39b443e795ebf16a2c23694850bf",
+
"https://deno.land/x/vento@v1.12.15/plugins/if.ts": "f992b1f599be11eafaa15bf607eee467ffd4276dec145d7b73cd24c0c6920631",
+
"https://deno.land/x/vento@v1.12.15/plugins/import.ts": "c36710067e1ea4074097b139c95d001fc1a2e759e05f1346da068405657924b4",
+
"https://deno.land/x/vento@v1.12.15/plugins/include.ts": "d93d330d3df25a5cfcc34e85c3e6685214280792f3242064e50c94748acfb1f4",
+
"https://deno.land/x/vento@v1.12.15/plugins/js.ts": "68d78ef2fc7a981d1f124f2f91830135ad46fcbd4dde7d5464cb5103c9293a5e",
+
"https://deno.land/x/vento@v1.12.15/plugins/layout.ts": "da84978f0639e95e472edddc2f9837757c28113a04dbe67399087c3a4d14780e",
+
"https://deno.land/x/vento@v1.12.15/plugins/set.ts": "0938601748ab7cc5ca3bb80c97e041183ef90fd3d9819dc7546ce9079b717a6d",
+
"https://deno.land/x/vento@v1.12.15/plugins/trim.ts": "93bce5e32aac9fd1dc4e7acf0278438d710cd1f61f80ce3af719a06cca7f2e3d",
+
"https://deno.land/x/vento@v1.12.15/plugins/unescape.ts": "dd2d9dbd116b68004f11ab17c9daaf9378ee14300c2d0ec8f422df09d41462ba",
+
"https://deno.land/x/vento@v1.12.15/src/environment.ts": "34ca5c981d0a54a678d421cd80a14aeb7974a8126944782048cb26348469c3d0",
+
"https://deno.land/x/vento@v1.12.15/src/errors.ts": "18b9b674715c9c23ea5acd410381fe89df438e224c41a83d26484b1dd4520f40",
+
"https://deno.land/x/vento@v1.12.15/src/js.ts": "c4ac5e2b2cd2995523d3167c5708c424686fd30d2d3951ff965a76dbdfb74e37",
+
"https://deno.land/x/vento@v1.12.15/src/loader.ts": "c05add67f582e937ee611852075ce2cc038b5e80e3e609eef96fa5ed74a5086c",
+
"https://deno.land/x/vento@v1.12.15/src/tokenizer.ts": "127ddad02054f63b8b646e4dfbf555e1e34e9b8dcbd58d86b3729a4de95abd27",
+
"https://deno.land/x/vento@v1.12.15/src/transformer.ts": "a3f4bce5d500267bdbc1f945765bdd5430ec3dbfea4fe963a9289159dde230bd",
+
"https://deno.land/x/xml@6.0.4/mod.ts": "b59e5c0dd9fe7ed597c21c39aacf089aa82fe5c5eaad3f411a43a9c104359f4e",
+
"https://deno.land/x/xml@6.0.4/parse.ts": "1302c75d8fd40df39310bb8ae6716302f0b77c61c607437dc023d3d792a0df54",
+
"https://deno.land/x/xml@6.0.4/stringify.ts": "0e2f79798d413c5386bf5de90bbe9901f99951ceae484050a8ef89e2b4da9dd0",
+
"https://deno.land/x/xml@6.0.4/wasm_xml_parser/wasm_xml_parser.js": "0804d738e6d94284b043546260b547bb4731fbfd3b3851139740e863dabf25bd"
+
},
+
"workspace": {
+
"dependencies": [
+
"npm:@catppuccin/tailwindcss@~0.1.6"
+
]
+
}
+
}
+27
flake.lock
···
+
{
+
"nodes": {
+
"nixpkgs": {
+
"locked": {
+
"lastModified": 1738297584,
+
"narHash": "sha256-AYvaFBzt8dU0fcSK2jKD0Vg23K2eIRxfsVXIPCW9a0E=",
+
"owner": "nixos",
+
"repo": "nixpkgs",
+
"rev": "9189ac18287c599860e878e905da550aa6dec1cd",
+
"type": "github"
+
},
+
"original": {
+
"owner": "nixos",
+
"ref": "nixpkgs-unstable",
+
"repo": "nixpkgs",
+
"type": "github"
+
}
+
},
+
"root": {
+
"inputs": {
+
"nixpkgs": "nixpkgs"
+
}
+
}
+
},
+
"root": "root",
+
"version": 7
+
}
+27
flake.nix
···
+
{
+
description = "Pyroblog v7 DevShell";
+
inputs = {
+
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
+
};
+
outputs = { nixpkgs, ... }: let
+
pkgs = import nixpkgs {
+
allowUnfree = true;
+
};
+
in {
+
devShells.x86_64-linux.default = pkgs.mkShellNoCC {
+
buildInputs = [
+
pkgs.deno
+
pkgs.just
+
(pkgs.python3.withPackages (
+
ps: with ps; [
+
brotli
+
fonttools
+
tinycss2
+
uharfbuzz
+
zopfli
+
]
+
))
+
];
+
};
+
};
+
}
+21
justfile
···
+
alias s := serve
+
alias b := build
+
alias c := cms
+
alias f := fonts
+
+
serve:
+
steam-run deno task --unstable-ffi serve
+
+
build:
+
steam-run deno task --unstable-ffi lume
+
+
cms:
+
steam-run deno task --unstable-ffi cms
+
+
fonts set="bootstrap":
+
python scripts/{{set}}-icons/gen-css.py
+
python scripts/{{set}}-icons/gen-fonts.py
+
+
add-class set="bootstrap":
+
python scripts/{{set}}-icons/add-class.py
+
just fonts {{set}}
+25
scripts/bootstrap-icons/add-class.py
···
+
#!/usr/bin/env python
+
import json
+
import os
+
+
BASE_PATH = f"{os.environ['ROOT']}/scripts"
+
CLASSES_PATH = f"{BASE_PATH}/src/classes.json"
+
+
CLASSES = []
+
with open(CLASSES_PATH) as f:
+
CLASSES = json.load(open(CLASSES_PATH))
+
+
to_add: str = input("Class to add:")
+
+
if not to_add.startswith("bi-"):
+
to_add = f"bi-{to_add}"
+
+
if to_add not in CLASSES:
+
CLASSES.append(to_add)
+
else:
+
raise Exception("Class already exists!")
+
+
file = open(CLASSES_PATH, "w")
+
+
file.write(json.dumps(sorted(CLASSES), sort_keys=True, indent=2).rstrip())
+
file.close()
+47
scripts/bootstrap-icons/gen-css.py
···
+
#!/usr/bin/env python
+
import json
+
import time
+
import os
+
import tinycss2
+
+
BASE_PATH = os.path.dirname(__file__)
+
CLASSES = json.load(open(f"{BASE_PATH}/src/classes.json"))
+
+
cur_time = int(time.time())
+
+
rules = tinycss2.parse_stylesheet(
+
open(f"{BASE_PATH}/src/bootstrap-icons.css").read(),
+
skip_comments=True,
+
)
+
+
final_rules = rules[:4]
+
+
font_rule = rules[1]
+
+
for block in font_rule.content:
+
if isinstance(block, tinycss2.ast.FunctionBlock):
+
arg = block.arguments[0]
+
arg.value += f"?v={cur_time}"
+
arg.representation = arg.representation.replace(
+
".min.woff2", f".min.woff2?v={cur_time}"
+
)
+
block.arguments[0] = arg
+
+
rules = rules[4:]
+
+
for i, rule in enumerate(rules):
+
if isinstance(rule, tinycss2.ast.WhitespaceToken):
+
continue
+
+
if rule.prelude[1].value not in CLASSES:
+
del rules[i]
+
else:
+
char = hex(ord(rule.content[4].value))[2:]
+
rule.content[4].representation = f'"\\{char}"'
+
final_rules.append(rule)
+
final_rules.append(rules[i + 1])
+
+
+
out = open(f"{os.environ['ROOT']}/src/static/icons/bsi.min.css", "w")
+
out.write(tinycss2.serialize(final_rules))
+
out.close()
+34
scripts/bootstrap-icons/gen-fonts.py
···
+
#!/usr/bin/env python
+
import os
+
import json
+
+
from fontTools import subset, ttLib
+
+
BASE_PATH = os.path.dirname(__file__)
+
CLASSES = json.load(open(f"{BASE_PATH}/src/classes.json"))
+
CLASSES = [c[3:] for c in CLASSES]
+
+
class OPTIONS:
+
flavor = "woff2"
+
with_zopfli = True
+
harfbuzz_repacker = True
+
canonical_order = False
+
+
+
print("loading font")
+
font = ttLib.TTFont(
+
f"{BASE_PATH}/src/bootstrap-icons.woff2",
+
flavor="woff2",
+
lazy=False,
+
recalcBBoxes=False,
+
)
+
+
print("subsetting used glyphs")
+
subsetter = subset.Subsetter()
+
subsetter.populate(glyphs=CLASSES)
+
subsetter.subset(font)
+
+
print("saving minimal fonts")
+
subset.save_font(
+
font, f"{os.environ['ROOT']}/src/static/icons/bsi.min.woff2", options=OPTIONS
+
)
+6174
scripts/bootstrap-icons/src/bootstrap-icons.css
···
+
/*!
+
* Bootstrap Icons v1.11.3 (https://icons.getbootstrap.com/)
+
* Copyright 2019-2024 The Bootstrap Authors
+
* Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
+
*/
+
@font-face {
+
font-display: block;
+
font-family: bootstrap-icons;
+
src: url("/static/icons/bsi.min.woff2") format("woff2");
+
}
+
.bi::before,
+
[class*=" bi-"]::before,
+
[class^="bi-"]::before {
+
display: inline-block;
+
font-family: bootstrap-icons !important;
+
font-style: normal;
+
font-weight: 400 !important;
+
font-variant: normal;
+
text-transform: none;
+
line-height: 1;
+
vertical-align: -0.125em;
+
-webkit-font-smoothing: antialiased;
+
-moz-osx-font-smoothing: grayscale;
+
}
+
.bi-123::before {
+
content: "\f67f";
+
}
+
.bi-alarm-fill::before {
+
content: "\f101";
+
}
+
.bi-alarm::before {
+
content: "\f102";
+
}
+
.bi-align-bottom::before {
+
content: "\f103";
+
}
+
.bi-align-center::before {
+
content: "\f104";
+
}
+
.bi-align-end::before {
+
content: "\f105";
+
}
+
.bi-align-middle::before {
+
content: "\f106";
+
}
+
.bi-align-start::before {
+
content: "\f107";
+
}
+
.bi-align-top::before {
+
content: "\f108";
+
}
+
.bi-alt::before {
+
content: "\f109";
+
}
+
.bi-app-indicator::before {
+
content: "\f10a";
+
}
+
.bi-app::before {
+
content: "\f10b";
+
}
+
.bi-archive-fill::before {
+
content: "\f10c";
+
}
+
.bi-archive::before {
+
content: "\f10d";
+
}
+
.bi-arrow-90deg-down::before {
+
content: "\f10e";
+
}
+
.bi-arrow-90deg-left::before {
+
content: "\f10f";
+
}
+
.bi-arrow-90deg-right::before {
+
content: "\f110";
+
}
+
.bi-arrow-90deg-up::before {
+
content: "\f111";
+
}
+
.bi-arrow-bar-down::before {
+
content: "\f112";
+
}
+
.bi-arrow-bar-left::before {
+
content: "\f113";
+
}
+
.bi-arrow-bar-right::before {
+
content: "\f114";
+
}
+
.bi-arrow-bar-up::before {
+
content: "\f115";
+
}
+
.bi-arrow-clockwise::before {
+
content: "\f116";
+
}
+
.bi-arrow-counterclockwise::before {
+
content: "\f117";
+
}
+
.bi-arrow-down-circle-fill::before {
+
content: "\f118";
+
}
+
.bi-arrow-down-circle::before {
+
content: "\f119";
+
}
+
.bi-arrow-down-left-circle-fill::before {
+
content: "\f11a";
+
}
+
.bi-arrow-down-left-circle::before {
+
content: "\f11b";
+
}
+
.bi-arrow-down-left-square-fill::before {
+
content: "\f11c";
+
}
+
.bi-arrow-down-left-square::before {
+
content: "\f11d";
+
}
+
.bi-arrow-down-left::before {
+
content: "\f11e";
+
}
+
.bi-arrow-down-right-circle-fill::before {
+
content: "\f11f";
+
}
+
.bi-arrow-down-right-circle::before {
+
content: "\f120";
+
}
+
.bi-arrow-down-right-square-fill::before {
+
content: "\f121";
+
}
+
.bi-arrow-down-right-square::before {
+
content: "\f122";
+
}
+
.bi-arrow-down-right::before {
+
content: "\f123";
+
}
+
.bi-arrow-down-short::before {
+
content: "\f124";
+
}
+
.bi-arrow-down-square-fill::before {
+
content: "\f125";
+
}
+
.bi-arrow-down-square::before {
+
content: "\f126";
+
}
+
.bi-arrow-down-up::before {
+
content: "\f127";
+
}
+
.bi-arrow-down::before {
+
content: "\f128";
+
}
+
.bi-arrow-left-circle-fill::before {
+
content: "\f129";
+
}
+
.bi-arrow-left-circle::before {
+
content: "\f12a";
+
}
+
.bi-arrow-left-right::before {
+
content: "\f12b";
+
}
+
.bi-arrow-left-short::before {
+
content: "\f12c";
+
}
+
.bi-arrow-left-square-fill::before {
+
content: "\f12d";
+
}
+
.bi-arrow-left-square::before {
+
content: "\f12e";
+
}
+
.bi-arrow-left::before {
+
content: "\f12f";
+
}
+
.bi-arrow-repeat::before {
+
content: "\f130";
+
}
+
.bi-arrow-return-left::before {
+
content: "\f131";
+
}
+
.bi-arrow-return-right::before {
+
content: "\f132";
+
}
+
.bi-arrow-right-circle-fill::before {
+
content: "\f133";
+
}
+
.bi-arrow-right-circle::before {
+
content: "\f134";
+
}
+
.bi-arrow-right-short::before {
+
content: "\f135";
+
}
+
.bi-arrow-right-square-fill::before {
+
content: "\f136";
+
}
+
.bi-arrow-right-square::before {
+
content: "\f137";
+
}
+
.bi-arrow-right::before {
+
content: "\f138";
+
}
+
.bi-arrow-up-circle-fill::before {
+
content: "\f139";
+
}
+
.bi-arrow-up-circle::before {
+
content: "\f13a";
+
}
+
.bi-arrow-up-left-circle-fill::before {
+
content: "\f13b";
+
}
+
.bi-arrow-up-left-circle::before {
+
content: "\f13c";
+
}
+
.bi-arrow-up-left-square-fill::before {
+
content: "\f13d";
+
}
+
.bi-arrow-up-left-square::before {
+
content: "\f13e";
+
}
+
.bi-arrow-up-left::before {
+
content: "\f13f";
+
}
+
.bi-arrow-up-right-circle-fill::before {
+
content: "\f140";
+
}
+
.bi-arrow-up-right-circle::before {
+
content: "\f141";
+
}
+
.bi-arrow-up-right-square-fill::before {
+
content: "\f142";
+
}
+
.bi-arrow-up-right-square::before {
+
content: "\f143";
+
}
+
.bi-arrow-up-right::before {
+
content: "\f144";
+
}
+
.bi-arrow-up-short::before {
+
content: "\f145";
+
}
+
.bi-arrow-up-square-fill::before {
+
content: "\f146";
+
}
+
.bi-arrow-up-square::before {
+
content: "\f147";
+
}
+
.bi-arrow-up::before {
+
content: "\f148";
+
}
+
.bi-arrows-angle-contract::before {
+
content: "\f149";
+
}
+
.bi-arrows-angle-expand::before {
+
content: "\f14a";
+
}
+
.bi-arrows-collapse::before {
+
content: "\f14b";
+
}
+
.bi-arrows-expand::before {
+
content: "\f14c";
+
}
+
.bi-arrows-fullscreen::before {
+
content: "\f14d";
+
}
+
.bi-arrows-move::before {
+
content: "\f14e";
+
}
+
.bi-aspect-ratio-fill::before {
+
content: "\f14f";
+
}
+
.bi-aspect-ratio::before {
+
content: "\f150";
+
}
+
.bi-asterisk::before {
+
content: "\f151";
+
}
+
.bi-at::before {
+
content: "\f152";
+
}
+
.bi-award-fill::before {
+
content: "\f153";
+
}
+
.bi-award::before {
+
content: "\f154";
+
}
+
.bi-back::before {
+
content: "\f155";
+
}
+
.bi-backspace-fill::before {
+
content: "\f156";
+
}
+
.bi-backspace-reverse-fill::before {
+
content: "\f157";
+
}
+
.bi-backspace-reverse::before {
+
content: "\f158";
+
}
+
.bi-backspace::before {
+
content: "\f159";
+
}
+
.bi-badge-3d-fill::before {
+
content: "\f15a";
+
}
+
.bi-badge-3d::before {
+
content: "\f15b";
+
}
+
.bi-badge-4k-fill::before {
+
content: "\f15c";
+
}
+
.bi-badge-4k::before {
+
content: "\f15d";
+
}
+
.bi-badge-8k-fill::before {
+
content: "\f15e";
+
}
+
.bi-badge-8k::before {
+
content: "\f15f";
+
}
+
.bi-badge-ad-fill::before {
+
content: "\f160";
+
}
+
.bi-badge-ad::before {
+
content: "\f161";
+
}
+
.bi-badge-ar-fill::before {
+
content: "\f162";
+
}
+
.bi-badge-ar::before {
+
content: "\f163";
+
}
+
.bi-badge-cc-fill::before {
+
content: "\f164";
+
}
+
.bi-badge-cc::before {
+
content: "\f165";
+
}
+
.bi-badge-hd-fill::before {
+
content: "\f166";
+
}
+
.bi-badge-hd::before {
+
content: "\f167";
+
}
+
.bi-badge-tm-fill::before {
+
content: "\f168";
+
}
+
.bi-badge-tm::before {
+
content: "\f169";
+
}
+
.bi-badge-vo-fill::before {
+
content: "\f16a";
+
}
+
.bi-badge-vo::before {
+
content: "\f16b";
+
}
+
.bi-badge-vr-fill::before {
+
content: "\f16c";
+
}
+
.bi-badge-vr::before {
+
content: "\f16d";
+
}
+
.bi-badge-wc-fill::before {
+
content: "\f16e";
+
}
+
.bi-badge-wc::before {
+
content: "\f16f";
+
}
+
.bi-bag-check-fill::before {
+
content: "\f170";
+
}
+
.bi-bag-check::before {
+
content: "\f171";
+
}
+
.bi-bag-dash-fill::before {
+
content: "\f172";
+
}
+
.bi-bag-dash::before {
+
content: "\f173";
+
}
+
.bi-bag-fill::before {
+
content: "\f174";
+
}
+
.bi-bag-plus-fill::before {
+
content: "\f175";
+
}
+
.bi-bag-plus::before {
+
content: "\f176";
+
}
+
.bi-bag-x-fill::before {
+
content: "\f177";
+
}
+
.bi-bag-x::before {
+
content: "\f178";
+
}
+
.bi-bag::before {
+
content: "\f179";
+
}
+
.bi-bar-chart-fill::before {
+
content: "\f17a";
+
}
+
.bi-bar-chart-line-fill::before {
+
content: "\f17b";
+
}
+
.bi-bar-chart-line::before {
+
content: "\f17c";
+
}
+
.bi-bar-chart-steps::before {
+
content: "\f17d";
+
}
+
.bi-bar-chart::before {
+
content: "\f17e";
+
}
+
.bi-basket-fill::before {
+
content: "\f17f";
+
}
+
.bi-basket::before {
+
content: "\f180";
+
}
+
.bi-basket2-fill::before {
+
content: "\f181";
+
}
+
.bi-basket2::before {
+
content: "\f182";
+
}
+
.bi-basket3-fill::before {
+
content: "\f183";
+
}
+
.bi-basket3::before {
+
content: "\f184";
+
}
+
.bi-battery-charging::before {
+
content: "\f185";
+
}
+
.bi-battery-full::before {
+
content: "\f186";
+
}
+
.bi-battery-half::before {
+
content: "\f187";
+
}
+
.bi-battery::before {
+
content: "\f188";
+
}
+
.bi-bell-fill::before {
+
content: "\f189";
+
}
+
.bi-bell::before {
+
content: "\f18a";
+
}
+
.bi-bezier::before {
+
content: "\f18b";
+
}
+
.bi-bezier2::before {
+
content: "\f18c";
+
}
+
.bi-bicycle::before {
+
content: "\f18d";
+
}
+
.bi-binoculars-fill::before {
+
content: "\f18e";
+
}
+
.bi-binoculars::before {
+
content: "\f18f";
+
}
+
.bi-blockquote-left::before {
+
content: "\f190";
+
}
+
.bi-blockquote-right::before {
+
content: "\f191";
+
}
+
.bi-book-fill::before {
+
content: "\f192";
+
}
+
.bi-book-half::before {
+
content: "\f193";
+
}
+
.bi-book::before {
+
content: "\f194";
+
}
+
.bi-bookmark-check-fill::before {
+
content: "\f195";
+
}
+
.bi-bookmark-check::before {
+
content: "\f196";
+
}
+
.bi-bookmark-dash-fill::before {
+
content: "\f197";
+
}
+
.bi-bookmark-dash::before {
+
content: "\f198";
+
}
+
.bi-bookmark-fill::before {
+
content: "\f199";
+
}
+
.bi-bookmark-heart-fill::before {
+
content: "\f19a";
+
}
+
.bi-bookmark-heart::before {
+
content: "\f19b";
+
}
+
.bi-bookmark-plus-fill::before {
+
content: "\f19c";
+
}
+
.bi-bookmark-plus::before {
+
content: "\f19d";
+
}
+
.bi-bookmark-star-fill::before {
+
content: "\f19e";
+
}
+
.bi-bookmark-star::before {
+
content: "\f19f";
+
}
+
.bi-bookmark-x-fill::before {
+
content: "\f1a0";
+
}
+
.bi-bookmark-x::before {
+
content: "\f1a1";
+
}
+
.bi-bookmark::before {
+
content: "\f1a2";
+
}
+
.bi-bookmarks-fill::before {
+
content: "\f1a3";
+
}
+
.bi-bookmarks::before {
+
content: "\f1a4";
+
}
+
.bi-bookshelf::before {
+
content: "\f1a5";
+
}
+
.bi-bootstrap-fill::before {
+
content: "\f1a6";
+
}
+
.bi-bootstrap-reboot::before {
+
content: "\f1a7";
+
}
+
.bi-bootstrap::before {
+
content: "\f1a8";
+
}
+
.bi-border-all::before {
+
content: "\f1a9";
+
}
+
.bi-border-bottom::before {
+
content: "\f1aa";
+
}
+
.bi-border-center::before {
+
content: "\f1ab";
+
}
+
.bi-border-inner::before {
+
content: "\f1ac";
+
}
+
.bi-border-left::before {
+
content: "\f1ad";
+
}
+
.bi-border-middle::before {
+
content: "\f1ae";
+
}
+
.bi-border-outer::before {
+
content: "\f1af";
+
}
+
.bi-border-right::before {
+
content: "\f1b0";
+
}
+
.bi-border-style::before {
+
content: "\f1b1";
+
}
+
.bi-border-top::before {
+
content: "\f1b2";
+
}
+
.bi-border-width::before {
+
content: "\f1b3";
+
}
+
.bi-border::before {
+
content: "\f1b4";
+
}
+
.bi-bounding-box-circles::before {
+
content: "\f1b5";
+
}
+
.bi-bounding-box::before {
+
content: "\f1b6";
+
}
+
.bi-box-arrow-down-left::before {
+
content: "\f1b7";
+
}
+
.bi-box-arrow-down-right::before {
+
content: "\f1b8";
+
}
+
.bi-box-arrow-down::before {
+
content: "\f1b9";
+
}
+
.bi-box-arrow-in-down-left::before {
+
content: "\f1ba";
+
}
+
.bi-box-arrow-in-down-right::before {
+
content: "\f1bb";
+
}
+
.bi-box-arrow-in-down::before {
+
content: "\f1bc";
+
}
+
.bi-box-arrow-in-left::before {
+
content: "\f1bd";
+
}
+
.bi-box-arrow-in-right::before {
+
content: "\f1be";
+
}
+
.bi-box-arrow-in-up-left::before {
+
content: "\f1bf";
+
}
+
.bi-box-arrow-in-up-right::before {
+
content: "\f1c0";
+
}
+
.bi-box-arrow-in-up::before {
+
content: "\f1c1";
+
}
+
.bi-box-arrow-left::before {
+
content: "\f1c2";
+
}
+
.bi-box-arrow-right::before {
+
content: "\f1c3";
+
}
+
.bi-box-arrow-up-left::before {
+
content: "\f1c4";
+
}
+
.bi-box-arrow-up-right::before {
+
content: "\f1c5";
+
}
+
.bi-box-arrow-up::before {
+
content: "\f1c6";
+
}
+
.bi-box-seam::before {
+
content: "\f1c7";
+
}
+
.bi-box::before {
+
content: "\f1c8";
+
}
+
.bi-braces::before {
+
content: "\f1c9";
+
}
+
.bi-bricks::before {
+
content: "\f1ca";
+
}
+
.bi-briefcase-fill::before {
+
content: "\f1cb";
+
}
+
.bi-briefcase::before {
+
content: "\f1cc";
+
}
+
.bi-brightness-alt-high-fill::before {
+
content: "\f1cd";
+
}
+
.bi-brightness-alt-high::before {
+
content: "\f1ce";
+
}
+
.bi-brightness-alt-low-fill::before {
+
content: "\f1cf";
+
}
+
.bi-brightness-alt-low::before {
+
content: "\f1d0";
+
}
+
.bi-brightness-high-fill::before {
+
content: "\f1d1";
+
}
+
.bi-brightness-high::before {
+
content: "\f1d2";
+
}
+
.bi-brightness-low-fill::before {
+
content: "\f1d3";
+
}
+
.bi-brightness-low::before {
+
content: "\f1d4";
+
}
+
.bi-broadcast-pin::before {
+
content: "\f1d5";
+
}
+
.bi-broadcast::before {
+
content: "\f1d6";
+
}
+
.bi-brush-fill::before {
+
content: "\f1d7";
+
}
+
.bi-brush::before {
+
content: "\f1d8";
+
}
+
.bi-bucket-fill::before {
+
content: "\f1d9";
+
}
+
.bi-bucket::before {
+
content: "\f1da";
+
}
+
.bi-bug-fill::before {
+
content: "\f1db";
+
}
+
.bi-bug::before {
+
content: "\f1dc";
+
}
+
.bi-building::before {
+
content: "\f1dd";
+
}
+
.bi-bullseye::before {
+
content: "\f1de";
+
}
+
.bi-calculator-fill::before {
+
content: "\f1df";
+
}
+
.bi-calculator::before {
+
content: "\f1e0";
+
}
+
.bi-calendar-check-fill::before {
+
content: "\f1e1";
+
}
+
.bi-calendar-check::before {
+
content: "\f1e2";
+
}
+
.bi-calendar-date-fill::before {
+
content: "\f1e3";
+
}
+
.bi-calendar-date::before {
+
content: "\f1e4";
+
}
+
.bi-calendar-day-fill::before {
+
content: "\f1e5";
+
}
+
.bi-calendar-day::before {
+
content: "\f1e6";
+
}
+
.bi-calendar-event-fill::before {
+
content: "\f1e7";
+
}
+
.bi-calendar-event::before {
+
content: "\f1e8";
+
}
+
.bi-calendar-fill::before {
+
content: "\f1e9";
+
}
+
.bi-calendar-minus-fill::before {
+
content: "\f1ea";
+
}
+
.bi-calendar-minus::before {
+
content: "\f1eb";
+
}
+
.bi-calendar-month-fill::before {
+
content: "\f1ec";
+
}
+
.bi-calendar-month::before {
+
content: "\f1ed";
+
}
+
.bi-calendar-plus-fill::before {
+
content: "\f1ee";
+
}
+
.bi-calendar-plus::before {
+
content: "\f1ef";
+
}
+
.bi-calendar-range-fill::before {
+
content: "\f1f0";
+
}
+
.bi-calendar-range::before {
+
content: "\f1f1";
+
}
+
.bi-calendar-week-fill::before {
+
content: "\f1f2";
+
}
+
.bi-calendar-week::before {
+
content: "\f1f3";
+
}
+
.bi-calendar-x-fill::before {
+
content: "\f1f4";
+
}
+
.bi-calendar-x::before {
+
content: "\f1f5";
+
}
+
.bi-calendar::before {
+
content: "\f1f6";
+
}
+
.bi-calendar2-check-fill::before {
+
content: "\f1f7";
+
}
+
.bi-calendar2-check::before {
+
content: "\f1f8";
+
}
+
.bi-calendar2-date-fill::before {
+
content: "\f1f9";
+
}
+
.bi-calendar2-date::before {
+
content: "\f1fa";
+
}
+
.bi-calendar2-day-fill::before {
+
content: "\f1fb";
+
}
+
.bi-calendar2-day::before {
+
content: "\f1fc";
+
}
+
.bi-calendar2-event-fill::before {
+
content: "\f1fd";
+
}
+
.bi-calendar2-event::before {
+
content: "\f1fe";
+
}
+
.bi-calendar2-fill::before {
+
content: "\f1ff";
+
}
+
.bi-calendar2-minus-fill::before {
+
content: "\f200";
+
}
+
.bi-calendar2-minus::before {
+
content: "\f201";
+
}
+
.bi-calendar2-month-fill::before {
+
content: "\f202";
+
}
+
.bi-calendar2-month::before {
+
content: "\f203";
+
}
+
.bi-calendar2-plus-fill::before {
+
content: "\f204";
+
}
+
.bi-calendar2-plus::before {
+
content: "\f205";
+
}
+
.bi-calendar2-range-fill::before {
+
content: "\f206";
+
}
+
.bi-calendar2-range::before {
+
content: "\f207";
+
}
+
.bi-calendar2-week-fill::before {
+
content: "\f208";
+
}
+
.bi-calendar2-week::before {
+
content: "\f209";
+
}
+
.bi-calendar2-x-fill::before {
+
content: "\f20a";
+
}
+
.bi-calendar2-x::before {
+
content: "\f20b";
+
}
+
.bi-calendar2::before {
+
content: "\f20c";
+
}
+
.bi-calendar3-event-fill::before {
+
content: "\f20d";
+
}
+
.bi-calendar3-event::before {
+
content: "\f20e";
+
}
+
.bi-calendar3-fill::before {
+
content: "\f20f";
+
}
+
.bi-calendar3-range-fill::before {
+
content: "\f210";
+
}
+
.bi-calendar3-range::before {
+
content: "\f211";
+
}
+
.bi-calendar3-week-fill::before {
+
content: "\f212";
+
}
+
.bi-calendar3-week::before {
+
content: "\f213";
+
}
+
.bi-calendar3::before {
+
content: "\f214";
+
}
+
.bi-calendar4-event::before {
+
content: "\f215";
+
}
+
.bi-calendar4-range::before {
+
content: "\f216";
+
}
+
.bi-calendar4-week::before {
+
content: "\f217";
+
}
+
.bi-calendar4::before {
+
content: "\f218";
+
}
+
.bi-camera-fill::before {
+
content: "\f219";
+
}
+
.bi-camera-reels-fill::before {
+
content: "\f21a";
+
}
+
.bi-camera-reels::before {
+
content: "\f21b";
+
}
+
.bi-camera-video-fill::before {
+
content: "\f21c";
+
}
+
.bi-camera-video-off-fill::before {
+
content: "\f21d";
+
}
+
.bi-camera-video-off::before {
+
content: "\f21e";
+
}
+
.bi-camera-video::before {
+
content: "\f21f";
+
}
+
.bi-camera::before {
+
content: "\f220";
+
}
+
.bi-camera2::before {
+
content: "\f221";
+
}
+
.bi-capslock-fill::before {
+
content: "\f222";
+
}
+
.bi-capslock::before {
+
content: "\f223";
+
}
+
.bi-card-checklist::before {
+
content: "\f224";
+
}
+
.bi-card-heading::before {
+
content: "\f225";
+
}
+
.bi-card-image::before {
+
content: "\f226";
+
}
+
.bi-card-list::before {
+
content: "\f227";
+
}
+
.bi-card-text::before {
+
content: "\f228";
+
}
+
.bi-caret-down-fill::before {
+
content: "\f229";
+
}
+
.bi-caret-down-square-fill::before {
+
content: "\f22a";
+
}
+
.bi-caret-down-square::before {
+
content: "\f22b";
+
}
+
.bi-caret-down::before {
+
content: "\f22c";
+
}
+
.bi-caret-left-fill::before {
+
content: "\f22d";
+
}
+
.bi-caret-left-square-fill::before {
+
content: "\f22e";
+
}
+
.bi-caret-left-square::before {
+
content: "\f22f";
+
}
+
.bi-caret-left::before {
+
content: "\f230";
+
}
+
.bi-caret-right-fill::before {
+
content: "\f231";
+
}
+
.bi-caret-right-square-fill::before {
+
content: "\f232";
+
}
+
.bi-caret-right-square::before {
+
content: "\f233";
+
}
+
.bi-caret-right::before {
+
content: "\f234";
+
}
+
.bi-caret-up-fill::before {
+
content: "\f235";
+
}
+
.bi-caret-up-square-fill::before {
+
content: "\f236";
+
}
+
.bi-caret-up-square::before {
+
content: "\f237";
+
}
+
.bi-caret-up::before {
+
content: "\f238";
+
}
+
.bi-cart-check-fill::before {
+
content: "\f239";
+
}
+
.bi-cart-check::before {
+
content: "\f23a";
+
}
+
.bi-cart-dash-fill::before {
+
content: "\f23b";
+
}
+
.bi-cart-dash::before {
+
content: "\f23c";
+
}
+
.bi-cart-fill::before {
+
content: "\f23d";
+
}
+
.bi-cart-plus-fill::before {
+
content: "\f23e";
+
}
+
.bi-cart-plus::before {
+
content: "\f23f";
+
}
+
.bi-cart-x-fill::before {
+
content: "\f240";
+
}
+
.bi-cart-x::before {
+
content: "\f241";
+
}
+
.bi-cart::before {
+
content: "\f242";
+
}
+
.bi-cart2::before {
+
content: "\f243";
+
}
+
.bi-cart3::before {
+
content: "\f244";
+
}
+
.bi-cart4::before {
+
content: "\f245";
+
}
+
.bi-cash-stack::before {
+
content: "\f246";
+
}
+
.bi-cash::before {
+
content: "\f247";
+
}
+
.bi-cast::before {
+
content: "\f248";
+
}
+
.bi-chat-dots-fill::before {
+
content: "\f249";
+
}
+
.bi-chat-dots::before {
+
content: "\f24a";
+
}
+
.bi-chat-fill::before {
+
content: "\f24b";
+
}
+
.bi-chat-left-dots-fill::before {
+
content: "\f24c";
+
}
+
.bi-chat-left-dots::before {
+
content: "\f24d";
+
}
+
.bi-chat-left-fill::before {
+
content: "\f24e";
+
}
+
.bi-chat-left-quote-fill::before {
+
content: "\f24f";
+
}
+
.bi-chat-left-quote::before {
+
content: "\f250";
+
}
+
.bi-chat-left-text-fill::before {
+
content: "\f251";
+
}
+
.bi-chat-left-text::before {
+
content: "\f252";
+
}
+
.bi-chat-left::before {
+
content: "\f253";
+
}
+
.bi-chat-quote-fill::before {
+
content: "\f254";
+
}
+
.bi-chat-quote::before {
+
content: "\f255";
+
}
+
.bi-chat-right-dots-fill::before {
+
content: "\f256";
+
}
+
.bi-chat-right-dots::before {
+
content: "\f257";
+
}
+
.bi-chat-right-fill::before {
+
content: "\f258";
+
}
+
.bi-chat-right-quote-fill::before {
+
content: "\f259";
+
}
+
.bi-chat-right-quote::before {
+
content: "\f25a";
+
}
+
.bi-chat-right-text-fill::before {
+
content: "\f25b";
+
}
+
.bi-chat-right-text::before {
+
content: "\f25c";
+
}
+
.bi-chat-right::before {
+
content: "\f25d";
+
}
+
.bi-chat-square-dots-fill::before {
+
content: "\f25e";
+
}
+
.bi-chat-square-dots::before {
+
content: "\f25f";
+
}
+
.bi-chat-square-fill::before {
+
content: "\f260";
+
}
+
.bi-chat-square-quote-fill::before {
+
content: "\f261";
+
}
+
.bi-chat-square-quote::before {
+
content: "\f262";
+
}
+
.bi-chat-square-text-fill::before {
+
content: "\f263";
+
}
+
.bi-chat-square-text::before {
+
content: "\f264";
+
}
+
.bi-chat-square::before {
+
content: "\f265";
+
}
+
.bi-chat-text-fill::before {
+
content: "\f266";
+
}
+
.bi-chat-text::before {
+
content: "\f267";
+
}
+
.bi-chat::before {
+
content: "\f268";
+
}
+
.bi-check-all::before {
+
content: "\f269";
+
}
+
.bi-check-circle-fill::before {
+
content: "\f26a";
+
}
+
.bi-check-circle::before {
+
content: "\f26b";
+
}
+
.bi-check-square-fill::before {
+
content: "\f26c";
+
}
+
.bi-check-square::before {
+
content: "\f26d";
+
}
+
.bi-check::before {
+
content: "\f26e";
+
}
+
.bi-check2-all::before {
+
content: "\f26f";
+
}
+
.bi-check2-circle::before {
+
content: "\f270";
+
}
+
.bi-check2-square::before {
+
content: "\f271";
+
}
+
.bi-check2::before {
+
content: "\f272";
+
}
+
.bi-chevron-bar-contract::before {
+
content: "\f273";
+
}
+
.bi-chevron-bar-down::before {
+
content: "\f274";
+
}
+
.bi-chevron-bar-expand::before {
+
content: "\f275";
+
}
+
.bi-chevron-bar-left::before {
+
content: "\f276";
+
}
+
.bi-chevron-bar-right::before {
+
content: "\f277";
+
}
+
.bi-chevron-bar-up::before {
+
content: "\f278";
+
}
+
.bi-chevron-compact-down::before {
+
content: "\f279";
+
}
+
.bi-chevron-compact-left::before {
+
content: "\f27a";
+
}
+
.bi-chevron-compact-right::before {
+
content: "\f27b";
+
}
+
.bi-chevron-compact-up::before {
+
content: "\f27c";
+
}
+
.bi-chevron-contract::before {
+
content: "\f27d";
+
}
+
.bi-chevron-double-down::before {
+
content: "\f27e";
+
}
+
.bi-chevron-double-left::before {
+
content: "\f27f";
+
}
+
.bi-chevron-double-right::before {
+
content: "\f280";
+
}
+
.bi-chevron-double-up::before {
+
content: "\f281";
+
}
+
.bi-chevron-down::before {
+
content: "\f282";
+
}
+
.bi-chevron-expand::before {
+
content: "\f283";
+
}
+
.bi-chevron-left::before {
+
content: "\f284";
+
}
+
.bi-chevron-right::before {
+
content: "\f285";
+
}
+
.bi-chevron-up::before {
+
content: "\f286";
+
}
+
.bi-circle-fill::before {
+
content: "\f287";
+
}
+
.bi-circle-half::before {
+
content: "\f288";
+
}
+
.bi-circle-square::before {
+
content: "\f289";
+
}
+
.bi-circle::before {
+
content: "\f28a";
+
}
+
.bi-clipboard-check::before {
+
content: "\f28b";
+
}
+
.bi-clipboard-data::before {
+
content: "\f28c";
+
}
+
.bi-clipboard-minus::before {
+
content: "\f28d";
+
}
+
.bi-clipboard-plus::before {
+
content: "\f28e";
+
}
+
.bi-clipboard-x::before {
+
content: "\f28f";
+
}
+
.bi-clipboard::before {
+
content: "\f290";
+
}
+
.bi-clock-fill::before {
+
content: "\f291";
+
}
+
.bi-clock-history::before {
+
content: "\f292";
+
}
+
.bi-clock::before {
+
content: "\f293";
+
}
+
.bi-cloud-arrow-down-fill::before {
+
content: "\f294";
+
}
+
.bi-cloud-arrow-down::before {
+
content: "\f295";
+
}
+
.bi-cloud-arrow-up-fill::before {
+
content: "\f296";
+
}
+
.bi-cloud-arrow-up::before {
+
content: "\f297";
+
}
+
.bi-cloud-check-fill::before {
+
content: "\f298";
+
}
+
.bi-cloud-check::before {
+
content: "\f299";
+
}
+
.bi-cloud-download-fill::before {
+
content: "\f29a";
+
}
+
.bi-cloud-download::before {
+
content: "\f29b";
+
}
+
.bi-cloud-drizzle-fill::before {
+
content: "\f29c";
+
}
+
.bi-cloud-drizzle::before {
+
content: "\f29d";
+
}
+
.bi-cloud-fill::before {
+
content: "\f29e";
+
}
+
.bi-cloud-fog-fill::before {
+
content: "\f29f";
+
}
+
.bi-cloud-fog::before {
+
content: "\f2a0";
+
}
+
.bi-cloud-fog2-fill::before {
+
content: "\f2a1";
+
}
+
.bi-cloud-fog2::before {
+
content: "\f2a2";
+
}
+
.bi-cloud-hail-fill::before {
+
content: "\f2a3";
+
}
+
.bi-cloud-hail::before {
+
content: "\f2a4";
+
}
+
.bi-cloud-haze-fill::before {
+
content: "\f2a6";
+
}
+
.bi-cloud-haze::before {
+
content: "\f2a7";
+
}
+
.bi-cloud-haze2-fill::before {
+
content: "\f2a8";
+
}
+
.bi-cloud-lightning-fill::before {
+
content: "\f2a9";
+
}
+
.bi-cloud-lightning-rain-fill::before {
+
content: "\f2aa";
+
}
+
.bi-cloud-lightning-rain::before {
+
content: "\f2ab";
+
}
+
.bi-cloud-lightning::before {
+
content: "\f2ac";
+
}
+
.bi-cloud-minus-fill::before {
+
content: "\f2ad";
+
}
+
.bi-cloud-minus::before {
+
content: "\f2ae";
+
}
+
.bi-cloud-moon-fill::before {
+
content: "\f2af";
+
}
+
.bi-cloud-moon::before {
+
content: "\f2b0";
+
}
+
.bi-cloud-plus-fill::before {
+
content: "\f2b1";
+
}
+
.bi-cloud-plus::before {
+
content: "\f2b2";
+
}
+
.bi-cloud-rain-fill::before {
+
content: "\f2b3";
+
}
+
.bi-cloud-rain-heavy-fill::before {
+
content: "\f2b4";
+
}
+
.bi-cloud-rain-heavy::before {
+
content: "\f2b5";
+
}
+
.bi-cloud-rain::before {
+
content: "\f2b6";
+
}
+
.bi-cloud-slash-fill::before {
+
content: "\f2b7";
+
}
+
.bi-cloud-slash::before {
+
content: "\f2b8";
+
}
+
.bi-cloud-sleet-fill::before {
+
content: "\f2b9";
+
}
+
.bi-cloud-sleet::before {
+
content: "\f2ba";
+
}
+
.bi-cloud-snow-fill::before {
+
content: "\f2bb";
+
}
+
.bi-cloud-snow::before {
+
content: "\f2bc";
+
}
+
.bi-cloud-sun-fill::before {
+
content: "\f2bd";
+
}
+
.bi-cloud-sun::before {
+
content: "\f2be";
+
}
+
.bi-cloud-upload-fill::before {
+
content: "\f2bf";
+
}
+
.bi-cloud-upload::before {
+
content: "\f2c0";
+
}
+
.bi-cloud::before {
+
content: "\f2c1";
+
}
+
.bi-clouds-fill::before {
+
content: "\f2c2";
+
}
+
.bi-clouds::before {
+
content: "\f2c3";
+
}
+
.bi-cloudy-fill::before {
+
content: "\f2c4";
+
}
+
.bi-cloudy::before {
+
content: "\f2c5";
+
}
+
.bi-code-slash::before {
+
content: "\f2c6";
+
}
+
.bi-code-square::before {
+
content: "\f2c7";
+
}
+
.bi-code::before {
+
content: "\f2c8";
+
}
+
.bi-collection-fill::before {
+
content: "\f2c9";
+
}
+
.bi-collection-play-fill::before {
+
content: "\f2ca";
+
}
+
.bi-collection-play::before {
+
content: "\f2cb";
+
}
+
.bi-collection::before {
+
content: "\f2cc";
+
}
+
.bi-columns-gap::before {
+
content: "\f2cd";
+
}
+
.bi-columns::before {
+
content: "\f2ce";
+
}
+
.bi-command::before {
+
content: "\f2cf";
+
}
+
.bi-compass-fill::before {
+
content: "\f2d0";
+
}
+
.bi-compass::before {
+
content: "\f2d1";
+
}
+
.bi-cone-striped::before {
+
content: "\f2d2";
+
}
+
.bi-cone::before {
+
content: "\f2d3";
+
}
+
.bi-controller::before {
+
content: "\f2d4";
+
}
+
.bi-cpu-fill::before {
+
content: "\f2d5";
+
}
+
.bi-cpu::before {
+
content: "\f2d6";
+
}
+
.bi-credit-card-2-back-fill::before {
+
content: "\f2d7";
+
}
+
.bi-credit-card-2-back::before {
+
content: "\f2d8";
+
}
+
.bi-credit-card-2-front-fill::before {
+
content: "\f2d9";
+
}
+
.bi-credit-card-2-front::before {
+
content: "\f2da";
+
}
+
.bi-credit-card-fill::before {
+
content: "\f2db";
+
}
+
.bi-credit-card::before {
+
content: "\f2dc";
+
}
+
.bi-crop::before {
+
content: "\f2dd";
+
}
+
.bi-cup-fill::before {
+
content: "\f2de";
+
}
+
.bi-cup-straw::before {
+
content: "\f2df";
+
}
+
.bi-cup::before {
+
content: "\f2e0";
+
}
+
.bi-cursor-fill::before {
+
content: "\f2e1";
+
}
+
.bi-cursor-text::before {
+
content: "\f2e2";
+
}
+
.bi-cursor::before {
+
content: "\f2e3";
+
}
+
.bi-dash-circle-dotted::before {
+
content: "\f2e4";
+
}
+
.bi-dash-circle-fill::before {
+
content: "\f2e5";
+
}
+
.bi-dash-circle::before {
+
content: "\f2e6";
+
}
+
.bi-dash-square-dotted::before {
+
content: "\f2e7";
+
}
+
.bi-dash-square-fill::before {
+
content: "\f2e8";
+
}
+
.bi-dash-square::before {
+
content: "\f2e9";
+
}
+
.bi-dash::before {
+
content: "\f2ea";
+
}
+
.bi-diagram-2-fill::before {
+
content: "\f2eb";
+
}
+
.bi-diagram-2::before {
+
content: "\f2ec";
+
}
+
.bi-diagram-3-fill::before {
+
content: "\f2ed";
+
}
+
.bi-diagram-3::before {
+
content: "\f2ee";
+
}
+
.bi-diamond-fill::before {
+
content: "\f2ef";
+
}
+
.bi-diamond-half::before {
+
content: "\f2f0";
+
}
+
.bi-diamond::before {
+
content: "\f2f1";
+
}
+
.bi-dice-1-fill::before {
+
content: "\f2f2";
+
}
+
.bi-dice-1::before {
+
content: "\f2f3";
+
}
+
.bi-dice-2-fill::before {
+
content: "\f2f4";
+
}
+
.bi-dice-2::before {
+
content: "\f2f5";
+
}
+
.bi-dice-3-fill::before {
+
content: "\f2f6";
+
}
+
.bi-dice-3::before {
+
content: "\f2f7";
+
}
+
.bi-dice-4-fill::before {
+
content: "\f2f8";
+
}
+
.bi-dice-4::before {
+
content: "\f2f9";
+
}
+
.bi-dice-5-fill::before {
+
content: "\f2fa";
+
}
+
.bi-dice-5::before {
+
content: "\f2fb";
+
}
+
.bi-dice-6-fill::before {
+
content: "\f2fc";
+
}
+
.bi-dice-6::before {
+
content: "\f2fd";
+
}
+
.bi-disc-fill::before {
+
content: "\f2fe";
+
}
+
.bi-disc::before {
+
content: "\f2ff";
+
}
+
.bi-discord::before {
+
content: "\f300";
+
}
+
.bi-display-fill::before {
+
content: "\f301";
+
}
+
.bi-display::before {
+
content: "\f302";
+
}
+
.bi-distribute-horizontal::before {
+
content: "\f303";
+
}
+
.bi-distribute-vertical::before {
+
content: "\f304";
+
}
+
.bi-door-closed-fill::before {
+
content: "\f305";
+
}
+
.bi-door-closed::before {
+
content: "\f306";
+
}
+
.bi-door-open-fill::before {
+
content: "\f307";
+
}
+
.bi-door-open::before {
+
content: "\f308";
+
}
+
.bi-dot::before {
+
content: "\f309";
+
}
+
.bi-download::before {
+
content: "\f30a";
+
}
+
.bi-droplet-fill::before {
+
content: "\f30b";
+
}
+
.bi-droplet-half::before {
+
content: "\f30c";
+
}
+
.bi-droplet::before {
+
content: "\f30d";
+
}
+
.bi-earbuds::before {
+
content: "\f30e";
+
}
+
.bi-easel-fill::before {
+
content: "\f30f";
+
}
+
.bi-easel::before {
+
content: "\f310";
+
}
+
.bi-egg-fill::before {
+
content: "\f311";
+
}
+
.bi-egg-fried::before {
+
content: "\f312";
+
}
+
.bi-egg::before {
+
content: "\f313";
+
}
+
.bi-eject-fill::before {
+
content: "\f314";
+
}
+
.bi-eject::before {
+
content: "\f315";
+
}
+
.bi-emoji-angry-fill::before {
+
content: "\f316";
+
}
+
.bi-emoji-angry::before {
+
content: "\f317";
+
}
+
.bi-emoji-dizzy-fill::before {
+
content: "\f318";
+
}
+
.bi-emoji-dizzy::before {
+
content: "\f319";
+
}
+
.bi-emoji-expressionless-fill::before {
+
content: "\f31a";
+
}
+
.bi-emoji-expressionless::before {
+
content: "\f31b";
+
}
+
.bi-emoji-frown-fill::before {
+
content: "\f31c";
+
}
+
.bi-emoji-frown::before {
+
content: "\f31d";
+
}
+
.bi-emoji-heart-eyes-fill::before {
+
content: "\f31e";
+
}
+
.bi-emoji-heart-eyes::before {
+
content: "\f31f";
+
}
+
.bi-emoji-laughing-fill::before {
+
content: "\f320";
+
}
+
.bi-emoji-laughing::before {
+
content: "\f321";
+
}
+
.bi-emoji-neutral-fill::before {
+
content: "\f322";
+
}
+
.bi-emoji-neutral::before {
+
content: "\f323";
+
}
+
.bi-emoji-smile-fill::before {
+
content: "\f324";
+
}
+
.bi-emoji-smile-upside-down-fill::before {
+
content: "\f325";
+
}
+
.bi-emoji-smile-upside-down::before {
+
content: "\f326";
+
}
+
.bi-emoji-smile::before {
+
content: "\f327";
+
}
+
.bi-emoji-sunglasses-fill::before {
+
content: "\f328";
+
}
+
.bi-emoji-sunglasses::before {
+
content: "\f329";
+
}
+
.bi-emoji-wink-fill::before {
+
content: "\f32a";
+
}
+
.bi-emoji-wink::before {
+
content: "\f32b";
+
}
+
.bi-envelope-fill::before {
+
content: "\f32c";
+
}
+
.bi-envelope-open-fill::before {
+
content: "\f32d";
+
}
+
.bi-envelope-open::before {
+
content: "\f32e";
+
}
+
.bi-envelope::before {
+
content: "\f32f";
+
}
+
.bi-eraser-fill::before {
+
content: "\f330";
+
}
+
.bi-eraser::before {
+
content: "\f331";
+
}
+
.bi-exclamation-circle-fill::before {
+
content: "\f332";
+
}
+
.bi-exclamation-circle::before {
+
content: "\f333";
+
}
+
.bi-exclamation-diamond-fill::before {
+
content: "\f334";
+
}
+
.bi-exclamation-diamond::before {
+
content: "\f335";
+
}
+
.bi-exclamation-octagon-fill::before {
+
content: "\f336";
+
}
+
.bi-exclamation-octagon::before {
+
content: "\f337";
+
}
+
.bi-exclamation-square-fill::before {
+
content: "\f338";
+
}
+
.bi-exclamation-square::before {
+
content: "\f339";
+
}
+
.bi-exclamation-triangle-fill::before {
+
content: "\f33a";
+
}
+
.bi-exclamation-triangle::before {
+
content: "\f33b";
+
}
+
.bi-exclamation::before {
+
content: "\f33c";
+
}
+
.bi-exclude::before {
+
content: "\f33d";
+
}
+
.bi-eye-fill::before {
+
content: "\f33e";
+
}
+
.bi-eye-slash-fill::before {
+
content: "\f33f";
+
}
+
.bi-eye-slash::before {
+
content: "\f340";
+
}
+
.bi-eye::before {
+
content: "\f341";
+
}
+
.bi-eyedropper::before {
+
content: "\f342";
+
}
+
.bi-eyeglasses::before {
+
content: "\f343";
+
}
+
.bi-facebook::before {
+
content: "\f344";
+
}
+
.bi-file-arrow-down-fill::before {
+
content: "\f345";
+
}
+
.bi-file-arrow-down::before {
+
content: "\f346";
+
}
+
.bi-file-arrow-up-fill::before {
+
content: "\f347";
+
}
+
.bi-file-arrow-up::before {
+
content: "\f348";
+
}
+
.bi-file-bar-graph-fill::before {
+
content: "\f349";
+
}
+
.bi-file-bar-graph::before {
+
content: "\f34a";
+
}
+
.bi-file-binary-fill::before {
+
content: "\f34b";
+
}
+
.bi-file-binary::before {
+
content: "\f34c";
+
}
+
.bi-file-break-fill::before {
+
content: "\f34d";
+
}
+
.bi-file-break::before {
+
content: "\f34e";
+
}
+
.bi-file-check-fill::before {
+
content: "\f34f";
+
}
+
.bi-file-check::before {
+
content: "\f350";
+
}
+
.bi-file-code-fill::before {
+
content: "\f351";
+
}
+
.bi-file-code::before {
+
content: "\f352";
+
}
+
.bi-file-diff-fill::before {
+
content: "\f353";
+
}
+
.bi-file-diff::before {
+
content: "\f354";
+
}
+
.bi-file-earmark-arrow-down-fill::before {
+
content: "\f355";
+
}
+
.bi-file-earmark-arrow-down::before {
+
content: "\f356";
+
}
+
.bi-file-earmark-arrow-up-fill::before {
+
content: "\f357";
+
}
+
.bi-file-earmark-arrow-up::before {
+
content: "\f358";
+
}
+
.bi-file-earmark-bar-graph-fill::before {
+
content: "\f359";
+
}
+
.bi-file-earmark-bar-graph::before {
+
content: "\f35a";
+
}
+
.bi-file-earmark-binary-fill::before {
+
content: "\f35b";
+
}
+
.bi-file-earmark-binary::before {
+
content: "\f35c";
+
}
+
.bi-file-earmark-break-fill::before {
+
content: "\f35d";
+
}
+
.bi-file-earmark-break::before {
+
content: "\f35e";
+
}
+
.bi-file-earmark-check-fill::before {
+
content: "\f35f";
+
}
+
.bi-file-earmark-check::before {
+
content: "\f360";
+
}
+
.bi-file-earmark-code-fill::before {
+
content: "\f361";
+
}
+
.bi-file-earmark-code::before {
+
content: "\f362";
+
}
+
.bi-file-earmark-diff-fill::before {
+
content: "\f363";
+
}
+
.bi-file-earmark-diff::before {
+
content: "\f364";
+
}
+
.bi-file-earmark-easel-fill::before {
+
content: "\f365";
+
}
+
.bi-file-earmark-easel::before {
+
content: "\f366";
+
}
+
.bi-file-earmark-excel-fill::before {
+
content: "\f367";
+
}
+
.bi-file-earmark-excel::before {
+
content: "\f368";
+
}
+
.bi-file-earmark-fill::before {
+
content: "\f369";
+
}
+
.bi-file-earmark-font-fill::before {
+
content: "\f36a";
+
}
+
.bi-file-earmark-font::before {
+
content: "\f36b";
+
}
+
.bi-file-earmark-image-fill::before {
+
content: "\f36c";
+
}
+
.bi-file-earmark-image::before {
+
content: "\f36d";
+
}
+
.bi-file-earmark-lock-fill::before {
+
content: "\f36e";
+
}
+
.bi-file-earmark-lock::before {
+
content: "\f36f";
+
}
+
.bi-file-earmark-lock2-fill::before {
+
content: "\f370";
+
}
+
.bi-file-earmark-lock2::before {
+
content: "\f371";
+
}
+
.bi-file-earmark-medical-fill::before {
+
content: "\f372";
+
}
+
.bi-file-earmark-medical::before {
+
content: "\f373";
+
}
+
.bi-file-earmark-minus-fill::before {
+
content: "\f374";
+
}
+
.bi-file-earmark-minus::before {
+
content: "\f375";
+
}
+
.bi-file-earmark-music-fill::before {
+
content: "\f376";
+
}
+
.bi-file-earmark-music::before {
+
content: "\f377";
+
}
+
.bi-file-earmark-person-fill::before {
+
content: "\f378";
+
}
+
.bi-file-earmark-person::before {
+
content: "\f379";
+
}
+
.bi-file-earmark-play-fill::before {
+
content: "\f37a";
+
}
+
.bi-file-earmark-play::before {
+
content: "\f37b";
+
}
+
.bi-file-earmark-plus-fill::before {
+
content: "\f37c";
+
}
+
.bi-file-earmark-plus::before {
+
content: "\f37d";
+
}
+
.bi-file-earmark-post-fill::before {
+
content: "\f37e";
+
}
+
.bi-file-earmark-post::before {
+
content: "\f37f";
+
}
+
.bi-file-earmark-ppt-fill::before {
+
content: "\f380";
+
}
+
.bi-file-earmark-ppt::before {
+
content: "\f381";
+
}
+
.bi-file-earmark-richtext-fill::before {
+
content: "\f382";
+
}
+
.bi-file-earmark-richtext::before {
+
content: "\f383";
+
}
+
.bi-file-earmark-ruled-fill::before {
+
content: "\f384";
+
}
+
.bi-file-earmark-ruled::before {
+
content: "\f385";
+
}
+
.bi-file-earmark-slides-fill::before {
+
content: "\f386";
+
}
+
.bi-file-earmark-slides::before {
+
content: "\f387";
+
}
+
.bi-file-earmark-spreadsheet-fill::before {
+
content: "\f388";
+
}
+
.bi-file-earmark-spreadsheet::before {
+
content: "\f389";
+
}
+
.bi-file-earmark-text-fill::before {
+
content: "\f38a";
+
}
+
.bi-file-earmark-text::before {
+
content: "\f38b";
+
}
+
.bi-file-earmark-word-fill::before {
+
content: "\f38c";
+
}
+
.bi-file-earmark-word::before {
+
content: "\f38d";
+
}
+
.bi-file-earmark-x-fill::before {
+
content: "\f38e";
+
}
+
.bi-file-earmark-x::before {
+
content: "\f38f";
+
}
+
.bi-file-earmark-zip-fill::before {
+
content: "\f390";
+
}
+
.bi-file-earmark-zip::before {
+
content: "\f391";
+
}
+
.bi-file-earmark::before {
+
content: "\f392";
+
}
+
.bi-file-easel-fill::before {
+
content: "\f393";
+
}
+
.bi-file-easel::before {
+
content: "\f394";
+
}
+
.bi-file-excel-fill::before {
+
content: "\f395";
+
}
+
.bi-file-excel::before {
+
content: "\f396";
+
}
+
.bi-file-fill::before {
+
content: "\f397";
+
}
+
.bi-file-font-fill::before {
+
content: "\f398";
+
}
+
.bi-file-font::before {
+
content: "\f399";
+
}
+
.bi-file-image-fill::before {
+
content: "\f39a";
+
}
+
.bi-file-image::before {
+
content: "\f39b";
+
}
+
.bi-file-lock-fill::before {
+
content: "\f39c";
+
}
+
.bi-file-lock::before {
+
content: "\f39d";
+
}
+
.bi-file-lock2-fill::before {
+
content: "\f39e";
+
}
+
.bi-file-lock2::before {
+
content: "\f39f";
+
}
+
.bi-file-medical-fill::before {
+
content: "\f3a0";
+
}
+
.bi-file-medical::before {
+
content: "\f3a1";
+
}
+
.bi-file-minus-fill::before {
+
content: "\f3a2";
+
}
+
.bi-file-minus::before {
+
content: "\f3a3";
+
}
+
.bi-file-music-fill::before {
+
content: "\f3a4";
+
}
+
.bi-file-music::before {
+
content: "\f3a5";
+
}
+
.bi-file-person-fill::before {
+
content: "\f3a6";
+
}
+
.bi-file-person::before {
+
content: "\f3a7";
+
}
+
.bi-file-play-fill::before {
+
content: "\f3a8";
+
}
+
.bi-file-play::before {
+
content: "\f3a9";
+
}
+
.bi-file-plus-fill::before {
+
content: "\f3aa";
+
}
+
.bi-file-plus::before {
+
content: "\f3ab";
+
}
+
.bi-file-post-fill::before {
+
content: "\f3ac";
+
}
+
.bi-file-post::before {
+
content: "\f3ad";
+
}
+
.bi-file-ppt-fill::before {
+
content: "\f3ae";
+
}
+
.bi-file-ppt::before {
+
content: "\f3af";
+
}
+
.bi-file-richtext-fill::before {
+
content: "\f3b0";
+
}
+
.bi-file-richtext::before {
+
content: "\f3b1";
+
}
+
.bi-file-ruled-fill::before {
+
content: "\f3b2";
+
}
+
.bi-file-ruled::before {
+
content: "\f3b3";
+
}
+
.bi-file-slides-fill::before {
+
content: "\f3b4";
+
}
+
.bi-file-slides::before {
+
content: "\f3b5";
+
}
+
.bi-file-spreadsheet-fill::before {
+
content: "\f3b6";
+
}
+
.bi-file-spreadsheet::before {
+
content: "\f3b7";
+
}
+
.bi-file-text-fill::before {
+
content: "\f3b8";
+
}
+
.bi-file-text::before {
+
content: "\f3b9";
+
}
+
.bi-file-word-fill::before {
+
content: "\f3ba";
+
}
+
.bi-file-word::before {
+
content: "\f3bb";
+
}
+
.bi-file-x-fill::before {
+
content: "\f3bc";
+
}
+
.bi-file-x::before {
+
content: "\f3bd";
+
}
+
.bi-file-zip-fill::before {
+
content: "\f3be";
+
}
+
.bi-file-zip::before {
+
content: "\f3bf";
+
}
+
.bi-file::before {
+
content: "\f3c0";
+
}
+
.bi-files-alt::before {
+
content: "\f3c1";
+
}
+
.bi-files::before {
+
content: "\f3c2";
+
}
+
.bi-film::before {
+
content: "\f3c3";
+
}
+
.bi-filter-circle-fill::before {
+
content: "\f3c4";
+
}
+
.bi-filter-circle::before {
+
content: "\f3c5";
+
}
+
.bi-filter-left::before {
+
content: "\f3c6";
+
}
+
.bi-filter-right::before {
+
content: "\f3c7";
+
}
+
.bi-filter-square-fill::before {
+
content: "\f3c8";
+
}
+
.bi-filter-square::before {
+
content: "\f3c9";
+
}
+
.bi-filter::before {
+
content: "\f3ca";
+
}
+
.bi-flag-fill::before {
+
content: "\f3cb";
+
}
+
.bi-flag::before {
+
content: "\f3cc";
+
}
+
.bi-flower1::before {
+
content: "\f3cd";
+
}
+
.bi-flower2::before {
+
content: "\f3ce";
+
}
+
.bi-flower3::before {
+
content: "\f3cf";
+
}
+
.bi-folder-check::before {
+
content: "\f3d0";
+
}
+
.bi-folder-fill::before {
+
content: "\f3d1";
+
}
+
.bi-folder-minus::before {
+
content: "\f3d2";
+
}
+
.bi-folder-plus::before {
+
content: "\f3d3";
+
}
+
.bi-folder-symlink-fill::before {
+
content: "\f3d4";
+
}
+
.bi-folder-symlink::before {
+
content: "\f3d5";
+
}
+
.bi-folder-x::before {
+
content: "\f3d6";
+
}
+
.bi-folder::before {
+
content: "\f3d7";
+
}
+
.bi-folder2-open::before {
+
content: "\f3d8";
+
}
+
.bi-folder2::before {
+
content: "\f3d9";
+
}
+
.bi-fonts::before {
+
content: "\f3da";
+
}
+
.bi-forward-fill::before {
+
content: "\f3db";
+
}
+
.bi-forward::before {
+
content: "\f3dc";
+
}
+
.bi-front::before {
+
content: "\f3dd";
+
}
+
.bi-fullscreen-exit::before {
+
content: "\f3de";
+
}
+
.bi-fullscreen::before {
+
content: "\f3df";
+
}
+
.bi-funnel-fill::before {
+
content: "\f3e0";
+
}
+
.bi-funnel::before {
+
content: "\f3e1";
+
}
+
.bi-gear-fill::before {
+
content: "\f3e2";
+
}
+
.bi-gear-wide-connected::before {
+
content: "\f3e3";
+
}
+
.bi-gear-wide::before {
+
content: "\f3e4";
+
}
+
.bi-gear::before {
+
content: "\f3e5";
+
}
+
.bi-gem::before {
+
content: "\f3e6";
+
}
+
.bi-geo-alt-fill::before {
+
content: "\f3e7";
+
}
+
.bi-geo-alt::before {
+
content: "\f3e8";
+
}
+
.bi-geo-fill::before {
+
content: "\f3e9";
+
}
+
.bi-geo::before {
+
content: "\f3ea";
+
}
+
.bi-gift-fill::before {
+
content: "\f3eb";
+
}
+
.bi-gift::before {
+
content: "\f3ec";
+
}
+
.bi-github::before {
+
content: "\f3ed";
+
}
+
.bi-globe::before {
+
content: "\f3ee";
+
}
+
.bi-globe2::before {
+
content: "\f3ef";
+
}
+
.bi-google::before {
+
content: "\f3f0";
+
}
+
.bi-graph-down::before {
+
content: "\f3f1";
+
}
+
.bi-graph-up::before {
+
content: "\f3f2";
+
}
+
.bi-grid-1x2-fill::before {
+
content: "\f3f3";
+
}
+
.bi-grid-1x2::before {
+
content: "\f3f4";
+
}
+
.bi-grid-3x2-gap-fill::before {
+
content: "\f3f5";
+
}
+
.bi-grid-3x2-gap::before {
+
content: "\f3f6";
+
}
+
.bi-grid-3x2::before {
+
content: "\f3f7";
+
}
+
.bi-grid-3x3-gap-fill::before {
+
content: "\f3f8";
+
}
+
.bi-grid-3x3-gap::before {
+
content: "\f3f9";
+
}
+
.bi-grid-3x3::before {
+
content: "\f3fa";
+
}
+
.bi-grid-fill::before {
+
content: "\f3fb";
+
}
+
.bi-grid::before {
+
content: "\f3fc";
+
}
+
.bi-grip-horizontal::before {
+
content: "\f3fd";
+
}
+
.bi-grip-vertical::before {
+
content: "\f3fe";
+
}
+
.bi-hammer::before {
+
content: "\f3ff";
+
}
+
.bi-hand-index-fill::before {
+
content: "\f400";
+
}
+
.bi-hand-index-thumb-fill::before {
+
content: "\f401";
+
}
+
.bi-hand-index-thumb::before {
+
content: "\f402";
+
}
+
.bi-hand-index::before {
+
content: "\f403";
+
}
+
.bi-hand-thumbs-down-fill::before {
+
content: "\f404";
+
}
+
.bi-hand-thumbs-down::before {
+
content: "\f405";
+
}
+
.bi-hand-thumbs-up-fill::before {
+
content: "\f406";
+
}
+
.bi-hand-thumbs-up::before {
+
content: "\f407";
+
}
+
.bi-handbag-fill::before {
+
content: "\f408";
+
}
+
.bi-handbag::before {
+
content: "\f409";
+
}
+
.bi-hash::before {
+
content: "\f40a";
+
}
+
.bi-hdd-fill::before {
+
content: "\f40b";
+
}
+
.bi-hdd-network-fill::before {
+
content: "\f40c";
+
}
+
.bi-hdd-network::before {
+
content: "\f40d";
+
}
+
.bi-hdd-rack-fill::before {
+
content: "\f40e";
+
}
+
.bi-hdd-rack::before {
+
content: "\f40f";
+
}
+
.bi-hdd-stack-fill::before {
+
content: "\f410";
+
}
+
.bi-hdd-stack::before {
+
content: "\f411";
+
}
+
.bi-hdd::before {
+
content: "\f412";
+
}
+
.bi-headphones::before {
+
content: "\f413";
+
}
+
.bi-headset::before {
+
content: "\f414";
+
}
+
.bi-heart-fill::before {
+
content: "\f415";
+
}
+
.bi-heart-half::before {
+
content: "\f416";
+
}
+
.bi-heart::before {
+
content: "\f417";
+
}
+
.bi-heptagon-fill::before {
+
content: "\f418";
+
}
+
.bi-heptagon-half::before {
+
content: "\f419";
+
}
+
.bi-heptagon::before {
+
content: "\f41a";
+
}
+
.bi-hexagon-fill::before {
+
content: "\f41b";
+
}
+
.bi-hexagon-half::before {
+
content: "\f41c";
+
}
+
.bi-hexagon::before {
+
content: "\f41d";
+
}
+
.bi-hourglass-bottom::before {
+
content: "\f41e";
+
}
+
.bi-hourglass-split::before {
+
content: "\f41f";
+
}
+
.bi-hourglass-top::before {
+
content: "\f420";
+
}
+
.bi-hourglass::before {
+
content: "\f421";
+
}
+
.bi-house-door-fill::before {
+
content: "\f422";
+
}
+
.bi-house-door::before {
+
content: "\f423";
+
}
+
.bi-house-fill::before {
+
content: "\f424";
+
}
+
.bi-house::before {
+
content: "\f425";
+
}
+
.bi-hr::before {
+
content: "\f426";
+
}
+
.bi-hurricane::before {
+
content: "\f427";
+
}
+
.bi-image-alt::before {
+
content: "\f428";
+
}
+
.bi-image-fill::before {
+
content: "\f429";
+
}
+
.bi-image::before {
+
content: "\f42a";
+
}
+
.bi-images::before {
+
content: "\f42b";
+
}
+
.bi-inbox-fill::before {
+
content: "\f42c";
+
}
+
.bi-inbox::before {
+
content: "\f42d";
+
}
+
.bi-inboxes-fill::before {
+
content: "\f42e";
+
}
+
.bi-inboxes::before {
+
content: "\f42f";
+
}
+
.bi-info-circle-fill::before {
+
content: "\f430";
+
}
+
.bi-info-circle::before {
+
content: "\f431";
+
}
+
.bi-info-square-fill::before {
+
content: "\f432";
+
}
+
.bi-info-square::before {
+
content: "\f433";
+
}
+
.bi-info::before {
+
content: "\f434";
+
}
+
.bi-input-cursor-text::before {
+
content: "\f435";
+
}
+
.bi-input-cursor::before {
+
content: "\f436";
+
}
+
.bi-instagram::before {
+
content: "\f437";
+
}
+
.bi-intersect::before {
+
content: "\f438";
+
}
+
.bi-journal-album::before {
+
content: "\f439";
+
}
+
.bi-journal-arrow-down::before {
+
content: "\f43a";
+
}
+
.bi-journal-arrow-up::before {
+
content: "\f43b";
+
}
+
.bi-journal-bookmark-fill::before {
+
content: "\f43c";
+
}
+
.bi-journal-bookmark::before {
+
content: "\f43d";
+
}
+
.bi-journal-check::before {
+
content: "\f43e";
+
}
+
.bi-journal-code::before {
+
content: "\f43f";
+
}
+
.bi-journal-medical::before {
+
content: "\f440";
+
}
+
.bi-journal-minus::before {
+
content: "\f441";
+
}
+
.bi-journal-plus::before {
+
content: "\f442";
+
}
+
.bi-journal-richtext::before {
+
content: "\f443";
+
}
+
.bi-journal-text::before {
+
content: "\f444";
+
}
+
.bi-journal-x::before {
+
content: "\f445";
+
}
+
.bi-journal::before {
+
content: "\f446";
+
}
+
.bi-journals::before {
+
content: "\f447";
+
}
+
.bi-joystick::before {
+
content: "\f448";
+
}
+
.bi-justify-left::before {
+
content: "\f449";
+
}
+
.bi-justify-right::before {
+
content: "\f44a";
+
}
+
.bi-justify::before {
+
content: "\f44b";
+
}
+
.bi-kanban-fill::before {
+
content: "\f44c";
+
}
+
.bi-kanban::before {
+
content: "\f44d";
+
}
+
.bi-key-fill::before {
+
content: "\f44e";
+
}
+
.bi-key::before {
+
content: "\f44f";
+
}
+
.bi-keyboard-fill::before {
+
content: "\f450";
+
}
+
.bi-keyboard::before {
+
content: "\f451";
+
}
+
.bi-ladder::before {
+
content: "\f452";
+
}
+
.bi-lamp-fill::before {
+
content: "\f453";
+
}
+
.bi-lamp::before {
+
content: "\f454";
+
}
+
.bi-laptop-fill::before {
+
content: "\f455";
+
}
+
.bi-laptop::before {
+
content: "\f456";
+
}
+
.bi-layer-backward::before {
+
content: "\f457";
+
}
+
.bi-layer-forward::before {
+
content: "\f458";
+
}
+
.bi-layers-fill::before {
+
content: "\f459";
+
}
+
.bi-layers-half::before {
+
content: "\f45a";
+
}
+
.bi-layers::before {
+
content: "\f45b";
+
}
+
.bi-layout-sidebar-inset-reverse::before {
+
content: "\f45c";
+
}
+
.bi-layout-sidebar-inset::before {
+
content: "\f45d";
+
}
+
.bi-layout-sidebar-reverse::before {
+
content: "\f45e";
+
}
+
.bi-layout-sidebar::before {
+
content: "\f45f";
+
}
+
.bi-layout-split::before {
+
content: "\f460";
+
}
+
.bi-layout-text-sidebar-reverse::before {
+
content: "\f461";
+
}
+
.bi-layout-text-sidebar::before {
+
content: "\f462";
+
}
+
.bi-layout-text-window-reverse::before {
+
content: "\f463";
+
}
+
.bi-layout-text-window::before {
+
content: "\f464";
+
}
+
.bi-layout-three-columns::before {
+
content: "\f465";
+
}
+
.bi-layout-wtf::before {
+
content: "\f466";
+
}
+
.bi-life-preserver::before {
+
content: "\f467";
+
}
+
.bi-lightbulb-fill::before {
+
content: "\f468";
+
}
+
.bi-lightbulb-off-fill::before {
+
content: "\f469";
+
}
+
.bi-lightbulb-off::before {
+
content: "\f46a";
+
}
+
.bi-lightbulb::before {
+
content: "\f46b";
+
}
+
.bi-lightning-charge-fill::before {
+
content: "\f46c";
+
}
+
.bi-lightning-charge::before {
+
content: "\f46d";
+
}
+
.bi-lightning-fill::before {
+
content: "\f46e";
+
}
+
.bi-lightning::before {
+
content: "\f46f";
+
}
+
.bi-link-45deg::before {
+
content: "\f470";
+
}
+
.bi-link::before {
+
content: "\f471";
+
}
+
.bi-linkedin::before {
+
content: "\f472";
+
}
+
.bi-list-check::before {
+
content: "\f473";
+
}
+
.bi-list-nested::before {
+
content: "\f474";
+
}
+
.bi-list-ol::before {
+
content: "\f475";
+
}
+
.bi-list-stars::before {
+
content: "\f476";
+
}
+
.bi-list-task::before {
+
content: "\f477";
+
}
+
.bi-list-ul::before {
+
content: "\f478";
+
}
+
.bi-list::before {
+
content: "\f479";
+
}
+
.bi-lock-fill::before {
+
content: "\f47a";
+
}
+
.bi-lock::before {
+
content: "\f47b";
+
}
+
.bi-mailbox::before {
+
content: "\f47c";
+
}
+
.bi-mailbox2::before {
+
content: "\f47d";
+
}
+
.bi-map-fill::before {
+
content: "\f47e";
+
}
+
.bi-map::before {
+
content: "\f47f";
+
}
+
.bi-markdown-fill::before {
+
content: "\f480";
+
}
+
.bi-markdown::before {
+
content: "\f481";
+
}
+
.bi-mask::before {
+
content: "\f482";
+
}
+
.bi-megaphone-fill::before {
+
content: "\f483";
+
}
+
.bi-megaphone::before {
+
content: "\f484";
+
}
+
.bi-menu-app-fill::before {
+
content: "\f485";
+
}
+
.bi-menu-app::before {
+
content: "\f486";
+
}
+
.bi-menu-button-fill::before {
+
content: "\f487";
+
}
+
.bi-menu-button-wide-fill::before {
+
content: "\f488";
+
}
+
.bi-menu-button-wide::before {
+
content: "\f489";
+
}
+
.bi-menu-button::before {
+
content: "\f48a";
+
}
+
.bi-menu-down::before {
+
content: "\f48b";
+
}
+
.bi-menu-up::before {
+
content: "\f48c";
+
}
+
.bi-mic-fill::before {
+
content: "\f48d";
+
}
+
.bi-mic-mute-fill::before {
+
content: "\f48e";
+
}
+
.bi-mic-mute::before {
+
content: "\f48f";
+
}
+
.bi-mic::before {
+
content: "\f490";
+
}
+
.bi-minecart-loaded::before {
+
content: "\f491";
+
}
+
.bi-minecart::before {
+
content: "\f492";
+
}
+
.bi-moisture::before {
+
content: "\f493";
+
}
+
.bi-moon-fill::before {
+
content: "\f494";
+
}
+
.bi-moon-stars-fill::before {
+
content: "\f495";
+
}
+
.bi-moon-stars::before {
+
content: "\f496";
+
}
+
.bi-moon::before {
+
content: "\f497";
+
}
+
.bi-mouse-fill::before {
+
content: "\f498";
+
}
+
.bi-mouse::before {
+
content: "\f499";
+
}
+
.bi-mouse2-fill::before {
+
content: "\f49a";
+
}
+
.bi-mouse2::before {
+
content: "\f49b";
+
}
+
.bi-mouse3-fill::before {
+
content: "\f49c";
+
}
+
.bi-mouse3::before {
+
content: "\f49d";
+
}
+
.bi-music-note-beamed::before {
+
content: "\f49e";
+
}
+
.bi-music-note-list::before {
+
content: "\f49f";
+
}
+
.bi-music-note::before {
+
content: "\f4a0";
+
}
+
.bi-music-player-fill::before {
+
content: "\f4a1";
+
}
+
.bi-music-player::before {
+
content: "\f4a2";
+
}
+
.bi-newspaper::before {
+
content: "\f4a3";
+
}
+
.bi-node-minus-fill::before {
+
content: "\f4a4";
+
}
+
.bi-node-minus::before {
+
content: "\f4a5";
+
}
+
.bi-node-plus-fill::before {
+
content: "\f4a6";
+
}
+
.bi-node-plus::before {
+
content: "\f4a7";
+
}
+
.bi-nut-fill::before {
+
content: "\f4a8";
+
}
+
.bi-nut::before {
+
content: "\f4a9";
+
}
+
.bi-octagon-fill::before {
+
content: "\f4aa";
+
}
+
.bi-octagon-half::before {
+
content: "\f4ab";
+
}
+
.bi-octagon::before {
+
content: "\f4ac";
+
}
+
.bi-option::before {
+
content: "\f4ad";
+
}
+
.bi-outlet::before {
+
content: "\f4ae";
+
}
+
.bi-paint-bucket::before {
+
content: "\f4af";
+
}
+
.bi-palette-fill::before {
+
content: "\f4b0";
+
}
+
.bi-palette::before {
+
content: "\f4b1";
+
}
+
.bi-palette2::before {
+
content: "\f4b2";
+
}
+
.bi-paperclip::before {
+
content: "\f4b3";
+
}
+
.bi-paragraph::before {
+
content: "\f4b4";
+
}
+
.bi-patch-check-fill::before {
+
content: "\f4b5";
+
}
+
.bi-patch-check::before {
+
content: "\f4b6";
+
}
+
.bi-patch-exclamation-fill::before {
+
content: "\f4b7";
+
}
+
.bi-patch-exclamation::before {
+
content: "\f4b8";
+
}
+
.bi-patch-minus-fill::before {
+
content: "\f4b9";
+
}
+
.bi-patch-minus::before {
+
content: "\f4ba";
+
}
+
.bi-patch-plus-fill::before {
+
content: "\f4bb";
+
}
+
.bi-patch-plus::before {
+
content: "\f4bc";
+
}
+
.bi-patch-question-fill::before {
+
content: "\f4bd";
+
}
+
.bi-patch-question::before {
+
content: "\f4be";
+
}
+
.bi-pause-btn-fill::before {
+
content: "\f4bf";
+
}
+
.bi-pause-btn::before {
+
content: "\f4c0";
+
}
+
.bi-pause-circle-fill::before {
+
content: "\f4c1";
+
}
+
.bi-pause-circle::before {
+
content: "\f4c2";
+
}
+
.bi-pause-fill::before {
+
content: "\f4c3";
+
}
+
.bi-pause::before {
+
content: "\f4c4";
+
}
+
.bi-peace-fill::before {
+
content: "\f4c5";
+
}
+
.bi-peace::before {
+
content: "\f4c6";
+
}
+
.bi-pen-fill::before {
+
content: "\f4c7";
+
}
+
.bi-pen::before {
+
content: "\f4c8";
+
}
+
.bi-pencil-fill::before {
+
content: "\f4c9";
+
}
+
.bi-pencil-square::before {
+
content: "\f4ca";
+
}
+
.bi-pencil::before {
+
content: "\f4cb";
+
}
+
.bi-pentagon-fill::before {
+
content: "\f4cc";
+
}
+
.bi-pentagon-half::before {
+
content: "\f4cd";
+
}
+
.bi-pentagon::before {
+
content: "\f4ce";
+
}
+
.bi-people-fill::before {
+
content: "\f4cf";
+
}
+
.bi-people::before {
+
content: "\f4d0";
+
}
+
.bi-percent::before {
+
content: "\f4d1";
+
}
+
.bi-person-badge-fill::before {
+
content: "\f4d2";
+
}
+
.bi-person-badge::before {
+
content: "\f4d3";
+
}
+
.bi-person-bounding-box::before {
+
content: "\f4d4";
+
}
+
.bi-person-check-fill::before {
+
content: "\f4d5";
+
}
+
.bi-person-check::before {
+
content: "\f4d6";
+
}
+
.bi-person-circle::before {
+
content: "\f4d7";
+
}
+
.bi-person-dash-fill::before {
+
content: "\f4d8";
+
}
+
.bi-person-dash::before {
+
content: "\f4d9";
+
}
+
.bi-person-fill::before {
+
content: "\f4da";
+
}
+
.bi-person-lines-fill::before {
+
content: "\f4db";
+
}
+
.bi-person-plus-fill::before {
+
content: "\f4dc";
+
}
+
.bi-person-plus::before {
+
content: "\f4dd";
+
}
+
.bi-person-square::before {
+
content: "\f4de";
+
}
+
.bi-person-x-fill::before {
+
content: "\f4df";
+
}
+
.bi-person-x::before {
+
content: "\f4e0";
+
}
+
.bi-person::before {
+
content: "\f4e1";
+
}
+
.bi-phone-fill::before {
+
content: "\f4e2";
+
}
+
.bi-phone-landscape-fill::before {
+
content: "\f4e3";
+
}
+
.bi-phone-landscape::before {
+
content: "\f4e4";
+
}
+
.bi-phone-vibrate-fill::before {
+
content: "\f4e5";
+
}
+
.bi-phone-vibrate::before {
+
content: "\f4e6";
+
}
+
.bi-phone::before {
+
content: "\f4e7";
+
}
+
.bi-pie-chart-fill::before {
+
content: "\f4e8";
+
}
+
.bi-pie-chart::before {
+
content: "\f4e9";
+
}
+
.bi-pin-angle-fill::before {
+
content: "\f4ea";
+
}
+
.bi-pin-angle::before {
+
content: "\f4eb";
+
}
+
.bi-pin-fill::before {
+
content: "\f4ec";
+
}
+
.bi-pin::before {
+
content: "\f4ed";
+
}
+
.bi-pip-fill::before {
+
content: "\f4ee";
+
}
+
.bi-pip::before {
+
content: "\f4ef";
+
}
+
.bi-play-btn-fill::before {
+
content: "\f4f0";
+
}
+
.bi-play-btn::before {
+
content: "\f4f1";
+
}
+
.bi-play-circle-fill::before {
+
content: "\f4f2";
+
}
+
.bi-play-circle::before {
+
content: "\f4f3";
+
}
+
.bi-play-fill::before {
+
content: "\f4f4";
+
}
+
.bi-play::before {
+
content: "\f4f5";
+
}
+
.bi-plug-fill::before {
+
content: "\f4f6";
+
}
+
.bi-plug::before {
+
content: "\f4f7";
+
}
+
.bi-plus-circle-dotted::before {
+
content: "\f4f8";
+
}
+
.bi-plus-circle-fill::before {
+
content: "\f4f9";
+
}
+
.bi-plus-circle::before {
+
content: "\f4fa";
+
}
+
.bi-plus-square-dotted::before {
+
content: "\f4fb";
+
}
+
.bi-plus-square-fill::before {
+
content: "\f4fc";
+
}
+
.bi-plus-square::before {
+
content: "\f4fd";
+
}
+
.bi-plus::before {
+
content: "\f4fe";
+
}
+
.bi-power::before {
+
content: "\f4ff";
+
}
+
.bi-printer-fill::before {
+
content: "\f500";
+
}
+
.bi-printer::before {
+
content: "\f501";
+
}
+
.bi-puzzle-fill::before {
+
content: "\f502";
+
}
+
.bi-puzzle::before {
+
content: "\f503";
+
}
+
.bi-question-circle-fill::before {
+
content: "\f504";
+
}
+
.bi-question-circle::before {
+
content: "\f505";
+
}
+
.bi-question-diamond-fill::before {
+
content: "\f506";
+
}
+
.bi-question-diamond::before {
+
content: "\f507";
+
}
+
.bi-question-octagon-fill::before {
+
content: "\f508";
+
}
+
.bi-question-octagon::before {
+
content: "\f509";
+
}
+
.bi-question-square-fill::before {
+
content: "\f50a";
+
}
+
.bi-question-square::before {
+
content: "\f50b";
+
}
+
.bi-question::before {
+
content: "\f50c";
+
}
+
.bi-rainbow::before {
+
content: "\f50d";
+
}
+
.bi-receipt-cutoff::before {
+
content: "\f50e";
+
}
+
.bi-receipt::before {
+
content: "\f50f";
+
}
+
.bi-reception-0::before {
+
content: "\f510";
+
}
+
.bi-reception-1::before {
+
content: "\f511";
+
}
+
.bi-reception-2::before {
+
content: "\f512";
+
}
+
.bi-reception-3::before {
+
content: "\f513";
+
}
+
.bi-reception-4::before {
+
content: "\f514";
+
}
+
.bi-record-btn-fill::before {
+
content: "\f515";
+
}
+
.bi-record-btn::before {
+
content: "\f516";
+
}
+
.bi-record-circle-fill::before {
+
content: "\f517";
+
}
+
.bi-record-circle::before {
+
content: "\f518";
+
}
+
.bi-record-fill::before {
+
content: "\f519";
+
}
+
.bi-record::before {
+
content: "\f51a";
+
}
+
.bi-record2-fill::before {
+
content: "\f51b";
+
}
+
.bi-record2::before {
+
content: "\f51c";
+
}
+
.bi-reply-all-fill::before {
+
content: "\f51d";
+
}
+
.bi-reply-all::before {
+
content: "\f51e";
+
}
+
.bi-reply-fill::before {
+
content: "\f51f";
+
}
+
.bi-reply::before {
+
content: "\f520";
+
}
+
.bi-rss-fill::before {
+
content: "\f521";
+
}
+
.bi-rss::before {
+
content: "\f522";
+
}
+
.bi-rulers::before {
+
content: "\f523";
+
}
+
.bi-save-fill::before {
+
content: "\f524";
+
}
+
.bi-save::before {
+
content: "\f525";
+
}
+
.bi-save2-fill::before {
+
content: "\f526";
+
}
+
.bi-save2::before {
+
content: "\f527";
+
}
+
.bi-scissors::before {
+
content: "\f528";
+
}
+
.bi-screwdriver::before {
+
content: "\f529";
+
}
+
.bi-search::before {
+
content: "\f52a";
+
}
+
.bi-segmented-nav::before {
+
content: "\f52b";
+
}
+
.bi-server::before {
+
content: "\f52c";
+
}
+
.bi-share-fill::before {
+
content: "\f52d";
+
}
+
.bi-share::before {
+
content: "\f52e";
+
}
+
.bi-shield-check::before {
+
content: "\f52f";
+
}
+
.bi-shield-exclamation::before {
+
content: "\f530";
+
}
+
.bi-shield-fill-check::before {
+
content: "\f531";
+
}
+
.bi-shield-fill-exclamation::before {
+
content: "\f532";
+
}
+
.bi-shield-fill-minus::before {
+
content: "\f533";
+
}
+
.bi-shield-fill-plus::before {
+
content: "\f534";
+
}
+
.bi-shield-fill-x::before {
+
content: "\f535";
+
}
+
.bi-shield-fill::before {
+
content: "\f536";
+
}
+
.bi-shield-lock-fill::before {
+
content: "\f537";
+
}
+
.bi-shield-lock::before {
+
content: "\f538";
+
}
+
.bi-shield-minus::before {
+
content: "\f539";
+
}
+
.bi-shield-plus::before {
+
content: "\f53a";
+
}
+
.bi-shield-shaded::before {
+
content: "\f53b";
+
}
+
.bi-shield-slash-fill::before {
+
content: "\f53c";
+
}
+
.bi-shield-slash::before {
+
content: "\f53d";
+
}
+
.bi-shield-x::before {
+
content: "\f53e";
+
}
+
.bi-shield::before {
+
content: "\f53f";
+
}
+
.bi-shift-fill::before {
+
content: "\f540";
+
}
+
.bi-shift::before {
+
content: "\f541";
+
}
+
.bi-shop-window::before {
+
content: "\f542";
+
}
+
.bi-shop::before {
+
content: "\f543";
+
}
+
.bi-shuffle::before {
+
content: "\f544";
+
}
+
.bi-signpost-2-fill::before {
+
content: "\f545";
+
}
+
.bi-signpost-2::before {
+
content: "\f546";
+
}
+
.bi-signpost-fill::before {
+
content: "\f547";
+
}
+
.bi-signpost-split-fill::before {
+
content: "\f548";
+
}
+
.bi-signpost-split::before {
+
content: "\f549";
+
}
+
.bi-signpost::before {
+
content: "\f54a";
+
}
+
.bi-sim-fill::before {
+
content: "\f54b";
+
}
+
.bi-sim::before {
+
content: "\f54c";
+
}
+
.bi-skip-backward-btn-fill::before {
+
content: "\f54d";
+
}
+
.bi-skip-backward-btn::before {
+
content: "\f54e";
+
}
+
.bi-skip-backward-circle-fill::before {
+
content: "\f54f";
+
}
+
.bi-skip-backward-circle::before {
+
content: "\f550";
+
}
+
.bi-skip-backward-fill::before {
+
content: "\f551";
+
}
+
.bi-skip-backward::before {
+
content: "\f552";
+
}
+
.bi-skip-end-btn-fill::before {
+
content: "\f553";
+
}
+
.bi-skip-end-btn::before {
+
content: "\f554";
+
}
+
.bi-skip-end-circle-fill::before {
+
content: "\f555";
+
}
+
.bi-skip-end-circle::before {
+
content: "\f556";
+
}
+
.bi-skip-end-fill::before {
+
content: "\f557";
+
}
+
.bi-skip-end::before {
+
content: "\f558";
+
}
+
.bi-skip-forward-btn-fill::before {
+
content: "\f559";
+
}
+
.bi-skip-forward-btn::before {
+
content: "\f55a";
+
}
+
.bi-skip-forward-circle-fill::before {
+
content: "\f55b";
+
}
+
.bi-skip-forward-circle::before {
+
content: "\f55c";
+
}
+
.bi-skip-forward-fill::before {
+
content: "\f55d";
+
}
+
.bi-skip-forward::before {
+
content: "\f55e";
+
}
+
.bi-skip-start-btn-fill::before {
+
content: "\f55f";
+
}
+
.bi-skip-start-btn::before {
+
content: "\f560";
+
}
+
.bi-skip-start-circle-fill::before {
+
content: "\f561";
+
}
+
.bi-skip-start-circle::before {
+
content: "\f562";
+
}
+
.bi-skip-start-fill::before {
+
content: "\f563";
+
}
+
.bi-skip-start::before {
+
content: "\f564";
+
}
+
.bi-slack::before {
+
content: "\f565";
+
}
+
.bi-slash-circle-fill::before {
+
content: "\f566";
+
}
+
.bi-slash-circle::before {
+
content: "\f567";
+
}
+
.bi-slash-square-fill::before {
+
content: "\f568";
+
}
+
.bi-slash-square::before {
+
content: "\f569";
+
}
+
.bi-slash::before {
+
content: "\f56a";
+
}
+
.bi-sliders::before {
+
content: "\f56b";
+
}
+
.bi-smartwatch::before {
+
content: "\f56c";
+
}
+
.bi-snow::before {
+
content: "\f56d";
+
}
+
.bi-snow2::before {
+
content: "\f56e";
+
}
+
.bi-snow3::before {
+
content: "\f56f";
+
}
+
.bi-sort-alpha-down-alt::before {
+
content: "\f570";
+
}
+
.bi-sort-alpha-down::before {
+
content: "\f571";
+
}
+
.bi-sort-alpha-up-alt::before {
+
content: "\f572";
+
}
+
.bi-sort-alpha-up::before {
+
content: "\f573";
+
}
+
.bi-sort-down-alt::before {
+
content: "\f574";
+
}
+
.bi-sort-down::before {
+
content: "\f575";
+
}
+
.bi-sort-numeric-down-alt::before {
+
content: "\f576";
+
}
+
.bi-sort-numeric-down::before {
+
content: "\f577";
+
}
+
.bi-sort-numeric-up-alt::before {
+
content: "\f578";
+
}
+
.bi-sort-numeric-up::before {
+
content: "\f579";
+
}
+
.bi-sort-up-alt::before {
+
content: "\f57a";
+
}
+
.bi-sort-up::before {
+
content: "\f57b";
+
}
+
.bi-soundwave::before {
+
content: "\f57c";
+
}
+
.bi-speaker-fill::before {
+
content: "\f57d";
+
}
+
.bi-speaker::before {
+
content: "\f57e";
+
}
+
.bi-speedometer::before {
+
content: "\f57f";
+
}
+
.bi-speedometer2::before {
+
content: "\f580";
+
}
+
.bi-spellcheck::before {
+
content: "\f581";
+
}
+
.bi-square-fill::before {
+
content: "\f582";
+
}
+
.bi-square-half::before {
+
content: "\f583";
+
}
+
.bi-square::before {
+
content: "\f584";
+
}
+
.bi-stack::before {
+
content: "\f585";
+
}
+
.bi-star-fill::before {
+
content: "\f586";
+
}
+
.bi-star-half::before {
+
content: "\f587";
+
}
+
.bi-star::before {
+
content: "\f588";
+
}
+
.bi-stars::before {
+
content: "\f589";
+
}
+
.bi-stickies-fill::before {
+
content: "\f58a";
+
}
+
.bi-stickies::before {
+
content: "\f58b";
+
}
+
.bi-sticky-fill::before {
+
content: "\f58c";
+
}
+
.bi-sticky::before {
+
content: "\f58d";
+
}
+
.bi-stop-btn-fill::before {
+
content: "\f58e";
+
}
+
.bi-stop-btn::before {
+
content: "\f58f";
+
}
+
.bi-stop-circle-fill::before {
+
content: "\f590";
+
}
+
.bi-stop-circle::before {
+
content: "\f591";
+
}
+
.bi-stop-fill::before {
+
content: "\f592";
+
}
+
.bi-stop::before {
+
content: "\f593";
+
}
+
.bi-stoplights-fill::before {
+
content: "\f594";
+
}
+
.bi-stoplights::before {
+
content: "\f595";
+
}
+
.bi-stopwatch-fill::before {
+
content: "\f596";
+
}
+
.bi-stopwatch::before {
+
content: "\f597";
+
}
+
.bi-subtract::before {
+
content: "\f598";
+
}
+
.bi-suit-club-fill::before {
+
content: "\f599";
+
}
+
.bi-suit-club::before {
+
content: "\f59a";
+
}
+
.bi-suit-diamond-fill::before {
+
content: "\f59b";
+
}
+
.bi-suit-diamond::before {
+
content: "\f59c";
+
}
+
.bi-suit-heart-fill::before {
+
content: "\f59d";
+
}
+
.bi-suit-heart::before {
+
content: "\f59e";
+
}
+
.bi-suit-spade-fill::before {
+
content: "\f59f";
+
}
+
.bi-suit-spade::before {
+
content: "\f5a0";
+
}
+
.bi-sun-fill::before {
+
content: "\f5a1";
+
}
+
.bi-sun::before {
+
content: "\f5a2";
+
}
+
.bi-sunglasses::before {
+
content: "\f5a3";
+
}
+
.bi-sunrise-fill::before {
+
content: "\f5a4";
+
}
+
.bi-sunrise::before {
+
content: "\f5a5";
+
}
+
.bi-sunset-fill::before {
+
content: "\f5a6";
+
}
+
.bi-sunset::before {
+
content: "\f5a7";
+
}
+
.bi-symmetry-horizontal::before {
+
content: "\f5a8";
+
}
+
.bi-symmetry-vertical::before {
+
content: "\f5a9";
+
}
+
.bi-table::before {
+
content: "\f5aa";
+
}
+
.bi-tablet-fill::before {
+
content: "\f5ab";
+
}
+
.bi-tablet-landscape-fill::before {
+
content: "\f5ac";
+
}
+
.bi-tablet-landscape::before {
+
content: "\f5ad";
+
}
+
.bi-tablet::before {
+
content: "\f5ae";
+
}
+
.bi-tag-fill::before {
+
content: "\f5af";
+
}
+
.bi-tag::before {
+
content: "\f5b0";
+
}
+
.bi-tags-fill::before {
+
content: "\f5b1";
+
}
+
.bi-tags::before {
+
content: "\f5b2";
+
}
+
.bi-telegram::before {
+
content: "\f5b3";
+
}
+
.bi-telephone-fill::before {
+
content: "\f5b4";
+
}
+
.bi-telephone-forward-fill::before {
+
content: "\f5b5";
+
}
+
.bi-telephone-forward::before {
+
content: "\f5b6";
+
}
+
.bi-telephone-inbound-fill::before {
+
content: "\f5b7";
+
}
+
.bi-telephone-inbound::before {
+
content: "\f5b8";
+
}
+
.bi-telephone-minus-fill::before {
+
content: "\f5b9";
+
}
+
.bi-telephone-minus::before {
+
content: "\f5ba";
+
}
+
.bi-telephone-outbound-fill::before {
+
content: "\f5bb";
+
}
+
.bi-telephone-outbound::before {
+
content: "\f5bc";
+
}
+
.bi-telephone-plus-fill::before {
+
content: "\f5bd";
+
}
+
.bi-telephone-plus::before {
+
content: "\f5be";
+
}
+
.bi-telephone-x-fill::before {
+
content: "\f5bf";
+
}
+
.bi-telephone-x::before {
+
content: "\f5c0";
+
}
+
.bi-telephone::before {
+
content: "\f5c1";
+
}
+
.bi-terminal-fill::before {
+
content: "\f5c2";
+
}
+
.bi-terminal::before {
+
content: "\f5c3";
+
}
+
.bi-text-center::before {
+
content: "\f5c4";
+
}
+
.bi-text-indent-left::before {
+
content: "\f5c5";
+
}
+
.bi-text-indent-right::before {
+
content: "\f5c6";
+
}
+
.bi-text-left::before {
+
content: "\f5c7";
+
}
+
.bi-text-paragraph::before {
+
content: "\f5c8";
+
}
+
.bi-text-right::before {
+
content: "\f5c9";
+
}
+
.bi-textarea-resize::before {
+
content: "\f5ca";
+
}
+
.bi-textarea-t::before {
+
content: "\f5cb";
+
}
+
.bi-textarea::before {
+
content: "\f5cc";
+
}
+
.bi-thermometer-half::before {
+
content: "\f5cd";
+
}
+
.bi-thermometer-high::before {
+
content: "\f5ce";
+
}
+
.bi-thermometer-low::before {
+
content: "\f5cf";
+
}
+
.bi-thermometer-snow::before {
+
content: "\f5d0";
+
}
+
.bi-thermometer-sun::before {
+
content: "\f5d1";
+
}
+
.bi-thermometer::before {
+
content: "\f5d2";
+
}
+
.bi-three-dots-vertical::before {
+
content: "\f5d3";
+
}
+
.bi-three-dots::before {
+
content: "\f5d4";
+
}
+
.bi-toggle-off::before {
+
content: "\f5d5";
+
}
+
.bi-toggle-on::before {
+
content: "\f5d6";
+
}
+
.bi-toggle2-off::before {
+
content: "\f5d7";
+
}
+
.bi-toggle2-on::before {
+
content: "\f5d8";
+
}
+
.bi-toggles::before {
+
content: "\f5d9";
+
}
+
.bi-toggles2::before {
+
content: "\f5da";
+
}
+
.bi-tools::before {
+
content: "\f5db";
+
}
+
.bi-tornado::before {
+
content: "\f5dc";
+
}
+
.bi-trash-fill::before {
+
content: "\f5dd";
+
}
+
.bi-trash::before {
+
content: "\f5de";
+
}
+
.bi-trash2-fill::before {
+
content: "\f5df";
+
}
+
.bi-trash2::before {
+
content: "\f5e0";
+
}
+
.bi-tree-fill::before {
+
content: "\f5e1";
+
}
+
.bi-tree::before {
+
content: "\f5e2";
+
}
+
.bi-triangle-fill::before {
+
content: "\f5e3";
+
}
+
.bi-triangle-half::before {
+
content: "\f5e4";
+
}
+
.bi-triangle::before {
+
content: "\f5e5";
+
}
+
.bi-trophy-fill::before {
+
content: "\f5e6";
+
}
+
.bi-trophy::before {
+
content: "\f5e7";
+
}
+
.bi-tropical-storm::before {
+
content: "\f5e8";
+
}
+
.bi-truck-flatbed::before {
+
content: "\f5e9";
+
}
+
.bi-truck::before {
+
content: "\f5ea";
+
}
+
.bi-tsunami::before {
+
content: "\f5eb";
+
}
+
.bi-tv-fill::before {
+
content: "\f5ec";
+
}
+
.bi-tv::before {
+
content: "\f5ed";
+
}
+
.bi-twitch::before {
+
content: "\f5ee";
+
}
+
.bi-twitter::before {
+
content: "\f5ef";
+
}
+
.bi-type-bold::before {
+
content: "\f5f0";
+
}
+
.bi-type-h1::before {
+
content: "\f5f1";
+
}
+
.bi-type-h2::before {
+
content: "\f5f2";
+
}
+
.bi-type-h3::before {
+
content: "\f5f3";
+
}
+
.bi-type-italic::before {
+
content: "\f5f4";
+
}
+
.bi-type-strikethrough::before {
+
content: "\f5f5";
+
}
+
.bi-type-underline::before {
+
content: "\f5f6";
+
}
+
.bi-type::before {
+
content: "\f5f7";
+
}
+
.bi-ui-checks-grid::before {
+
content: "\f5f8";
+
}
+
.bi-ui-checks::before {
+
content: "\f5f9";
+
}
+
.bi-ui-radios-grid::before {
+
content: "\f5fa";
+
}
+
.bi-ui-radios::before {
+
content: "\f5fb";
+
}
+
.bi-umbrella-fill::before {
+
content: "\f5fc";
+
}
+
.bi-umbrella::before {
+
content: "\f5fd";
+
}
+
.bi-union::before {
+
content: "\f5fe";
+
}
+
.bi-unlock-fill::before {
+
content: "\f5ff";
+
}
+
.bi-unlock::before {
+
content: "\f600";
+
}
+
.bi-upc-scan::before {
+
content: "\f601";
+
}
+
.bi-upc::before {
+
content: "\f602";
+
}
+
.bi-upload::before {
+
content: "\f603";
+
}
+
.bi-vector-pen::before {
+
content: "\f604";
+
}
+
.bi-view-list::before {
+
content: "\f605";
+
}
+
.bi-view-stacked::before {
+
content: "\f606";
+
}
+
.bi-vinyl-fill::before {
+
content: "\f607";
+
}
+
.bi-vinyl::before {
+
content: "\f608";
+
}
+
.bi-voicemail::before {
+
content: "\f609";
+
}
+
.bi-volume-down-fill::before {
+
content: "\f60a";
+
}
+
.bi-volume-down::before {
+
content: "\f60b";
+
}
+
.bi-volume-mute-fill::before {
+
content: "\f60c";
+
}
+
.bi-volume-mute::before {
+
content: "\f60d";
+
}
+
.bi-volume-off-fill::before {
+
content: "\f60e";
+
}
+
.bi-volume-off::before {
+
content: "\f60f";
+
}
+
.bi-volume-up-fill::before {
+
content: "\f610";
+
}
+
.bi-volume-up::before {
+
content: "\f611";
+
}
+
.bi-vr::before {
+
content: "\f612";
+
}
+
.bi-wallet-fill::before {
+
content: "\f613";
+
}
+
.bi-wallet::before {
+
content: "\f614";
+
}
+
.bi-wallet2::before {
+
content: "\f615";
+
}
+
.bi-watch::before {
+
content: "\f616";
+
}
+
.bi-water::before {
+
content: "\f617";
+
}
+
.bi-whatsapp::before {
+
content: "\f618";
+
}
+
.bi-wifi-1::before {
+
content: "\f619";
+
}
+
.bi-wifi-2::before {
+
content: "\f61a";
+
}
+
.bi-wifi-off::before {
+
content: "\f61b";
+
}
+
.bi-wifi::before {
+
content: "\f61c";
+
}
+
.bi-wind::before {
+
content: "\f61d";
+
}
+
.bi-window-dock::before {
+
content: "\f61e";
+
}
+
.bi-window-sidebar::before {
+
content: "\f61f";
+
}
+
.bi-window::before {
+
content: "\f620";
+
}
+
.bi-wrench::before {
+
content: "\f621";
+
}
+
.bi-x-circle-fill::before {
+
content: "\f622";
+
}
+
.bi-x-circle::before {
+
content: "\f623";
+
}
+
.bi-x-diamond-fill::before {
+
content: "\f624";
+
}
+
.bi-x-diamond::before {
+
content: "\f625";
+
}
+
.bi-x-octagon-fill::before {
+
content: "\f626";
+
}
+
.bi-x-octagon::before {
+
content: "\f627";
+
}
+
.bi-x-square-fill::before {
+
content: "\f628";
+
}
+
.bi-x-square::before {
+
content: "\f629";
+
}
+
.bi-x::before {
+
content: "\f62a";
+
}
+
.bi-youtube::before {
+
content: "\f62b";
+
}
+
.bi-zoom-in::before {
+
content: "\f62c";
+
}
+
.bi-zoom-out::before {
+
content: "\f62d";
+
}
+
.bi-bank::before {
+
content: "\f62e";
+
}
+
.bi-bank2::before {
+
content: "\f62f";
+
}
+
.bi-bell-slash-fill::before {
+
content: "\f630";
+
}
+
.bi-bell-slash::before {
+
content: "\f631";
+
}
+
.bi-cash-coin::before {
+
content: "\f632";
+
}
+
.bi-check-lg::before {
+
content: "\f633";
+
}
+
.bi-coin::before {
+
content: "\f634";
+
}
+
.bi-currency-bitcoin::before {
+
content: "\f635";
+
}
+
.bi-currency-dollar::before {
+
content: "\f636";
+
}
+
.bi-currency-euro::before {
+
content: "\f637";
+
}
+
.bi-currency-exchange::before {
+
content: "\f638";
+
}
+
.bi-currency-pound::before {
+
content: "\f639";
+
}
+
.bi-currency-yen::before {
+
content: "\f63a";
+
}
+
.bi-dash-lg::before {
+
content: "\f63b";
+
}
+
.bi-exclamation-lg::before {
+
content: "\f63c";
+
}
+
.bi-file-earmark-pdf-fill::before {
+
content: "\f63d";
+
}
+
.bi-file-earmark-pdf::before {
+
content: "\f63e";
+
}
+
.bi-file-pdf-fill::before {
+
content: "\f63f";
+
}
+
.bi-file-pdf::before {
+
content: "\f640";
+
}
+
.bi-gender-ambiguous::before {
+
content: "\f641";
+
}
+
.bi-gender-female::before {
+
content: "\f642";
+
}
+
.bi-gender-male::before {
+
content: "\f643";
+
}
+
.bi-gender-trans::before {
+
content: "\f644";
+
}
+
.bi-headset-vr::before {
+
content: "\f645";
+
}
+
.bi-info-lg::before {
+
content: "\f646";
+
}
+
.bi-mastodon::before {
+
content: "\f647";
+
}
+
.bi-messenger::before {
+
content: "\f648";
+
}
+
.bi-piggy-bank-fill::before {
+
content: "\f649";
+
}
+
.bi-piggy-bank::before {
+
content: "\f64a";
+
}
+
.bi-pin-map-fill::before {
+
content: "\f64b";
+
}
+
.bi-pin-map::before {
+
content: "\f64c";
+
}
+
.bi-plus-lg::before {
+
content: "\f64d";
+
}
+
.bi-question-lg::before {
+
content: "\f64e";
+
}
+
.bi-recycle::before {
+
content: "\f64f";
+
}
+
.bi-reddit::before {
+
content: "\f650";
+
}
+
.bi-safe-fill::before {
+
content: "\f651";
+
}
+
.bi-safe2-fill::before {
+
content: "\f652";
+
}
+
.bi-safe2::before {
+
content: "\f653";
+
}
+
.bi-sd-card-fill::before {
+
content: "\f654";
+
}
+
.bi-sd-card::before {
+
content: "\f655";
+
}
+
.bi-skype::before {
+
content: "\f656";
+
}
+
.bi-slash-lg::before {
+
content: "\f657";
+
}
+
.bi-translate::before {
+
content: "\f658";
+
}
+
.bi-x-lg::before {
+
content: "\f659";
+
}
+
.bi-safe::before {
+
content: "\f65a";
+
}
+
.bi-apple::before {
+
content: "\f65b";
+
}
+
.bi-microsoft::before {
+
content: "\f65d";
+
}
+
.bi-windows::before {
+
content: "\f65e";
+
}
+
.bi-behance::before {
+
content: "\f65c";
+
}
+
.bi-dribbble::before {
+
content: "\f65f";
+
}
+
.bi-line::before {
+
content: "\f660";
+
}
+
.bi-medium::before {
+
content: "\f661";
+
}
+
.bi-paypal::before {
+
content: "\f662";
+
}
+
.bi-pinterest::before {
+
content: "\f663";
+
}
+
.bi-signal::before {
+
content: "\f664";
+
}
+
.bi-snapchat::before {
+
content: "\f665";
+
}
+
.bi-spotify::before {
+
content: "\f666";
+
}
+
.bi-stack-overflow::before {
+
content: "\f667";
+
}
+
.bi-strava::before {
+
content: "\f668";
+
}
+
.bi-wordpress::before {
+
content: "\f669";
+
}
+
.bi-vimeo::before {
+
content: "\f66a";
+
}
+
.bi-activity::before {
+
content: "\f66b";
+
}
+
.bi-easel2-fill::before {
+
content: "\f66c";
+
}
+
.bi-easel2::before {
+
content: "\f66d";
+
}
+
.bi-easel3-fill::before {
+
content: "\f66e";
+
}
+
.bi-easel3::before {
+
content: "\f66f";
+
}
+
.bi-fan::before {
+
content: "\f670";
+
}
+
.bi-fingerprint::before {
+
content: "\f671";
+
}
+
.bi-graph-down-arrow::before {
+
content: "\f672";
+
}
+
.bi-graph-up-arrow::before {
+
content: "\f673";
+
}
+
.bi-hypnotize::before {
+
content: "\f674";
+
}
+
.bi-magic::before {
+
content: "\f675";
+
}
+
.bi-person-rolodex::before {
+
content: "\f676";
+
}
+
.bi-person-video::before {
+
content: "\f677";
+
}
+
.bi-person-video2::before {
+
content: "\f678";
+
}
+
.bi-person-video3::before {
+
content: "\f679";
+
}
+
.bi-person-workspace::before {
+
content: "\f67a";
+
}
+
.bi-radioactive::before {
+
content: "\f67b";
+
}
+
.bi-webcam-fill::before {
+
content: "\f67c";
+
}
+
.bi-webcam::before {
+
content: "\f67d";
+
}
+
.bi-yin-yang::before {
+
content: "\f67e";
+
}
+
.bi-bandaid-fill::before {
+
content: "\f680";
+
}
+
.bi-bandaid::before {
+
content: "\f681";
+
}
+
.bi-bluetooth::before {
+
content: "\f682";
+
}
+
.bi-body-text::before {
+
content: "\f683";
+
}
+
.bi-boombox::before {
+
content: "\f684";
+
}
+
.bi-boxes::before {
+
content: "\f685";
+
}
+
.bi-dpad-fill::before {
+
content: "\f686";
+
}
+
.bi-dpad::before {
+
content: "\f687";
+
}
+
.bi-ear-fill::before {
+
content: "\f688";
+
}
+
.bi-ear::before {
+
content: "\f689";
+
}
+
.bi-envelope-check-fill::before {
+
content: "\f68b";
+
}
+
.bi-envelope-check::before {
+
content: "\f68c";
+
}
+
.bi-envelope-dash-fill::before {
+
content: "\f68e";
+
}
+
.bi-envelope-dash::before {
+
content: "\f68f";
+
}
+
.bi-envelope-exclamation-fill::before {
+
content: "\f691";
+
}
+
.bi-envelope-exclamation::before {
+
content: "\f692";
+
}
+
.bi-envelope-plus-fill::before {
+
content: "\f693";
+
}
+
.bi-envelope-plus::before {
+
content: "\f694";
+
}
+
.bi-envelope-slash-fill::before {
+
content: "\f696";
+
}
+
.bi-envelope-slash::before {
+
content: "\f697";
+
}
+
.bi-envelope-x-fill::before {
+
content: "\f699";
+
}
+
.bi-envelope-x::before {
+
content: "\f69a";
+
}
+
.bi-explicit-fill::before {
+
content: "\f69b";
+
}
+
.bi-explicit::before {
+
content: "\f69c";
+
}
+
.bi-git::before {
+
content: "\f69d";
+
}
+
.bi-infinity::before {
+
content: "\f69e";
+
}
+
.bi-list-columns-reverse::before {
+
content: "\f69f";
+
}
+
.bi-list-columns::before {
+
content: "\f6a0";
+
}
+
.bi-meta::before {
+
content: "\f6a1";
+
}
+
.bi-nintendo-switch::before {
+
content: "\f6a4";
+
}
+
.bi-pc-display-horizontal::before {
+
content: "\f6a5";
+
}
+
.bi-pc-display::before {
+
content: "\f6a6";
+
}
+
.bi-pc-horizontal::before {
+
content: "\f6a7";
+
}
+
.bi-pc::before {
+
content: "\f6a8";
+
}
+
.bi-playstation::before {
+
content: "\f6a9";
+
}
+
.bi-plus-slash-minus::before {
+
content: "\f6aa";
+
}
+
.bi-projector-fill::before {
+
content: "\f6ab";
+
}
+
.bi-projector::before {
+
content: "\f6ac";
+
}
+
.bi-qr-code-scan::before {
+
content: "\f6ad";
+
}
+
.bi-qr-code::before {
+
content: "\f6ae";
+
}
+
.bi-quora::before {
+
content: "\f6af";
+
}
+
.bi-quote::before {
+
content: "\f6b0";
+
}
+
.bi-robot::before {
+
content: "\f6b1";
+
}
+
.bi-send-check-fill::before {
+
content: "\f6b2";
+
}
+
.bi-send-check::before {
+
content: "\f6b3";
+
}
+
.bi-send-dash-fill::before {
+
content: "\f6b4";
+
}
+
.bi-send-dash::before {
+
content: "\f6b5";
+
}
+
.bi-send-exclamation-fill::before {
+
content: "\f6b7";
+
}
+
.bi-send-exclamation::before {
+
content: "\f6b8";
+
}
+
.bi-send-fill::before {
+
content: "\f6b9";
+
}
+
.bi-send-plus-fill::before {
+
content: "\f6ba";
+
}
+
.bi-send-plus::before {
+
content: "\f6bb";
+
}
+
.bi-send-slash-fill::before {
+
content: "\f6bc";
+
}
+
.bi-send-slash::before {
+
content: "\f6bd";
+
}
+
.bi-send-x-fill::before {
+
content: "\f6be";
+
}
+
.bi-send-x::before {
+
content: "\f6bf";
+
}
+
.bi-send::before {
+
content: "\f6c0";
+
}
+
.bi-steam::before {
+
content: "\f6c1";
+
}
+
.bi-terminal-dash::before {
+
content: "\f6c3";
+
}
+
.bi-terminal-plus::before {
+
content: "\f6c4";
+
}
+
.bi-terminal-split::before {
+
content: "\f6c5";
+
}
+
.bi-ticket-detailed-fill::before {
+
content: "\f6c6";
+
}
+
.bi-ticket-detailed::before {
+
content: "\f6c7";
+
}
+
.bi-ticket-fill::before {
+
content: "\f6c8";
+
}
+
.bi-ticket-perforated-fill::before {
+
content: "\f6c9";
+
}
+
.bi-ticket-perforated::before {
+
content: "\f6ca";
+
}
+
.bi-ticket::before {
+
content: "\f6cb";
+
}
+
.bi-tiktok::before {
+
content: "\f6cc";
+
}
+
.bi-window-dash::before {
+
content: "\f6cd";
+
}
+
.bi-window-desktop::before {
+
content: "\f6ce";
+
}
+
.bi-window-fullscreen::before {
+
content: "\f6cf";
+
}
+
.bi-window-plus::before {
+
content: "\f6d0";
+
}
+
.bi-window-split::before {
+
content: "\f6d1";
+
}
+
.bi-window-stack::before {
+
content: "\f6d2";
+
}
+
.bi-window-x::before {
+
content: "\f6d3";
+
}
+
.bi-xbox::before {
+
content: "\f6d4";
+
}
+
.bi-ethernet::before {
+
content: "\f6d5";
+
}
+
.bi-hdmi-fill::before {
+
content: "\f6d6";
+
}
+
.bi-hdmi::before {
+
content: "\f6d7";
+
}
+
.bi-usb-c-fill::before {
+
content: "\f6d8";
+
}
+
.bi-usb-c::before {
+
content: "\f6d9";
+
}
+
.bi-usb-fill::before {
+
content: "\f6da";
+
}
+
.bi-usb-plug-fill::before {
+
content: "\f6db";
+
}
+
.bi-usb-plug::before {
+
content: "\f6dc";
+
}
+
.bi-usb-symbol::before {
+
content: "\f6dd";
+
}
+
.bi-usb::before {
+
content: "\f6de";
+
}
+
.bi-boombox-fill::before {
+
content: "\f6df";
+
}
+
.bi-displayport::before {
+
content: "\f6e1";
+
}
+
.bi-gpu-card::before {
+
content: "\f6e2";
+
}
+
.bi-memory::before {
+
content: "\f6e3";
+
}
+
.bi-modem-fill::before {
+
content: "\f6e4";
+
}
+
.bi-modem::before {
+
content: "\f6e5";
+
}
+
.bi-motherboard-fill::before {
+
content: "\f6e6";
+
}
+
.bi-motherboard::before {
+
content: "\f6e7";
+
}
+
.bi-optical-audio-fill::before {
+
content: "\f6e8";
+
}
+
.bi-optical-audio::before {
+
content: "\f6e9";
+
}
+
.bi-pci-card::before {
+
content: "\f6ea";
+
}
+
.bi-router-fill::before {
+
content: "\f6eb";
+
}
+
.bi-router::before {
+
content: "\f6ec";
+
}
+
.bi-thunderbolt-fill::before {
+
content: "\f6ef";
+
}
+
.bi-thunderbolt::before {
+
content: "\f6f0";
+
}
+
.bi-usb-drive-fill::before {
+
content: "\f6f1";
+
}
+
.bi-usb-drive::before {
+
content: "\f6f2";
+
}
+
.bi-usb-micro-fill::before {
+
content: "\f6f3";
+
}
+
.bi-usb-micro::before {
+
content: "\f6f4";
+
}
+
.bi-usb-mini-fill::before {
+
content: "\f6f5";
+
}
+
.bi-usb-mini::before {
+
content: "\f6f6";
+
}
+
.bi-cloud-haze2::before {
+
content: "\f6f7";
+
}
+
.bi-device-hdd-fill::before {
+
content: "\f6f8";
+
}
+
.bi-device-hdd::before {
+
content: "\f6f9";
+
}
+
.bi-device-ssd-fill::before {
+
content: "\f6fa";
+
}
+
.bi-device-ssd::before {
+
content: "\f6fb";
+
}
+
.bi-displayport-fill::before {
+
content: "\f6fc";
+
}
+
.bi-mortarboard-fill::before {
+
content: "\f6fd";
+
}
+
.bi-mortarboard::before {
+
content: "\f6fe";
+
}
+
.bi-terminal-x::before {
+
content: "\f6ff";
+
}
+
.bi-arrow-through-heart-fill::before {
+
content: "\f700";
+
}
+
.bi-arrow-through-heart::before {
+
content: "\f701";
+
}
+
.bi-badge-sd-fill::before {
+
content: "\f702";
+
}
+
.bi-badge-sd::before {
+
content: "\f703";
+
}
+
.bi-bag-heart-fill::before {
+
content: "\f704";
+
}
+
.bi-bag-heart::before {
+
content: "\f705";
+
}
+
.bi-balloon-fill::before {
+
content: "\f706";
+
}
+
.bi-balloon-heart-fill::before {
+
content: "\f707";
+
}
+
.bi-balloon-heart::before {
+
content: "\f708";
+
}
+
.bi-balloon::before {
+
content: "\f709";
+
}
+
.bi-box2-fill::before {
+
content: "\f70a";
+
}
+
.bi-box2-heart-fill::before {
+
content: "\f70b";
+
}
+
.bi-box2-heart::before {
+
content: "\f70c";
+
}
+
.bi-box2::before {
+
content: "\f70d";
+
}
+
.bi-braces-asterisk::before {
+
content: "\f70e";
+
}
+
.bi-calendar-heart-fill::before {
+
content: "\f70f";
+
}
+
.bi-calendar-heart::before {
+
content: "\f710";
+
}
+
.bi-calendar2-heart-fill::before {
+
content: "\f711";
+
}
+
.bi-calendar2-heart::before {
+
content: "\f712";
+
}
+
.bi-chat-heart-fill::before {
+
content: "\f713";
+
}
+
.bi-chat-heart::before {
+
content: "\f714";
+
}
+
.bi-chat-left-heart-fill::before {
+
content: "\f715";
+
}
+
.bi-chat-left-heart::before {
+
content: "\f716";
+
}
+
.bi-chat-right-heart-fill::before {
+
content: "\f717";
+
}
+
.bi-chat-right-heart::before {
+
content: "\f718";
+
}
+
.bi-chat-square-heart-fill::before {
+
content: "\f719";
+
}
+
.bi-chat-square-heart::before {
+
content: "\f71a";
+
}
+
.bi-clipboard-check-fill::before {
+
content: "\f71b";
+
}
+
.bi-clipboard-data-fill::before {
+
content: "\f71c";
+
}
+
.bi-clipboard-fill::before {
+
content: "\f71d";
+
}
+
.bi-clipboard-heart-fill::before {
+
content: "\f71e";
+
}
+
.bi-clipboard-heart::before {
+
content: "\f71f";
+
}
+
.bi-clipboard-minus-fill::before {
+
content: "\f720";
+
}
+
.bi-clipboard-plus-fill::before {
+
content: "\f721";
+
}
+
.bi-clipboard-pulse::before {
+
content: "\f722";
+
}
+
.bi-clipboard-x-fill::before {
+
content: "\f723";
+
}
+
.bi-clipboard2-check-fill::before {
+
content: "\f724";
+
}
+
.bi-clipboard2-check::before {
+
content: "\f725";
+
}
+
.bi-clipboard2-data-fill::before {
+
content: "\f726";
+
}
+
.bi-clipboard2-data::before {
+
content: "\f727";
+
}
+
.bi-clipboard2-fill::before {
+
content: "\f728";
+
}
+
.bi-clipboard2-heart-fill::before {
+
content: "\f729";
+
}
+
.bi-clipboard2-heart::before {
+
content: "\f72a";
+
}
+
.bi-clipboard2-minus-fill::before {
+
content: "\f72b";
+
}
+
.bi-clipboard2-minus::before {
+
content: "\f72c";
+
}
+
.bi-clipboard2-plus-fill::before {
+
content: "\f72d";
+
}
+
.bi-clipboard2-plus::before {
+
content: "\f72e";
+
}
+
.bi-clipboard2-pulse-fill::before {
+
content: "\f72f";
+
}
+
.bi-clipboard2-pulse::before {
+
content: "\f730";
+
}
+
.bi-clipboard2-x-fill::before {
+
content: "\f731";
+
}
+
.bi-clipboard2-x::before {
+
content: "\f732";
+
}
+
.bi-clipboard2::before {
+
content: "\f733";
+
}
+
.bi-emoji-kiss-fill::before {
+
content: "\f734";
+
}
+
.bi-emoji-kiss::before {
+
content: "\f735";
+
}
+
.bi-envelope-heart-fill::before {
+
content: "\f736";
+
}
+
.bi-envelope-heart::before {
+
content: "\f737";
+
}
+
.bi-envelope-open-heart-fill::before {
+
content: "\f738";
+
}
+
.bi-envelope-open-heart::before {
+
content: "\f739";
+
}
+
.bi-envelope-paper-fill::before {
+
content: "\f73a";
+
}
+
.bi-envelope-paper-heart-fill::before {
+
content: "\f73b";
+
}
+
.bi-envelope-paper-heart::before {
+
content: "\f73c";
+
}
+
.bi-envelope-paper::before {
+
content: "\f73d";
+
}
+
.bi-filetype-aac::before {
+
content: "\f73e";
+
}
+
.bi-filetype-ai::before {
+
content: "\f73f";
+
}
+
.bi-filetype-bmp::before {
+
content: "\f740";
+
}
+
.bi-filetype-cs::before {
+
content: "\f741";
+
}
+
.bi-filetype-css::before {
+
content: "\f742";
+
}
+
.bi-filetype-csv::before {
+
content: "\f743";
+
}
+
.bi-filetype-doc::before {
+
content: "\f744";
+
}
+
.bi-filetype-docx::before {
+
content: "\f745";
+
}
+
.bi-filetype-exe::before {
+
content: "\f746";
+
}
+
.bi-filetype-gif::before {
+
content: "\f747";
+
}
+
.bi-filetype-heic::before {
+
content: "\f748";
+
}
+
.bi-filetype-html::before {
+
content: "\f749";
+
}
+
.bi-filetype-java::before {
+
content: "\f74a";
+
}
+
.bi-filetype-jpg::before {
+
content: "\f74b";
+
}
+
.bi-filetype-js::before {
+
content: "\f74c";
+
}
+
.bi-filetype-jsx::before {
+
content: "\f74d";
+
}
+
.bi-filetype-key::before {
+
content: "\f74e";
+
}
+
.bi-filetype-m4p::before {
+
content: "\f74f";
+
}
+
.bi-filetype-md::before {
+
content: "\f750";
+
}
+
.bi-filetype-mdx::before {
+
content: "\f751";
+
}
+
.bi-filetype-mov::before {
+
content: "\f752";
+
}
+
.bi-filetype-mp3::before {
+
content: "\f753";
+
}
+
.bi-filetype-mp4::before {
+
content: "\f754";
+
}
+
.bi-filetype-otf::before {
+
content: "\f755";
+
}
+
.bi-filetype-pdf::before {
+
content: "\f756";
+
}
+
.bi-filetype-php::before {
+
content: "\f757";
+
}
+
.bi-filetype-png::before {
+
content: "\f758";
+
}
+
.bi-filetype-ppt::before {
+
content: "\f75a";
+
}
+
.bi-filetype-psd::before {
+
content: "\f75b";
+
}
+
.bi-filetype-py::before {
+
content: "\f75c";
+
}
+
.bi-filetype-raw::before {
+
content: "\f75d";
+
}
+
.bi-filetype-rb::before {
+
content: "\f75e";
+
}
+
.bi-filetype-sass::before {
+
content: "\f75f";
+
}
+
.bi-filetype-scss::before {
+
content: "\f760";
+
}
+
.bi-filetype-sh::before {
+
content: "\f761";
+
}
+
.bi-filetype-svg::before {
+
content: "\f762";
+
}
+
.bi-filetype-tiff::before {
+
content: "\f763";
+
}
+
.bi-filetype-tsx::before {
+
content: "\f764";
+
}
+
.bi-filetype-ttf::before {
+
content: "\f765";
+
}
+
.bi-filetype-txt::before {
+
content: "\f766";
+
}
+
.bi-filetype-wav::before {
+
content: "\f767";
+
}
+
.bi-filetype-woff::before {
+
content: "\f768";
+
}
+
.bi-filetype-xls::before {
+
content: "\f76a";
+
}
+
.bi-filetype-xml::before {
+
content: "\f76b";
+
}
+
.bi-filetype-yml::before {
+
content: "\f76c";
+
}
+
.bi-heart-arrow::before {
+
content: "\f76d";
+
}
+
.bi-heart-pulse-fill::before {
+
content: "\f76e";
+
}
+
.bi-heart-pulse::before {
+
content: "\f76f";
+
}
+
.bi-heartbreak-fill::before {
+
content: "\f770";
+
}
+
.bi-heartbreak::before {
+
content: "\f771";
+
}
+
.bi-hearts::before {
+
content: "\f772";
+
}
+
.bi-hospital-fill::before {
+
content: "\f773";
+
}
+
.bi-hospital::before {
+
content: "\f774";
+
}
+
.bi-house-heart-fill::before {
+
content: "\f775";
+
}
+
.bi-house-heart::before {
+
content: "\f776";
+
}
+
.bi-incognito::before {
+
content: "\f777";
+
}
+
.bi-magnet-fill::before {
+
content: "\f778";
+
}
+
.bi-magnet::before {
+
content: "\f779";
+
}
+
.bi-person-heart::before {
+
content: "\f77a";
+
}
+
.bi-person-hearts::before {
+
content: "\f77b";
+
}
+
.bi-phone-flip::before {
+
content: "\f77c";
+
}
+
.bi-plugin::before {
+
content: "\f77d";
+
}
+
.bi-postage-fill::before {
+
content: "\f77e";
+
}
+
.bi-postage-heart-fill::before {
+
content: "\f77f";
+
}
+
.bi-postage-heart::before {
+
content: "\f780";
+
}
+
.bi-postage::before {
+
content: "\f781";
+
}
+
.bi-postcard-fill::before {
+
content: "\f782";
+
}
+
.bi-postcard-heart-fill::before {
+
content: "\f783";
+
}
+
.bi-postcard-heart::before {
+
content: "\f784";
+
}
+
.bi-postcard::before {
+
content: "\f785";
+
}
+
.bi-search-heart-fill::before {
+
content: "\f786";
+
}
+
.bi-search-heart::before {
+
content: "\f787";
+
}
+
.bi-sliders2-vertical::before {
+
content: "\f788";
+
}
+
.bi-sliders2::before {
+
content: "\f789";
+
}
+
.bi-trash3-fill::before {
+
content: "\f78a";
+
}
+
.bi-trash3::before {
+
content: "\f78b";
+
}
+
.bi-valentine::before {
+
content: "\f78c";
+
}
+
.bi-valentine2::before {
+
content: "\f78d";
+
}
+
.bi-wrench-adjustable-circle-fill::before {
+
content: "\f78e";
+
}
+
.bi-wrench-adjustable-circle::before {
+
content: "\f78f";
+
}
+
.bi-wrench-adjustable::before {
+
content: "\f790";
+
}
+
.bi-filetype-json::before {
+
content: "\f791";
+
}
+
.bi-filetype-pptx::before {
+
content: "\f792";
+
}
+
.bi-filetype-xlsx::before {
+
content: "\f793";
+
}
+
.bi-1-circle-fill::before {
+
content: "\f796";
+
}
+
.bi-1-circle::before {
+
content: "\f797";
+
}
+
.bi-1-square-fill::before {
+
content: "\f798";
+
}
+
.bi-1-square::before {
+
content: "\f799";
+
}
+
.bi-2-circle-fill::before {
+
content: "\f79c";
+
}
+
.bi-2-circle::before {
+
content: "\f79d";
+
}
+
.bi-2-square-fill::before {
+
content: "\f79e";
+
}
+
.bi-2-square::before {
+
content: "\f79f";
+
}
+
.bi-3-circle-fill::before {
+
content: "\f7a2";
+
}
+
.bi-3-circle::before {
+
content: "\f7a3";
+
}
+
.bi-3-square-fill::before {
+
content: "\f7a4";
+
}
+
.bi-3-square::before {
+
content: "\f7a5";
+
}
+
.bi-4-circle-fill::before {
+
content: "\f7a8";
+
}
+
.bi-4-circle::before {
+
content: "\f7a9";
+
}
+
.bi-4-square-fill::before {
+
content: "\f7aa";
+
}
+
.bi-4-square::before {
+
content: "\f7ab";
+
}
+
.bi-5-circle-fill::before {
+
content: "\f7ae";
+
}
+
.bi-5-circle::before {
+
content: "\f7af";
+
}
+
.bi-5-square-fill::before {
+
content: "\f7b0";
+
}
+
.bi-5-square::before {
+
content: "\f7b1";
+
}
+
.bi-6-circle-fill::before {
+
content: "\f7b4";
+
}
+
.bi-6-circle::before {
+
content: "\f7b5";
+
}
+
.bi-6-square-fill::before {
+
content: "\f7b6";
+
}
+
.bi-6-square::before {
+
content: "\f7b7";
+
}
+
.bi-7-circle-fill::before {
+
content: "\f7ba";
+
}
+
.bi-7-circle::before {
+
content: "\f7bb";
+
}
+
.bi-7-square-fill::before {
+
content: "\f7bc";
+
}
+
.bi-7-square::before {
+
content: "\f7bd";
+
}
+
.bi-8-circle-fill::before {
+
content: "\f7c0";
+
}
+
.bi-8-circle::before {
+
content: "\f7c1";
+
}
+
.bi-8-square-fill::before {
+
content: "\f7c2";
+
}
+
.bi-8-square::before {
+
content: "\f7c3";
+
}
+
.bi-9-circle-fill::before {
+
content: "\f7c6";
+
}
+
.bi-9-circle::before {
+
content: "\f7c7";
+
}
+
.bi-9-square-fill::before {
+
content: "\f7c8";
+
}
+
.bi-9-square::before {
+
content: "\f7c9";
+
}
+
.bi-airplane-engines-fill::before {
+
content: "\f7ca";
+
}
+
.bi-airplane-engines::before {
+
content: "\f7cb";
+
}
+
.bi-airplane-fill::before {
+
content: "\f7cc";
+
}
+
.bi-airplane::before {
+
content: "\f7cd";
+
}
+
.bi-alexa::before {
+
content: "\f7ce";
+
}
+
.bi-alipay::before {
+
content: "\f7cf";
+
}
+
.bi-android::before {
+
content: "\f7d0";
+
}
+
.bi-android2::before {
+
content: "\f7d1";
+
}
+
.bi-box-fill::before {
+
content: "\f7d2";
+
}
+
.bi-box-seam-fill::before {
+
content: "\f7d3";
+
}
+
.bi-browser-chrome::before {
+
content: "\f7d4";
+
}
+
.bi-browser-edge::before {
+
content: "\f7d5";
+
}
+
.bi-browser-firefox::before {
+
content: "\f7d6";
+
}
+
.bi-browser-safari::before {
+
content: "\f7d7";
+
}
+
.bi-c-circle-fill::before {
+
content: "\f7da";
+
}
+
.bi-c-circle::before {
+
content: "\f7db";
+
}
+
.bi-c-square-fill::before {
+
content: "\f7dc";
+
}
+
.bi-c-square::before {
+
content: "\f7dd";
+
}
+
.bi-capsule-pill::before {
+
content: "\f7de";
+
}
+
.bi-capsule::before {
+
content: "\f7df";
+
}
+
.bi-car-front-fill::before {
+
content: "\f7e0";
+
}
+
.bi-car-front::before {
+
content: "\f7e1";
+
}
+
.bi-cassette-fill::before {
+
content: "\f7e2";
+
}
+
.bi-cassette::before {
+
content: "\f7e3";
+
}
+
.bi-cc-circle-fill::before {
+
content: "\f7e6";
+
}
+
.bi-cc-circle::before {
+
content: "\f7e7";
+
}
+
.bi-cc-square-fill::before {
+
content: "\f7e8";
+
}
+
.bi-cc-square::before {
+
content: "\f7e9";
+
}
+
.bi-cup-hot-fill::before {
+
content: "\f7ea";
+
}
+
.bi-cup-hot::before {
+
content: "\f7eb";
+
}
+
.bi-currency-rupee::before {
+
content: "\f7ec";
+
}
+
.bi-dropbox::before {
+
content: "\f7ed";
+
}
+
.bi-escape::before {
+
content: "\f7ee";
+
}
+
.bi-fast-forward-btn-fill::before {
+
content: "\f7ef";
+
}
+
.bi-fast-forward-btn::before {
+
content: "\f7f0";
+
}
+
.bi-fast-forward-circle-fill::before {
+
content: "\f7f1";
+
}
+
.bi-fast-forward-circle::before {
+
content: "\f7f2";
+
}
+
.bi-fast-forward-fill::before {
+
content: "\f7f3";
+
}
+
.bi-fast-forward::before {
+
content: "\f7f4";
+
}
+
.bi-filetype-sql::before {
+
content: "\f7f5";
+
}
+
.bi-fire::before {
+
content: "\f7f6";
+
}
+
.bi-google-play::before {
+
content: "\f7f7";
+
}
+
.bi-h-circle-fill::before {
+
content: "\f7fa";
+
}
+
.bi-h-circle::before {
+
content: "\f7fb";
+
}
+
.bi-h-square-fill::before {
+
content: "\f7fc";
+
}
+
.bi-h-square::before {
+
content: "\f7fd";
+
}
+
.bi-indent::before {
+
content: "\f7fe";
+
}
+
.bi-lungs-fill::before {
+
content: "\f7ff";
+
}
+
.bi-lungs::before {
+
content: "\f800";
+
}
+
.bi-microsoft-teams::before {
+
content: "\f801";
+
}
+
.bi-p-circle-fill::before {
+
content: "\f804";
+
}
+
.bi-p-circle::before {
+
content: "\f805";
+
}
+
.bi-p-square-fill::before {
+
content: "\f806";
+
}
+
.bi-p-square::before {
+
content: "\f807";
+
}
+
.bi-pass-fill::before {
+
content: "\f808";
+
}
+
.bi-pass::before {
+
content: "\f809";
+
}
+
.bi-prescription::before {
+
content: "\f80a";
+
}
+
.bi-prescription2::before {
+
content: "\f80b";
+
}
+
.bi-r-circle-fill::before {
+
content: "\f80e";
+
}
+
.bi-r-circle::before {
+
content: "\f80f";
+
}
+
.bi-r-square-fill::before {
+
content: "\f810";
+
}
+
.bi-r-square::before {
+
content: "\f811";
+
}
+
.bi-repeat-1::before {
+
content: "\f812";
+
}
+
.bi-repeat::before {
+
content: "\f813";
+
}
+
.bi-rewind-btn-fill::before {
+
content: "\f814";
+
}
+
.bi-rewind-btn::before {
+
content: "\f815";
+
}
+
.bi-rewind-circle-fill::before {
+
content: "\f816";
+
}
+
.bi-rewind-circle::before {
+
content: "\f817";
+
}
+
.bi-rewind-fill::before {
+
content: "\f818";
+
}
+
.bi-rewind::before {
+
content: "\f819";
+
}
+
.bi-train-freight-front-fill::before {
+
content: "\f81a";
+
}
+
.bi-train-freight-front::before {
+
content: "\f81b";
+
}
+
.bi-train-front-fill::before {
+
content: "\f81c";
+
}
+
.bi-train-front::before {
+
content: "\f81d";
+
}
+
.bi-train-lightrail-front-fill::before {
+
content: "\f81e";
+
}
+
.bi-train-lightrail-front::before {
+
content: "\f81f";
+
}
+
.bi-truck-front-fill::before {
+
content: "\f820";
+
}
+
.bi-truck-front::before {
+
content: "\f821";
+
}
+
.bi-ubuntu::before {
+
content: "\f822";
+
}
+
.bi-unindent::before {
+
content: "\f823";
+
}
+
.bi-unity::before {
+
content: "\f824";
+
}
+
.bi-universal-access-circle::before {
+
content: "\f825";
+
}
+
.bi-universal-access::before {
+
content: "\f826";
+
}
+
.bi-virus::before {
+
content: "\f827";
+
}
+
.bi-virus2::before {
+
content: "\f828";
+
}
+
.bi-wechat::before {
+
content: "\f829";
+
}
+
.bi-yelp::before {
+
content: "\f82a";
+
}
+
.bi-sign-stop-fill::before {
+
content: "\f82b";
+
}
+
.bi-sign-stop-lights-fill::before {
+
content: "\f82c";
+
}
+
.bi-sign-stop-lights::before {
+
content: "\f82d";
+
}
+
.bi-sign-stop::before {
+
content: "\f82e";
+
}
+
.bi-sign-turn-left-fill::before {
+
content: "\f82f";
+
}
+
.bi-sign-turn-left::before {
+
content: "\f830";
+
}
+
.bi-sign-turn-right-fill::before {
+
content: "\f831";
+
}
+
.bi-sign-turn-right::before {
+
content: "\f832";
+
}
+
.bi-sign-turn-slight-left-fill::before {
+
content: "\f833";
+
}
+
.bi-sign-turn-slight-left::before {
+
content: "\f834";
+
}
+
.bi-sign-turn-slight-right-fill::before {
+
content: "\f835";
+
}
+
.bi-sign-turn-slight-right::before {
+
content: "\f836";
+
}
+
.bi-sign-yield-fill::before {
+
content: "\f837";
+
}
+
.bi-sign-yield::before {
+
content: "\f838";
+
}
+
.bi-ev-station-fill::before {
+
content: "\f839";
+
}
+
.bi-ev-station::before {
+
content: "\f83a";
+
}
+
.bi-fuel-pump-diesel-fill::before {
+
content: "\f83b";
+
}
+
.bi-fuel-pump-diesel::before {
+
content: "\f83c";
+
}
+
.bi-fuel-pump-fill::before {
+
content: "\f83d";
+
}
+
.bi-fuel-pump::before {
+
content: "\f83e";
+
}
+
.bi-0-circle-fill::before {
+
content: "\f83f";
+
}
+
.bi-0-circle::before {
+
content: "\f840";
+
}
+
.bi-0-square-fill::before {
+
content: "\f841";
+
}
+
.bi-0-square::before {
+
content: "\f842";
+
}
+
.bi-rocket-fill::before {
+
content: "\f843";
+
}
+
.bi-rocket-takeoff-fill::before {
+
content: "\f844";
+
}
+
.bi-rocket-takeoff::before {
+
content: "\f845";
+
}
+
.bi-rocket::before {
+
content: "\f846";
+
}
+
.bi-stripe::before {
+
content: "\f847";
+
}
+
.bi-subscript::before {
+
content: "\f848";
+
}
+
.bi-superscript::before {
+
content: "\f849";
+
}
+
.bi-trello::before {
+
content: "\f84a";
+
}
+
.bi-envelope-at-fill::before {
+
content: "\f84b";
+
}
+
.bi-envelope-at::before {
+
content: "\f84c";
+
}
+
.bi-regex::before {
+
content: "\f84d";
+
}
+
.bi-text-wrap::before {
+
content: "\f84e";
+
}
+
.bi-sign-dead-end-fill::before {
+
content: "\f84f";
+
}
+
.bi-sign-dead-end::before {
+
content: "\f850";
+
}
+
.bi-sign-do-not-enter-fill::before {
+
content: "\f851";
+
}
+
.bi-sign-do-not-enter::before {
+
content: "\f852";
+
}
+
.bi-sign-intersection-fill::before {
+
content: "\f853";
+
}
+
.bi-sign-intersection-side-fill::before {
+
content: "\f854";
+
}
+
.bi-sign-intersection-side::before {
+
content: "\f855";
+
}
+
.bi-sign-intersection-t-fill::before {
+
content: "\f856";
+
}
+
.bi-sign-intersection-t::before {
+
content: "\f857";
+
}
+
.bi-sign-intersection-y-fill::before {
+
content: "\f858";
+
}
+
.bi-sign-intersection-y::before {
+
content: "\f859";
+
}
+
.bi-sign-intersection::before {
+
content: "\f85a";
+
}
+
.bi-sign-merge-left-fill::before {
+
content: "\f85b";
+
}
+
.bi-sign-merge-left::before {
+
content: "\f85c";
+
}
+
.bi-sign-merge-right-fill::before {
+
content: "\f85d";
+
}
+
.bi-sign-merge-right::before {
+
content: "\f85e";
+
}
+
.bi-sign-no-left-turn-fill::before {
+
content: "\f85f";
+
}
+
.bi-sign-no-left-turn::before {
+
content: "\f860";
+
}
+
.bi-sign-no-parking-fill::before {
+
content: "\f861";
+
}
+
.bi-sign-no-parking::before {
+
content: "\f862";
+
}
+
.bi-sign-no-right-turn-fill::before {
+
content: "\f863";
+
}
+
.bi-sign-no-right-turn::before {
+
content: "\f864";
+
}
+
.bi-sign-railroad-fill::before {
+
content: "\f865";
+
}
+
.bi-sign-railroad::before {
+
content: "\f866";
+
}
+
.bi-building-add::before {
+
content: "\f867";
+
}
+
.bi-building-check::before {
+
content: "\f868";
+
}
+
.bi-building-dash::before {
+
content: "\f869";
+
}
+
.bi-building-down::before {
+
content: "\f86a";
+
}
+
.bi-building-exclamation::before {
+
content: "\f86b";
+
}
+
.bi-building-fill-add::before {
+
content: "\f86c";
+
}
+
.bi-building-fill-check::before {
+
content: "\f86d";
+
}
+
.bi-building-fill-dash::before {
+
content: "\f86e";
+
}
+
.bi-building-fill-down::before {
+
content: "\f86f";
+
}
+
.bi-building-fill-exclamation::before {
+
content: "\f870";
+
}
+
.bi-building-fill-gear::before {
+
content: "\f871";
+
}
+
.bi-building-fill-lock::before {
+
content: "\f872";
+
}
+
.bi-building-fill-slash::before {
+
content: "\f873";
+
}
+
.bi-building-fill-up::before {
+
content: "\f874";
+
}
+
.bi-building-fill-x::before {
+
content: "\f875";
+
}
+
.bi-building-fill::before {
+
content: "\f876";
+
}
+
.bi-building-gear::before {
+
content: "\f877";
+
}
+
.bi-building-lock::before {
+
content: "\f878";
+
}
+
.bi-building-slash::before {
+
content: "\f879";
+
}
+
.bi-building-up::before {
+
content: "\f87a";
+
}
+
.bi-building-x::before {
+
content: "\f87b";
+
}
+
.bi-buildings-fill::before {
+
content: "\f87c";
+
}
+
.bi-buildings::before {
+
content: "\f87d";
+
}
+
.bi-bus-front-fill::before {
+
content: "\f87e";
+
}
+
.bi-bus-front::before {
+
content: "\f87f";
+
}
+
.bi-ev-front-fill::before {
+
content: "\f880";
+
}
+
.bi-ev-front::before {
+
content: "\f881";
+
}
+
.bi-globe-americas::before {
+
content: "\f882";
+
}
+
.bi-globe-asia-australia::before {
+
content: "\f883";
+
}
+
.bi-globe-central-south-asia::before {
+
content: "\f884";
+
}
+
.bi-globe-europe-africa::before {
+
content: "\f885";
+
}
+
.bi-house-add-fill::before {
+
content: "\f886";
+
}
+
.bi-house-add::before {
+
content: "\f887";
+
}
+
.bi-house-check-fill::before {
+
content: "\f888";
+
}
+
.bi-house-check::before {
+
content: "\f889";
+
}
+
.bi-house-dash-fill::before {
+
content: "\f88a";
+
}
+
.bi-house-dash::before {
+
content: "\f88b";
+
}
+
.bi-house-down-fill::before {
+
content: "\f88c";
+
}
+
.bi-house-down::before {
+
content: "\f88d";
+
}
+
.bi-house-exclamation-fill::before {
+
content: "\f88e";
+
}
+
.bi-house-exclamation::before {
+
content: "\f88f";
+
}
+
.bi-house-gear-fill::before {
+
content: "\f890";
+
}
+
.bi-house-gear::before {
+
content: "\f891";
+
}
+
.bi-house-lock-fill::before {
+
content: "\f892";
+
}
+
.bi-house-lock::before {
+
content: "\f893";
+
}
+
.bi-house-slash-fill::before {
+
content: "\f894";
+
}
+
.bi-house-slash::before {
+
content: "\f895";
+
}
+
.bi-house-up-fill::before {
+
content: "\f896";
+
}
+
.bi-house-up::before {
+
content: "\f897";
+
}
+
.bi-house-x-fill::before {
+
content: "\f898";
+
}
+
.bi-house-x::before {
+
content: "\f899";
+
}
+
.bi-person-add::before {
+
content: "\f89a";
+
}
+
.bi-person-down::before {
+
content: "\f89b";
+
}
+
.bi-person-exclamation::before {
+
content: "\f89c";
+
}
+
.bi-person-fill-add::before {
+
content: "\f89d";
+
}
+
.bi-person-fill-check::before {
+
content: "\f89e";
+
}
+
.bi-person-fill-dash::before {
+
content: "\f89f";
+
}
+
.bi-person-fill-down::before {
+
content: "\f8a0";
+
}
+
.bi-person-fill-exclamation::before {
+
content: "\f8a1";
+
}
+
.bi-person-fill-gear::before {
+
content: "\f8a2";
+
}
+
.bi-person-fill-lock::before {
+
content: "\f8a3";
+
}
+
.bi-person-fill-slash::before {
+
content: "\f8a4";
+
}
+
.bi-person-fill-up::before {
+
content: "\f8a5";
+
}
+
.bi-person-fill-x::before {
+
content: "\f8a6";
+
}
+
.bi-person-gear::before {
+
content: "\f8a7";
+
}
+
.bi-person-lock::before {
+
content: "\f8a8";
+
}
+
.bi-person-slash::before {
+
content: "\f8a9";
+
}
+
.bi-person-up::before {
+
content: "\f8aa";
+
}
+
.bi-scooter::before {
+
content: "\f8ab";
+
}
+
.bi-taxi-front-fill::before {
+
content: "\f8ac";
+
}
+
.bi-taxi-front::before {
+
content: "\f8ad";
+
}
+
.bi-amd::before {
+
content: "\f8ae";
+
}
+
.bi-database-add::before {
+
content: "\f8af";
+
}
+
.bi-database-check::before {
+
content: "\f8b0";
+
}
+
.bi-database-dash::before {
+
content: "\f8b1";
+
}
+
.bi-database-down::before {
+
content: "\f8b2";
+
}
+
.bi-database-exclamation::before {
+
content: "\f8b3";
+
}
+
.bi-database-fill-add::before {
+
content: "\f8b4";
+
}
+
.bi-database-fill-check::before {
+
content: "\f8b5";
+
}
+
.bi-database-fill-dash::before {
+
content: "\f8b6";
+
}
+
.bi-database-fill-down::before {
+
content: "\f8b7";
+
}
+
.bi-database-fill-exclamation::before {
+
content: "\f8b8";
+
}
+
.bi-database-fill-gear::before {
+
content: "\f8b9";
+
}
+
.bi-database-fill-lock::before {
+
content: "\f8ba";
+
}
+
.bi-database-fill-slash::before {
+
content: "\f8bb";
+
}
+
.bi-database-fill-up::before {
+
content: "\f8bc";
+
}
+
.bi-database-fill-x::before {
+
content: "\f8bd";
+
}
+
.bi-database-fill::before {
+
content: "\f8be";
+
}
+
.bi-database-gear::before {
+
content: "\f8bf";
+
}
+
.bi-database-lock::before {
+
content: "\f8c0";
+
}
+
.bi-database-slash::before {
+
content: "\f8c1";
+
}
+
.bi-database-up::before {
+
content: "\f8c2";
+
}
+
.bi-database-x::before {
+
content: "\f8c3";
+
}
+
.bi-database::before {
+
content: "\f8c4";
+
}
+
.bi-houses-fill::before {
+
content: "\f8c5";
+
}
+
.bi-houses::before {
+
content: "\f8c6";
+
}
+
.bi-nvidia::before {
+
content: "\f8c7";
+
}
+
.bi-person-vcard-fill::before {
+
content: "\f8c8";
+
}
+
.bi-person-vcard::before {
+
content: "\f8c9";
+
}
+
.bi-sina-weibo::before {
+
content: "\f8ca";
+
}
+
.bi-tencent-qq::before {
+
content: "\f8cb";
+
}
+
.bi-wikipedia::before {
+
content: "\f8cc";
+
}
+
.bi-alphabet-uppercase::before {
+
content: "\f2a5";
+
}
+
.bi-alphabet::before {
+
content: "\f68a";
+
}
+
.bi-amazon::before {
+
content: "\f68d";
+
}
+
.bi-arrows-collapse-vertical::before {
+
content: "\f690";
+
}
+
.bi-arrows-expand-vertical::before {
+
content: "\f695";
+
}
+
.bi-arrows-vertical::before {
+
content: "\f698";
+
}
+
.bi-arrows::before {
+
content: "\f6a2";
+
}
+
.bi-ban-fill::before {
+
content: "\f6a3";
+
}
+
.bi-ban::before {
+
content: "\f6b6";
+
}
+
.bi-bing::before {
+
content: "\f6c2";
+
}
+
.bi-cake::before {
+
content: "\f6e0";
+
}
+
.bi-cake2::before {
+
content: "\f6ed";
+
}
+
.bi-cookie::before {
+
content: "\f6ee";
+
}
+
.bi-copy::before {
+
content: "\f759";
+
}
+
.bi-crosshair::before {
+
content: "\f769";
+
}
+
.bi-crosshair2::before {
+
content: "\f794";
+
}
+
.bi-emoji-astonished-fill::before {
+
content: "\f795";
+
}
+
.bi-emoji-astonished::before {
+
content: "\f79a";
+
}
+
.bi-emoji-grimace-fill::before {
+
content: "\f79b";
+
}
+
.bi-emoji-grimace::before {
+
content: "\f7a0";
+
}
+
.bi-emoji-grin-fill::before {
+
content: "\f7a1";
+
}
+
.bi-emoji-grin::before {
+
content: "\f7a6";
+
}
+
.bi-emoji-surprise-fill::before {
+
content: "\f7a7";
+
}
+
.bi-emoji-surprise::before {
+
content: "\f7ac";
+
}
+
.bi-emoji-tear-fill::before {
+
content: "\f7ad";
+
}
+
.bi-emoji-tear::before {
+
content: "\f7b2";
+
}
+
.bi-envelope-arrow-down-fill::before {
+
content: "\f7b3";
+
}
+
.bi-envelope-arrow-down::before {
+
content: "\f7b8";
+
}
+
.bi-envelope-arrow-up-fill::before {
+
content: "\f7b9";
+
}
+
.bi-envelope-arrow-up::before {
+
content: "\f7be";
+
}
+
.bi-feather::before {
+
content: "\f7bf";
+
}
+
.bi-feather2::before {
+
content: "\f7c4";
+
}
+
.bi-floppy-fill::before {
+
content: "\f7c5";
+
}
+
.bi-floppy::before {
+
content: "\f7d8";
+
}
+
.bi-floppy2-fill::before {
+
content: "\f7d9";
+
}
+
.bi-floppy2::before {
+
content: "\f7e4";
+
}
+
.bi-gitlab::before {
+
content: "\f7e5";
+
}
+
.bi-highlighter::before {
+
content: "\f7f8";
+
}
+
.bi-marker-tip::before {
+
content: "\f802";
+
}
+
.bi-nvme-fill::before {
+
content: "\f803";
+
}
+
.bi-nvme::before {
+
content: "\f80c";
+
}
+
.bi-opencollective::before {
+
content: "\f80d";
+
}
+
.bi-pci-card-network::before {
+
content: "\f8cd";
+
}
+
.bi-pci-card-sound::before {
+
content: "\f8ce";
+
}
+
.bi-radar::before {
+
content: "\f8cf";
+
}
+
.bi-send-arrow-down-fill::before {
+
content: "\f8d0";
+
}
+
.bi-send-arrow-down::before {
+
content: "\f8d1";
+
}
+
.bi-send-arrow-up-fill::before {
+
content: "\f8d2";
+
}
+
.bi-send-arrow-up::before {
+
content: "\f8d3";
+
}
+
.bi-sim-slash-fill::before {
+
content: "\f8d4";
+
}
+
.bi-sim-slash::before {
+
content: "\f8d5";
+
}
+
.bi-sourceforge::before {
+
content: "\f8d6";
+
}
+
.bi-substack::before {
+
content: "\f8d7";
+
}
+
.bi-threads-fill::before {
+
content: "\f8d8";
+
}
+
.bi-threads::before {
+
content: "\f8d9";
+
}
+
.bi-transparency::before {
+
content: "\f8da";
+
}
+
.bi-twitter-x::before {
+
content: "\f8db";
+
}
+
.bi-type-h4::before {
+
content: "\f8dc";
+
}
+
.bi-type-h5::before {
+
content: "\f8dd";
+
}
+
.bi-type-h6::before {
+
content: "\f8de";
+
}
+
.bi-backpack-fill::before {
+
content: "\f8df";
+
}
+
.bi-backpack::before {
+
content: "\f8e0";
+
}
+
.bi-backpack2-fill::before {
+
content: "\f8e1";
+
}
+
.bi-backpack2::before {
+
content: "\f8e2";
+
}
+
.bi-backpack3-fill::before {
+
content: "\f8e3";
+
}
+
.bi-backpack3::before {
+
content: "\f8e4";
+
}
+
.bi-backpack4-fill::before {
+
content: "\f8e5";
+
}
+
.bi-backpack4::before {
+
content: "\f8e6";
+
}
+
.bi-brilliance::before {
+
content: "\f8e7";
+
}
+
.bi-cake-fill::before {
+
content: "\f8e8";
+
}
+
.bi-cake2-fill::before {
+
content: "\f8e9";
+
}
+
.bi-duffle-fill::before {
+
content: "\f8ea";
+
}
+
.bi-duffle::before {
+
content: "\f8eb";
+
}
+
.bi-exposure::before {
+
content: "\f8ec";
+
}
+
.bi-gender-neuter::before {
+
content: "\f8ed";
+
}
+
.bi-highlights::before {
+
content: "\f8ee";
+
}
+
.bi-luggage-fill::before {
+
content: "\f8ef";
+
}
+
.bi-luggage::before {
+
content: "\f8f0";
+
}
+
.bi-mailbox-flag::before {
+
content: "\f8f1";
+
}
+
.bi-mailbox2-flag::before {
+
content: "\f8f2";
+
}
+
.bi-noise-reduction::before {
+
content: "\f8f3";
+
}
+
.bi-passport-fill::before {
+
content: "\f8f4";
+
}
+
.bi-passport::before {
+
content: "\f8f5";
+
}
+
.bi-person-arms-up::before {
+
content: "\f8f6";
+
}
+
.bi-person-raised-hand::before {
+
content: "\f8f7";
+
}
+
.bi-person-standing-dress::before {
+
content: "\f8f8";
+
}
+
.bi-person-standing::before {
+
content: "\f8f9";
+
}
+
.bi-person-walking::before {
+
content: "\f8fa";
+
}
+
.bi-person-wheelchair::before {
+
content: "\f8fb";
+
}
+
.bi-shadows::before {
+
content: "\f8fc";
+
}
+
.bi-suitcase-fill::before {
+
content: "\f8fd";
+
}
+
.bi-suitcase-lg-fill::before {
+
content: "\f8fe";
+
}
+
.bi-suitcase-lg::before {
+
content: "\f8ff";
+
}
+
.bi-suitcase::before {
+
content: "\f900";
+
}
+
.bi-suitcase2-fill::before {
+
content: "\f901";
+
}
+
.bi-suitcase2::before {
+
content: "\f902";
+
}
+
.bi-vignette::before {
+
content: "\f903";
+
}
scripts/bootstrap-icons/src/bootstrap-icons.woff2

This is a binary file and will not be displayed.

+1
scripts/bootstrap-icons/src/classes.json
···
+
["bi-exclamation-triangle"]
+25
scripts/simple-icons/add-class.py
···
+
#!/usr/bin/env python
+
import json
+
import os
+
+
BASE_PATH = os.path.dirname(__file__)
+
CLASSES_PATH = f"{BASE_PATH}/src/classes.json"
+
+
CLASSES = []
+
with open(CLASSES_PATH) as f:
+
CLASSES = json.load(open(CLASSES_PATH))
+
+
to_add: str = input("Class to add:")
+
+
if not to_add.startswith("si-"):
+
to_add = f"si-{to_add}"
+
+
if to_add not in CLASSES:
+
CLASSES.append(to_add)
+
else:
+
raise Exception("Class already exists!")
+
+
file = open(CLASSES_PATH, "w")
+
+
file.write(json.dumps(sorted(CLASSES), sort_keys=True, indent=2).rstrip())
+
file.close()
+49
scripts/simple-icons/gen-css.py
···
+
#!/usr/bin/env python
+
import json
+
import time
+
import os
+
import tinycss2
+
+
BASE_PATH = os.path.dirname(__file__)
+
CLASSES = json.load(open(f"{BASE_PATH}/src/classes.json"))
+
+
cur_time = int(time.time())
+
+
rules = tinycss2.parse_stylesheet(
+
open(f"{BASE_PATH}/src/simple-icons.css").read(),
+
skip_comments=True,
+
)
+
+
final_rules = rules[:3]
+
font_rule = rules[0]
+
+
for block in font_rule.content:
+
if isinstance(block, tinycss2.ast.FunctionBlock):
+
if "static" in block.arguments[0].value:
+
arg = block.arguments[0]
+
arg.value += f"?v={cur_time}"
+
arg.representation = arg.representation.replace(
+
".min.woff2", f".min.woff2?v={cur_time}"
+
)
+
block.arguments[0] = arg
+
+
rules = rules[4:]
+
+
for i, rule in enumerate(rules):
+
if isinstance(rule, tinycss2.ast.WhitespaceToken):
+
continue
+
+
if rule.prelude[1].value not in CLASSES:
+
del rules[i]
+
elif rule.prelude[3].value == "si--color":
+
del rules[i]
+
else:
+
char = hex(ord(rule.content[4].value))[2:]
+
rule.content[4].representation = f'"\\{char}"'
+
final_rules.append(rule)
+
+
+
out = open(f"{os.environ['ROOT']}/src/static/icons/si.min.css", "w")
+
out.write(tinycss2.serialize(final_rules))
+
out.close()
+
+34
scripts/simple-icons/gen-fonts.py
···
+
#!/usr/bin/env python
+
import os
+
import json
+
+
from fontTools import subset, ttLib
+
+
BASE_PATH = os.path.dirname(__file__)
+
CLASSES = json.load(open(f"{BASE_PATH}/src/classes.json"))
+
CLASSES = [c[3:] for c in CLASSES]
+
+
class OPTIONS:
+
flavor = "woff2"
+
with_zopfli = True
+
harfbuzz_repacker = True
+
canonical_order = False
+
+
+
print("loading font")
+
font = ttLib.TTFont(
+
f"{BASE_PATH}/src/simple-icons.woff2",
+
flavor="woff2",
+
lazy=False,
+
recalcBBoxes=False,
+
)
+
+
print("subsetting used glyphs")
+
subsetter = subset.Subsetter()
+
subsetter.populate(glyphs=CLASSES)
+
subsetter.subset(font)
+
+
print("saving minimal fonts")
+
subset.save_font(
+
font, f"{os.environ['ROOT']}/src/static/icons/si.min.woff2", options=OPTIONS
+
)
+6
scripts/simple-icons/src/classes.json
···
+
[
+
"si-bluesky",
+
"si-forgejo",
+
"si-github",
+
"si-kofi"
+
]
+6550
scripts/simple-icons/src/simple-icons.css
···
+
@font-face {
+
font-family: 'Simple Icons';
+
src:
+
url("/static/icons/si.min.woff2") format('woff2')
+
}
+
+
.si {
+
font-style: normal;
+
font-family: 'Simple Icons', sans-serif;
+
vertical-align: middle;
+
}
+
+
.si-42::before { content: "\ea0e"; }
+
.si-42.si--color::before { color: #000000; }
+
.si-dotenv::before { content: "\ea01"; }
+
.si-dotenv.si--color::before { color: #ECD53F; }
+
.si-dotnet::before { content: "\ea02"; }
+
.si-dotnet.si--color::before { color: #512BD4; }
+
.si-e::before { content: "\ea03"; }
+
.si-e.si--color::before { color: #000000; }
+
.si-1dot1dot1dot1::before { content: "\ea04"; }
+
.si-1dot1dot1dot1.si--color::before { color: #221E68; }
+
.si-1and1::before { content: "\ea05"; }
+
.si-1and1.si--color::before { color: #003D8F; }
+
.si-1001tracklists::before { content: "\ea06"; }
+
.si-1001tracklists.si--color::before { color: #40AEF0; }
+
.si-1panel::before { content: "\ea07"; }
+
.si-1panel.si--color::before { color: #0854C1; }
+
.si-1password::before { content: "\ea08"; }
+
.si-1password.si--color::before { color: #3B66BC; }
+
.si-2fas::before { content: "\ea09"; }
+
.si-2fas.si--color::before { color: #EC1C24; }
+
.si-2k::before { content: "\ea0a"; }
+
.si-2k.si--color::before { color: #DD0700; }
+
.si-30secondsofcode::before { content: "\ea0b"; }
+
.si-30secondsofcode.si--color::before { color: #5395FD; }
+
.si-365datascience::before { content: "\ea0c"; }
+
.si-365datascience.si--color::before { color: #000C1F; }
+
.si-3m::before { content: "\ea0d"; }
+
.si-3m.si--color::before { color: #FF0000; }
+
.si-4chan::before { content: "\ea0f"; }
+
.si-4chan.si--color::before { color: #006600; }
+
.si-4d::before { content: "\ea10"; }
+
.si-4d.si--color::before { color: #004088; }
+
.si-500px::before { content: "\ea11"; }
+
.si-500px.si--color::before { color: #222222; }
+
.si-7zip::before { content: "\ea12"; }
+
.si-7zip.si--color::before { color: #000000; }
+
.si-99designs::before { content: "\ea13"; }
+
.si-99designs.si--color::before { color: #FE5F50; }
+
.si-9gag::before { content: "\ea14"; }
+
.si-9gag.si--color::before { color: #000000; }
+
.si-aframe::before { content: "\ea15"; }
+
.si-aframe.si--color::before { color: #EF2D5E; }
+
.si-abbrobotstudio::before { content: "\ea16"; }
+
.si-abbrobotstudio.si--color::before { color: #FF9E0F; }
+
.si-abbott::before { content: "\ea17"; }
+
.si-abbott.si--color::before { color: #008FC7; }
+
.si-abbvie::before { content: "\ea18"; }
+
.si-abbvie.si--color::before { color: #071D49; }
+
.si-aboutdotme::before { content: "\ea19"; }
+
.si-aboutdotme.si--color::before { color: #333333; }
+
.si-abstract::before { content: "\ea1a"; }
+
.si-abstract.si--color::before { color: #191A1B; }
+
.si-abusedotch::before { content: "\ea1b"; }
+
.si-abusedotch.si--color::before { color: #00465B; }
+
.si-academia::before { content: "\ea1c"; }
+
.si-academia.si--color::before { color: #41454A; }
+
.si-accenture::before { content: "\ea1d"; }
+
.si-accenture.si--color::before { color: #A100FF; }
+
.si-accusoft::before { content: "\ea1e"; }
+
.si-accusoft.si--color::before { color: #A9225C; }
+
.si-accuweather::before { content: "\ea1f"; }
+
.si-accuweather.si--color::before { color: #FF6600; }
+
.si-acer::before { content: "\ea20"; }
+
.si-acer.si--color::before { color: #83B81A; }
+
.si-acm::before { content: "\ea21"; }
+
.si-acm.si--color::before { color: #0085CA; }
+
.si-actigraph::before { content: "\ea22"; }
+
.si-actigraph.si--color::before { color: #0B2C4A; }
+
.si-activision::before { content: "\ea23"; }
+
.si-activision.si--color::before { color: #000000; }
+
.si-activitypub::before { content: "\ea24"; }
+
.si-activitypub.si--color::before { color: #F1007E; }
+
.si-actix::before { content: "\ea25"; }
+
.si-actix.si--color::before { color: #000000; }
+
.si-actualbudget::before { content: "\ea26"; }
+
.si-actualbudget.si--color::before { color: #6B46C1; }
+
.si-acura::before { content: "\ea27"; }
+
.si-acura.si--color::before { color: #000000; }
+
.si-adafruit::before { content: "\ea28"; }
+
.si-adafruit.si--color::before { color: #000000; }
+
.si-adblock::before { content: "\ea29"; }
+
.si-adblock.si--color::before { color: #F40D12; }
+
.si-adblockplus::before { content: "\ea2a"; }
+
.si-adblockplus.si--color::before { color: #C70D2C; }
+
.si-addydotio::before { content: "\ea2b"; }
+
.si-addydotio.si--color::before { color: #19216C; }
+
.si-adguard::before { content: "\ea2c"; }
+
.si-adguard.si--color::before { color: #68BC71; }
+
.si-adidas::before { content: "\ea2d"; }
+
.si-adidas.si--color::before { color: #000000; }
+
.si-adminer::before { content: "\ea2e"; }
+
.si-adminer.si--color::before { color: #34567C; }
+
.si-adonisjs::before { content: "\ea2f"; }
+
.si-adonisjs.si--color::before { color: #5A45FF; }
+
.si-adp::before { content: "\ea30"; }
+
.si-adp.si--color::before { color: #D0271D; }
+
.si-adroll::before { content: "\ea31"; }
+
.si-adroll.si--color::before { color: #0DBDFF; }
+
.si-adventofcode::before { content: "\ea32"; }
+
.si-adventofcode.si--color::before { color: #FFFF66; }
+
.si-adyen::before { content: "\ea33"; }
+
.si-adyen.si--color::before { color: #0ABF53; }
+
.si-aegisauthenticator::before { content: "\ea34"; }
+
.si-aegisauthenticator.si--color::before { color: #005E9D; }
+
.si-aerlingus::before { content: "\ea35"; }
+
.si-aerlingus.si--color::before { color: #006272; }
+
.si-aeroflot::before { content: "\ea36"; }
+
.si-aeroflot.si--color::before { color: #02458D; }
+
.si-aeromexico::before { content: "\ea37"; }
+
.si-aeromexico.si--color::before { color: #0B2343; }
+
.si-aerospike::before { content: "\ea38"; }
+
.si-aerospike.si--color::before { color: #C22127; }
+
.si-aew::before { content: "\ea39"; }
+
.si-aew.si--color::before { color: #000000; }
+
.si-afdian::before { content: "\ea3a"; }
+
.si-afdian.si--color::before { color: #946CE6; }
+
.si-affine::before { content: "\ea3b"; }
+
.si-affine.si--color::before { color: #1E96EB; }
+
.si-affinity::before { content: "\ea3c"; }
+
.si-affinity.si--color::before { color: #222324; }
+
.si-affinitydesigner::before { content: "\ea3d"; }
+
.si-affinitydesigner.si--color::before { color: #134881; }
+
.si-affinityphoto::before { content: "\ea3e"; }
+
.si-affinityphoto.si--color::before { color: #4E3188; }
+
.si-affinitypublisher::before { content: "\ea3f"; }
+
.si-affinitypublisher.si--color::before { color: #891B26; }
+
.si-afterpay::before { content: "\ea40"; }
+
.si-afterpay.si--color::before { color: #B2FCE4; }
+
.si-aftership::before { content: "\ea41"; }
+
.si-aftership.si--color::before { color: #FF6B2B; }
+
.si-agora::before { content: "\ea42"; }
+
.si-agora.si--color::before { color: #099DFD; }
+
.si-aidungeon::before { content: "\ea43"; }
+
.si-aidungeon.si--color::before { color: #000000; }
+
.si-aib::before { content: "\ea44"; }
+
.si-aib.si--color::before { color: #7F2B7B; }
+
.si-aiohttp::before { content: "\ea45"; }
+
.si-aiohttp.si--color::before { color: #2C5BB4; }
+
.si-aiqfome::before { content: "\ea46"; }
+
.si-aiqfome.si--color::before { color: #7A1FA2; }
+
.si-aircanada::before { content: "\ea47"; }
+
.si-aircanada.si--color::before { color: #F01428; }
+
.si-airchina::before { content: "\ea48"; }
+
.si-airchina.si--color::before { color: #E30E17; }
+
.si-airfrance::before { content: "\ea49"; }
+
.si-airfrance.si--color::before { color: #002157; }
+
.si-airindia::before { content: "\ea4a"; }
+
.si-airindia.si--color::before { color: #DA0E29; }
+
.si-airserbia::before { content: "\ea4b"; }
+
.si-airserbia.si--color::before { color: #0E203F; }
+
.si-airtransat::before { content: "\ea4c"; }
+
.si-airtransat.si--color::before { color: #172B54; }
+
.si-airasia::before { content: "\ea4d"; }
+
.si-airasia.si--color::before { color: #FF0000; }
+
.si-airbnb::before { content: "\ea4e"; }
+
.si-airbnb.si--color::before { color: #FF5A5F; }
+
.si-airbrake::before { content: "\ea4f"; }
+
.si-airbrake.si--color::before { color: #FFA500; }
+
.si-airbus::before { content: "\ea50"; }
+
.si-airbus.si--color::before { color: #00205B; }
+
.si-airbyte::before { content: "\ea51"; }
+
.si-airbyte.si--color::before { color: #615EFF; }
+
.si-aircall::before { content: "\ea52"; }
+
.si-aircall.si--color::before { color: #00B388; }
+
.si-airplayaudio::before { content: "\ea53"; }
+
.si-airplayaudio.si--color::before { color: #000000; }
+
.si-airplayvideo::before { content: "\ea54"; }
+
.si-airplayvideo.si--color::before { color: #000000; }
+
.si-airtable::before { content: "\ea55"; }
+
.si-airtable.si--color::before { color: #18BFFF; }
+
.si-airtel::before { content: "\ea56"; }
+
.si-airtel.si--color::before { color: #E40000; }
+
.si-ajv::before { content: "\ea57"; }
+
.si-ajv.si--color::before { color: #23C8D2; }
+
.si-akamai::before { content: "\ea58"; }
+
.si-akamai.si--color::before { color: #0096D6; }
+
.si-akasaair::before { content: "\ea59"; }
+
.si-akasaair.si--color::before { color: #FF6300; }
+
.si-akaunting::before { content: "\ea5a"; }
+
.si-akaunting.si--color::before { color: #6DA252; }
+
.si-akiflow::before { content: "\ea5b"; }
+
.si-akiflow.si--color::before { color: #AF38F9; }
+
.si-alacritty::before { content: "\ea5c"; }
+
.si-alacritty.si--color::before { color: #F46D01; }
+
.si-alamy::before { content: "\ea5d"; }
+
.si-alamy.si--color::before { color: #00FF7B; }
+
.si-albertheijn::before { content: "\ea5e"; }
+
.si-albertheijn.si--color::before { color: #04ACE6; }
+
.si-alby::before { content: "\ea5f"; }
+
.si-alby.si--color::before { color: #FFDF6F; }
+
.si-alchemy::before { content: "\ea60"; }
+
.si-alchemy.si--color::before { color: #0C0C0E; }
+
.si-aldinord::before { content: "\ea61"; }
+
.si-aldinord.si--color::before { color: #2490D7; }
+
.si-aldisud::before { content: "\ea62"; }
+
.si-aldisud.si--color::before { color: #00005F; }
+
.si-alfaromeo::before { content: "\ea63"; }
+
.si-alfaromeo.si--color::before { color: #981E32; }
+
.si-alfred::before { content: "\ea64"; }
+
.si-alfred.si--color::before { color: #5C1F87; }
+
.si-algolia::before { content: "\ea65"; }
+
.si-algolia.si--color::before { color: #003DFF; }
+
.si-algorand::before { content: "\ea66"; }
+
.si-algorand.si--color::before { color: #000000; }
+
.si-alibabacloud::before { content: "\ea67"; }
+
.si-alibabacloud.si--color::before { color: #FF6A00; }
+
.si-alibabadotcom::before { content: "\ea68"; }
+
.si-alibabadotcom.si--color::before { color: #FF6A00; }
+
.si-alienware::before { content: "\ea69"; }
+
.si-alienware.si--color::before { color: #541BAE; }
+
.si-aliexpress::before { content: "\ea6a"; }
+
.si-aliexpress.si--color::before { color: #FF4747; }
+
.si-alipay::before { content: "\ea6b"; }
+
.si-alipay.si--color::before { color: #1677FF; }
+
.si-allegro::before { content: "\ea6c"; }
+
.si-allegro.si--color::before { color: #FF5A00; }
+
.si-alliedmodders::before { content: "\ea6d"; }
+
.si-alliedmodders.si--color::before { color: #1578D3; }
+
.si-allocine::before { content: "\ea6e"; }
+
.si-allocine.si--color::before { color: #FECC00; }
+
.si-alltrails::before { content: "\ea6f"; }
+
.si-alltrails.si--color::before { color: #142800; }
+
.si-almalinux::before { content: "\ea70"; }
+
.si-almalinux.si--color::before { color: #000000; }
+
.si-alpinelinux::before { content: "\ea71"; }
+
.si-alpinelinux.si--color::before { color: #0D597F; }
+
.si-alpinedotjs::before { content: "\ea72"; }
+
.si-alpinedotjs.si--color::before { color: #8BC0D0; }
+
.si-alternativeto::before { content: "\ea73"; }
+
.si-alternativeto.si--color::before { color: #0289D5; }
+
.si-alteryx::before { content: "\ea74"; }
+
.si-alteryx.si--color::before { color: #0078C0; }
+
.si-altiumdesigner::before { content: "\ea75"; }
+
.si-altiumdesigner.si--color::before { color: #A5915F; }
+
.si-alwaysdata::before { content: "\ea76"; }
+
.si-alwaysdata.si--color::before { color: #E9568E; }
+
.si-alx::before { content: "\ea77"; }
+
.si-alx.si--color::before { color: #002B56; }
+
.si-amazon::before { content: "\ea78"; }
+
.si-amazon.si--color::before { color: #FF9900; }
+
.si-amazonalexa::before { content: "\ea79"; }
+
.si-amazonalexa.si--color::before { color: #00CAFF; }
+
.si-amazonapigateway::before { content: "\ea7a"; }
+
.si-amazonapigateway.si--color::before { color: #FF4F8B; }
+
.si-amazoncloudwatch::before { content: "\ea7b"; }
+
.si-amazoncloudwatch.si--color::before { color: #FF4F8B; }
+
.si-amazoncognito::before { content: "\ea7c"; }
+
.si-amazoncognito.si--color::before { color: #DD344C; }
+
.si-amazondocumentdb::before { content: "\ea7d"; }
+
.si-amazondocumentdb.si--color::before { color: #C925D1; }
+
.si-amazondynamodb::before { content: "\ea7e"; }
+
.si-amazondynamodb.si--color::before { color: #4053D6; }
+
.si-amazonec2::before { content: "\ea7f"; }
+
.si-amazonec2.si--color::before { color: #FF9900; }
+
.si-amazonecs::before { content: "\ea80"; }
+
.si-amazonecs.si--color::before { color: #FF9900; }
+
.si-amazoneks::before { content: "\ea81"; }
+
.si-amazoneks.si--color::before { color: #FF9900; }
+
.si-amazonelasticache::before { content: "\ea82"; }
+
.si-amazonelasticache.si--color::before { color: #C925D1; }
+
.si-amazonfiretv::before { content: "\ea83"; }
+
.si-amazonfiretv.si--color::before { color: #FC4C02; }
+
.si-amazongames::before { content: "\ea84"; }
+
.si-amazongames.si--color::before { color: #FF9900; }
+
.si-amazoniam::before { content: "\ea85"; }
+
.si-amazoniam.si--color::before { color: #DD344C; }
+
.si-amazonlumberyard::before { content: "\ea86"; }
+
.si-amazonlumberyard.si--color::before { color: #66459B; }
+
.si-amazonluna::before { content: "\ea87"; }
+
.si-amazonluna.si--color::before { color: #9146FF; }
+
.si-amazonmusic::before { content: "\ea88"; }
+
.si-amazonmusic.si--color::before { color: #46C3D0; }
+
.si-amazonpay::before { content: "\ea89"; }
+
.si-amazonpay.si--color::before { color: #FF9900; }
+
.si-amazonprime::before { content: "\ea8a"; }
+
.si-amazonprime.si--color::before { color: #00A8E1; }
+
.si-amazonrds::before { content: "\ea8b"; }
+
.si-amazonrds.si--color::before { color: #527FFF; }
+
.si-amazonredshift::before { content: "\ea8c"; }
+
.si-amazonredshift.si--color::before { color: #8C4FFF; }
+
.si-amazonroute53::before { content: "\ea8d"; }
+
.si-amazonroute53.si--color::before { color: #8C4FFF; }
+
.si-amazons3::before { content: "\ea8e"; }
+
.si-amazons3.si--color::before { color: #569A31; }
+
.si-amazonsimpleemailservice::before { content: "\ea8f"; }
+
.si-amazonsimpleemailservice.si--color::before { color: #DD344C; }
+
.si-amazonsqs::before { content: "\ea90"; }
+
.si-amazonsqs.si--color::before { color: #FF4F8B; }
+
.si-amazonwebservices::before { content: "\ea91"; }
+
.si-amazonwebservices.si--color::before { color: #232F3E; }
+
.si-amd::before { content: "\ea92"; }
+
.si-amd.si--color::before { color: #ED1C24; }
+
.si-ameba::before { content: "\ea93"; }
+
.si-ameba.si--color::before { color: #2D8C3C; }
+
.si-americanairlines::before { content: "\ea94"; }
+
.si-americanairlines.si--color::before { color: #0078D2; }
+
.si-americanexpress::before { content: "\ea95"; }
+
.si-americanexpress.si--color::before { color: #2E77BC; }
+
.si-amg::before { content: "\ea96"; }
+
.si-amg.si--color::before { color: #000000; }
+
.si-amp::before { content: "\ea97"; }
+
.si-amp.si--color::before { color: #005AF0; }
+
.si-amul::before { content: "\ea98"; }
+
.si-amul.si--color::before { color: #ED1D24; }
+
.si-ana::before { content: "\ea99"; }
+
.si-ana.si--color::before { color: #13448F; }
+
.si-anaconda::before { content: "\ea9a"; }
+
.si-anaconda.si--color::before { color: #44A833; }
+
.si-analogue::before { content: "\ea9b"; }
+
.si-analogue.si--color::before { color: #1A1A1A; }
+
.si-andela::before { content: "\ea9c"; }
+
.si-andela.si--color::before { color: #173B3F; }
+
.si-android::before { content: "\ea9d"; }
+
.si-android.si--color::before { color: #34A853; }
+
.si-androidauto::before { content: "\ea9e"; }
+
.si-androidauto.si--color::before { color: #3DDC84; }
+
.si-androidstudio::before { content: "\ea9f"; }
+
.si-androidstudio.si--color::before { color: #3DDC84; }
+
.si-angular::before { content: "\eaa0"; }
+
.si-angular.si--color::before { color: #0F0F11; }
+
.si-anilist::before { content: "\eaa1"; }
+
.si-anilist.si--color::before { color: #02A9FF; }
+
.si-animalplanet::before { content: "\eaa2"; }
+
.si-animalplanet.si--color::before { color: #0073FF; }
+
.si-ankermake::before { content: "\eaa3"; }
+
.si-ankermake.si--color::before { color: #88F387; }
+
.si-anki::before { content: "\eaa4"; }
+
.si-anki.si--color::before { color: #80C2EE; }
+
.si-ansible::before { content: "\eaa5"; }
+
.si-ansible.si--color::before { color: #EE0000; }
+
.si-answer::before { content: "\eaa6"; }
+
.si-answer.si--color::before { color: #0033FF; }
+
.si-ansys::before { content: "\eaa7"; }
+
.si-ansys.si--color::before { color: #FFB71B; }
+
.si-antdesign::before { content: "\eaa8"; }
+
.si-antdesign.si--color::before { color: #0170FE; }
+
.si-anta::before { content: "\eaa9"; }
+
.si-anta.si--color::before { color: #D70010; }
+
.si-antena3::before { content: "\eaaa"; }
+
.si-antena3.si--color::before { color: #FF7328; }
+
.si-anthropic::before { content: "\eaab"; }
+
.si-anthropic.si--color::before { color: #191919; }
+
.si-antv::before { content: "\eaac"; }
+
.si-antv.si--color::before { color: #8B5DFF; }
+
.si-anycubic::before { content: "\eaad"; }
+
.si-anycubic.si--color::before { color: #476695; }
+
.si-anydesk::before { content: "\eaae"; }
+
.si-anydesk.si--color::before { color: #EF443B; }
+
.si-anytype::before { content: "\eaaf"; }
+
.si-anytype.si--color::before { color: #FF6A7B; }
+
.si-aol::before { content: "\eab0"; }
+
.si-aol.si--color::before { color: #3399FF; }
+
.si-apache::before { content: "\eab1"; }
+
.si-apache.si--color::before { color: #D22128; }
+
.si-apacheairflow::before { content: "\eab2"; }
+
.si-apacheairflow.si--color::before { color: #017CEE; }
+
.si-apacheant::before { content: "\eab3"; }
+
.si-apacheant.si--color::before { color: #A81C7D; }
+
.si-apachecassandra::before { content: "\eab4"; }
+
.si-apachecassandra.si--color::before { color: #1287B1; }
+
.si-apachecloudstack::before { content: "\eab5"; }
+
.si-apachecloudstack.si--color::before { color: #2AA5DC; }
+
.si-apachecordova::before { content: "\eab6"; }
+
.si-apachecordova.si--color::before { color: #E8E8E8; }
+
.si-apachecouchdb::before { content: "\eab7"; }
+
.si-apachecouchdb.si--color::before { color: #E42528; }
+
.si-apachedolphinscheduler::before { content: "\eab8"; }
+
.si-apachedolphinscheduler.si--color::before { color: #85CDF0; }
+
.si-apachedruid::before { content: "\eab9"; }
+
.si-apachedruid.si--color::before { color: #29F1FB; }
+
.si-apacheecharts::before { content: "\eaba"; }
+
.si-apacheecharts.si--color::before { color: #AA344D; }
+
.si-apacheflink::before { content: "\eabb"; }
+
.si-apacheflink.si--color::before { color: #E6526F; }
+
.si-apachefreemarker::before { content: "\eabc"; }
+
.si-apachefreemarker.si--color::before { color: #326CAC; }
+
.si-apachegroovy::before { content: "\eabd"; }
+
.si-apachegroovy.si--color::before { color: #4298B8; }
+
.si-apacheguacamole::before { content: "\eabe"; }
+
.si-apacheguacamole.si--color::before { color: #578B34; }
+
.si-apachehadoop::before { content: "\eabf"; }
+
.si-apachehadoop.si--color::before { color: #66CCFF; }
+
.si-apachehbase::before { content: "\eac0"; }
+
.si-apachehbase.si--color::before { color: #BE160C; }
+
.si-apachehive::before { content: "\eac1"; }
+
.si-apachehive.si--color::before { color: #FDEE21; }
+
.si-apachejmeter::before { content: "\eac2"; }
+
.si-apachejmeter.si--color::before { color: #D22128; }
+
.si-apachekafka::before { content: "\eac3"; }
+
.si-apachekafka.si--color::before { color: #231F20; }
+
.si-apachekylin::before { content: "\eac4"; }
+
.si-apachekylin.si--color::before { color: #F09D13; }
+
.si-apachelucene::before { content: "\eac5"; }
+
.si-apachelucene.si--color::before { color: #019B8F; }
+
.si-apachemaven::before { content: "\eac6"; }
+
.si-apachemaven.si--color::before { color: #C71A36; }
+
.si-apachenetbeanside::before { content: "\eac7"; }
+
.si-apachenetbeanside.si--color::before { color: #1B6AC6; }
+
.si-apachenifi::before { content: "\eac8"; }
+
.si-apachenifi.si--color::before { color: #728E9B; }
+
.si-apacheopenoffice::before { content: "\eac9"; }
+
.si-apacheopenoffice.si--color::before { color: #0E85CD; }
+
.si-apacheparquet::before { content: "\eaca"; }
+
.si-apacheparquet.si--color::before { color: #50ABF1; }
+
.si-apachepulsar::before { content: "\eacb"; }
+
.si-apachepulsar.si--color::before { color: #188FFF; }
+
.si-apacherocketmq::before { content: "\eacc"; }
+
.si-apacherocketmq.si--color::before { color: #D77310; }
+
.si-apachesolr::before { content: "\eacd"; }
+
.si-apachesolr.si--color::before { color: #D9411E; }
+
.si-apachespark::before { content: "\eace"; }
+
.si-apachespark.si--color::before { color: #E25A1C; }
+
.si-apachestorm::before { content: "\eacf"; }
+
.si-apachestorm.si--color::before { color: #225593; }
+
.si-apachesuperset::before { content: "\ead0"; }
+
.si-apachesuperset.si--color::before { color: #20A6C9; }
+
.si-apachetomcat::before { content: "\ead1"; }
+
.si-apachetomcat.si--color::before { color: #F8DC75; }
+
.si-aparat::before { content: "\ead2"; }
+
.si-aparat.si--color::before { color: #ED145B; }
+
.si-apifox::before { content: "\ead3"; }
+
.si-apifox.si--color::before { color: #F44A53; }
+
.si-apmterminals::before { content: "\ead4"; }
+
.si-apmterminals.si--color::before { color: #FF6441; }
+
.si-apollographql::before { content: "\ead5"; }
+
.si-apollographql.si--color::before { color: #311C87; }
+
.si-apostrophe::before { content: "\ead6"; }
+
.si-apostrophe.si--color::before { color: #6236FF; }
+
.si-appstore::before { content: "\ead7"; }
+
.si-appstore.si--color::before { color: #0D96F6; }
+
.si-appgallery::before { content: "\ead8"; }
+
.si-appgallery.si--color::before { color: #FF0000; }
+
.si-appian::before { content: "\ead9"; }
+
.si-appian.si--color::before { color: #2322F0; }
+
.si-appium::before { content: "\eada"; }
+
.si-appium.si--color::before { color: #EE376D; }
+
.si-apple::before { content: "\eadb"; }
+
.si-apple.si--color::before { color: #000000; }
+
.si-applearcade::before { content: "\eadc"; }
+
.si-applearcade.si--color::before { color: #000000; }
+
.si-applemusic::before { content: "\eadd"; }
+
.si-applemusic.si--color::before { color: #FA243C; }
+
.si-applenews::before { content: "\eade"; }
+
.si-applenews.si--color::before { color: #FD415E; }
+
.si-applepay::before { content: "\eadf"; }
+
.si-applepay.si--color::before { color: #000000; }
+
.si-applepodcasts::before { content: "\eae0"; }
+
.si-applepodcasts.si--color::before { color: #9933CC; }
+
.si-appletv::before { content: "\eae1"; }
+
.si-appletv.si--color::before { color: #000000; }
+
.si-appsignal::before { content: "\eae2"; }
+
.si-appsignal.si--color::before { color: #21375A; }
+
.si-appsmith::before { content: "\eae3"; }
+
.si-appsmith.si--color::before { color: #2A2F3D; }
+
.si-appveyor::before { content: "\eae4"; }
+
.si-appveyor.si--color::before { color: #00B3E0; }
+
.si-appwrite::before { content: "\eae5"; }
+
.si-appwrite.si--color::before { color: #FD366E; }
+
.si-aqua::before { content: "\eae6"; }
+
.si-aqua.si--color::before { color: #1904DA; }
+
.si-aral::before { content: "\eae7"; }
+
.si-aral.si--color::before { color: #0063CB; }
+
.si-arangodb::before { content: "\eae8"; }
+
.si-arangodb.si--color::before { color: #DDE072; }
+
.si-arc::before { content: "\eae9"; }
+
.si-arc.si--color::before { color: #FCBFBD; }
+
.si-arcgis::before { content: "\eaea"; }
+
.si-arcgis.si--color::before { color: #2C7AC3; }
+
.si-archlinux::before { content: "\eaeb"; }
+
.si-archlinux.si--color::before { color: #1793D1; }
+
.si-archicad::before { content: "\eaec"; }
+
.si-archicad.si--color::before { color: #2D50A5; }
+
.si-archiveofourown::before { content: "\eaed"; }
+
.si-archiveofourown.si--color::before { color: #990000; }
+
.si-ardour::before { content: "\eaee"; }
+
.si-ardour.si--color::before { color: #C61C3E; }
+
.si-arduino::before { content: "\eaef"; }
+
.si-arduino.si--color::before { color: #00878F; }
+
.si-argo::before { content: "\eaf0"; }
+
.si-argo.si--color::before { color: #EF7B4D; }
+
.si-argos::before { content: "\eaf1"; }
+
.si-argos.si--color::before { color: #DA291C; }
+
.si-ariakit::before { content: "\eaf2"; }
+
.si-ariakit.si--color::before { color: #007ACC; }
+
.si-arkecosystem::before { content: "\eaf3"; }
+
.si-arkecosystem.si--color::before { color: #C9292C; }
+
.si-arlo::before { content: "\eaf4"; }
+
.si-arlo.si--color::before { color: #49B48A; }
+
.si-arm::before { content: "\eaf5"; }
+
.si-arm.si--color::before { color: #0091BD; }
+
.si-armkeil::before { content: "\eaf6"; }
+
.si-armkeil.si--color::before { color: #394049; }
+
.si-arstechnica::before { content: "\eaf7"; }
+
.si-arstechnica.si--color::before { color: #FF4E00; }
+
.si-artifacthub::before { content: "\eaf8"; }
+
.si-artifacthub.si--color::before { color: #417598; }
+
.si-artixlinux::before { content: "\eaf9"; }
+
.si-artixlinux.si--color::before { color: #10A0CC; }
+
.si-artstation::before { content: "\eafa"; }
+
.si-artstation.si--color::before { color: #13AFF0; }
+
.si-arxiv::before { content: "\eafb"; }
+
.si-arxiv.si--color::before { color: #B31B1B; }
+
.si-asahilinux::before { content: "\eafc"; }
+
.si-asahilinux.si--color::before { color: #A61200; }
+
.si-asana::before { content: "\eafd"; }
+
.si-asana.si--color::before { color: #F06A6A; }
+
.si-asciidoctor::before { content: "\eafe"; }
+
.si-asciidoctor.si--color::before { color: #E40046; }
+
.si-asciinema::before { content: "\eaff"; }
+
.si-asciinema.si--color::before { color: #D40000; }
+
.si-asda::before { content: "\eb00"; }
+
.si-asda.si--color::before { color: #68A51C; }
+
.si-aseprite::before { content: "\eb01"; }
+
.si-aseprite.si--color::before { color: #7D929E; }
+
.si-assemblyscript::before { content: "\eb02"; }
+
.si-assemblyscript.si--color::before { color: #007AAC; }
+
.si-asterisk::before { content: "\eb03"; }
+
.si-asterisk.si--color::before { color: #F68F1E; }
+
.si-astonmartin::before { content: "\eb04"; }
+
.si-astonmartin.si--color::before { color: #00665E; }
+
.si-astra::before { content: "\eb05"; }
+
.si-astra.si--color::before { color: #5C2EDE; }
+
.si-astral::before { content: "\eb06"; }
+
.si-astral.si--color::before { color: #261230; }
+
.si-astro::before { content: "\eb07"; }
+
.si-astro.si--color::before { color: #BC52EE; }
+
.si-asus::before { content: "\eb08"; }
+
.si-asus.si--color::before { color: #000000; }
+
.si-atandt::before { content: "\eb09"; }
+
.si-atandt.si--color::before { color: #009FDB; }
+
.si-atari::before { content: "\eb0a"; }
+
.si-atari.si--color::before { color: #E4202E; }
+
.si-atlasos::before { content: "\eb0b"; }
+
.si-atlasos.si--color::before { color: #1A91FF; }
+
.si-atlassian::before { content: "\eb0c"; }
+
.si-atlassian.si--color::before { color: #0052CC; }
+
.si-auchan::before { content: "\eb0d"; }
+
.si-auchan.si--color::before { color: #D6180B; }
+
.si-audacity::before { content: "\eb0e"; }
+
.si-audacity.si--color::before { color: #0000CC; }
+
.si-audi::before { content: "\eb0f"; }
+
.si-audi.si--color::before { color: #BB0A30; }
+
.si-audible::before { content: "\eb10"; }
+
.si-audible.si--color::before { color: #F8991C; }
+
.si-audiotechnica::before { content: "\eb11"; }
+
.si-audiotechnica.si--color::before { color: #000000; }
+
.si-audiobookshelf::before { content: "\eb12"; }
+
.si-audiobookshelf.si--color::before { color: #82612C; }
+
.si-audioboom::before { content: "\eb13"; }
+
.si-audioboom.si--color::before { color: #007CE2; }
+
.si-audiomack::before { content: "\eb14"; }
+
.si-audiomack.si--color::before { color: #FFA200; }
+
.si-aurelia::before { content: "\eb15"; }
+
.si-aurelia.si--color::before { color: #ED2B88; }
+
.si-auth0::before { content: "\eb16"; }
+
.si-auth0.si--color::before { color: #EB5424; }
+
.si-authelia::before { content: "\eb17"; }
+
.si-authelia.si--color::before { color: #113155; }
+
.si-authentik::before { content: "\eb18"; }
+
.si-authentik.si--color::before { color: #FD4B2D; }
+
.si-authy::before { content: "\eb19"; }
+
.si-authy.si--color::before { color: #EC1C24; }
+
.si-autocad::before { content: "\eb1a"; }
+
.si-autocad.si--color::before { color: #E51050; }
+
.si-autocannon::before { content: "\eb1b"; }
+
.si-autocannon.si--color::before { color: #3BA4B7; }
+
.si-autodesk::before { content: "\eb1c"; }
+
.si-autodesk.si--color::before { color: #000000; }
+
.si-autodeskmaya::before { content: "\eb1d"; }
+
.si-autodeskmaya.si--color::before { color: #37A5CC; }
+
.si-autodeskrevit::before { content: "\eb1e"; }
+
.si-autodeskrevit.si--color::before { color: #186BFF; }
+
.si-autohotkey::before { content: "\eb1f"; }
+
.si-autohotkey.si--color::before { color: #334455; }
+
.si-autoit::before { content: "\eb20"; }
+
.si-autoit.si--color::before { color: #5D83AC; }
+
.si-automattic::before { content: "\eb21"; }
+
.si-automattic.si--color::before { color: #3499CD; }
+
.si-autoprefixer::before { content: "\eb22"; }
+
.si-autoprefixer.si--color::before { color: #DD3735; }
+
.si-autozone::before { content: "\eb23"; }
+
.si-autozone.si--color::before { color: #D52B1E; }
+
.si-avajs::before { content: "\eb24"; }
+
.si-avajs.si--color::before { color: #4B4B77; }
+
.si-avast::before { content: "\eb25"; }
+
.si-avast.si--color::before { color: #FF7800; }
+
.si-avianca::before { content: "\eb26"; }
+
.si-avianca.si--color::before { color: #FF0000; }
+
.si-avira::before { content: "\eb27"; }
+
.si-avira.si--color::before { color: #E02027; }
+
.si-awesomelists::before { content: "\eb28"; }
+
.si-awesomelists.si--color::before { color: #FC60A8; }
+
.si-awesomewm::before { content: "\eb29"; }
+
.si-awesomewm.si--color::before { color: #535D6C; }
+
.si-awsamplify::before { content: "\eb2a"; }
+
.si-awsamplify.si--color::before { color: #FF9900; }
+
.si-awselasticloadbalancing::before { content: "\eb2b"; }
+
.si-awselasticloadbalancing.si--color::before { color: #8C4FFF; }
+
.si-awsfargate::before { content: "\eb2c"; }
+
.si-awsfargate.si--color::before { color: #FF9900; }
+
.si-awslambda::before { content: "\eb2d"; }
+
.si-awslambda.si--color::before { color: #FF9900; }
+
.si-awsorganizations::before { content: "\eb2e"; }
+
.si-awsorganizations.si--color::before { color: #E7157B; }
+
.si-awssecretsmanager::before { content: "\eb2f"; }
+
.si-awssecretsmanager.si--color::before { color: #DD344C; }
+
.si-awwwards::before { content: "\eb30"; }
+
.si-awwwards.si--color::before { color: #222222; }
+
.si-axios::before { content: "\eb31"; }
+
.si-axios.si--color::before { color: #5A29E4; }
+
.si-bandrautomation::before { content: "\eb32"; }
+
.si-bandrautomation.si--color::before { color: #FF8800; }
+
.si-babel::before { content: "\eb33"; }
+
.si-babel.si--color::before { color: #F9DC3E; }
+
.si-babelio::before { content: "\eb34"; }
+
.si-babelio.si--color::before { color: #FBB91E; }
+
.si-babylondotjs::before { content: "\eb35"; }
+
.si-babylondotjs.si--color::before { color: #BB464B; }
+
.si-backblaze::before { content: "\eb36"; }
+
.si-backblaze.si--color::before { color: #E21E29; }
+
.si-backbone::before { content: "\eb37"; }
+
.si-backbone.si--color::before { color: #000000; }
+
.si-backbonedotjs::before { content: "\eb38"; }
+
.si-backbonedotjs.si--color::before { color: #0071B5; }
+
.si-backendless::before { content: "\eb39"; }
+
.si-backendless.si--color::before { color: #1D77BD; }
+
.si-backstage::before { content: "\eb3a"; }
+
.si-backstage.si--color::before { color: #9BF0E1; }
+
.si-badoo::before { content: "\eb3b"; }
+
.si-badoo.si--color::before { color: #783BF9; }
+
.si-baidu::before { content: "\eb3c"; }
+
.si-baidu.si--color::before { color: #2932E1; }
+
.si-bakalari::before { content: "\eb3d"; }
+
.si-bakalari.si--color::before { color: #00A2E2; }
+
.si-bamboo::before { content: "\eb3e"; }
+
.si-bamboo.si--color::before { color: #0052CC; }
+
.si-bambulab::before { content: "\eb3f"; }
+
.si-bambulab.si--color::before { color: #00AE42; }
+
.si-bandcamp::before { content: "\eb40"; }
+
.si-bandcamp.si--color::before { color: #408294; }
+
.si-bandlab::before { content: "\eb41"; }
+
.si-bandlab.si--color::before { color: #F12C18; }
+
.si-bandsintown::before { content: "\eb42"; }
+
.si-bandsintown.si--color::before { color: #00CEC8; }
+
.si-bankofamerica::before { content: "\eb43"; }
+
.si-bankofamerica.si--color::before { color: #012169; }
+
.si-barclays::before { content: "\eb44"; }
+
.si-barclays.si--color::before { color: #00AEEF; }
+
.si-baremetrics::before { content: "\eb45"; }
+
.si-baremetrics.si--color::before { color: #6078FF; }
+
.si-barmenia::before { content: "\eb46"; }
+
.si-barmenia.si--color::before { color: #009FE3; }
+
.si-basecamp::before { content: "\eb47"; }
+
.si-basecamp.si--color::before { color: #1D2D35; }
+
.si-baserow::before { content: "\eb48"; }
+
.si-baserow.si--color::before { color: #5190EF; }
+
.si-basicattentiontoken::before { content: "\eb49"; }
+
.si-basicattentiontoken.si--color::before { color: #80247B; }
+
.si-bastyon::before { content: "\eb4a"; }
+
.si-bastyon.si--color::before { color: #00A4FF; }
+
.si-bat::before { content: "\eb4b"; }
+
.si-bat.si--color::before { color: #31369E; }
+
.si-bata::before { content: "\eb4c"; }
+
.si-bata.si--color::before { color: #DD282E; }
+
.si-battledotnet::before { content: "\eb4d"; }
+
.si-battledotnet.si--color::before { color: #4381C3; }
+
.si-bazel::before { content: "\eb4e"; }
+
.si-bazel.si--color::before { color: #43A047; }
+
.si-beatport::before { content: "\eb4f"; }
+
.si-beatport.si--color::before { color: #01FF95; }
+
.si-beats::before { content: "\eb50"; }
+
.si-beats.si--color::before { color: #005571; }
+
.si-beatsbydre::before { content: "\eb51"; }
+
.si-beatsbydre.si--color::before { color: #E01F3D; }
+
.si-beatstars::before { content: "\eb52"; }
+
.si-beatstars.si--color::before { color: #EB0000; }
+
.si-beekeeperstudio::before { content: "\eb53"; }
+
.si-beekeeperstudio.si--color::before { color: #FAD83B; }
+
.si-behance::before { content: "\eb54"; }
+
.si-behance.si--color::before { color: #1769FF; }
+
.si-beijingsubway::before { content: "\eb55"; }
+
.si-beijingsubway.si--color::before { color: #004A9D; }
+
.si-bem::before { content: "\eb56"; }
+
.si-bem.si--color::before { color: #000000; }
+
.si-bentley::before { content: "\eb57"; }
+
.si-bentley.si--color::before { color: #333333; }
+
.si-bento::before { content: "\eb58"; }
+
.si-bento.si--color::before { color: #768CFF; }
+
.si-bentobox::before { content: "\eb59"; }
+
.si-bentobox.si--color::before { color: #F15541; }
+
.si-bentoml::before { content: "\eb5a"; }
+
.si-bentoml.si--color::before { color: #000000; }
+
.si-bereal::before { content: "\eb5b"; }
+
.si-bereal.si--color::before { color: #000000; }
+
.si-betfair::before { content: "\eb5c"; }
+
.si-betfair.si--color::before { color: #FFB80B; }
+
.si-betterstack::before { content: "\eb5d"; }
+
.si-betterstack.si--color::before { color: #000000; }
+
.si-betterdiscord::before { content: "\eb5e"; }
+
.si-betterdiscord.si--color::before { color: #3E82E5; }
+
.si-bevy::before { content: "\eb5f"; }
+
.si-bevy.si--color::before { color: #232326; }
+
.si-bigcartel::before { content: "\eb60"; }
+
.si-bigcartel.si--color::before { color: #222222; }
+
.si-bigbasket::before { content: "\eb61"; }
+
.si-bigbasket.si--color::before { color: #A5CD39; }
+
.si-bigbluebutton::before { content: "\eb62"; }
+
.si-bigbluebutton.si--color::before { color: #283274; }
+
.si-bigcommerce::before { content: "\eb63"; }
+
.si-bigcommerce.si--color::before { color: #121118; }
+
.si-bilibili::before { content: "\eb64"; }
+
.si-bilibili.si--color::before { color: #00A1D6; }
+
.si-billboard::before { content: "\eb65"; }
+
.si-billboard.si--color::before { color: #000000; }
+
.si-bim::before { content: "\eb66"; }
+
.si-bim.si--color::before { color: #EB1928; }
+
.si-binance::before { content: "\eb67"; }
+
.si-binance.si--color::before { color: #F0B90B; }
+
.si-biolink::before { content: "\eb68"; }
+
.si-biolink.si--color::before { color: #000000; }
+
.si-biome::before { content: "\eb69"; }
+
.si-biome.si--color::before { color: #60A5FA; }
+
.si-bisecthosting::before { content: "\eb6a"; }
+
.si-bisecthosting.si--color::before { color: #0D1129; }
+
.si-bit::before { content: "\eb6b"; }
+
.si-bit.si--color::before { color: #592EC1; }
+
.si-bitbucket::before { content: "\eb6c"; }
+
.si-bitbucket.si--color::before { color: #0052CC; }
+
.si-bitcoin::before { content: "\eb6d"; }
+
.si-bitcoin.si--color::before { color: #F7931A; }
+
.si-bitcoincash::before { content: "\eb6e"; }
+
.si-bitcoincash.si--color::before { color: #0AC18E; }
+
.si-bitcoinsv::before { content: "\eb6f"; }
+
.si-bitcoinsv.si--color::before { color: #EAB300; }
+
.si-bitcomet::before { content: "\eb70"; }
+
.si-bitcomet.si--color::before { color: #F49923; }
+
.si-bitdefender::before { content: "\eb71"; }
+
.si-bitdefender.si--color::before { color: #ED1C24; }
+
.si-bitly::before { content: "\eb72"; }
+
.si-bitly.si--color::before { color: #EE6123; }
+
.si-bitrise::before { content: "\eb73"; }
+
.si-bitrise.si--color::before { color: #683D87; }
+
.si-bittorrent::before { content: "\eb74"; }
+
.si-bittorrent.si--color::before { color: #050505; }
+
.si-bitwarden::before { content: "\eb75"; }
+
.si-bitwarden.si--color::before { color: #175DDC; }
+
.si-bitwig::before { content: "\eb76"; }
+
.si-bitwig.si--color::before { color: #FF5A00; }
+
.si-blackberry::before { content: "\eb77"; }
+
.si-blackberry.si--color::before { color: #000000; }
+
.si-blackmagicdesign::before { content: "\eb78"; }
+
.si-blackmagicdesign.si--color::before { color: #FFA200; }
+
.si-blazemeter::before { content: "\eb79"; }
+
.si-blazemeter.si--color::before { color: #CA2133; }
+
.si-blazor::before { content: "\eb7a"; }
+
.si-blazor.si--color::before { color: #512BD4; }
+
.si-blender::before { content: "\eb7b"; }
+
.si-blender.si--color::before { color: #E87D0D; }
+
.si-blockbench::before { content: "\eb7c"; }
+
.si-blockbench.si--color::before { color: #1E93D9; }
+
.si-blockchaindotcom::before { content: "\eb7d"; }
+
.si-blockchaindotcom.si--color::before { color: #121D33; }
+
.si-blogger::before { content: "\eb7e"; }
+
.si-blogger.si--color::before { color: #FF5722; }
+
.si-bloglovin::before { content: "\eb7f"; }
+
.si-bloglovin.si--color::before { color: #000000; }
+
.si-blueprint::before { content: "\eb80"; }
+
.si-blueprint.si--color::before { color: #137CBD; }
+
.si-bluesky::before { content: "\eb81"; }
+
.si-bluesky.si--color::before { color: #0285FF; }
+
.si-bluesound::before { content: "\eb82"; }
+
.si-bluesound.si--color::before { color: #0F131E; }
+
.si-bluetooth::before { content: "\eb83"; }
+
.si-bluetooth.si--color::before { color: #0082FC; }
+
.si-bmcsoftware::before { content: "\eb84"; }
+
.si-bmcsoftware.si--color::before { color: #FE5000; }
+
.si-bmw::before { content: "\eb85"; }
+
.si-bmw.si--color::before { color: #0066B1; }
+
.si-bnbchain::before { content: "\eb86"; }
+
.si-bnbchain.si--color::before { color: #F0B90B; }
+
.si-boardgamegeek::before { content: "\eb87"; }
+
.si-boardgamegeek.si--color::before { color: #FF5100; }
+
.si-boat::before { content: "\eb88"; }
+
.si-boat.si--color::before { color: #E20722; }
+
.si-boehringeringelheim::before { content: "\eb89"; }
+
.si-boehringeringelheim.si--color::before { color: #00E47C; }
+
.si-boeing::before { content: "\eb8a"; }
+
.si-boeing.si--color::before { color: #1D439C; }
+
.si-bombardier::before { content: "\eb8b"; }
+
.si-bombardier.si--color::before { color: #000000; }
+
.si-bookalope::before { content: "\eb8c"; }
+
.si-bookalope.si--color::before { color: #DC2829; }
+
.si-bookbub::before { content: "\eb8d"; }
+
.si-bookbub.si--color::before { color: #F44336; }
+
.si-bookmeter::before { content: "\eb8e"; }
+
.si-bookmeter.si--color::before { color: #64BC4B; }
+
.si-bookmyshow::before { content: "\eb8f"; }
+
.si-bookmyshow.si--color::before { color: #C4242B; }
+
.si-bookstack::before { content: "\eb90"; }
+
.si-bookstack.si--color::before { color: #0288D1; }
+
.si-boost::before { content: "\eb91"; }
+
.si-boost.si--color::before { color: #F7901E; }
+
.si-boosty::before { content: "\eb92"; }
+
.si-boosty.si--color::before { color: #F15F2C; }
+
.si-boots::before { content: "\eb93"; }
+
.si-boots.si--color::before { color: #05054B; }
+
.si-bootstrap::before { content: "\eb94"; }
+
.si-bootstrap.si--color::before { color: #7952B3; }
+
.si-borgbackup::before { content: "\eb95"; }
+
.si-borgbackup.si--color::before { color: #00DD00; }
+
.si-bosch::before { content: "\eb96"; }
+
.si-bosch.si--color::before { color: #EA0016; }
+
.si-bose::before { content: "\eb97"; }
+
.si-bose.si--color::before { color: #000000; }
+
.si-botblecms::before { content: "\eb98"; }
+
.si-botblecms.si--color::before { color: #205081; }
+
.si-boulanger::before { content: "\eb99"; }
+
.si-boulanger.si--color::before { color: #FD5300; }
+
.si-bower::before { content: "\eb9a"; }
+
.si-bower.si--color::before { color: #EF5734; }
+
.si-box::before { content: "\eb9b"; }
+
.si-box.si--color::before { color: #0061D5; }
+
.si-boxysvg::before { content: "\eb9c"; }
+
.si-boxysvg.si--color::before { color: #3584E3; }
+
.si-braintree::before { content: "\eb9d"; }
+
.si-braintree.si--color::before { color: #000000; }
+
.si-brandfolder::before { content: "\eb9e"; }
+
.si-brandfolder.si--color::before { color: #40D1F5; }
+
.si-brave::before { content: "\eb9f"; }
+
.si-brave.si--color::before { color: #FB542B; }
+
.si-breaker::before { content: "\eba0"; }
+
.si-breaker.si--color::before { color: #003DAD; }
+
.si-brenntag::before { content: "\eba1"; }
+
.si-brenntag.si--color::before { color: #1A0033; }
+
.si-brevo::before { content: "\eba2"; }
+
.si-brevo.si--color::before { color: #0B996E; }
+
.si-brex::before { content: "\eba3"; }
+
.si-brex.si--color::before { color: #212121; }
+
.si-bricks::before { content: "\eba4"; }
+
.si-bricks.si--color::before { color: #FFD54D; }
+
.si-britishairways::before { content: "\eba5"; }
+
.si-britishairways.si--color::before { color: #2E5C99; }
+
.si-broadcom::before { content: "\eba6"; }
+
.si-broadcom.si--color::before { color: #E31837; }
+
.si-bruno::before { content: "\eba7"; }
+
.si-bruno.si--color::before { color: #F4AA41; }
+
.si-bsd::before { content: "\eba8"; }
+
.si-bsd.si--color::before { color: #AB2B28; }
+
.si-bspwm::before { content: "\eba9"; }
+
.si-bspwm.si--color::before { color: #2E2E2E; }
+
.si-bt::before { content: "\ebaa"; }
+
.si-bt.si--color::before { color: #6400AA; }
+
.si-buddy::before { content: "\ebab"; }
+
.si-buddy.si--color::before { color: #1A86FD; }
+
.si-budibase::before { content: "\ebac"; }
+
.si-budibase.si--color::before { color: #000000; }
+
.si-buefy::before { content: "\ebad"; }
+
.si-buefy.si--color::before { color: #7957D5; }
+
.si-buffer::before { content: "\ebae"; }
+
.si-buffer.si--color::before { color: #231F20; }
+
.si-bugatti::before { content: "\ebaf"; }
+
.si-bugatti.si--color::before { color: #000000; }
+
.si-bugcrowd::before { content: "\ebb0"; }
+
.si-bugcrowd.si--color::before { color: #F26822; }
+
.si-bugsnag::before { content: "\ebb1"; }
+
.si-bugsnag.si--color::before { color: #4949E4; }
+
.si-buhl::before { content: "\ebb2"; }
+
.si-buhl.si--color::before { color: #023E84; }
+
.si-buildkite::before { content: "\ebb3"; }
+
.si-buildkite.si--color::before { color: #14CC80; }
+
.si-builtbybit::before { content: "\ebb4"; }
+
.si-builtbybit.si--color::before { color: #2D87C3; }
+
.si-bukalapak::before { content: "\ebb5"; }
+
.si-bukalapak.si--color::before { color: #E31E52; }
+
.si-bulma::before { content: "\ebb6"; }
+
.si-bulma.si--color::before { color: #00D1B2; }
+
.si-bun::before { content: "\ebb7"; }
+
.si-bun.si--color::before { color: #000000; }
+
.si-bungie::before { content: "\ebb8"; }
+
.si-bungie.si--color::before { color: #0075BB; }
+
.si-bunq::before { content: "\ebb9"; }
+
.si-bunq.si--color::before { color: #3394D7; }
+
.si-burgerking::before { content: "\ebba"; }
+
.si-burgerking.si--color::before { color: #D62300; }
+
.si-burpsuite::before { content: "\ebbb"; }
+
.si-burpsuite.si--color::before { color: #FF6633; }
+
.si-burton::before { content: "\ebbc"; }
+
.si-burton.si--color::before { color: #000000; }
+
.si-buymeacoffee::before { content: "\ebbd"; }
+
.si-buymeacoffee.si--color::before { color: #FFDD00; }
+
.si-buysellads::before { content: "\ebbe"; }
+
.si-buysellads.si--color::before { color: #EB4714; }
+
.si-buzzfeed::before { content: "\ebbf"; }
+
.si-buzzfeed.si--color::before { color: #EE3322; }
+
.si-bvg::before { content: "\ebc0"; }
+
.si-bvg.si--color::before { color: #F0D722; }
+
.si-byjus::before { content: "\ebc1"; }
+
.si-byjus.si--color::before { color: #813588; }
+
.si-bytedance::before { content: "\ebc2"; }
+
.si-bytedance.si--color::before { color: #3C8CFF; }
+
.si-c::before { content: "\ebc3"; }
+
.si-c.si--color::before { color: #A8B9CC; }
+
.si-cplusplus::before { content: "\ebc4"; }
+
.si-cplusplus.si--color::before { color: #00599C; }
+
.si-cplusplusbuilder::before { content: "\ebc5"; }
+
.si-cplusplusbuilder.si--color::before { color: #E62431; }
+
.si-cachet::before { content: "\ebc6"; }
+
.si-cachet.si--color::before { color: #7ED321; }
+
.si-caddy::before { content: "\ebc7"; }
+
.si-caddy.si--color::before { color: #1F88C0; }
+
.si-cadillac::before { content: "\ebc8"; }
+
.si-cadillac.si--color::before { color: #000000; }
+
.si-cafepress::before { content: "\ebc9"; }
+
.si-cafepress.si--color::before { color: #58A616; }
+
.si-cairographics::before { content: "\ebca"; }
+
.si-cairographics.si--color::before { color: #F39914; }
+
.si-cairometro::before { content: "\ebcb"; }
+
.si-cairometro.si--color::before { color: #C10C0C; }
+
.si-caixabank::before { content: "\ebcc"; }
+
.si-caixabank.si--color::before { color: #007EAE; }
+
.si-cakephp::before { content: "\ebcd"; }
+
.si-cakephp.si--color::before { color: #D33C43; }
+
.si-caldotcom::before { content: "\ebce"; }
+
.si-caldotcom.si--color::before { color: #292929; }
+
.si-calendly::before { content: "\ebcf"; }
+
.si-calendly.si--color::before { color: #006BFF; }
+
.si-calibreweb::before { content: "\ebd0"; }
+
.si-calibreweb.si--color::before { color: #45B29D; }
+
.si-campaignmonitor::before { content: "\ebd1"; }
+
.si-campaignmonitor.si--color::before { color: #111324; }
+
.si-camunda::before { content: "\ebd2"; }
+
.si-camunda.si--color::before { color: #FC5D0D; }
+
.si-canonical::before { content: "\ebd3"; }
+
.si-canonical.si--color::before { color: #E95420; }
+
.si-canva::before { content: "\ebd4"; }
+
.si-canva.si--color::before { color: #00C4CC; }
+
.si-canvas::before { content: "\ebd5"; }
+
.si-canvas.si--color::before { color: #E72429; }
+
.si-capacitor::before { content: "\ebd6"; }
+
.si-capacitor.si--color::before { color: #119EFF; }
+
.si-caprover::before { content: "\ebd7"; }
+
.si-caprover.si--color::before { color: #ED5B26; }
+
.si-carthrottle::before { content: "\ebd8"; }
+
.si-carthrottle.si--color::before { color: #FF9C42; }
+
.si-cardano::before { content: "\ebd9"; }
+
.si-cardano.si--color::before { color: #0133AD; }
+
.si-carlsberggroup::before { content: "\ebda"; }
+
.si-carlsberggroup.si--color::before { color: #00321E; }
+
.si-carrd::before { content: "\ebdb"; }
+
.si-carrd.si--color::before { color: #596CAF; }
+
.si-carrefour::before { content: "\ebdc"; }
+
.si-carrefour.si--color::before { color: #004E9F; }
+
.si-carto::before { content: "\ebdd"; }
+
.si-carto.si--color::before { color: #EB1510; }
+
.si-cashapp::before { content: "\ebde"; }
+
.si-cashapp.si--color::before { color: #00C244; }
+
.si-castbox::before { content: "\ebdf"; }
+
.si-castbox.si--color::before { color: #F55B23; }
+
.si-castorama::before { content: "\ebe0"; }
+
.si-castorama.si--color::before { color: #0078D7; }
+
.si-castro::before { content: "\ebe1"; }
+
.si-castro.si--color::before { color: #00B265; }
+
.si-caterpillar::before { content: "\ebe2"; }
+
.si-caterpillar.si--color::before { color: #FFCD11; }
+
.si-cbc::before { content: "\ebe3"; }
+
.si-cbc.si--color::before { color: #E60505; }
+
.si-cbs::before { content: "\ebe4"; }
+
.si-cbs.si--color::before { color: #033963; }
+
.si-ccc::before { content: "\ebe5"; }
+
.si-ccc.si--color::before { color: #000000; }
+
.si-ccleaner::before { content: "\ebe6"; }
+
.si-ccleaner.si--color::before { color: #CB2D29; }
+
.si-cdprojekt::before { content: "\ebe7"; }
+
.si-cdprojekt.si--color::before { color: #DC0D15; }
+
.si-ce::before { content: "\ebe8"; }
+
.si-ce.si--color::before { color: #000000; }
+
.si-celery::before { content: "\ebe9"; }
+
.si-celery.si--color::before { color: #37814A; }
+
.si-celestron::before { content: "\ebea"; }
+
.si-celestron.si--color::before { color: #F47216; }
+
.si-centos::before { content: "\ebeb"; }
+
.si-centos.si--color::before { color: #262577; }
+
.si-ceph::before { content: "\ebec"; }
+
.si-ceph.si--color::before { color: #EF5C55; }
+
.si-cesium::before { content: "\ebed"; }
+
.si-cesium.si--color::before { color: #6CADDF; }
+
.si-chai::before { content: "\ebee"; }
+
.si-chai.si--color::before { color: #A30701; }
+
.si-chainguard::before { content: "\ebef"; }
+
.si-chainguard.si--color::before { color: #4445E7; }
+
.si-chainlink::before { content: "\ebf0"; }
+
.si-chainlink.si--color::before { color: #375BD2; }
+
.si-chakraui::before { content: "\ebf1"; }
+
.si-chakraui.si--color::before { color: #319795; }
+
.si-channel4::before { content: "\ebf2"; }
+
.si-channel4.si--color::before { color: #AAFF89; }
+
.si-charles::before { content: "\ebf3"; }
+
.si-charles.si--color::before { color: #F3F5F5; }
+
.si-chartdotjs::before { content: "\ebf4"; }
+
.si-chartdotjs.si--color::before { color: #FF6384; }
+
.si-chartmogul::before { content: "\ebf5"; }
+
.si-chartmogul.si--color::before { color: #13324B; }
+
.si-chase::before { content: "\ebf6"; }
+
.si-chase.si--color::before { color: #117ACA; }
+
.si-chatbot::before { content: "\ebf7"; }
+
.si-chatbot.si--color::before { color: #0066FF; }
+
.si-chatwoot::before { content: "\ebf8"; }
+
.si-chatwoot.si--color::before { color: #1F93FF; }
+
.si-checkio::before { content: "\ebf9"; }
+
.si-checkio.si--color::before { color: #008DB6; }
+
.si-checkmarx::before { content: "\ebfa"; }
+
.si-checkmarx.si--color::before { color: #54B848; }
+
.si-checkmk::before { content: "\ebfb"; }
+
.si-checkmk.si--color::before { color: #15D1A0; }
+
.si-chedraui::before { content: "\ebfc"; }
+
.si-chedraui.si--color::before { color: #E0832F; }
+
.si-cheerio::before { content: "\ebfd"; }
+
.si-cheerio.si--color::before { color: #E88C1F; }
+
.si-chef::before { content: "\ebfe"; }
+
.si-chef.si--color::before { color: #F09820; }
+
.si-chemex::before { content: "\ebff"; }
+
.si-chemex.si--color::before { color: #4D2B1A; }
+
.si-chessdotcom::before { content: "\ec00"; }
+
.si-chessdotcom.si--color::before { color: #81B64C; }
+
.si-chevrolet::before { content: "\ec01"; }
+
.si-chevrolet.si--color::before { color: #CD9834; }
+
.si-chianetwork::before { content: "\ec02"; }
+
.si-chianetwork.si--color::before { color: #5ECE71; }
+
.si-chinaeasternairlines::before { content: "\ec03"; }
+
.si-chinaeasternairlines.si--color::before { color: #1A2477; }
+
.si-chinasouthernairlines::before { content: "\ec04"; }
+
.si-chinasouthernairlines.si--color::before { color: #008BCB; }
+
.si-chocolatey::before { content: "\ec05"; }
+
.si-chocolatey.si--color::before { color: #80B5E3; }
+
.si-chromatic::before { content: "\ec06"; }
+
.si-chromatic.si--color::before { color: #FC521F; }
+
.si-chromewebstore::before { content: "\ec07"; }
+
.si-chromewebstore.si--color::before { color: #4285F4; }
+
.si-chromecast::before { content: "\ec08"; }
+
.si-chromecast.si--color::before { color: #999999; }
+
.si-chrysler::before { content: "\ec09"; }
+
.si-chrysler.si--color::before { color: #000000; }
+
.si-chupachups::before { content: "\ec0a"; }
+
.si-chupachups.si--color::before { color: #CF103E; }
+
.si-cilium::before { content: "\ec0b"; }
+
.si-cilium.si--color::before { color: #F8C517; }
+
.si-cinema4d::before { content: "\ec0c"; }
+
.si-cinema4d.si--color::before { color: #011A6A; }
+
.si-cinnamon::before { content: "\ec0d"; }
+
.si-cinnamon.si--color::before { color: #DC682E; }
+
.si-circle::before { content: "\ec0e"; }
+
.si-circle.si--color::before { color: #8669AE; }
+
.si-circleci::before { content: "\ec0f"; }
+
.si-circleci.si--color::before { color: #343434; }
+
.si-circuitverse::before { content: "\ec10"; }
+
.si-circuitverse.si--color::before { color: #42B883; }
+
.si-cirrusci::before { content: "\ec11"; }
+
.si-cirrusci.si--color::before { color: #4051B5; }
+
.si-cisco::before { content: "\ec12"; }
+
.si-cisco.si--color::before { color: #1BA0D7; }
+
.si-citrix::before { content: "\ec13"; }
+
.si-citrix.si--color::before { color: #452170; }
+
.si-citroen::before { content: "\ec14"; }
+
.si-citroen.si--color::before { color: #DA291C; }
+
.si-civicrm::before { content: "\ec15"; }
+
.si-civicrm.si--color::before { color: #81C459; }
+
.si-civo::before { content: "\ec16"; }
+
.si-civo.si--color::before { color: #239DFF; }
+
.si-clarifai::before { content: "\ec17"; }
+
.si-clarifai.si--color::before { color: #1955FF; }
+
.si-claris::before { content: "\ec18"; }
+
.si-claris.si--color::before { color: #000000; }
+
.si-clarivate::before { content: "\ec19"; }
+
.si-clarivate.si--color::before { color: #93FF9E; }
+
.si-claude::before { content: "\ec1a"; }
+
.si-claude.si--color::before { color: #D97757; }
+
.si-clerk::before { content: "\ec1b"; }
+
.si-clerk.si--color::before { color: #6C47FF; }
+
.si-clevercloud::before { content: "\ec1c"; }
+
.si-clevercloud.si--color::before { color: #171C36; }
+
.si-clickhouse::before { content: "\ec1d"; }
+
.si-clickhouse.si--color::before { color: #FFCC01; }
+
.si-clickup::before { content: "\ec1e"; }
+
.si-clickup.si--color::before { color: #7B68EE; }
+
.si-clion::before { content: "\ec1f"; }
+
.si-clion.si--color::before { color: #000000; }
+
.si-clockify::before { content: "\ec20"; }
+
.si-clockify.si--color::before { color: #03A9F4; }
+
.si-clojure::before { content: "\ec21"; }
+
.si-clojure.si--color::before { color: #5881D8; }
+
.si-cloud66::before { content: "\ec22"; }
+
.si-cloud66.si--color::before { color: #3C72B9; }
+
.si-cloudfoundry::before { content: "\ec23"; }
+
.si-cloudfoundry.si--color::before { color: #0C9ED5; }
+
.si-cloudbees::before { content: "\ec24"; }
+
.si-cloudbees.si--color::before { color: #1997B5; }
+
.si-cloudcannon::before { content: "\ec25"; }
+
.si-cloudcannon.si--color::before { color: #407AFC; }
+
.si-cloudera::before { content: "\ec26"; }
+
.si-cloudera.si--color::before { color: #F96702; }
+
.si-cloudflare::before { content: "\ec27"; }
+
.si-cloudflare.si--color::before { color: #F38020; }
+
.si-cloudflarepages::before { content: "\ec28"; }
+
.si-cloudflarepages.si--color::before { color: #F38020; }
+
.si-cloudflareworkers::before { content: "\ec29"; }
+
.si-cloudflareworkers.si--color::before { color: #F38020; }
+
.si-cloudinary::before { content: "\ec2a"; }
+
.si-cloudinary.si--color::before { color: #3448C5; }
+
.si-cloudron::before { content: "\ec2b"; }
+
.si-cloudron.si--color::before { color: #03A9F4; }
+
.si-cloudsmith::before { content: "\ec2c"; }
+
.si-cloudsmith.si--color::before { color: #2A6FE1; }
+
.si-cloudways::before { content: "\ec2d"; }
+
.si-cloudways.si--color::before { color: #2C39BD; }
+
.si-clubforce::before { content: "\ec2e"; }
+
.si-clubforce.si--color::before { color: #191176; }
+
.si-clubhouse::before { content: "\ec2f"; }
+
.si-clubhouse.si--color::before { color: #FFE450; }
+
.si-clyp::before { content: "\ec30"; }
+
.si-clyp.si--color::before { color: #3CBDB1; }
+
.si-cmake::before { content: "\ec31"; }
+
.si-cmake.si--color::before { color: #064F8C; }
+
.si-cncf::before { content: "\ec32"; }
+
.si-cncf.si--color::before { color: #231F20; }
+
.si-cnes::before { content: "\ec33"; }
+
.si-cnes.si--color::before { color: #204F8C; }
+
.si-cnet::before { content: "\ec34"; }
+
.si-cnet.si--color::before { color: #E71D1D; }
+
.si-cnn::before { content: "\ec35"; }
+
.si-cnn.si--color::before { color: #CC0000; }
+
.si-coop::before { content: "\ec36"; }
+
.si-coop.si--color::before { color: #00B1E7; }
+
.si-cocacola::before { content: "\ec37"; }
+
.si-cocacola.si--color::before { color: #D00013; }
+
.si-cockpit::before { content: "\ec38"; }
+
.si-cockpit.si--color::before { color: #0066CC; }
+
.si-cockroachlabs::before { content: "\ec39"; }
+
.si-cockroachlabs.si--color::before { color: #6933FF; }
+
.si-cocoapods::before { content: "\ec3a"; }
+
.si-cocoapods.si--color::before { color: #EE3322; }
+
.si-cocos::before { content: "\ec3b"; }
+
.si-cocos.si--color::before { color: #55C2E1; }
+
.si-coda::before { content: "\ec3c"; }
+
.si-coda.si--color::before { color: #F46A54; }
+
.si-codacy::before { content: "\ec3d"; }
+
.si-codacy.si--color::before { color: #222F29; }
+
.si-codeclimate::before { content: "\ec3e"; }
+
.si-codeclimate.si--color::before { color: #000000; }
+
.si-codeblocks::before { content: "\ec3f"; }
+
.si-codeblocks.si--color::before { color: #41AD48; }
+
.si-codeberg::before { content: "\ec40"; }
+
.si-codeberg.si--color::before { color: #2185D0; }
+
.si-codecademy::before { content: "\ec41"; }
+
.si-codecademy.si--color::before { color: #1F4056; }
+
.si-codeceptjs::before { content: "\ec42"; }
+
.si-codeceptjs.si--color::before { color: #F6E05E; }
+
.si-codechef::before { content: "\ec43"; }
+
.si-codechef.si--color::before { color: #5B4638; }
+
.si-codecov::before { content: "\ec44"; }
+
.si-codecov.si--color::before { color: #F01F7A; }
+
.si-codecrafters::before { content: "\ec45"; }
+
.si-codecrafters.si--color::before { color: #171920; }
+
.si-codefactor::before { content: "\ec46"; }
+
.si-codefactor.si--color::before { color: #F44A6A; }
+
.si-codeforces::before { content: "\ec47"; }
+
.si-codeforces.si--color::before { color: #1F8ACB; }
+
.si-codefresh::before { content: "\ec48"; }
+
.si-codefresh.si--color::before { color: #08B1AB; }
+
.si-codeigniter::before { content: "\ec49"; }
+
.si-codeigniter.si--color::before { color: #EF4223; }
+
.si-codeium::before { content: "\ec4a"; }
+
.si-codeium.si--color::before { color: #09B6A2; }
+
.si-codemagic::before { content: "\ec4b"; }
+
.si-codemagic.si--color::before { color: #F45E3F; }
+
.si-codementor::before { content: "\ec4c"; }
+
.si-codementor.si--color::before { color: #003648; }
+
.si-codemirror::before { content: "\ec4d"; }
+
.si-codemirror.si--color::before { color: #D30707; }
+
.si-codenewbie::before { content: "\ec4e"; }
+
.si-codenewbie.si--color::before { color: #9013FE; }
+
.si-codepen::before { content: "\ec4f"; }
+
.si-codepen.si--color::before { color: #000000; }
+
.si-codeproject::before { content: "\ec50"; }
+
.si-codeproject.si--color::before { color: #FF9900; }
+
.si-coder::before { content: "\ec51"; }
+
.si-coder.si--color::before { color: #000000; }
+
.si-codersrank::before { content: "\ec52"; }
+
.si-codersrank.si--color::before { color: #67A4AC; }
+
.si-coderwall::before { content: "\ec53"; }
+
.si-coderwall.si--color::before { color: #3E8DCC; }
+
.si-codesandbox::before { content: "\ec54"; }
+
.si-codesandbox.si--color::before { color: #151515; }
+
.si-codeship::before { content: "\ec55"; }
+
.si-codeship.si--color::before { color: #004466; }
+
.si-codesignal::before { content: "\ec56"; }
+
.si-codesignal.si--color::before { color: #1062FB; }
+
.si-codestream::before { content: "\ec57"; }
+
.si-codestream.si--color::before { color: #008C99; }
+
.si-codewars::before { content: "\ec58"; }
+
.si-codewars.si--color::before { color: #B1361E; }
+
.si-codingninjas::before { content: "\ec59"; }
+
.si-codingninjas.si--color::before { color: #DD6620; }
+
.si-codingame::before { content: "\ec5a"; }
+
.si-codingame.si--color::before { color: #F2BB13; }
+
.si-codio::before { content: "\ec5b"; }
+
.si-codio.si--color::before { color: #4574E0; }
+
.si-coffeescript::before { content: "\ec5c"; }
+
.si-coffeescript.si--color::before { color: #2F2625; }
+
.si-coggle::before { content: "\ec5d"; }
+
.si-coggle.si--color::before { color: #9ED56B; }
+
.si-cognizant::before { content: "\ec5e"; }
+
.si-cognizant.si--color::before { color: #1A4CA1; }
+
.si-cohost::before { content: "\ec5f"; }
+
.si-cohost.si--color::before { color: #83254F; }
+
.si-coinbase::before { content: "\ec60"; }
+
.si-coinbase.si--color::before { color: #0052FF; }
+
.si-coinmarketcap::before { content: "\ec61"; }
+
.si-coinmarketcap.si--color::before { color: #17181B; }
+
.si-collaboraonline::before { content: "\ec62"; }
+
.si-collaboraonline.si--color::before { color: #5C2983; }
+
.si-comicfury::before { content: "\ec63"; }
+
.si-comicfury.si--color::before { color: #79BD42; }
+
.si-comma::before { content: "\ec64"; }
+
.si-comma.si--color::before { color: #51FF00; }
+
.si-commerzbank::before { content: "\ec65"; }
+
.si-commerzbank.si--color::before { color: #FFCC33; }
+
.si-commitlint::before { content: "\ec66"; }
+
.si-commitlint.si--color::before { color: #000000; }
+
.si-commodore::before { content: "\ec67"; }
+
.si-commodore.si--color::before { color: #1E2A4E; }
+
.si-commonlisp::before { content: "\ec68"; }
+
.si-commonlisp.si--color::before { color: #000000; }
+
.si-commonworkflowlanguage::before { content: "\ec69"; }
+
.si-commonworkflowlanguage.si--color::before { color: #B5314C; }
+
.si-compilerexplorer::before { content: "\ec6a"; }
+
.si-compilerexplorer.si--color::before { color: #67C52A; }
+
.si-composer::before { content: "\ec6b"; }
+
.si-composer.si--color::before { color: #885630; }
+
.si-comptia::before { content: "\ec6c"; }
+
.si-comptia.si--color::before { color: #C8202F; }
+
.si-comsol::before { content: "\ec6d"; }
+
.si-comsol.si--color::before { color: #368CCB; }
+
.si-conan::before { content: "\ec6e"; }
+
.si-conan.si--color::before { color: #6699CB; }
+
.si-concourse::before { content: "\ec6f"; }
+
.si-concourse.si--color::before { color: #3398DC; }
+
.si-condaforge::before { content: "\ec70"; }
+
.si-condaforge.si--color::before { color: #000000; }
+
.si-conekta::before { content: "\ec71"; }
+
.si-conekta.si--color::before { color: #0A1837; }
+
.si-confluence::before { content: "\ec72"; }
+
.si-confluence.si--color::before { color: #172B4D; }
+
.si-construct3::before { content: "\ec73"; }
+
.si-construct3.si--color::before { color: #00FFDA; }
+
.si-consul::before { content: "\ec74"; }
+
.si-consul.si--color::before { color: #F24C53; }
+
.si-contabo::before { content: "\ec75"; }
+
.si-contabo.si--color::before { color: #00AAEB; }
+
.si-contactlesspayment::before { content: "\ec76"; }
+
.si-contactlesspayment.si--color::before { color: #000000; }
+
.si-containerd::before { content: "\ec77"; }
+
.si-containerd.si--color::before { color: #575757; }
+
.si-contao::before { content: "\ec78"; }
+
.si-contao.si--color::before { color: #F47C00; }
+
.si-contentful::before { content: "\ec79"; }
+
.si-contentful.si--color::before { color: #2478CC; }
+
.si-contentstack::before { content: "\ec7a"; }
+
.si-contentstack.si--color::before { color: #E74C3D; }
+
.si-continente::before { content: "\ec7b"; }
+
.si-continente.si--color::before { color: #E31E24; }
+
.si-contributorcovenant::before { content: "\ec7c"; }
+
.si-contributorcovenant.si--color::before { color: #5E0D73; }
+
.si-conventionalcommits::before { content: "\ec7d"; }
+
.si-conventionalcommits.si--color::before { color: #FE5196; }
+
.si-convertio::before { content: "\ec7e"; }
+
.si-convertio.si--color::before { color: #FF3333; }
+
.si-cookiecutter::before { content: "\ec7f"; }
+
.si-cookiecutter.si--color::before { color: #D4AA00; }
+
.si-coolermaster::before { content: "\ec80"; }
+
.si-coolermaster.si--color::before { color: #1E1E28; }
+
.si-copaairlines::before { content: "\ec81"; }
+
.si-copaairlines.si--color::before { color: #0032A0; }
+
.si-coppel::before { content: "\ec82"; }
+
.si-coppel.si--color::before { color: #0266AE; }
+
.si-cora::before { content: "\ec83"; }
+
.si-cora.si--color::before { color: #E61845; }
+
.si-coreldraw::before { content: "\ec84"; }
+
.si-coreldraw.si--color::before { color: #000000; }
+
.si-coronaengine::before { content: "\ec85"; }
+
.si-coronaengine.si--color::before { color: #F96F29; }
+
.si-coronarenderer::before { content: "\ec86"; }
+
.si-coronarenderer.si--color::before { color: #E6502A; }
+
.si-corsair::before { content: "\ec87"; }
+
.si-corsair.si--color::before { color: #000000; }
+
.si-couchbase::before { content: "\ec88"; }
+
.si-couchbase.si--color::before { color: #EA2328; }
+
.si-counterstrike::before { content: "\ec89"; }
+
.si-counterstrike.si--color::before { color: #000000; }
+
.si-countingworkspro::before { content: "\ec8a"; }
+
.si-countingworkspro.si--color::before { color: #2E3084; }
+
.si-coursera::before { content: "\ec8b"; }
+
.si-coursera.si--color::before { color: #0056D2; }
+
.si-coveralls::before { content: "\ec8c"; }
+
.si-coveralls.si--color::before { color: #3F5767; }
+
.si-coze::before { content: "\ec8d"; }
+
.si-coze.si--color::before { color: #4D53E8; }
+
.si-cpanel::before { content: "\ec8e"; }
+
.si-cpanel.si--color::before { color: #FF6C2C; }
+
.si-craftcms::before { content: "\ec8f"; }
+
.si-craftcms.si--color::before { color: #E5422B; }
+
.si-craftsman::before { content: "\ec90"; }
+
.si-craftsman.si--color::before { color: #D6001C; }
+
.si-cratedb::before { content: "\ec91"; }
+
.si-cratedb.si--color::before { color: #009DC7; }
+
.si-crayon::before { content: "\ec92"; }
+
.si-crayon.si--color::before { color: #FF6A4C; }
+
.si-creality::before { content: "\ec93"; }
+
.si-creality.si--color::before { color: #000000; }
+
.si-createreactapp::before { content: "\ec94"; }
+
.si-createreactapp.si--color::before { color: #09D3AC; }
+
.si-creativecommons::before { content: "\ec95"; }
+
.si-creativecommons.si--color::before { color: #ED592F; }
+
.si-creativetechnology::before { content: "\ec96"; }
+
.si-creativetechnology.si--color::before { color: #000000; }
+
.si-credly::before { content: "\ec97"; }
+
.si-credly.si--color::before { color: #FF6B00; }
+
.si-crehana::before { content: "\ec98"; }
+
.si-crehana.si--color::before { color: #4B22F4; }
+
.si-crewunited::before { content: "\ec99"; }
+
.si-crewunited.si--color::before { color: #000000; }
+
.si-crewai::before { content: "\ec9a"; }
+
.si-crewai.si--color::before { color: #FF5A50; }
+
.si-criticalrole::before { content: "\ec9b"; }
+
.si-criticalrole.si--color::before { color: #000000; }
+
.si-crowdin::before { content: "\ec9c"; }
+
.si-crowdin.si--color::before { color: #2E3340; }
+
.si-crowdsource::before { content: "\ec9d"; }
+
.si-crowdsource.si--color::before { color: #4285F4; }
+
.si-crunchbase::before { content: "\ec9e"; }
+
.si-crunchbase.si--color::before { color: #0288D1; }
+
.si-crunchyroll::before { content: "\ec9f"; }
+
.si-crunchyroll.si--color::before { color: #F47521; }
+
.si-cryengine::before { content: "\eca0"; }
+
.si-cryengine.si--color::before { color: #000000; }
+
.si-cryptomator::before { content: "\eca1"; }
+
.si-cryptomator.si--color::before { color: #49B04A; }
+
.si-cryptpad::before { content: "\eca2"; }
+
.si-cryptpad.si--color::before { color: #0087FF; }
+
.si-crystal::before { content: "\eca3"; }
+
.si-crystal.si--color::before { color: #000000; }
+
.si-csdn::before { content: "\eca4"; }
+
.si-csdn.si--color::before { color: #FC5531; }
+
.si-css::before { content: "\eca5"; }
+
.si-css.si--color::before { color: #663399; }
+
.si-cssdesignawards::before { content: "\eca6"; }
+
.si-cssdesignawards.si--color::before { color: #280FEE; }
+
.si-cssmodules::before { content: "\eca7"; }
+
.si-cssmodules.si--color::before { color: #000000; }
+
.si-csswizardry::before { content: "\eca8"; }
+
.si-csswizardry.si--color::before { color: #F43059; }
+
.si-css3::before { content: "\eca9"; }
+
.si-css3.si--color::before { color: #1572B6; }
+
.si-cts::before { content: "\ecaa"; }
+
.si-cts.si--color::before { color: #E53236; }
+
.si-cucumber::before { content: "\ecab"; }
+
.si-cucumber.si--color::before { color: #23D96C; }
+
.si-cultura::before { content: "\ecac"; }
+
.si-cultura.si--color::before { color: #1D2C54; }
+
.si-curl::before { content: "\ecad"; }
+
.si-curl.si--color::before { color: #073551; }
+
.si-curseforge::before { content: "\ecae"; }
+
.si-curseforge.si--color::before { color: #F16436; }
+
.si-customink::before { content: "\ecaf"; }
+
.si-customink.si--color::before { color: #4051B5; }
+
.si-cyberdefenders::before { content: "\ecb0"; }
+
.si-cyberdefenders.si--color::before { color: #335EEA; }
+
.si-cycling74::before { content: "\ecb1"; }
+
.si-cycling74.si--color::before { color: #111111; }
+
.si-cypress::before { content: "\ecb2"; }
+
.si-cypress.si--color::before { color: #69D3A7; }
+
.si-cytoscapedotjs::before { content: "\ecb3"; }
+
.si-cytoscapedotjs.si--color::before { color: #F7DF1E; }
+
.si-d::before { content: "\ecb4"; }
+
.si-d.si--color::before { color: #B03931; }
+
.si-dedge::before { content: "\ecb5"; }
+
.si-dedge.si--color::before { color: #432975; }
+
.si-dwavesystems::before { content: "\ecb6"; }
+
.si-dwavesystems.si--color::before { color: #008CD7; }
+
.si-d3::before { content: "\ecb7"; }
+
.si-d3.si--color::before { color: #F9A03C; }
+
.si-dacia::before { content: "\ecb8"; }
+
.si-dacia.si--color::before { color: #646B52; }
+
.si-daf::before { content: "\ecb9"; }
+
.si-daf.si--color::before { color: #00529B; }
+
.si-dailydotdev::before { content: "\ecba"; }
+
.si-dailydotdev.si--color::before { color: #CE3DF3; }
+
.si-dailymotion::before { content: "\ecbb"; }
+
.si-dailymotion.si--color::before { color: #0A0A0A; }
+
.si-daisyui::before { content: "\ecbc"; }
+
.si-daisyui.si--color::before { color: #1AD1A5; }
+
.si-dapr::before { content: "\ecbd"; }
+
.si-dapr.si--color::before { color: #0D2192; }
+
.si-darkreader::before { content: "\ecbe"; }
+
.si-darkreader.si--color::before { color: #141E24; }
+
.si-dart::before { content: "\ecbf"; }
+
.si-dart.si--color::before { color: #0175C2; }
+
.si-darty::before { content: "\ecc0"; }
+
.si-darty.si--color::before { color: #EB1B23; }
+
.si-daserste::before { content: "\ecc1"; }
+
.si-daserste.si--color::before { color: #001A4B; }
+
.si-dash::before { content: "\ecc2"; }
+
.si-dash.si--color::before { color: #008DE4; }
+
.si-dashlane::before { content: "\ecc3"; }
+
.si-dashlane.si--color::before { color: #0E353D; }
+
.si-dask::before { content: "\ecc4"; }
+
.si-dask.si--color::before { color: #FC6E6B; }
+
.si-dassaultsystemes::before { content: "\ecc5"; }
+
.si-dassaultsystemes.si--color::before { color: #005386; }
+
.si-datadotai::before { content: "\ecc6"; }
+
.si-datadotai.si--color::before { color: #000000; }
+
.si-databricks::before { content: "\ecc7"; }
+
.si-databricks.si--color::before { color: #FF3621; }
+
.si-datacamp::before { content: "\ecc8"; }
+
.si-datacamp.si--color::before { color: #03EF62; }
+
.si-datadog::before { content: "\ecc9"; }
+
.si-datadog.si--color::before { color: #632CA6; }
+
.si-datagrip::before { content: "\ecca"; }
+
.si-datagrip.si--color::before { color: #000000; }
+
.si-dataiku::before { content: "\eccb"; }
+
.si-dataiku.si--color::before { color: #2AB1AC; }
+
.si-datastax::before { content: "\eccc"; }
+
.si-datastax.si--color::before { color: #000000; }
+
.si-datefns::before { content: "\eccd"; }
+
.si-datefns.si--color::before { color: #770C56; }
+
.si-datev::before { content: "\ecce"; }
+
.si-datev.si--color::before { color: #9BD547; }
+
.si-datocms::before { content: "\eccf"; }
+
.si-datocms.si--color::before { color: #FF7751; }
+
.si-datto::before { content: "\ecd0"; }
+
.si-datto.si--color::before { color: #199ED9; }
+
.si-davinciresolve::before { content: "\ecd1"; }
+
.si-davinciresolve.si--color::before { color: #233A51; }
+
.si-dazhongdianping::before { content: "\ecd2"; }
+
.si-dazhongdianping.si--color::before { color: #FF6633; }
+
.si-dazn::before { content: "\ecd3"; }
+
.si-dazn.si--color::before { color: #F8F8F5; }
+
.si-dbeaver::before { content: "\ecd4"; }
+
.si-dbeaver.si--color::before { color: #382923; }
+
.si-dblp::before { content: "\ecd5"; }
+
.si-dblp.si--color::before { color: #004F9F; }
+
.si-dbt::before { content: "\ecd6"; }
+
.si-dbt.si--color::before { color: #FF694B; }
+
.si-dcentertainment::before { content: "\ecd7"; }
+
.si-dcentertainment.si--color::before { color: #0078F0; }
+
.si-delonghi::before { content: "\ecd8"; }
+
.si-delonghi.si--color::before { color: #072240; }
+
.si-debian::before { content: "\ecd9"; }
+
.si-debian.si--color::before { color: #A81D33; }
+
.si-debridlink::before { content: "\ecda"; }
+
.si-debridlink.si--color::before { color: #264E70; }
+
.si-decapcms::before { content: "\ecdb"; }
+
.si-decapcms.si--color::before { color: #FF0082; }
+
.si-decentraland::before { content: "\ecdc"; }
+
.si-decentraland.si--color::before { color: #FF2D55; }
+
.si-deepcool::before { content: "\ecdd"; }
+
.si-deepcool.si--color::before { color: #068584; }
+
.si-deepgram::before { content: "\ecde"; }
+
.si-deepgram.si--color::before { color: #13EF93; }
+
.si-deepin::before { content: "\ecdf"; }
+
.si-deepin.si--color::before { color: #007CFF; }
+
.si-deepl::before { content: "\ece0"; }
+
.si-deepl.si--color::before { color: #0F2B46; }
+
.si-deepnote::before { content: "\ece1"; }
+
.si-deepnote.si--color::before { color: #3793EF; }
+
.si-deliveroo::before { content: "\ece2"; }
+
.si-deliveroo.si--color::before { color: #00CCBC; }
+
.si-dell::before { content: "\ece3"; }
+
.si-dell.si--color::before { color: #007DB8; }
+
.si-delphi::before { content: "\ece4"; }
+
.si-delphi.si--color::before { color: #E62431; }
+
.si-delta::before { content: "\ece5"; }
+
.si-delta.si--color::before { color: #003366; }
+
.si-deluge::before { content: "\ece6"; }
+
.si-deluge.si--color::before { color: #094491; }
+
.si-deno::before { content: "\ece7"; }
+
.si-deno.si--color::before { color: #70FFAF; }
+
.si-denon::before { content: "\ece8"; }
+
.si-denon.si--color::before { color: #0B131A; }
+
.si-dependabot::before { content: "\ece9"; }
+
.si-dependabot.si--color::before { color: #025E8C; }
+
.si-depositphotos::before { content: "\ecea"; }
+
.si-depositphotos.si--color::before { color: #000000; }
+
.si-derspiegel::before { content: "\eceb"; }
+
.si-derspiegel.si--color::before { color: #E64415; }
+
.si-deutschebahn::before { content: "\ecec"; }
+
.si-deutschebahn.si--color::before { color: #F01414; }
+
.si-deutschebank::before { content: "\eced"; }
+
.si-deutschebank.si--color::before { color: #0018A8; }
+
.si-deutschepost::before { content: "\ecee"; }
+
.si-deutschepost.si--color::before { color: #FFCC00; }
+
.si-deutschetelekom::before { content: "\ecef"; }
+
.si-deutschetelekom.si--color::before { color: #E20074; }
+
.si-deutschewelle::before { content: "\ecf0"; }
+
.si-deutschewelle.si--color::before { color: #05B2FC; }
+
.si-devdotto::before { content: "\ecf1"; }
+
.si-devdotto.si--color::before { color: #0A0A0A; }
+
.si-devbox::before { content: "\ecf2"; }
+
.si-devbox.si--color::before { color: #280459; }
+
.si-devexpress::before { content: "\ecf3"; }
+
.si-devexpress.si--color::before { color: #FF7200; }
+
.si-deviantart::before { content: "\ecf4"; }
+
.si-deviantart.si--color::before { color: #05CC47; }
+
.si-devpost::before { content: "\ecf5"; }
+
.si-devpost.si--color::before { color: #003E54; }
+
.si-devrant::before { content: "\ecf6"; }
+
.si-devrant.si--color::before { color: #F99A66; }
+
.si-dgraph::before { content: "\ecf7"; }
+
.si-dgraph.si--color::before { color: #E50695; }
+
.si-dhl::before { content: "\ecf8"; }
+
.si-dhl.si--color::before { color: #FFCC00; }
+
.si-diagramsdotnet::before { content: "\ecf9"; }
+
.si-diagramsdotnet.si--color::before { color: #F08705; }
+
.si-dialogflow::before { content: "\ecfa"; }
+
.si-dialogflow.si--color::before { color: #FF9800; }
+
.si-diaspora::before { content: "\ecfb"; }
+
.si-diaspora.si--color::before { color: #000000; }
+
.si-dictionarydotcom::before { content: "\ecfc"; }
+
.si-dictionarydotcom.si--color::before { color: #0049D7; }
+
.si-digg::before { content: "\ecfd"; }
+
.si-digg.si--color::before { color: #000000; }
+
.si-digikeyelectronics::before { content: "\ecfe"; }
+
.si-digikeyelectronics.si--color::before { color: #CC0000; }
+
.si-digitalocean::before { content: "\ecff"; }
+
.si-digitalocean.si--color::before { color: #0080FF; }
+
.si-dinersclub::before { content: "\ed00"; }
+
.si-dinersclub.si--color::before { color: #004C97; }
+
.si-dior::before { content: "\ed01"; }
+
.si-dior.si--color::before { color: #000000; }
+
.si-directus::before { content: "\ed02"; }
+
.si-directus.si--color::before { color: #263238; }
+
.si-discogs::before { content: "\ed03"; }
+
.si-discogs.si--color::before { color: #333333; }
+
.si-discord::before { content: "\ed04"; }
+
.si-discord.si--color::before { color: #5865F2; }
+
.si-discourse::before { content: "\ed05"; }
+
.si-discourse.si--color::before { color: #000000; }
+
.si-discover::before { content: "\ed06"; }
+
.si-discover.si--color::before { color: #FF6000; }
+
.si-disqus::before { content: "\ed07"; }
+
.si-disqus.si--color::before { color: #2E9FFF; }
+
.si-disroot::before { content: "\ed08"; }
+
.si-disroot.si--color::before { color: #50162D; }
+
.si-distrokid::before { content: "\ed09"; }
+
.si-distrokid.si--color::before { color: #231F20; }
+
.si-django::before { content: "\ed0a"; }
+
.si-django.si--color::before { color: #092E20; }
+
.si-dji::before { content: "\ed0b"; }
+
.si-dji.si--color::before { color: #000000; }
+
.si-dlib::before { content: "\ed0c"; }
+
.si-dlib.si--color::before { color: #008000; }
+
.si-dlna::before { content: "\ed0d"; }
+
.si-dlna.si--color::before { color: #48A842; }
+
.si-dm::before { content: "\ed0e"; }
+
.si-dm.si--color::before { color: #002878; }
+
.si-docker::before { content: "\ed0f"; }
+
.si-docker.si--color::before { color: #2496ED; }
+
.si-docsdotrs::before { content: "\ed10"; }
+
.si-docsdotrs.si--color::before { color: #000000; }
+
.si-docsify::before { content: "\ed11"; }
+
.si-docsify.si--color::before { color: #2ECE53; }
+
.si-doctrine::before { content: "\ed12"; }
+
.si-doctrine.si--color::before { color: #FC6A31; }
+
.si-docusaurus::before { content: "\ed13"; }
+
.si-docusaurus.si--color::before { color: #3ECC5F; }
+
.si-dogecoin::before { content: "\ed14"; }
+
.si-dogecoin.si--color::before { color: #C2A633; }
+
.si-doi::before { content: "\ed15"; }
+
.si-doi.si--color::before { color: #FAB70C; }
+
.si-dolby::before { content: "\ed16"; }
+
.si-dolby.si--color::before { color: #000000; }
+
.si-doordash::before { content: "\ed17"; }
+
.si-doordash.si--color::before { color: #FF3008; }
+
.si-dota2::before { content: "\ed18"; }
+
.si-dota2.si--color::before { color: #BF2E1A; }
+
.si-douban::before { content: "\ed19"; }
+
.si-douban.si--color::before { color: #2D963D; }
+
.si-doubanread::before { content: "\ed1a"; }
+
.si-doubanread.si--color::before { color: #389EAC; }
+
.si-dovecot::before { content: "\ed1b"; }
+
.si-dovecot.si--color::before { color: #54BCAB; }
+
.si-dovetail::before { content: "\ed1c"; }
+
.si-dovetail.si--color::before { color: #190041; }
+
.si-downdetector::before { content: "\ed1d"; }
+
.si-downdetector.si--color::before { color: #FF160A; }
+
.si-doxygen::before { content: "\ed1e"; }
+
.si-doxygen.si--color::before { color: #2C4AA8; }
+
.si-dpd::before { content: "\ed1f"; }
+
.si-dpd.si--color::before { color: #DC0032; }
+
.si-dragonframe::before { content: "\ed20"; }
+
.si-dragonframe.si--color::before { color: #D4911E; }
+
.si-draugiemdotlv::before { content: "\ed21"; }
+
.si-draugiemdotlv.si--color::before { color: #FF6600; }
+
.si-dreamstime::before { content: "\ed22"; }
+
.si-dreamstime.si--color::before { color: #50A901; }
+
.si-dribbble::before { content: "\ed23"; }
+
.si-dribbble.si--color::before { color: #EA4C89; }
+
.si-drizzle::before { content: "\ed24"; }
+
.si-drizzle.si--color::before { color: #C5F74F; }
+
.si-drone::before { content: "\ed25"; }
+
.si-drone.si--color::before { color: #212121; }
+
.si-drooble::before { content: "\ed26"; }
+
.si-drooble.si--color::before { color: #19C4BE; }
+
.si-dropbox::before { content: "\ed27"; }
+
.si-dropbox.si--color::before { color: #0061FF; }
+
.si-drupal::before { content: "\ed28"; }
+
.si-drupal.si--color::before { color: #0678BE; }
+
.si-dsautomobiles::before { content: "\ed29"; }
+
.si-dsautomobiles.si--color::before { color: #1D1717; }
+
.si-dts::before { content: "\ed2a"; }
+
.si-dts.si--color::before { color: #F98B2B; }
+
.si-dtube::before { content: "\ed2b"; }
+
.si-dtube.si--color::before { color: #F01A30; }
+
.si-ducati::before { content: "\ed2c"; }
+
.si-ducati.si--color::before { color: #CC0000; }
+
.si-duckdb::before { content: "\ed2d"; }
+
.si-duckdb.si--color::before { color: #FFF000; }
+
.si-duckduckgo::before { content: "\ed2e"; }
+
.si-duckduckgo.si--color::before { color: #DE5833; }
+
.si-dungeonsanddragons::before { content: "\ed2f"; }
+
.si-dungeonsanddragons.si--color::before { color: #ED1C24; }
+
.si-dunked::before { content: "\ed30"; }
+
.si-dunked.si--color::before { color: #2DA9D7; }
+
.si-dunzo::before { content: "\ed31"; }
+
.si-dunzo.si--color::before { color: #00D290; }
+
.si-duolingo::before { content: "\ed32"; }
+
.si-duolingo.si--color::before { color: #58CC02; }
+
.si-duplicati::before { content: "\ed33"; }
+
.si-duplicati.si--color::before { color: #1E3A8A; }
+
.si-dvc::before { content: "\ed34"; }
+
.si-dvc.si--color::before { color: #13ADC7; }
+
.si-dwm::before { content: "\ed35"; }
+
.si-dwm.si--color::before { color: #1177AA; }
+
.si-dynatrace::before { content: "\ed36"; }
+
.si-dynatrace.si--color::before { color: #1496FF; }
+
.si-edotleclerc::before { content: "\ed37"; }
+
.si-edotleclerc.si--color::before { color: #0066CC; }
+
.si-e3::before { content: "\ed38"; }
+
.si-e3.si--color::before { color: #E73D2F; }
+
.si-ea::before { content: "\ed39"; }
+
.si-ea.si--color::before { color: #000000; }
+
.si-eac::before { content: "\ed3a"; }
+
.si-eac.si--color::before { color: #000000; }
+
.si-eagle::before { content: "\ed3b"; }
+
.si-eagle.si--color::before { color: #0072EF; }
+
.si-easyeda::before { content: "\ed3c"; }
+
.si-easyeda.si--color::before { color: #1765F6; }
+
.si-easyjet::before { content: "\ed3d"; }
+
.si-easyjet.si--color::before { color: #FF6600; }
+
.si-ebay::before { content: "\ed3e"; }
+
.si-ebay.si--color::before { color: #E53238; }
+
.si-ebox::before { content: "\ed3f"; }
+
.si-ebox.si--color::before { color: #BE2323; }
+
.si-eclipseadoptium::before { content: "\ed40"; }
+
.si-eclipseadoptium.si--color::before { color: #FF1464; }
+
.si-eclipseche::before { content: "\ed41"; }
+
.si-eclipseche.si--color::before { color: #525C86; }
+
.si-eclipseide::before { content: "\ed42"; }
+
.si-eclipseide.si--color::before { color: #2C2255; }
+
.si-eclipsejetty::before { content: "\ed43"; }
+
.si-eclipsejetty.si--color::before { color: #FC390E; }
+
.si-eclipsemosquitto::before { content: "\ed44"; }
+
.si-eclipsemosquitto.si--color::before { color: #3C5280; }
+
.si-eclipsevertdotx::before { content: "\ed45"; }
+
.si-eclipsevertdotx.si--color::before { color: #782A90; }
+
.si-ecosia::before { content: "\ed46"; }
+
.si-ecosia.si--color::before { color: #008009; }
+
.si-ecovacs::before { content: "\ed47"; }
+
.si-ecovacs.si--color::before { color: #1E384B; }
+
.si-edeka::before { content: "\ed48"; }
+
.si-edeka.si--color::before { color: #1B66B3; }
+
.si-edgeimpulse::before { content: "\ed49"; }
+
.si-edgeimpulse.si--color::before { color: #3B47C2; }
+
.si-editorconfig::before { content: "\ed4a"; }
+
.si-editorconfig.si--color::before { color: #FEFEFE; }
+
.si-educative::before { content: "\ed4b"; }
+
.si-educative.si--color::before { color: #4951F5; }
+
.si-edx::before { content: "\ed4c"; }
+
.si-edx.si--color::before { color: #02262B; }
+
.si-egghead::before { content: "\ed4d"; }
+
.si-egghead.si--color::before { color: #FCFBFA; }
+
.si-egnyte::before { content: "\ed4e"; }
+
.si-egnyte.si--color::before { color: #00968F; }
+
.si-eight::before { content: "\ed4f"; }
+
.si-eight.si--color::before { color: #0054FF; }
+
.si-eightsleep::before { content: "\ed50"; }
+
.si-eightsleep.si--color::before { color: #262729; }
+
.si-ejs::before { content: "\ed51"; }
+
.si-ejs.si--color::before { color: #B4CA65; }
+
.si-elastic::before { content: "\ed52"; }
+
.si-elastic.si--color::before { color: #005571; }
+
.si-elasticcloud::before { content: "\ed53"; }
+
.si-elasticcloud.si--color::before { color: #005571; }
+
.si-elasticstack::before { content: "\ed54"; }
+
.si-elasticstack.si--color::before { color: #005571; }
+
.si-elasticsearch::before { content: "\ed55"; }
+
.si-elasticsearch.si--color::before { color: #005571; }
+
.si-elavon::before { content: "\ed56"; }
+
.si-elavon.si--color::before { color: #0C2074; }
+
.si-electron::before { content: "\ed57"; }
+
.si-electron.si--color::before { color: #47848F; }
+
.si-electronfiddle::before { content: "\ed58"; }
+
.si-electronfiddle.si--color::before { color: #E79537; }
+
.si-electronbuilder::before { content: "\ed59"; }
+
.si-electronbuilder.si--color::before { color: #000000; }
+
.si-elegoo::before { content: "\ed5a"; }
+
.si-elegoo.si--color::before { color: #2C3A83; }
+
.si-element::before { content: "\ed5b"; }
+
.si-element.si--color::before { color: #0DBD8B; }
+
.si-elementary::before { content: "\ed5c"; }
+
.si-elementary.si--color::before { color: #64BAFF; }
+
.si-elementor::before { content: "\ed5d"; }
+
.si-elementor.si--color::before { color: #92003B; }
+
.si-elevenlabs::before { content: "\ed5e"; }
+
.si-elevenlabs.si--color::before { color: #000000; }
+
.si-eleventy::before { content: "\ed5f"; }
+
.si-eleventy.si--color::before { color: #222222; }
+
.si-elgato::before { content: "\ed60"; }
+
.si-elgato.si--color::before { color: #101010; }
+
.si-elixir::before { content: "\ed61"; }
+
.si-elixir.si--color::before { color: #4B275F; }
+
.si-elm::before { content: "\ed62"; }
+
.si-elm.si--color::before { color: #1293D8; }
+
.si-elsevier::before { content: "\ed63"; }
+
.si-elsevier.si--color::before { color: #FF6C00; }
+
.si-embarcadero::before { content: "\ed64"; }
+
.si-embarcadero.si--color::before { color: #ED1F35; }
+
.si-embark::before { content: "\ed65"; }
+
.si-embark.si--color::before { color: #000000; }
+
.si-emberdotjs::before { content: "\ed66"; }
+
.si-emberdotjs.si--color::before { color: #E04E39; }
+
.si-emby::before { content: "\ed67"; }
+
.si-emby.si--color::before { color: #52B54B; }
+
.si-emirates::before { content: "\ed68"; }
+
.si-emirates.si--color::before { color: #D71921; }
+
.si-emlakjet::before { content: "\ed69"; }
+
.si-emlakjet.si--color::before { color: #0AE524; }
+
.si-empirekred::before { content: "\ed6a"; }
+
.si-empirekred.si--color::before { color: #72BE50; }
+
.si-endeavouros::before { content: "\ed6b"; }
+
.si-endeavouros.si--color::before { color: #7F7FFF; }
+
.si-engadget::before { content: "\ed6c"; }
+
.si-engadget.si--color::before { color: #000000; }
+
.si-enpass::before { content: "\ed6d"; }
+
.si-enpass.si--color::before { color: #0D47A1; }
+
.si-enterprisedb::before { content: "\ed6e"; }
+
.si-enterprisedb.si--color::before { color: #FF3E00; }
+
.si-envato::before { content: "\ed6f"; }
+
.si-envato.si--color::before { color: #87E64B; }
+
.si-envoyproxy::before { content: "\ed70"; }
+
.si-envoyproxy.si--color::before { color: #AC6199; }
+
.si-epel::before { content: "\ed71"; }
+
.si-epel.si--color::before { color: #FC0000; }
+
.si-epicgames::before { content: "\ed72"; }
+
.si-epicgames.si--color::before { color: #313131; }
+
.si-epson::before { content: "\ed73"; }
+
.si-epson.si--color::before { color: #003399; }
+
.si-equinixmetal::before { content: "\ed74"; }
+
.si-equinixmetal.si--color::before { color: #ED2224; }
+
.si-eraser::before { content: "\ed75"; }
+
.si-eraser.si--color::before { color: #EC2C40; }
+
.si-ericsson::before { content: "\ed76"; }
+
.si-ericsson.si--color::before { color: #0082F0; }
+
.si-erlang::before { content: "\ed77"; }
+
.si-erlang.si--color::before { color: #A90533; }
+
.si-erpnext::before { content: "\ed78"; }
+
.si-erpnext.si--color::before { color: #0089FF; }
+
.si-esbuild::before { content: "\ed79"; }
+
.si-esbuild.si--color::before { color: #FFCF00; }
+
.si-esea::before { content: "\ed7a"; }
+
.si-esea.si--color::before { color: #0E9648; }
+
.si-eslgaming::before { content: "\ed7b"; }
+
.si-eslgaming.si--color::before { color: #FFFF09; }
+
.si-eslint::before { content: "\ed7c"; }
+
.si-eslint.si--color::before { color: #4B32C3; }
+
.si-esotericsoftware::before { content: "\ed7d"; }
+
.si-esotericsoftware.si--color::before { color: #3FA9F5; }
+
.si-esphome::before { content: "\ed7e"; }
+
.si-esphome.si--color::before { color: #000000; }
+
.si-espressif::before { content: "\ed7f"; }
+
.si-espressif.si--color::before { color: #E7352C; }
+
.si-esri::before { content: "\ed80"; }
+
.si-esri.si--color::before { color: #000000; }
+
.si-etcd::before { content: "\ed81"; }
+
.si-etcd.si--color::before { color: #419EDA; }
+
.si-ethereum::before { content: "\ed82"; }
+
.si-ethereum.si--color::before { color: #3C3C3D; }
+
.si-ethers::before { content: "\ed83"; }
+
.si-ethers.si--color::before { color: #2535A0; }
+
.si-ethiopianairlines::before { content: "\ed84"; }
+
.si-ethiopianairlines.si--color::before { color: #648B1A; }
+
.si-etihadairways::before { content: "\ed85"; }
+
.si-etihadairways.si--color::before { color: #BD8B13; }
+
.si-etsy::before { content: "\ed86"; }
+
.si-etsy.si--color::before { color: #F16521; }
+
.si-europeanunion::before { content: "\ed87"; }
+
.si-europeanunion.si--color::before { color: #003399; }
+
.si-eventstore::before { content: "\ed88"; }
+
.si-eventstore.si--color::before { color: #5AB552; }
+
.si-eventbrite::before { content: "\ed89"; }
+
.si-eventbrite.si--color::before { color: #F05537; }
+
.si-evernote::before { content: "\ed8a"; }
+
.si-evernote.si--color::before { color: #00A82D; }
+
.si-excalidraw::before { content: "\ed8b"; }
+
.si-excalidraw.si--color::before { color: #6965DB; }
+
.si-exercism::before { content: "\ed8c"; }
+
.si-exercism.si--color::before { color: #009CAB; }
+
.si-exordo::before { content: "\ed8d"; }
+
.si-exordo.si--color::before { color: #DAA449; }
+
.si-exoscale::before { content: "\ed8e"; }
+
.si-exoscale.si--color::before { color: #DA291C; }
+
.si-expedia::before { content: "\ed8f"; }
+
.si-expedia.si--color::before { color: #191E3B; }
+
.si-expensify::before { content: "\ed90"; }
+
.si-expensify.si--color::before { color: #0185FF; }
+
.si-expertsexchange::before { content: "\ed91"; }
+
.si-expertsexchange.si--color::before { color: #00AAE7; }
+
.si-expo::before { content: "\ed92"; }
+
.si-expo.si--color::before { color: #1C2024; }
+
.si-express::before { content: "\ed93"; }
+
.si-express.si--color::before { color: #000000; }
+
.si-expressdotcom::before { content: "\ed94"; }
+
.si-expressdotcom.si--color::before { color: #000000; }
+
.si-expressvpn::before { content: "\ed95"; }
+
.si-expressvpn.si--color::before { color: #DA3940; }
+
.si-eyeem::before { content: "\ed96"; }
+
.si-eyeem.si--color::before { color: #000000; }
+
.si-fdroid::before { content: "\ed97"; }
+
.si-fdroid.si--color::before { color: #1976D2; }
+
.si-fsecure::before { content: "\ed98"; }
+
.si-fsecure.si--color::before { color: #00BAFF; }
+
.si-fsharp::before { content: "\ed99"; }
+
.si-fsharp.si--color::before { color: #378BBA; }
+
.si-f1::before { content: "\ed9a"; }
+
.si-f1.si--color::before { color: #E10600; }
+
.si-f5::before { content: "\ed9b"; }
+
.si-f5.si--color::before { color: #E4002B; }
+
.si-facebook::before { content: "\ed9c"; }
+
.si-facebook.si--color::before { color: #0866FF; }
+
.si-facebookgaming::before { content: "\ed9d"; }
+
.si-facebookgaming.si--color::before { color: #005FED; }
+
.si-facebooklive::before { content: "\ed9e"; }
+
.si-facebooklive.si--color::before { color: #ED4242; }
+
.si-faceit::before { content: "\ed9f"; }
+
.si-faceit.si--color::before { color: #FF5500; }
+
.si-facepunch::before { content: "\eda0"; }
+
.si-facepunch.si--color::before { color: #EC1C24; }
+
.si-fairphone::before { content: "\eda1"; }
+
.si-fairphone.si--color::before { color: #4495D1; }
+
.si-falco::before { content: "\eda2"; }
+
.si-falco.si--color::before { color: #00AEC7; }
+
.si-falcon::before { content: "\eda3"; }
+
.si-falcon.si--color::before { color: #F0AD4E; }
+
.si-fampay::before { content: "\eda4"; }
+
.si-fampay.si--color::before { color: #FFAD00; }
+
.si-fandango::before { content: "\eda5"; }
+
.si-fandango.si--color::before { color: #FF7300; }
+
.si-fandom::before { content: "\eda6"; }
+
.si-fandom.si--color::before { color: #FA005A; }
+
.si-fanfou::before { content: "\eda7"; }
+
.si-fanfou.si--color::before { color: #00CCFF; }
+
.si-fantom::before { content: "\eda8"; }
+
.si-fantom.si--color::before { color: #0928FF; }
+
.si-farcaster::before { content: "\eda9"; }
+
.si-farcaster.si--color::before { color: #855DCD; }
+
.si-fareharbor::before { content: "\edaa"; }
+
.si-fareharbor.si--color::before { color: #0A6ECE; }
+
.si-farfetch::before { content: "\edab"; }
+
.si-farfetch.si--color::before { color: #000000; }
+
.si-fastapi::before { content: "\edac"; }
+
.si-fastapi.si--color::before { color: #009688; }
+
.si-fastify::before { content: "\edad"; }
+
.si-fastify.si--color::before { color: #000000; }
+
.si-fastlane::before { content: "\edae"; }
+
.si-fastlane.si--color::before { color: #00F200; }
+
.si-fastly::before { content: "\edaf"; }
+
.si-fastly.si--color::before { color: #FF282D; }
+
.si-fathom::before { content: "\edb0"; }
+
.si-fathom.si--color::before { color: #9187FF; }
+
.si-fauna::before { content: "\edb1"; }
+
.si-fauna.si--color::before { color: #3A1AB6; }
+
.si-favro::before { content: "\edb2"; }
+
.si-favro.si--color::before { color: #512DA8; }
+
.si-fcc::before { content: "\edb3"; }
+
.si-fcc.si--color::before { color: #1C3664; }
+
.si-fedex::before { content: "\edb4"; }
+
.si-fedex.si--color::before { color: #4D148C; }
+
.si-fedora::before { content: "\edb5"; }
+
.si-fedora.si--color::before { color: #51A2DA; }
+
.si-feedly::before { content: "\edb6"; }
+
.si-feedly.si--color::before { color: #2BB24C; }
+
.si-ferrari::before { content: "\edb7"; }
+
.si-ferrari.si--color::before { color: #D40000; }
+
.si-ferrarinv::before { content: "\edb8"; }
+
.si-ferrarinv.si--color::before { color: #EB2E2C; }
+
.si-ferretdb::before { content: "\edb9"; }
+
.si-ferretdb.si--color::before { color: #042133; }
+
.si-ffmpeg::before { content: "\edba"; }
+
.si-ffmpeg.si--color::before { color: #007808; }
+
.si-fi::before { content: "\edbb"; }
+
.si-fi.si--color::before { color: #00B899; }
+
.si-fiat::before { content: "\edbc"; }
+
.si-fiat.si--color::before { color: #941711; }
+
.si-fidoalliance::before { content: "\edbd"; }
+
.si-fidoalliance.si--color::before { color: #FFBF3B; }
+
.si-fifa::before { content: "\edbe"; }
+
.si-fifa.si--color::before { color: #326295; }
+
.si-fig::before { content: "\edbf"; }
+
.si-fig.si--color::before { color: #000000; }
+
.si-figma::before { content: "\edc0"; }
+
.si-figma.si--color::before { color: #F24E1E; }
+
.si-figshare::before { content: "\edc1"; }
+
.si-figshare.si--color::before { color: #556472; }
+
.si-fila::before { content: "\edc2"; }
+
.si-fila.si--color::before { color: #002D62; }
+
.si-filament::before { content: "\edc3"; }
+
.si-filament.si--color::before { color: #FDAE4B; }
+
.si-filedotio::before { content: "\edc4"; }
+
.si-filedotio.si--color::before { color: #3D3C9D; }
+
.si-filen::before { content: "\edc5"; }
+
.si-filen.si--color::before { color: #000000; }
+
.si-files::before { content: "\edc6"; }
+
.si-files.si--color::before { color: #4285F4; }
+
.si-filezilla::before { content: "\edc7"; }
+
.si-filezilla.si--color::before { color: #BF0000; }
+
.si-fineco::before { content: "\edc8"; }
+
.si-fineco.si--color::before { color: #00549F; }
+
.si-fing::before { content: "\edc9"; }
+
.si-fing.si--color::before { color: #009AEE; }
+
.si-firebase::before { content: "\edca"; }
+
.si-firebase.si--color::before { color: #DD2C00; }
+
.si-firefish::before { content: "\edcb"; }
+
.si-firefish.si--color::before { color: #F07A5B; }
+
.si-fireflyiii::before { content: "\edcc"; }
+
.si-fireflyiii.si--color::before { color: #CD5029; }
+
.si-firefox::before { content: "\edcd"; }
+
.si-firefox.si--color::before { color: #FF7139; }
+
.si-firefoxbrowser::before { content: "\edce"; }
+
.si-firefoxbrowser.si--color::before { color: #FF7139; }
+
.si-fireship::before { content: "\edcf"; }
+
.si-fireship.si--color::before { color: #EB844E; }
+
.si-firewalla::before { content: "\edd0"; }
+
.si-firewalla.si--color::before { color: #C8332D; }
+
.si-first::before { content: "\edd1"; }
+
.si-first.si--color::before { color: #0066B3; }
+
.si-fishshell::before { content: "\edd2"; }
+
.si-fishshell.si--color::before { color: #34C534; }
+
.si-fitbit::before { content: "\edd3"; }
+
.si-fitbit.si--color::before { color: #00B0B9; }
+
.si-fivem::before { content: "\edd4"; }
+
.si-fivem.si--color::before { color: #F40552; }
+
.si-fiverr::before { content: "\edd5"; }
+
.si-fiverr.si--color::before { color: #1DBF73; }
+
.si-fizz::before { content: "\edd6"; }
+
.si-fizz.si--color::before { color: #00D672; }
+
.si-flashforge::before { content: "\edd7"; }
+
.si-flashforge.si--color::before { color: #000000; }
+
.si-flask::before { content: "\edd8"; }
+
.si-flask.si--color::before { color: #000000; }
+
.si-flat::before { content: "\edd9"; }
+
.si-flat.si--color::before { color: #3481FE; }
+
.si-flathub::before { content: "\edda"; }
+
.si-flathub.si--color::before { color: #000000; }
+
.si-flatpak::before { content: "\eddb"; }
+
.si-flatpak.si--color::before { color: #4A90D9; }
+
.si-flickr::before { content: "\eddc"; }
+
.si-flickr.si--color::before { color: #0063DC; }
+
.si-flightaware::before { content: "\eddd"; }
+
.si-flightaware.si--color::before { color: #19315B; }
+
.si-flipboard::before { content: "\edde"; }
+
.si-flipboard.si--color::before { color: #E12828; }
+
.si-flipkart::before { content: "\eddf"; }
+
.si-flipkart.si--color::before { color: #2874F0; }
+
.si-floatplane::before { content: "\ede0"; }
+
.si-floatplane.si--color::before { color: #00AEEF; }
+
.si-flood::before { content: "\ede1"; }
+
.si-flood.si--color::before { color: #4285F4; }
+
.si-fluentbit::before { content: "\ede2"; }
+
.si-fluentbit.si--color::before { color: #49BDA5; }
+
.si-fluentd::before { content: "\ede3"; }
+
.si-fluentd.si--color::before { color: #0E83C8; }
+
.si-fluke::before { content: "\ede4"; }
+
.si-fluke.si--color::before { color: #FFC20E; }
+
.si-flutter::before { content: "\ede5"; }
+
.si-flutter.si--color::before { color: #02569B; }
+
.si-flux::before { content: "\ede6"; }
+
.si-flux.si--color::before { color: #5468FF; }
+
.si-flydotio::before { content: "\ede7"; }
+
.si-flydotio.si--color::before { color: #24175B; }
+
.si-flyway::before { content: "\ede8"; }
+
.si-flyway.si--color::before { color: #CC0200; }
+
.si-fmod::before { content: "\ede9"; }
+
.si-fmod.si--color::before { color: #000000; }
+
.si-fnac::before { content: "\edea"; }
+
.si-fnac.si--color::before { color: #E1A925; }
+
.si-folium::before { content: "\edeb"; }
+
.si-folium.si--color::before { color: #77B829; }
+
.si-fonoma::before { content: "\edec"; }
+
.si-fonoma.si--color::before { color: #02B78F; }
+
.si-fontawesome::before { content: "\eded"; }
+
.si-fontawesome.si--color::before { color: #538DD7; }
+
.si-fontbase::before { content: "\edee"; }
+
.si-fontbase.si--color::before { color: #3D03A7; }
+
.si-fontforge::before { content: "\edef"; }
+
.si-fontforge.si--color::before { color: #F2712B; }
+
.si-foobar2000::before { content: "\edf0"; }
+
.si-foobar2000.si--color::before { color: #000000; }
+
.si-foodpanda::before { content: "\edf1"; }
+
.si-foodpanda.si--color::before { color: #D70F64; }
+
.si-ford::before { content: "\edf2"; }
+
.si-ford.si--color::before { color: #00274E; }
+
.si-forgejo::before { content: "\edf3"; }
+
.si-forgejo.si--color::before { color: #FB923C; }
+
.si-formik::before { content: "\edf4"; }
+
.si-formik.si--color::before { color: #2563EB; }
+
.si-formspree::before { content: "\edf5"; }
+
.si-formspree.si--color::before { color: #E5122E; }
+
.si-formstack::before { content: "\edf6"; }
+
.si-formstack.si--color::before { color: #21B573; }
+
.si-fortinet::before { content: "\edf7"; }
+
.si-fortinet.si--color::before { color: #EE3124; }
+
.si-fortran::before { content: "\edf8"; }
+
.si-fortran.si--color::before { color: #734F96; }
+
.si-fossa::before { content: "\edf9"; }
+
.si-fossa.si--color::before { color: #289E6D; }
+
.si-fossilscm::before { content: "\edfa"; }
+
.si-fossilscm.si--color::before { color: #548294; }
+
.si-foundryvirtualtabletop::before { content: "\edfb"; }
+
.si-foundryvirtualtabletop.si--color::before { color: #FE6A1F; }
+
.si-foursquare::before { content: "\edfc"; }
+
.si-foursquare.si--color::before { color: #3333FF; }
+
.si-fox::before { content: "\edfd"; }
+
.si-fox.si--color::before { color: #000000; }
+
.si-foxtel::before { content: "\edfe"; }
+
.si-foxtel.si--color::before { color: #EB5205; }
+
.si-fozzy::before { content: "\edff"; }
+
.si-fozzy.si--color::before { color: #F15B29; }
+
.si-framer::before { content: "\ee00"; }
+
.si-framer.si--color::before { color: #0055FF; }
+
.si-framework::before { content: "\ee01"; }
+
.si-framework.si--color::before { color: #000000; }
+
.si-framework7::before { content: "\ee02"; }
+
.si-framework7.si--color::before { color: #EE350F; }
+
.si-franprix::before { content: "\ee03"; }
+
.si-franprix.si--color::before { color: #EC6237; }
+
.si-frappe::before { content: "\ee04"; }
+
.si-frappe.si--color::before { color: #0089FF; }
+
.si-fraunhofergesellschaft::before { content: "\ee05"; }
+
.si-fraunhofergesellschaft.si--color::before { color: #179C7D; }
+
.si-freebsd::before { content: "\ee06"; }
+
.si-freebsd.si--color::before { color: #AB2B28; }
+
.si-freecad::before { content: "\ee07"; }
+
.si-freecad.si--color::before { color: #729FCF; }
+
.si-freecodecamp::before { content: "\ee08"; }
+
.si-freecodecamp.si--color::before { color: #0A0A23; }
+
.si-freedesktopdotorg::before { content: "\ee09"; }
+
.si-freedesktopdotorg.si--color::before { color: #3B80AE; }
+
.si-freelancer::before { content: "\ee0a"; }
+
.si-freelancer.si--color::before { color: #29B2FE; }
+
.si-freelancermap::before { content: "\ee0b"; }
+
.si-freelancermap.si--color::before { color: #00CFD6; }
+
.si-freenas::before { content: "\ee0c"; }
+
.si-freenas.si--color::before { color: #343434; }
+
.si-freenet::before { content: "\ee0d"; }
+
.si-freenet.si--color::before { color: #84BC34; }
+
.si-freepik::before { content: "\ee0e"; }
+
.si-freepik.si--color::before { color: #1273EB; }
+
.si-fresh::before { content: "\ee0f"; }
+
.si-fresh.si--color::before { color: #FFDB1E; }
+
.si-frontendmentor::before { content: "\ee10"; }
+
.si-frontendmentor.si--color::before { color: #3F54A3; }
+
.si-frontify::before { content: "\ee11"; }
+
.si-frontify.si--color::before { color: #2D3232; }
+
.si-fubo::before { content: "\ee12"; }
+
.si-fubo.si--color::before { color: #C83D1E; }
+
.si-fueler::before { content: "\ee13"; }
+
.si-fueler.si--color::before { color: #09C9E3; }
+
.si-fugacloud::before { content: "\ee14"; }
+
.si-fugacloud.si--color::before { color: #242F4B; }
+
.si-fujifilm::before { content: "\ee15"; }
+
.si-fujifilm.si--color::before { color: #FB0020; }
+
.si-fujitsu::before { content: "\ee16"; }
+
.si-fujitsu.si--color::before { color: #FF0000; }
+
.si-furaffinity::before { content: "\ee17"; }
+
.si-furaffinity.si--color::before { color: #36566F; }
+
.si-furrynetwork::before { content: "\ee18"; }
+
.si-furrynetwork.si--color::before { color: #2E75B4; }
+
.si-fusionauth::before { content: "\ee19"; }
+
.si-fusionauth.si--color::before { color: #F58320; }
+
.si-futurelearn::before { content: "\ee1a"; }
+
.si-futurelearn.si--color::before { color: #DE00A5; }
+
.si-fyle::before { content: "\ee1b"; }
+
.si-fyle.si--color::before { color: #FF2E63; }
+
.si-g2::before { content: "\ee1c"; }
+
.si-g2.si--color::before { color: #FF492C; }
+
.si-g2a::before { content: "\ee1d"; }
+
.si-g2a.si--color::before { color: #F05F00; }
+
.si-g2g::before { content: "\ee1e"; }
+
.si-g2g.si--color::before { color: #ED1C24; }
+
.si-galaxus::before { content: "\ee1f"; }
+
.si-galaxus.si--color::before { color: #000000; }
+
.si-gamedeveloper::before { content: "\ee20"; }
+
.si-gamedeveloper.si--color::before { color: #E60012; }
+
.si-gamejolt::before { content: "\ee21"; }
+
.si-gamejolt.si--color::before { color: #CCFF00; }
+
.si-gamescience::before { content: "\ee22"; }
+
.si-gamescience.si--color::before { color: #000000; }
+
.si-gamebanana::before { content: "\ee23"; }
+
.si-gamebanana.si--color::before { color: #FCEF40; }
+
.si-gameloft::before { content: "\ee24"; }
+
.si-gameloft.si--color::before { color: #000000; }
+
.si-gamemaker::before { content: "\ee25"; }
+
.si-gamemaker.si--color::before { color: #000000; }
+
.si-garmin::before { content: "\ee26"; }
+
.si-garmin.si--color::before { color: #000000; }
+
.si-gatling::before { content: "\ee27"; }
+
.si-gatling.si--color::before { color: #FF9E2A; }
+
.si-gatsby::before { content: "\ee28"; }
+
.si-gatsby.si--color::before { color: #663399; }
+
.si-gcore::before { content: "\ee29"; }
+
.si-gcore.si--color::before { color: #FF4C00; }
+
.si-gdal::before { content: "\ee2a"; }
+
.si-gdal.si--color::before { color: #5CAE58; }
+
.si-geeksforgeeks::before { content: "\ee2b"; }
+
.si-geeksforgeeks.si--color::before { color: #2F8D46; }
+
.si-generalelectric::before { content: "\ee2c"; }
+
.si-generalelectric.si--color::before { color: #0870D8; }
+
.si-generalmotors::before { content: "\ee2d"; }
+
.si-generalmotors.si--color::before { color: #0170CE; }
+
.si-genius::before { content: "\ee2e"; }
+
.si-genius.si--color::before { color: #FFFF64; }
+
.si-gentoo::before { content: "\ee2f"; }
+
.si-gentoo.si--color::before { color: #54487A; }
+
.si-geocaching::before { content: "\ee30"; }
+
.si-geocaching.si--color::before { color: #00874D; }
+
.si-geode::before { content: "\ee31"; }
+
.si-geode.si--color::before { color: #8D7ACF; }
+
.si-geopandas::before { content: "\ee32"; }
+
.si-geopandas.si--color::before { color: #139C5A; }
+
.si-gerrit::before { content: "\ee33"; }
+
.si-gerrit.si--color::before { color: #EEEEEE; }
+
.si-getx::before { content: "\ee34"; }
+
.si-getx.si--color::before { color: #8A2BE2; }
+
.si-ghost::before { content: "\ee35"; }
+
.si-ghost.si--color::before { color: #15171A; }
+
.si-ghostery::before { content: "\ee36"; }
+
.si-ghostery.si--color::before { color: #00AEF0; }
+
.si-gimp::before { content: "\ee37"; }
+
.si-gimp.si--color::before { color: #5C5543; }
+
.si-gin::before { content: "\ee38"; }
+
.si-gin.si--color::before { color: #008ECF; }
+
.si-giphy::before { content: "\ee39"; }
+
.si-giphy.si--color::before { color: #FF6666; }
+
.si-git::before { content: "\ee3a"; }
+
.si-git.si--color::before { color: #F05032; }
+
.si-gitextensions::before { content: "\ee3b"; }
+
.si-gitextensions.si--color::before { color: #212121; }
+
.si-gitforwindows::before { content: "\ee3c"; }
+
.si-gitforwindows.si--color::before { color: #80B3FF; }
+
.si-gitlfs::before { content: "\ee3d"; }
+
.si-gitlfs.si--color::before { color: #F64935; }
+
.si-gitbook::before { content: "\ee3e"; }
+
.si-gitbook.si--color::before { color: #BBDDE5; }
+
.si-gitconnected::before { content: "\ee3f"; }
+
.si-gitconnected.si--color::before { color: #2E69AE; }
+
.si-gitea::before { content: "\ee40"; }
+
.si-gitea.si--color::before { color: #609926; }
+
.si-gitee::before { content: "\ee41"; }
+
.si-gitee.si--color::before { color: #C71D23; }
+
.si-github::before { content: "\ee42"; }
+
.si-github.si--color::before { color: #181717; }
+
.si-githubactions::before { content: "\ee43"; }
+
.si-githubactions.si--color::before { color: #2088FF; }
+
.si-githubcopilot::before { content: "\ee44"; }
+
.si-githubcopilot.si--color::before { color: #000000; }
+
.si-githubpages::before { content: "\ee45"; }
+
.si-githubpages.si--color::before { color: #222222; }
+
.si-githubsponsors::before { content: "\ee46"; }
+
.si-githubsponsors.si--color::before { color: #EA4AAA; }
+
.si-gitignoredotio::before { content: "\ee47"; }
+
.si-gitignoredotio.si--color::before { color: #204ECF; }
+
.si-gitkraken::before { content: "\ee48"; }
+
.si-gitkraken.si--color::before { color: #179287; }
+
.si-gitlab::before { content: "\ee49"; }
+
.si-gitlab.si--color::before { color: #FC6D26; }
+
.si-gitpod::before { content: "\ee4a"; }
+
.si-gitpod.si--color::before { color: #FFAE33; }
+
.si-gitter::before { content: "\ee4b"; }
+
.si-gitter.si--color::before { color: #ED1965; }
+
.si-gldotinet::before { content: "\ee4c"; }
+
.si-gldotinet.si--color::before { color: #636363; }
+
.si-glassdoor::before { content: "\ee4d"; }
+
.si-glassdoor.si--color::before { color: #00A162; }
+
.si-glide::before { content: "\ee4e"; }
+
.si-glide.si--color::before { color: #18BED4; }
+
.si-glitch::before { content: "\ee4f"; }
+
.si-glitch.si--color::before { color: #3333FF; }
+
.si-globus::before { content: "\ee50"; }
+
.si-globus.si--color::before { color: #CA6201; }
+
.si-glovo::before { content: "\ee51"; }
+
.si-glovo.si--color::before { color: #F2CC38; }
+
.si-gltf::before { content: "\ee52"; }
+
.si-gltf.si--color::before { color: #87C540; }
+
.si-gmail::before { content: "\ee53"; }
+
.si-gmail.si--color::before { color: #EA4335; }
+
.si-gmx::before { content: "\ee54"; }
+
.si-gmx.si--color::before { color: #1C449B; }
+
.si-gnome::before { content: "\ee55"; }
+
.si-gnome.si--color::before { color: #4A86CF; }
+
.si-gnometerminal::before { content: "\ee56"; }
+
.si-gnometerminal.si--color::before { color: #241F31; }
+
.si-gnu::before { content: "\ee57"; }
+
.si-gnu.si--color::before { color: #A42E2B; }
+
.si-gnubash::before { content: "\ee58"; }
+
.si-gnubash.si--color::before { color: #4EAA25; }
+
.si-gnuemacs::before { content: "\ee59"; }
+
.si-gnuemacs.si--color::before { color: #7F5AB6; }
+
.si-gnuicecat::before { content: "\ee5a"; }
+
.si-gnuicecat.si--color::before { color: #002F5B; }
+
.si-gnuprivacyguard::before { content: "\ee5b"; }
+
.si-gnuprivacyguard.si--color::before { color: #0093DD; }
+
.si-gnusocial::before { content: "\ee5c"; }
+
.si-gnusocial.si--color::before { color: #A22430; }
+
.si-go::before { content: "\ee5d"; }
+
.si-go.si--color::before { color: #00ADD8; }
+
.si-gocd::before { content: "\ee5e"; }
+
.si-gocd.si--color::before { color: #94399E; }
+
.si-godaddy::before { content: "\ee5f"; }
+
.si-godaddy.si--color::before { color: #1BDBDB; }
+
.si-godotengine::before { content: "\ee60"; }
+
.si-godotengine.si--color::before { color: #478CBF; }
+
.si-gofundme::before { content: "\ee61"; }
+
.si-gofundme.si--color::before { color: #00B964; }
+
.si-gogdotcom::before { content: "\ee62"; }
+
.si-gogdotcom.si--color::before { color: #86328A; }
+
.si-gojek::before { content: "\ee63"; }
+
.si-gojek.si--color::before { color: #00AA13; }
+
.si-goland::before { content: "\ee64"; }
+
.si-goland.si--color::before { color: #000000; }
+
.si-goldenline::before { content: "\ee65"; }
+
.si-goldenline.si--color::before { color: #FFE005; }
+
.si-goldmansachs::before { content: "\ee66"; }
+
.si-goldmansachs.si--color::before { color: #7399C6; }
+
.si-goodreads::before { content: "\ee67"; }
+
.si-goodreads.si--color::before { color: #372213; }
+
.si-google::before { content: "\ee68"; }
+
.si-google.si--color::before { color: #4285F4; }
+
.si-googleadmob::before { content: "\ee69"; }
+
.si-googleadmob.si--color::before { color: #EA4335; }
+
.si-googleads::before { content: "\ee6a"; }
+
.si-googleads.si--color::before { color: #4285F4; }
+
.si-googleadsense::before { content: "\ee6b"; }
+
.si-googleadsense.si--color::before { color: #4285F4; }
+
.si-googleanalytics::before { content: "\ee6c"; }
+
.si-googleanalytics.si--color::before { color: #E37400; }
+
.si-googleappsscript::before { content: "\ee6d"; }
+
.si-googleappsscript.si--color::before { color: #4285F4; }
+
.si-googleassistant::before { content: "\ee6e"; }
+
.si-googleassistant.si--color::before { color: #4285F4; }
+
.si-googleauthenticator::before { content: "\ee6f"; }
+
.si-googleauthenticator.si--color::before { color: #4285F4; }
+
.si-googlebigquery::before { content: "\ee70"; }
+
.si-googlebigquery.si--color::before { color: #669DF6; }
+
.si-googlebigtable::before { content: "\ee71"; }
+
.si-googlebigtable.si--color::before { color: #669DF6; }
+
.si-googlecalendar::before { content: "\ee72"; }
+
.si-googlecalendar.si--color::before { color: #4285F4; }
+
.si-googlecampaignmanager360::before { content: "\ee73"; }
+
.si-googlecampaignmanager360.si--color::before { color: #1E8E3E; }
+
.si-googlecardboard::before { content: "\ee74"; }
+
.si-googlecardboard.si--color::before { color: #FF7143; }
+
.si-googlechat::before { content: "\ee75"; }
+
.si-googlechat.si--color::before { color: #34A853; }
+
.si-googlechrome::before { content: "\ee76"; }
+
.si-googlechrome.si--color::before { color: #4285F4; }
+
.si-googlechronicle::before { content: "\ee77"; }
+
.si-googlechronicle.si--color::before { color: #4285F4; }
+
.si-googleclassroom::before { content: "\ee78"; }
+
.si-googleclassroom.si--color::before { color: #0F9D58; }
+
.si-googlecloud::before { content: "\ee79"; }
+
.si-googlecloud.si--color::before { color: #4285F4; }
+
.si-googlecloudcomposer::before { content: "\ee7a"; }
+
.si-googlecloudcomposer.si--color::before { color: #4285F4; }
+
.si-googlecloudspanner::before { content: "\ee7b"; }
+
.si-googlecloudspanner.si--color::before { color: #4285F4; }
+
.si-googlecloudstorage::before { content: "\ee7c"; }
+
.si-googlecloudstorage.si--color::before { color: #AECBFA; }
+
.si-googlecolab::before { content: "\ee7d"; }
+
.si-googlecolab.si--color::before { color: #F9AB00; }
+
.si-googlecontaineroptimizedos::before { content: "\ee7e"; }
+
.si-googlecontaineroptimizedos.si--color::before { color: #4285F4; }
+
.si-googledatastudio::before { content: "\ee7f"; }
+
.si-googledatastudio.si--color::before { color: #669DF6; }
+
.si-googledataflow::before { content: "\ee80"; }
+
.si-googledataflow.si--color::before { color: #AECBFA; }
+
.si-googledataproc::before { content: "\ee81"; }
+
.si-googledataproc.si--color::before { color: #AECBFA; }
+
.si-googledisplayandvideo360::before { content: "\ee82"; }
+
.si-googledisplayandvideo360.si--color::before { color: #34A853; }
+
.si-googledocs::before { content: "\ee83"; }
+
.si-googledocs.si--color::before { color: #4285F4; }
+
.si-googledrive::before { content: "\ee84"; }
+
.si-googledrive.si--color::before { color: #4285F4; }
+
.si-googleearth::before { content: "\ee85"; }
+
.si-googleearth.si--color::before { color: #4285F4; }
+
.si-googleearthengine::before { content: "\ee86"; }
+
.si-googleearthengine.si--color::before { color: #4285F4; }
+
.si-googlefit::before { content: "\ee87"; }
+
.si-googlefit.si--color::before { color: #4285F4; }
+
.si-googlefonts::before { content: "\ee88"; }
+
.si-googlefonts.si--color::before { color: #4285F4; }
+
.si-googleforms::before { content: "\ee89"; }
+
.si-googleforms.si--color::before { color: #7248B9; }
+
.si-googlegemini::before { content: "\ee8a"; }
+
.si-googlegemini.si--color::before { color: #8E75B2; }
+
.si-googlehome::before { content: "\ee8b"; }
+
.si-googlehome.si--color::before { color: #4285F4; }
+
.si-googlekeep::before { content: "\ee8c"; }
+
.si-googlekeep.si--color::before { color: #FFBB00; }
+
.si-googlelens::before { content: "\ee8d"; }
+
.si-googlelens.si--color::before { color: #4285F4; }
+
.si-googlemaps::before { content: "\ee8e"; }
+
.si-googlemaps.si--color::before { color: #4285F4; }
+
.si-googlemarketingplatform::before { content: "\ee8f"; }
+
.si-googlemarketingplatform.si--color::before { color: #4285F4; }
+
.si-googlemeet::before { content: "\ee90"; }
+
.si-googlemeet.si--color::before { color: #00897B; }
+
.si-googlemessages::before { content: "\ee91"; }
+
.si-googlemessages.si--color::before { color: #1A73E8; }
+
.si-googlenearby::before { content: "\ee92"; }
+
.si-googlenearby.si--color::before { color: #4285F4; }
+
.si-googlenews::before { content: "\ee93"; }
+
.si-googlenews.si--color::before { color: #174EA6; }
+
.si-googlepay::before { content: "\ee94"; }
+
.si-googlepay.si--color::before { color: #4285F4; }
+
.si-googlephotos::before { content: "\ee95"; }
+
.si-googlephotos.si--color::before { color: #4285F4; }
+
.si-googleplay::before { content: "\ee96"; }
+
.si-googleplay.si--color::before { color: #414141; }
+
.si-googlepubsub::before { content: "\ee97"; }
+
.si-googlepubsub.si--color::before { color: #AECBFA; }
+
.si-googlescholar::before { content: "\ee98"; }
+
.si-googlescholar.si--color::before { color: #4285F4; }
+
.si-googlesearchconsole::before { content: "\ee99"; }
+
.si-googlesearchconsole.si--color::before { color: #458CF5; }
+
.si-googlesheets::before { content: "\ee9a"; }
+
.si-googlesheets.si--color::before { color: #34A853; }
+
.si-googleslides::before { content: "\ee9b"; }
+
.si-googleslides.si--color::before { color: #FBBC04; }
+
.si-googlestreetview::before { content: "\ee9c"; }
+
.si-googlestreetview.si--color::before { color: #FEC111; }
+
.si-googletagmanager::before { content: "\ee9d"; }
+
.si-googletagmanager.si--color::before { color: #246FDB; }
+
.si-googletasks::before { content: "\ee9e"; }
+
.si-googletasks.si--color::before { color: #2684FC; }
+
.si-googletranslate::before { content: "\ee9f"; }
+
.si-googletranslate.si--color::before { color: #4285F4; }
+
.si-gotomeeting::before { content: "\eea0"; }
+
.si-gotomeeting.si--color::before { color: #F68D2E; }
+
.si-grab::before { content: "\eea1"; }
+
.si-grab.si--color::before { color: #00B14F; }
+
.si-gradio::before { content: "\eea2"; }
+
.si-gradio.si--color::before { color: #F97316; }
+
.si-gradle::before { content: "\eea3"; }
+
.si-gradle.si--color::before { color: #02303A; }
+
.si-gradleplaypublisher::before { content: "\eea4"; }
+
.si-gradleplaypublisher.si--color::before { color: #82B816; }
+
.si-grafana::before { content: "\eea5"; }
+
.si-grafana.si--color::before { color: #F46800; }
+
.si-grammarly::before { content: "\eea6"; }
+
.si-grammarly.si--color::before { color: #027E6F; }
+
.si-grandfrais::before { content: "\eea7"; }
+
.si-grandfrais.si--color::before { color: #ED2D2F; }
+
.si-grapheneos::before { content: "\eea8"; }
+
.si-grapheneos.si--color::before { color: #0053A3; }
+
.si-graphite::before { content: "\eea9"; }
+
.si-graphite.si--color::before { color: #000000; }
+
.si-graphql::before { content: "\eeaa"; }
+
.si-graphql.si--color::before { color: #E10098; }
+
.si-grav::before { content: "\eeab"; }
+
.si-grav.si--color::before { color: #221E1F; }
+
.si-gravatar::before { content: "\eeac"; }
+
.si-gravatar.si--color::before { color: #1E8CBE; }
+
.si-graylog::before { content: "\eead"; }
+
.si-graylog.si--color::before { color: #FF3633; }
+
.si-greasyfork::before { content: "\eeae"; }
+
.si-greasyfork.si--color::before { color: #670000; }
+
.si-greatlearning::before { content: "\eeaf"; }
+
.si-greatlearning.si--color::before { color: #0E39A9; }
+
.si-greenhouse::before { content: "\eeb0"; }
+
.si-greenhouse.si--color::before { color: #24A47F; }
+
.si-greensock::before { content: "\eeb1"; }
+
.si-greensock.si--color::before { color: #88CE02; }
+
.si-griddotai::before { content: "\eeb2"; }
+
.si-griddotai.si--color::before { color: #78FF96; }
+
.si-gridsome::before { content: "\eeb3"; }
+
.si-gridsome.si--color::before { color: #00A672; }
+
.si-grocy::before { content: "\eeb4"; }
+
.si-grocy.si--color::before { color: #337AB7; }
+
.si-groupme::before { content: "\eeb5"; }
+
.si-groupme.si--color::before { color: #00AFF0; }
+
.si-groupon::before { content: "\eeb6"; }
+
.si-groupon.si--color::before { color: #53A318; }
+
.si-grubhub::before { content: "\eeb7"; }
+
.si-grubhub.si--color::before { color: #F63440; }
+
.si-grunt::before { content: "\eeb8"; }
+
.si-grunt.si--color::before { color: #FAA918; }
+
.si-gsk::before { content: "\eeb9"; }
+
.si-gsk.si--color::before { color: #F36633; }
+
.si-gsmarenadotcom::before { content: "\eeba"; }
+
.si-gsmarenadotcom.si--color::before { color: #D50000; }
+
.si-gstreamer::before { content: "\eebb"; }
+
.si-gstreamer.si--color::before { color: #FF3131; }
+
.si-gtk::before { content: "\eebc"; }
+
.si-gtk.si--color::before { color: #7FE719; }
+
.si-guangzhoumetro::before { content: "\eebd"; }
+
.si-guangzhoumetro.si--color::before { color: #C51935; }
+
.si-guilded::before { content: "\eebe"; }
+
.si-guilded.si--color::before { color: #F5C400; }
+
.si-guitarpro::before { content: "\eebf"; }
+
.si-guitarpro.si--color::before { color: #569FFF; }
+
.si-gulp::before { content: "\eec0"; }
+
.si-gulp.si--color::before { color: #CF4647; }
+
.si-gumroad::before { content: "\eec1"; }
+
.si-gumroad.si--color::before { color: #FF90E8; }
+
.si-gumtree::before { content: "\eec2"; }
+
.si-gumtree.si--color::before { color: #72EF36; }
+
.si-gunicorn::before { content: "\eec3"; }
+
.si-gunicorn.si--color::before { color: #499848; }
+
.si-gurobi::before { content: "\eec4"; }
+
.si-gurobi.si--color::before { color: #EE3524; }
+
.si-gusto::before { content: "\eec5"; }
+
.si-gusto.si--color::before { color: #F45D48; }
+
.si-gutenberg::before { content: "\eec6"; }
+
.si-gutenberg.si--color::before { color: #000000; }
+
.si-handm::before { content: "\eec7"; }
+
.si-handm.si--color::before { color: #E50010; }
+
.si-h3::before { content: "\eec8"; }
+
.si-h3.si--color::before { color: #1E54B7; }
+
.si-habr::before { content: "\eec9"; }
+
.si-habr.si--color::before { color: #65A3BE; }
+
.si-hackclub::before { content: "\eeca"; }
+
.si-hackclub.si--color::before { color: #EC3750; }
+
.si-hackthebox::before { content: "\eecb"; }
+
.si-hackthebox.si--color::before { color: #9FEF00; }
+
.si-hackaday::before { content: "\eecc"; }
+
.si-hackaday.si--color::before { color: #1A1A1A; }
+
.si-hackernoon::before { content: "\eecd"; }
+
.si-hackernoon.si--color::before { color: #00FE00; }
+
.si-hackerearth::before { content: "\eece"; }
+
.si-hackerearth.si--color::before { color: #2C3454; }
+
.si-hackerone::before { content: "\eecf"; }
+
.si-hackerone.si--color::before { color: #494649; }
+
.si-hackerrank::before { content: "\eed0"; }
+
.si-hackerrank.si--color::before { color: #00EA64; }
+
.si-hackster::before { content: "\eed1"; }
+
.si-hackster.si--color::before { color: #2E9FE6; }
+
.si-hal::before { content: "\eed2"; }
+
.si-hal.si--color::before { color: #B03532; }
+
.si-handlebarsdotjs::before { content: "\eed3"; }
+
.si-handlebarsdotjs.si--color::before { color: #000000; }
+
.si-handshake::before { content: "\eed4"; }
+
.si-handshake.si--color::before { color: #D3FB52; }
+
.si-handshake_protocol::before { content: "\eed5"; }
+
.si-handshake_protocol.si--color::before { color: #000000; }
+
.si-happycow::before { content: "\eed6"; }
+
.si-happycow.si--color::before { color: #7C4EC4; }
+
.si-harbor::before { content: "\eed7"; }
+
.si-harbor.si--color::before { color: #60B932; }
+
.si-harmonyos::before { content: "\eed8"; }
+
.si-harmonyos.si--color::before { color: #000000; }
+
.si-hashicorp::before { content: "\eed9"; }
+
.si-hashicorp.si--color::before { color: #000000; }
+
.si-hashnode::before { content: "\eeda"; }
+
.si-hashnode.si--color::before { color: #2962FF; }
+
.si-haskell::before { content: "\eedb"; }
+
.si-haskell.si--color::before { color: #5D4F85; }
+
.si-hasura::before { content: "\eedc"; }
+
.si-hasura.si--color::before { color: #1EB4D4; }
+
.si-hatenabookmark::before { content: "\eedd"; }
+
.si-hatenabookmark.si--color::before { color: #00A4DE; }
+
.si-haveibeenpwned::before { content: "\eede"; }
+
.si-haveibeenpwned.si--color::before { color: #2A6379; }
+
.si-haxe::before { content: "\eedf"; }
+
.si-haxe.si--color::before { color: #EA8220; }
+
.si-hbo::before { content: "\eee0"; }
+
.si-hbo.si--color::before { color: #000000; }
+
.si-hcl::before { content: "\eee1"; }
+
.si-hcl.si--color::before { color: #006BB6; }
+
.si-hdfcbank::before { content: "\eee2"; }
+
.si-hdfcbank.si--color::before { color: #004B8D; }
+
.si-headlessui::before { content: "\eee3"; }
+
.si-headlessui.si--color::before { color: #66E3FF; }
+
.si-headphonezone::before { content: "\eee4"; }
+
.si-headphonezone.si--color::before { color: #3C07FF; }
+
.si-headspace::before { content: "\eee5"; }
+
.si-headspace.si--color::before { color: #F47D31; }
+
.si-hearth::before { content: "\eee6"; }
+
.si-hearth.si--color::before { color: #A33035; }
+
.si-hearthisdotat::before { content: "\eee7"; }
+
.si-hearthisdotat.si--color::before { color: #000000; }
+
.si-hedera::before { content: "\eee8"; }
+
.si-hedera.si--color::before { color: #222222; }
+
.si-helium::before { content: "\eee9"; }
+
.si-helium.si--color::before { color: #0ACF83; }
+
.si-helix::before { content: "\eeea"; }
+
.si-helix.si--color::before { color: #281733; }
+
.si-hellofresh::before { content: "\eeeb"; }
+
.si-hellofresh.si--color::before { color: #99CC33; }
+
.si-hellyhansen::before { content: "\eeec"; }
+
.si-hellyhansen.si--color::before { color: #DA2128; }
+
.si-helm::before { content: "\eeed"; }
+
.si-helm.si--color::before { color: #0F1689; }
+
.si-helpscout::before { content: "\eeee"; }
+
.si-helpscout.si--color::before { color: #1292EE; }
+
.si-helpdesk::before { content: "\eeef"; }
+
.si-helpdesk.si--color::before { color: #2FC774; }
+
.si-hepsiemlak::before { content: "\eef0"; }
+
.si-hepsiemlak.si--color::before { color: #E1251B; }
+
.si-here::before { content: "\eef1"; }
+
.si-here.si--color::before { color: #00AFAA; }
+
.si-hermes::before { content: "\eef2"; }
+
.si-hermes.si--color::before { color: #0091CD; }
+
.si-heroku::before { content: "\eef3"; }
+
.si-heroku.si--color::before { color: #430098; }
+
.si-hetzner::before { content: "\eef4"; }
+
.si-hetzner.si--color::before { color: #D50C2D; }
+
.si-hevy::before { content: "\eef5"; }
+
.si-hevy.si--color::before { color: #000000; }
+
.si-hexlet::before { content: "\eef6"; }
+
.si-hexlet.si--color::before { color: #116EF5; }
+
.si-hexo::before { content: "\eef7"; }
+
.si-hexo.si--color::before { color: #0E83CD; }
+
.si-hey::before { content: "\eef8"; }
+
.si-hey.si--color::before { color: #5522FA; }
+
.si-hibob::before { content: "\eef9"; }
+
.si-hibob.si--color::before { color: #E42C51; }
+
.si-hibernate::before { content: "\eefa"; }
+
.si-hibernate.si--color::before { color: #59666C; }
+
.si-hilton::before { content: "\eefb"; }
+
.si-hilton.si--color::before { color: #231F20; }
+
.si-hiltonhotelsandresorts::before { content: "\eefc"; }
+
.si-hiltonhotelsandresorts.si--color::before { color: #1E4380; }
+
.si-hitachi::before { content: "\eefd"; }
+
.si-hitachi.si--color::before { color: #E60027; }
+
.si-hive::before { content: "\eefe"; }
+
.si-hive.si--color::before { color: #FF7A00; }
+
.si-hive_blockchain::before { content: "\eeff"; }
+
.si-hive_blockchain.si--color::before { color: #E31337; }
+
.si-hivemq::before { content: "\ef00"; }
+
.si-hivemq.si--color::before { color: #FFC000; }
+
.si-homarr::before { content: "\ef01"; }
+
.si-homarr.si--color::before { color: #FA5252; }
+
.si-homeassistant::before { content: "\ef02"; }
+
.si-homeassistant.si--color::before { color: #18BCF2; }
+
.si-homeassistantcommunitystore::before { content: "\ef03"; }
+
.si-homeassistantcommunitystore.si--color::before { color: #41BDF5; }
+
.si-homeadvisor::before { content: "\ef04"; }
+
.si-homeadvisor.si--color::before { color: #F68315; }
+
.si-homebrew::before { content: "\ef05"; }
+
.si-homebrew.si--color::before { color: #FBB040; }
+
.si-homebridge::before { content: "\ef06"; }
+
.si-homebridge.si--color::before { color: #491F59; }
+
.si-homepage::before { content: "\ef07"; }
+
.si-homepage.si--color::before { color: #009BD5; }
+
.si-homify::before { content: "\ef08"; }
+
.si-homify.si--color::before { color: #7DCDA3; }
+
.si-honda::before { content: "\ef09"; }
+
.si-honda.si--color::before { color: #E40521; }
+
.si-honey::before { content: "\ef0a"; }
+
.si-honey.si--color::before { color: #FF6801; }
+
.si-honeybadger::before { content: "\ef0b"; }
+
.si-honeybadger.si--color::before { color: #EA5937; }
+
.si-honeygain::before { content: "\ef0c"; }
+
.si-honeygain.si--color::before { color: #F9C900; }
+
.si-hono::before { content: "\ef0d"; }
+
.si-hono.si--color::before { color: #E36002; }
+
.si-honor::before { content: "\ef0e"; }
+
.si-honor.si--color::before { color: #000000; }
+
.si-hootsuite::before { content: "\ef0f"; }
+
.si-hootsuite.si--color::before { color: #FF4C46; }
+
.si-hoppscotch::before { content: "\ef10"; }
+
.si-hoppscotch.si--color::before { color: #09090B; }
+
.si-hostinger::before { content: "\ef11"; }
+
.si-hostinger.si--color::before { color: #673DE6; }
+
.si-hotelsdotcom::before { content: "\ef12"; }
+
.si-hotelsdotcom.si--color::before { color: #EF3346; }
+
.si-hotjar::before { content: "\ef13"; }
+
.si-hotjar.si--color::before { color: #FF3C00; }
+
.si-hotwire::before { content: "\ef14"; }
+
.si-hotwire.si--color::before { color: #FFE801; }
+
.si-houdini::before { content: "\ef15"; }
+
.si-houdini.si--color::before { color: #FF4713; }
+
.si-houzz::before { content: "\ef16"; }
+
.si-houzz.si--color::before { color: #4DBC15; }
+
.si-hp::before { content: "\ef17"; }
+
.si-hp.si--color::before { color: #0096D6; }
+
.si-hsbc::before { content: "\ef18"; }
+
.si-hsbc.si--color::before { color: #DB0011; }
+
.si-htc::before { content: "\ef19"; }
+
.si-htc.si--color::before { color: #A5CF4C; }
+
.si-htcvive::before { content: "\ef1a"; }
+
.si-htcvive.si--color::before { color: #00B2E3; }
+
.si-htmlacademy::before { content: "\ef1b"; }
+
.si-htmlacademy.si--color::before { color: #302683; }
+
.si-html5::before { content: "\ef1c"; }
+
.si-html5.si--color::before { color: #E34F26; }
+
.si-htmx::before { content: "\ef1d"; }
+
.si-htmx.si--color::before { color: #3366CC; }
+
.si-htop::before { content: "\ef1e"; }
+
.si-htop.si--color::before { color: #009020; }
+
.si-httpie::before { content: "\ef1f"; }
+
.si-httpie.si--color::before { color: #73DC8C; }
+
.si-huawei::before { content: "\ef20"; }
+
.si-huawei.si--color::before { color: #FF0000; }
+
.si-hubspot::before { content: "\ef21"; }
+
.si-hubspot.si--color::before { color: #FF7A59; }
+
.si-huggingface::before { content: "\ef22"; }
+
.si-huggingface.si--color::before { color: #FFD21E; }
+
.si-hugo::before { content: "\ef23"; }
+
.si-hugo.si--color::before { color: #FF4088; }
+
.si-humblebundle::before { content: "\ef24"; }
+
.si-humblebundle.si--color::before { color: #CC2929; }
+
.si-humhub::before { content: "\ef25"; }
+
.si-humhub.si--color::before { color: #1B8291; }
+
.si-hungryjacks::before { content: "\ef26"; }
+
.si-hungryjacks.si--color::before { color: #D0021B; }
+
.si-husqvarna::before { content: "\ef27"; }
+
.si-husqvarna.si--color::before { color: #273A60; }
+
.si-hyper::before { content: "\ef28"; }
+
.si-hyper.si--color::before { color: #000000; }
+
.si-hyperskill::before { content: "\ef29"; }
+
.si-hyperskill.si--color::before { color: #8C5AFF; }
+
.si-hyperx::before { content: "\ef2a"; }
+
.si-hyperx.si--color::before { color: #E21836; }
+
.si-hypothesis::before { content: "\ef2b"; }
+
.si-hypothesis.si--color::before { color: #BD1C2B; }
+
.si-hyprland::before { content: "\ef2c"; }
+
.si-hyprland.si--color::before { color: #58E1FF; }
+
.si-hyundai::before { content: "\ef2d"; }
+
.si-hyundai.si--color::before { color: #002C5E; }
+
.si-i18next::before { content: "\ef2e"; }
+
.si-i18next.si--color::before { color: #26A69A; }
+
.si-i3::before { content: "\ef2f"; }
+
.si-i3.si--color::before { color: #52C0FF; }
+
.si-iata::before { content: "\ef30"; }
+
.si-iata.si--color::before { color: #004E81; }
+
.si-ibeacon::before { content: "\ef31"; }
+
.si-ibeacon.si--color::before { color: #3D7EBB; }
+
.si-iberia::before { content: "\ef32"; }
+
.si-iberia.si--color::before { color: #D7192D; }
+
.si-iced::before { content: "\ef33"; }
+
.si-iced.si--color::before { color: #3645FF; }
+
.si-iceland::before { content: "\ef34"; }
+
.si-iceland.si--color::before { color: #CC092F; }
+
.si-icicibank::before { content: "\ef35"; }
+
.si-icicibank.si--color::before { color: #AE282E; }
+
.si-icinga::before { content: "\ef36"; }
+
.si-icinga.si--color::before { color: #06062C; }
+
.si-icloud::before { content: "\ef37"; }
+
.si-icloud.si--color::before { color: #3693F3; }
+
.si-icomoon::before { content: "\ef38"; }
+
.si-icomoon.si--color::before { color: #825794; }
+
.si-icon::before { content: "\ef39"; }
+
.si-icon.si--color::before { color: #31B8BB; }
+
.si-iconfinder::before { content: "\ef3a"; }
+
.si-iconfinder.si--color::before { color: #1A1B1F; }
+
.si-iconify::before { content: "\ef3b"; }
+
.si-iconify.si--color::before { color: #1769AA; }
+
.si-iconjar::before { content: "\ef3c"; }
+
.si-iconjar.si--color::before { color: #16A5F3; }
+
.si-icons8::before { content: "\ef3d"; }
+
.si-icons8.si--color::before { color: #1FB141; }
+
.si-icq::before { content: "\ef3e"; }
+
.si-icq.si--color::before { color: #24FF00; }
+
.si-ieee::before { content: "\ef3f"; }
+
.si-ieee.si--color::before { color: #00629B; }
+
.si-ifixit::before { content: "\ef40"; }
+
.si-ifixit.si--color::before { color: #0071CE; }
+
.si-ifood::before { content: "\ef41"; }
+
.si-ifood.si--color::before { color: #EA1D2C; }
+
.si-ifttt::before { content: "\ef42"; }
+
.si-ifttt.si--color::before { color: #000000; }
+
.si-igdb::before { content: "\ef43"; }
+
.si-igdb.si--color::before { color: #9147FF; }
+
.si-ign::before { content: "\ef44"; }
+
.si-ign.si--color::before { color: #BF1313; }
+
.si-iheartradio::before { content: "\ef45"; }
+
.si-iheartradio.si--color::before { color: #C6002B; }
+
.si-ikea::before { content: "\ef46"; }
+
.si-ikea.si--color::before { color: #0058A3; }
+
.si-iledefrancemobilites::before { content: "\ef47"; }
+
.si-iledefrancemobilites.si--color::before { color: #67B4E7; }
+
.si-imagedotsc::before { content: "\ef48"; }
+
.si-imagedotsc.si--color::before { color: #039CB2; }
+
.si-imagej::before { content: "\ef49"; }
+
.si-imagej.si--color::before { color: #00D8E0; }
+
.si-imdb::before { content: "\ef4a"; }
+
.si-imdb.si--color::before { color: #F5C518; }
+
.si-imessage::before { content: "\ef4b"; }
+
.si-imessage.si--color::before { color: #34DA50; }
+
.si-imgur::before { content: "\ef4c"; }
+
.si-imgur.si--color::before { color: #1BB76E; }
+
.si-immer::before { content: "\ef4d"; }
+
.si-immer.si--color::before { color: #00E7C3; }
+
.si-immich::before { content: "\ef4e"; }
+
.si-immich.si--color::before { color: #4250AF; }
+
.si-imou::before { content: "\ef4f"; }
+
.si-imou.si--color::before { color: #E89313; }
+
.si-improvmx::before { content: "\ef50"; }
+
.si-improvmx.si--color::before { color: #2FBEFF; }
+
.si-indeed::before { content: "\ef51"; }
+
.si-indeed.si--color::before { color: #003A9B; }
+
.si-indiansuperleague::before { content: "\ef52"; }
+
.si-indiansuperleague.si--color::before { color: #ED2F21; }
+
.si-indiehackers::before { content: "\ef53"; }
+
.si-indiehackers.si--color::before { color: #0E2439; }
+
.si-indigo::before { content: "\ef54"; }
+
.si-indigo.si--color::before { color: #09009B; }
+
.si-inductiveautomation::before { content: "\ef55"; }
+
.si-inductiveautomation.si--color::before { color: #445C6D; }
+
.si-inertia::before { content: "\ef56"; }
+
.si-inertia.si--color::before { color: #9553E9; }
+
.si-infiniti::before { content: "\ef57"; }
+
.si-infiniti.si--color::before { color: #020B24; }
+
.si-influxdb::before { content: "\ef58"; }
+
.si-influxdb.si--color::before { color: #22ADF6; }
+
.si-infomaniak::before { content: "\ef59"; }
+
.si-infomaniak.si--color::before { color: #0098FF; }
+
.si-infoq::before { content: "\ef5a"; }
+
.si-infoq.si--color::before { color: #2C6CAF; }
+
.si-informatica::before { content: "\ef5b"; }
+
.si-informatica.si--color::before { color: #FF4D00; }
+
.si-infosys::before { content: "\ef5c"; }
+
.si-infosys.si--color::before { color: #007CC3; }
+
.si-infracost::before { content: "\ef5d"; }
+
.si-infracost.si--color::before { color: #DB44B8; }
+
.si-ingress::before { content: "\ef5e"; }
+
.si-ingress.si--color::before { color: #783CBD; }
+
.si-inkdrop::before { content: "\ef5f"; }
+
.si-inkdrop.si--color::before { color: #7A78D7; }
+
.si-inkscape::before { content: "\ef60"; }
+
.si-inkscape.si--color::before { color: #000000; }
+
.si-inoreader::before { content: "\ef61"; }
+
.si-inoreader.si--color::before { color: #1875F3; }
+
.si-insomnia::before { content: "\ef62"; }
+
.si-insomnia.si--color::before { color: #4000BF; }
+
.si-inspire::before { content: "\ef63"; }
+
.si-inspire.si--color::before { color: #00E5FF; }
+
.si-insta360::before { content: "\ef64"; }
+
.si-insta360.si--color::before { color: #FFEE00; }
+
.si-instacart::before { content: "\ef65"; }
+
.si-instacart.si--color::before { color: #43B02A; }
+
.si-instagram::before { content: "\ef66"; }
+
.si-instagram.si--color::before { color: #FF0069; }
+
.si-instapaper::before { content: "\ef67"; }
+
.si-instapaper.si--color::before { color: #1F1F1F; }
+
.si-instatus::before { content: "\ef68"; }
+
.si-instatus.si--color::before { color: #4EE3C2; }
+
.si-instructables::before { content: "\ef69"; }
+
.si-instructables.si--color::before { color: #FABF15; }
+
.si-instructure::before { content: "\ef6a"; }
+
.si-instructure.si--color::before { color: #2A7BA0; }
+
.si-intel::before { content: "\ef6b"; }
+
.si-intel.si--color::before { color: #0071C5; }
+
.si-intellijidea::before { content: "\ef6c"; }
+
.si-intellijidea.si--color::before { color: #000000; }
+
.si-interactiondesignfoundation::before { content: "\ef6d"; }
+
.si-interactiondesignfoundation.si--color::before { color: #2B2B2B; }
+
.si-interactjs::before { content: "\ef6e"; }
+
.si-interactjs.si--color::before { color: #2599ED; }
+
.si-interbase::before { content: "\ef6f"; }
+
.si-interbase.si--color::before { color: #E62431; }
+
.si-intercom::before { content: "\ef70"; }
+
.si-intercom.si--color::before { color: #6AFDEF; }
+
.si-intermarche::before { content: "\ef71"; }
+
.si-intermarche.si--color::before { color: #E2001A; }
+
.si-internetarchive::before { content: "\ef72"; }
+
.si-internetarchive.si--color::before { color: #666666; }
+
.si-internetcomputer::before { content: "\ef73"; }
+
.si-internetcomputer.si--color::before { color: #3B00B9; }
+
.si-intigriti::before { content: "\ef74"; }
+
.si-intigriti.si--color::before { color: #161A36; }
+
.si-intuit::before { content: "\ef75"; }
+
.si-intuit.si--color::before { color: #236CFF; }
+
.si-invision::before { content: "\ef76"; }
+
.si-invision.si--color::before { color: #FF3366; }
+
.si-invoiceninja::before { content: "\ef77"; }
+
.si-invoiceninja.si--color::before { color: #000000; }
+
.si-iobroker::before { content: "\ef78"; }
+
.si-iobroker.si--color::before { color: #3399CC; }
+
.si-ionic::before { content: "\ef79"; }
+
.si-ionic.si--color::before { color: #3880FF; }
+
.si-ionos::before { content: "\ef7a"; }
+
.si-ionos.si--color::before { color: #003D8F; }
+
.si-ios::before { content: "\ef7b"; }
+
.si-ios.si--color::before { color: #000000; }
+
.si-iota::before { content: "\ef7c"; }
+
.si-iota.si--color::before { color: #131F37; }
+
.si-ipfs::before { content: "\ef7d"; }
+
.si-ipfs.si--color::before { color: #65C2CB; }
+
.si-iris::before { content: "\ef7e"; }
+
.si-iris.si--color::before { color: #25313C; }
+
.si-irobot::before { content: "\ef7f"; }
+
.si-irobot.si--color::before { color: #6CB86A; }
+
.si-isc2::before { content: "\ef80"; }
+
.si-isc2.si--color::before { color: #468145; }
+
.si-issuu::before { content: "\ef81"; }
+
.si-issuu.si--color::before { color: #F36D5D; }
+
.si-istio::before { content: "\ef82"; }
+
.si-istio.si--color::before { color: #466BB0; }
+
.si-itchdotio::before { content: "\ef83"; }
+
.si-itchdotio.si--color::before { color: #FA5C5C; }
+
.si-iterm2::before { content: "\ef84"; }
+
.si-iterm2.si--color::before { color: #000000; }
+
.si-itunes::before { content: "\ef85"; }
+
.si-itunes.si--color::before { color: #FB5BC5; }
+
.si-itvx::before { content: "\ef86"; }
+
.si-itvx.si--color::before { color: #DEEB52; }
+
.si-iveco::before { content: "\ef87"; }
+
.si-iveco.si--color::before { color: #1554FF; }
+
.si-jabber::before { content: "\ef88"; }
+
.si-jabber.si--color::before { color: #CC0000; }
+
.si-jaeger::before { content: "\ef89"; }
+
.si-jaeger.si--color::before { color: #66CFE3; }
+
.si-jaguar::before { content: "\ef8a"; }
+
.si-jaguar.si--color::before { color: #FFFFFF; }
+
.si-jamboard::before { content: "\ef8b"; }
+
.si-jamboard.si--color::before { color: #F37C20; }
+
.si-jameson::before { content: "\ef8c"; }
+
.si-jameson.si--color::before { color: #004027; }
+
.si-jamstack::before { content: "\ef8d"; }
+
.si-jamstack.si--color::before { color: #F0047F; }
+
.si-japanairlines::before { content: "\ef8e"; }
+
.si-japanairlines.si--color::before { color: #C00000; }
+
.si-jasmine::before { content: "\ef8f"; }
+
.si-jasmine.si--color::before { color: #8A4182; }
+
.si-javascript::before { content: "\ef90"; }
+
.si-javascript.si--color::before { color: #F7DF1E; }
+
.si-jbl::before { content: "\ef91"; }
+
.si-jbl.si--color::before { color: #FF3300; }
+
.si-jcb::before { content: "\ef92"; }
+
.si-jcb.si--color::before { color: #0B4EA2; }
+
.si-jeep::before { content: "\ef93"; }
+
.si-jeep.si--color::before { color: #000000; }
+
.si-jekyll::before { content: "\ef94"; }
+
.si-jekyll.si--color::before { color: #CC0000; }
+
.si-jellyfin::before { content: "\ef95"; }
+
.si-jellyfin.si--color::before { color: #00A4DC; }
+
.si-jenkins::before { content: "\ef96"; }
+
.si-jenkins.si--color::before { color: #D24939; }
+
.si-jest::before { content: "\ef97"; }
+
.si-jest.si--color::before { color: #C21325; }
+
.si-jet::before { content: "\ef98"; }
+
.si-jet.si--color::before { color: #FBBA00; }
+
.si-jetblue::before { content: "\ef99"; }
+
.si-jetblue.si--color::before { color: #001E59; }
+
.si-jetbrains::before { content: "\ef9a"; }
+
.si-jetbrains.si--color::before { color: #000000; }
+
.si-jetpackcompose::before { content: "\ef9b"; }
+
.si-jetpackcompose.si--color::before { color: #4285F4; }
+
.si-jfrog::before { content: "\ef9c"; }
+
.si-jfrog.si--color::before { color: #40BE46; }
+
.si-jfrogpipelines::before { content: "\ef9d"; }
+
.si-jfrogpipelines.si--color::before { color: #40BE46; }
+
.si-jhipster::before { content: "\ef9e"; }
+
.si-jhipster.si--color::before { color: #3E8ACC; }
+
.si-jinja::before { content: "\ef9f"; }
+
.si-jinja.si--color::before { color: #B41717; }
+
.si-jio::before { content: "\efa0"; }
+
.si-jio.si--color::before { color: #0A2885; }
+
.si-jira::before { content: "\efa1"; }
+
.si-jira.si--color::before { color: #0052CC; }
+
.si-jirasoftware::before { content: "\efa2"; }
+
.si-jirasoftware.si--color::before { color: #0052CC; }
+
.si-jitpack::before { content: "\efa3"; }
+
.si-jitpack.si--color::before { color: #000000; }
+
.si-jitsi::before { content: "\efa4"; }
+
.si-jitsi.si--color::before { color: #97979A; }
+
.si-johndeere::before { content: "\efa5"; }
+
.si-johndeere.si--color::before { color: #367C2B; }
+
.si-joomla::before { content: "\efa6"; }
+
.si-joomla.si--color::before { color: #5091CD; }
+
.si-joplin::before { content: "\efa7"; }
+
.si-joplin.si--color::before { color: #1071D3; }
+
.si-jordan::before { content: "\efa8"; }
+
.si-jordan.si--color::before { color: #000000; }
+
.si-jouav::before { content: "\efa9"; }
+
.si-jouav.si--color::before { color: #E1B133; }
+
.si-jovian::before { content: "\efaa"; }
+
.si-jovian.si--color::before { color: #0D61FF; }
+
.si-jpeg::before { content: "\efab"; }
+
.si-jpeg.si--color::before { color: #8A8A8A; }
+
.si-jquery::before { content: "\efac"; }
+
.si-jquery.si--color::before { color: #0769AD; }
+
.si-jrgroup::before { content: "\efad"; }
+
.si-jrgroup.si--color::before { color: #44AF35; }
+
.si-jsdelivr::before { content: "\efae"; }
+
.si-jsdelivr.si--color::before { color: #E84D3D; }
+
.si-jsfiddle::before { content: "\efaf"; }
+
.si-jsfiddle.si--color::before { color: #0084FF; }
+
.si-json::before { content: "\efb0"; }
+
.si-json.si--color::before { color: #000000; }
+
.si-jsonwebtokens::before { content: "\efb1"; }
+
.si-jsonwebtokens.si--color::before { color: #000000; }
+
.si-jsr::before { content: "\efb2"; }
+
.si-jsr.si--color::before { color: #F7DF1E; }
+
.si-jss::before { content: "\efb3"; }
+
.si-jss.si--color::before { color: #F7DF1E; }
+
.si-juce::before { content: "\efb4"; }
+
.si-juce.si--color::before { color: #8DC63F; }
+
.si-juejin::before { content: "\efb5"; }
+
.si-juejin.si--color::before { color: #007FFF; }
+
.si-juke::before { content: "\efb6"; }
+
.si-juke.si--color::before { color: #6CD74A; }
+
.si-julia::before { content: "\efb7"; }
+
.si-julia.si--color::before { color: #9558B2; }
+
.si-junipernetworks::before { content: "\efb8"; }
+
.si-junipernetworks.si--color::before { color: #84B135; }
+
.si-junit5::before { content: "\efb9"; }
+
.si-junit5.si--color::before { color: #25A162; }
+
.si-jupyter::before { content: "\efba"; }
+
.si-jupyter.si--color::before { color: #F37626; }
+
.si-justeat::before { content: "\efbb"; }
+
.si-justeat.si--color::before { color: #F36D00; }
+
.si-justgiving::before { content: "\efbc"; }
+
.si-justgiving.si--color::before { color: #AD29B6; }
+
.si-k3s::before { content: "\efbd"; }
+
.si-k3s.si--color::before { color: #FFC61C; }
+
.si-k6::before { content: "\efbe"; }
+
.si-k6.si--color::before { color: #7D64FF; }
+
.si-kaggle::before { content: "\efbf"; }
+
.si-kaggle.si--color::before { color: #20BEFF; }
+
.si-kagi::before { content: "\efc0"; }
+
.si-kagi.si--color::before { color: #FFB319; }
+
.si-kahoot::before { content: "\efc1"; }
+
.si-kahoot.si--color::before { color: #46178F; }
+
.si-kaios::before { content: "\efc2"; }
+
.si-kaios.si--color::before { color: #6F02B5; }
+
.si-kakao::before { content: "\efc3"; }
+
.si-kakao.si--color::before { color: #FFCD00; }
+
.si-kakaotalk::before { content: "\efc4"; }
+
.si-kakaotalk.si--color::before { color: #FFCD00; }
+
.si-kalilinux::before { content: "\efc5"; }
+
.si-kalilinux.si--color::before { color: #557C94; }
+
.si-kamailio::before { content: "\efc6"; }
+
.si-kamailio.si--color::before { color: #506365; }
+
.si-kaniko::before { content: "\efc7"; }
+
.si-kaniko.si--color::before { color: #FFA600; }
+
.si-karlsruherverkehrsverbund::before { content: "\efc8"; }
+
.si-karlsruherverkehrsverbund.si--color::before { color: #9B2321; }
+
.si-kasasmart::before { content: "\efc9"; }
+
.si-kasasmart.si--color::before { color: #4ACBD6; }
+
.si-kashflow::before { content: "\efca"; }
+
.si-kashflow.si--color::before { color: #E5426E; }
+
.si-kaspersky::before { content: "\efcb"; }
+
.si-kaspersky.si--color::before { color: #006D5C; }
+
.si-katana::before { content: "\efcc"; }
+
.si-katana.si--color::before { color: #000000; }
+
.si-kaufland::before { content: "\efcd"; }
+
.si-kaufland.si--color::before { color: #E10915; }
+
.si-kde::before { content: "\efce"; }
+
.si-kde.si--color::before { color: #1D99F3; }
+
.si-kdeplasma::before { content: "\efcf"; }
+
.si-kdeplasma.si--color::before { color: #1D99F3; }
+
.si-kdenlive::before { content: "\efd0"; }
+
.si-kdenlive.si--color::before { color: #527EB2; }
+
.si-kedro::before { content: "\efd1"; }
+
.si-kedro.si--color::before { color: #FFC900; }
+
.si-keenetic::before { content: "\efd2"; }
+
.si-keenetic.si--color::before { color: #009EE2; }
+
.si-keepachangelog::before { content: "\efd3"; }
+
.si-keepachangelog.si--color::before { color: #E05735; }
+
.si-keepassxc::before { content: "\efd4"; }
+
.si-keepassxc.si--color::before { color: #6CAC4D; }
+
.si-keeper::before { content: "\efd5"; }
+
.si-keeper.si--color::before { color: #FFC700; }
+
.si-keeweb::before { content: "\efd6"; }
+
.si-keeweb.si--color::before { color: #528BFF; }
+
.si-kentico::before { content: "\efd7"; }
+
.si-kentico.si--color::before { color: #F05A22; }
+
.si-keras::before { content: "\efd8"; }
+
.si-keras.si--color::before { color: #D00000; }
+
.si-keybase::before { content: "\efd9"; }
+
.si-keybase.si--color::before { color: #33A0FF; }
+
.si-keycdn::before { content: "\efda"; }
+
.si-keycdn.si--color::before { color: #047AED; }
+
.si-keycloak::before { content: "\efdb"; }
+
.si-keycloak.si--color::before { color: #4D4D4D; }
+
.si-keystone::before { content: "\efdc"; }
+
.si-keystone.si--color::before { color: #166BFF; }
+
.si-kfc::before { content: "\efdd"; }
+
.si-kfc.si--color::before { color: #F40027; }
+
.si-khanacademy::before { content: "\efde"; }
+
.si-khanacademy.si--color::before { color: #14BF96; }
+
.si-khronosgroup::before { content: "\efdf"; }
+
.si-khronosgroup.si--color::before { color: #CC3333; }
+
.si-kia::before { content: "\efe0"; }
+
.si-kia.si--color::before { color: #05141F; }
+
.si-kibana::before { content: "\efe1"; }
+
.si-kibana.si--color::before { color: #005571; }
+
.si-kicad::before { content: "\efe2"; }
+
.si-kicad.si--color::before { color: #314CB0; }
+
.si-kick::before { content: "\efe3"; }
+
.si-kick.si--color::before { color: #53FC19; }
+
.si-kickstarter::before { content: "\efe4"; }
+
.si-kickstarter.si--color::before { color: #05CE78; }
+
.si-kik::before { content: "\efe5"; }
+
.si-kik.si--color::before { color: #82BC23; }
+
.si-kingstontechnology::before { content: "\efe6"; }
+
.si-kingstontechnology.si--color::before { color: #000000; }
+
.si-kinopoisk::before { content: "\efe7"; }
+
.si-kinopoisk.si--color::before { color: #FF5500; }
+
.si-kinsta::before { content: "\efe8"; }
+
.si-kinsta.si--color::before { color: #5333ED; }
+
.si-kirby::before { content: "\efe9"; }
+
.si-kirby.si--color::before { color: #000000; }
+
.si-kit::before { content: "\efea"; }
+
.si-kit.si--color::before { color: #000000; }
+
.si-kitsu::before { content: "\efeb"; }
+
.si-kitsu.si--color::before { color: #FD755C; }
+
.si-klarna::before { content: "\efec"; }
+
.si-klarna.si--color::before { color: #FFB3C7; }
+
.si-kleinanzeigen::before { content: "\efed"; }
+
.si-kleinanzeigen.si--color::before { color: #1D4B00; }
+
.si-klm::before { content: "\efee"; }
+
.si-klm.si--color::before { color: #00A1DE; }
+
.si-klook::before { content: "\efef"; }
+
.si-klook.si--color::before { color: #FF5722; }
+
.si-knative::before { content: "\eff0"; }
+
.si-knative.si--color::before { color: #0865AD; }
+
.si-knexdotjs::before { content: "\eff1"; }
+
.si-knexdotjs.si--color::before { color: #D26B38; }
+
.si-knime::before { content: "\eff2"; }
+
.si-knime.si--color::before { color: #FDD800; }
+
.si-knip::before { content: "\eff3"; }
+
.si-knip.si--color::before { color: #F56E0F; }
+
.si-knowledgebase::before { content: "\eff4"; }
+
.si-knowledgebase.si--color::before { color: #9146FF; }
+
.si-known::before { content: "\eff5"; }
+
.si-known.si--color::before { color: #333333; }
+
.si-kofi::before { content: "\eff6"; }
+
.si-kofi.si--color::before { color: #FF6433; }
+
.si-koa::before { content: "\eff7"; }
+
.si-koa.si--color::before { color: #33333D; }
+
.si-koc::before { content: "\eff8"; }
+
.si-koc.si--color::before { color: #F9423A; }
+
.si-kodak::before { content: "\eff9"; }
+
.si-kodak.si--color::before { color: #ED0000; }
+
.si-kodi::before { content: "\effa"; }
+
.si-kodi.si--color::before { color: #17B2E7; }
+
.si-koenigsegg::before { content: "\effb"; }
+
.si-koenigsegg.si--color::before { color: #000000; }
+
.si-kofax::before { content: "\effc"; }
+
.si-kofax.si--color::before { color: #00558C; }
+
.si-komoot::before { content: "\effd"; }
+
.si-komoot.si--color::before { color: #6AA127; }
+
.si-konami::before { content: "\effe"; }
+
.si-konami.si--color::before { color: #B60014; }
+
.si-kong::before { content: "\efff"; }
+
.si-kong.si--color::before { color: #003459; }
+
.si-kongregate::before { content: "\f000"; }
+
.si-kongregate.si--color::before { color: #F04438; }
+
.si-konva::before { content: "\f001"; }
+
.si-konva.si--color::before { color: #0D83CD; }
+
.si-kotlin::before { content: "\f002"; }
+
.si-kotlin.si--color::before { color: #7F52FF; }
+
.si-koyeb::before { content: "\f003"; }
+
.si-koyeb.si--color::before { color: #121212; }
+
.si-krita::before { content: "\f004"; }
+
.si-krita.si--color::before { color: #3BABFF; }
+
.si-ktm::before { content: "\f005"; }
+
.si-ktm.si--color::before { color: #FF6600; }
+
.si-ktor::before { content: "\f006"; }
+
.si-ktor.si--color::before { color: #087CFA; }
+
.si-kuaishou::before { content: "\f007"; }
+
.si-kuaishou.si--color::before { color: #FF4906; }
+
.si-kubernetes::before { content: "\f008"; }
+
.si-kubernetes.si--color::before { color: #326CE5; }
+
.si-kubuntu::before { content: "\f009"; }
+
.si-kubuntu.si--color::before { color: #0079C1; }
+
.si-kucoin::before { content: "\f00a"; }
+
.si-kucoin.si--color::before { color: #01BC8D; }
+
.si-kueski::before { content: "\f00b"; }
+
.si-kueski.si--color::before { color: #0075FF; }
+
.si-kuma::before { content: "\f00c"; }
+
.si-kuma.si--color::before { color: #290B53; }
+
.si-kununu::before { content: "\f00d"; }
+
.si-kununu.si--color::before { color: #FFC62E; }
+
.si-kuula::before { content: "\f00e"; }
+
.si-kuula.si--color::before { color: #4092B4; }
+
.si-kx::before { content: "\f00f"; }
+
.si-kx.si--color::before { color: #101820; }
+
.si-kyocera::before { content: "\f010"; }
+
.si-kyocera.si--color::before { color: #DF0522; }
+
.si-lequipe::before { content: "\f011"; }
+
.si-lequipe.si--color::before { color: #E42829; }
+
.si-labview::before { content: "\f012"; }
+
.si-labview.si--color::before { color: #FFDB00; }
+
.si-lada::before { content: "\f013"; }
+
.si-lada.si--color::before { color: #ED6B21; }
+
.si-lamborghini::before { content: "\f014"; }
+
.si-lamborghini.si--color::before { color: #B6A272; }
+
.si-landrover::before { content: "\f015"; }
+
.si-landrover.si--color::before { color: #005A2B; }
+
.si-langchain::before { content: "\f016"; }
+
.si-langchain.si--color::before { color: #1C3C3C; }
+
.si-langflow::before { content: "\f017"; }
+
.si-langflow.si--color::before { color: #000000; }
+
.si-langgraph::before { content: "\f018"; }
+
.si-langgraph.si--color::before { color: #1C3C3C; }
+
.si-languagetool::before { content: "\f019"; }
+
.si-languagetool.si--color::before { color: #45A1FC; }
+
.si-lapce::before { content: "\f01a"; }
+
.si-lapce.si--color::before { color: #3B82F6; }
+
.si-laragon::before { content: "\f01b"; }
+
.si-laragon.si--color::before { color: #0E83CD; }
+
.si-laravel::before { content: "\f01c"; }
+
.si-laravel.si--color::before { color: #FF2D20; }
+
.si-laravelhorizon::before { content: "\f01d"; }
+
.si-laravelhorizon.si--color::before { color: #405263; }
+
.si-laravelnova::before { content: "\f01e"; }
+
.si-laravelnova.si--color::before { color: #252D37; }
+
.si-lastdotfm::before { content: "\f01f"; }
+
.si-lastdotfm.si--color::before { color: #D51007; }
+
.si-lastpass::before { content: "\f020"; }
+
.si-lastpass.si--color::before { color: #D32D27; }
+
.si-latex::before { content: "\f021"; }
+
.si-latex.si--color::before { color: #008080; }
+
.si-launchpad::before { content: "\f022"; }
+
.si-launchpad.si--color::before { color: #F8C300; }
+
.si-lazarus::before { content: "\f023"; }
+
.si-lazarus.si--color::before { color: #000000; }
+
.si-lazyvim::before { content: "\f024"; }
+
.si-lazyvim.si--color::before { color: #2E7DE9; }
+
.si-lbry::before { content: "\f025"; }
+
.si-lbry.si--color::before { color: #2F9176; }
+
.si-leaderprice::before { content: "\f026"; }
+
.si-leaderprice.si--color::before { color: #E50005; }
+
.si-leaflet::before { content: "\f027"; }
+
.si-leaflet.si--color::before { color: #199900; }
+
.si-leagueoflegends::before { content: "\f028"; }
+
.si-leagueoflegends.si--color::before { color: #C28F2C; }
+
.si-leanpub::before { content: "\f029"; }
+
.si-leanpub.si--color::before { color: #262425; }
+
.si-leetcode::before { content: "\f02a"; }
+
.si-leetcode.si--color::before { color: #FFA116; }
+
.si-lefthook::before { content: "\f02b"; }
+
.si-lefthook.si--color::before { color: #FF1E1E; }
+
.si-legacygames::before { content: "\f02c"; }
+
.si-legacygames.si--color::before { color: #144B9E; }
+
.si-leica::before { content: "\f02d"; }
+
.si-leica.si--color::before { color: #E20612; }
+
.si-lemmy::before { content: "\f02e"; }
+
.si-lemmy.si--color::before { color: #000000; }
+
.si-lemonsqueezy::before { content: "\f02f"; }
+
.si-lemonsqueezy.si--color::before { color: #FFC233; }
+
.si-lenovo::before { content: "\f030"; }
+
.si-lenovo.si--color::before { color: #E2231A; }
+
.si-lens::before { content: "\f031"; }
+
.si-lens.si--color::before { color: #3D90CE; }
+
.si-leptos::before { content: "\f032"; }
+
.si-leptos.si--color::before { color: #EF3939; }
+
.si-lerna::before { content: "\f033"; }
+
.si-lerna.si--color::before { color: #C084FC; }
+
.si-leroymerlin::before { content: "\f034"; }
+
.si-leroymerlin.si--color::before { color: #78BE20; }
+
.si-leslibraires::before { content: "\f035"; }
+
.si-leslibraires.si--color::before { color: #CF4A0C; }
+
.si-less::before { content: "\f036"; }
+
.si-less.si--color::before { color: #1D365D; }
+
.si-letsencrypt::before { content: "\f037"; }
+
.si-letsencrypt.si--color::before { color: #003A70; }
+
.si-letterboxd::before { content: "\f038"; }
+
.si-letterboxd.si--color::before { color: #202830; }
+
.si-levelsdotfyi::before { content: "\f039"; }
+
.si-levelsdotfyi.si--color::before { color: #788B95; }
+
.si-lg::before { content: "\f03a"; }
+
.si-lg.si--color::before { color: #A50034; }
+
.si-lining::before { content: "\f03b"; }
+
.si-lining.si--color::before { color: #C5242C; }
+
.si-liberadotchat::before { content: "\f03c"; }
+
.si-liberadotchat.si--color::before { color: #FF55DD; }
+
.si-liberapay::before { content: "\f03d"; }
+
.si-liberapay.si--color::before { color: #F6C915; }
+
.si-librariesdotio::before { content: "\f03e"; }
+
.si-librariesdotio.si--color::before { color: #337AB7; }
+
.si-librarything::before { content: "\f03f"; }
+
.si-librarything.si--color::before { color: #251A15; }
+
.si-libreoffice::before { content: "\f040"; }
+
.si-libreoffice.si--color::before { color: #18A303; }
+
.si-libreofficebase::before { content: "\f041"; }
+
.si-libreofficebase.si--color::before { color: #7324A9; }
+
.si-libreofficecalc::before { content: "\f042"; }
+
.si-libreofficecalc.si--color::before { color: #007C3C; }
+
.si-libreofficedraw::before { content: "\f043"; }
+
.si-libreofficedraw.si--color::before { color: #CB6D30; }
+
.si-libreofficeimpress::before { content: "\f044"; }
+
.si-libreofficeimpress.si--color::before { color: #D0120D; }
+
.si-libreofficemath::before { content: "\f045"; }
+
.si-libreofficemath.si--color::before { color: #C10018; }
+
.si-libreofficewriter::before { content: "\f046"; }
+
.si-libreofficewriter.si--color::before { color: #083FA6; }
+
.si-libretranslate::before { content: "\f047"; }
+
.si-libretranslate.si--color::before { color: #1565C0; }
+
.si-libretube::before { content: "\f048"; }
+
.si-libretube.si--color::before { color: #FF9699; }
+
.si-librewolf::before { content: "\f049"; }
+
.si-librewolf.si--color::before { color: #00ACFF; }
+
.si-libuv::before { content: "\f04a"; }
+
.si-libuv.si--color::before { color: #403C3D; }
+
.si-lichess::before { content: "\f04b"; }
+
.si-lichess.si--color::before { color: #000000; }
+
.si-lidl::before { content: "\f04c"; }
+
.si-lidl.si--color::before { color: #0050AA; }
+
.si-lifx::before { content: "\f04d"; }
+
.si-lifx.si--color::before { color: #000000; }
+
.si-lightburn::before { content: "\f04e"; }
+
.si-lightburn.si--color::before { color: #57182D; }
+
.si-lighthouse::before { content: "\f04f"; }
+
.si-lighthouse.si--color::before { color: #F44B21; }
+
.si-lightning::before { content: "\f050"; }
+
.si-lightning.si--color::before { color: #792EE5; }
+
.si-limesurvey::before { content: "\f051"; }
+
.si-limesurvey.si--color::before { color: #14AE5C; }
+
.si-line::before { content: "\f052"; }
+
.si-line.si--color::before { color: #00C300; }
+
.si-lineageos::before { content: "\f053"; }
+
.si-lineageos.si--color::before { color: #167C80; }
+
.si-linear::before { content: "\f054"; }
+
.si-linear.si--color::before { color: #5E6AD2; }
+
.si-linkerd::before { content: "\f055"; }
+
.si-linkerd.si--color::before { color: #2BEDA7; }
+
.si-linkfire::before { content: "\f056"; }
+
.si-linkfire.si--color::before { color: #FF3850; }
+
.si-linksys::before { content: "\f057"; }
+
.si-linksys.si--color::before { color: #000000; }
+
.si-linktree::before { content: "\f058"; }
+
.si-linktree.si--color::before { color: #43E55E; }
+
.si-linphone::before { content: "\f059"; }
+
.si-linphone.si--color::before { color: #FF5E00; }
+
.si-lintcode::before { content: "\f05a"; }
+
.si-lintcode.si--color::before { color: #13B4FF; }
+
.si-linux::before { content: "\f05b"; }
+
.si-linux.si--color::before { color: #FCC624; }
+
.si-linuxcontainers::before { content: "\f05c"; }
+
.si-linuxcontainers.si--color::before { color: #333333; }
+
.si-linuxfoundation::before { content: "\f05d"; }
+
.si-linuxfoundation.si--color::before { color: #003778; }
+
.si-linuxmint::before { content: "\f05e"; }
+
.si-linuxmint.si--color::before { color: #86BE43; }
+
.si-linuxprofessionalinstitute::before { content: "\f05f"; }
+
.si-linuxprofessionalinstitute.si--color::before { color: #FDC300; }
+
.si-linuxserver::before { content: "\f060"; }
+
.si-linuxserver.si--color::before { color: #DA3B8A; }
+
.si-lionair::before { content: "\f061"; }
+
.si-lionair.si--color::before { color: #ED3237; }
+
.si-liquibase::before { content: "\f062"; }
+
.si-liquibase.si--color::before { color: #2962FF; }
+
.si-listmonk::before { content: "\f063"; }
+
.si-listmonk.si--color::before { color: #0055D4; }
+
.si-lit::before { content: "\f064"; }
+
.si-lit.si--color::before { color: #324FFF; }
+
.si-litecoin::before { content: "\f065"; }
+
.si-litecoin.si--color::before { color: #A6A9AA; }
+
.si-literal::before { content: "\f066"; }
+
.si-literal.si--color::before { color: #000000; }
+
.si-litiengine::before { content: "\f067"; }
+
.si-litiengine.si--color::before { color: #00A5BC; }
+
.si-livechat::before { content: "\f068"; }
+
.si-livechat.si--color::before { color: #FF5100; }
+
.si-livejournal::before { content: "\f069"; }
+
.si-livejournal.si--color::before { color: #00B0EA; }
+
.si-livewire::before { content: "\f06a"; }
+
.si-livewire.si--color::before { color: #4E56A6; }
+
.si-llvm::before { content: "\f06b"; }
+
.si-llvm.si--color::before { color: #262D3A; }
+
.si-lmms::before { content: "\f06c"; }
+
.si-lmms.si--color::before { color: #10B146; }
+
.si-lobsters::before { content: "\f06d"; }
+
.si-lobsters.si--color::before { color: #AC130D; }
+
.si-local::before { content: "\f06e"; }
+
.si-local.si--color::before { color: #51BB7B; }
+
.si-lodash::before { content: "\f06f"; }
+
.si-lodash.si--color::before { color: #3492FF; }
+
.si-logitech::before { content: "\f070"; }
+
.si-logitech.si--color::before { color: #00B8FC; }
+
.si-logitechg::before { content: "\f071"; }
+
.si-logitechg.si--color::before { color: #00B8FC; }
+
.si-logmein::before { content: "\f072"; }
+
.si-logmein.si--color::before { color: #45B6F2; }
+
.si-logseq::before { content: "\f073"; }
+
.si-logseq.si--color::before { color: #85C8C8; }
+
.si-logstash::before { content: "\f074"; }
+
.si-logstash.si--color::before { color: #005571; }
+
.si-looker::before { content: "\f075"; }
+
.si-looker.si--color::before { color: #4285F4; }
+
.si-loom::before { content: "\f076"; }
+
.si-loom.si--color::before { color: #625DF5; }
+
.si-loop::before { content: "\f077"; }
+
.si-loop.si--color::before { color: #F29400; }
+
.si-loopback::before { content: "\f078"; }
+
.si-loopback.si--color::before { color: #3F5DFF; }
+
.si-lootcrate::before { content: "\f079"; }
+
.si-lootcrate.si--color::before { color: #1E1E1E; }
+
.si-lospec::before { content: "\f07a"; }
+
.si-lospec.si--color::before { color: #EAEAEA; }
+
.si-lotpolishairlines::before { content: "\f07b"; }
+
.si-lotpolishairlines.si--color::before { color: #11397E; }
+
.si-lottiefiles::before { content: "\f07c"; }
+
.si-lottiefiles.si--color::before { color: #00DDB3; }
+
.si-ltspice::before { content: "\f07d"; }
+
.si-ltspice.si--color::before { color: #900028; }
+
.si-lua::before { content: "\f07e"; }
+
.si-lua.si--color::before { color: #2C2D72; }
+
.si-lubuntu::before { content: "\f07f"; }
+
.si-lubuntu.si--color::before { color: #0068C8; }
+
.si-lucia::before { content: "\f080"; }
+
.si-lucia.si--color::before { color: #5F57FF; }
+
.si-lucid::before { content: "\f081"; }
+
.si-lucid.si--color::before { color: #282C33; }
+
.si-lucide::before { content: "\f082"; }
+
.si-lucide.si--color::before { color: #F56565; }
+
.si-ludwig::before { content: "\f083"; }
+
.si-ludwig.si--color::before { color: #FFFFFF; }
+
.si-lufthansa::before { content: "\f084"; }
+
.si-lufthansa.si--color::before { color: #05164D; }
+
.si-lumen::before { content: "\f085"; }
+
.si-lumen.si--color::before { color: #E74430; }
+
.si-lunacy::before { content: "\f086"; }
+
.si-lunacy.si--color::before { color: #179DE3; }
+
.si-lutris::before { content: "\f087"; }
+
.si-lutris.si--color::before { color: #FF9900; }
+
.si-lvgl::before { content: "\f088"; }
+
.si-lvgl.si--color::before { color: #343839; }
+
.si-lydia::before { content: "\f089"; }
+
.si-lydia.si--color::before { color: #0180FF; }
+
.si-lyft::before { content: "\f08a"; }
+
.si-lyft.si--color::before { color: #FF00BF; }
+
.si-maas::before { content: "\f08b"; }
+
.si-maas.si--color::before { color: #E95420; }
+
.si-macos::before { content: "\f08c"; }
+
.si-macos.si--color::before { color: #000000; }
+
.si-macpaw::before { content: "\f08d"; }
+
.si-macpaw.si--color::before { color: #000000; }
+
.si-macys::before { content: "\f08e"; }
+
.si-macys.si--color::before { color: #E21A2C; }
+
.si-magasinsu::before { content: "\f08f"; }
+
.si-magasinsu.si--color::before { color: #E71B34; }
+
.si-magic::before { content: "\f090"; }
+
.si-magic.si--color::before { color: #6851FF; }
+
.si-magisk::before { content: "\f091"; }
+
.si-magisk.si--color::before { color: #00AF9C; }
+
.si-mahindra::before { content: "\f092"; }
+
.si-mahindra.si--color::before { color: #DD052B; }
+
.si-maildotcom::before { content: "\f093"; }
+
.si-maildotcom.si--color::before { color: #004788; }
+
.si-maildotru::before { content: "\f094"; }
+
.si-maildotru.si--color::before { color: #005FF9; }
+
.si-mailboxdotorg::before { content: "\f095"; }
+
.si-mailboxdotorg.si--color::before { color: #76BB21; }
+
.si-mailchimp::before { content: "\f096"; }
+
.si-mailchimp.si--color::before { color: #FFE01B; }
+
.si-mailgun::before { content: "\f097"; }
+
.si-mailgun.si--color::before { color: #F06B66; }
+
.si-mailtrap::before { content: "\f098"; }
+
.si-mailtrap.si--color::before { color: #22D172; }
+
.si-mainwp::before { content: "\f099"; }
+
.si-mainwp.si--color::before { color: #7FB100; }
+
.si-majorleaguehacking::before { content: "\f09a"; }
+
.si-majorleaguehacking.si--color::before { color: #265A8F; }
+
.si-make::before { content: "\f09b"; }
+
.si-make.si--color::before { color: #6D00CC; }
+
.si-makerbot::before { content: "\f09c"; }
+
.si-makerbot.si--color::before { color: #FF1E0D; }
+
.si-malt::before { content: "\f09d"; }
+
.si-malt.si--color::before { color: #FC5757; }
+
.si-malwarebytes::before { content: "\f09e"; }
+
.si-malwarebytes.si--color::before { color: #0D3ECC; }
+
.si-mambaui::before { content: "\f09f"; }
+
.si-mambaui.si--color::before { color: #6D28D9; }
+
.si-mamp::before { content: "\f0a0"; }
+
.si-mamp.si--color::before { color: #02749C; }
+
.si-man::before { content: "\f0a1"; }
+
.si-man.si--color::before { color: #E40045; }
+
.si-manageiq::before { content: "\f0a2"; }
+
.si-manageiq.si--color::before { color: #EF2929; }
+
.si-manjaro::before { content: "\f0a3"; }
+
.si-manjaro.si--color::before { color: #35BF5C; }
+
.si-mantine::before { content: "\f0a4"; }
+
.si-mantine.si--color::before { color: #339AF0; }
+
.si-mapbox::before { content: "\f0a5"; }
+
.si-mapbox.si--color::before { color: #000000; }
+
.si-mapillary::before { content: "\f0a6"; }
+
.si-mapillary.si--color::before { color: #00AF66; }
+
.si-maplibre::before { content: "\f0a7"; }
+
.si-maplibre.si--color::before { color: #396CB2; }
+
.si-maptiler::before { content: "\f0a8"; }
+
.si-maptiler.si--color::before { color: #323357; }
+
.si-mariadb::before { content: "\f0a9"; }
+
.si-mariadb.si--color::before { color: #003545; }
+
.si-mariadbfoundation::before { content: "\f0aa"; }
+
.si-mariadbfoundation.si--color::before { color: #1F305F; }
+
.si-markdown::before { content: "\f0ab"; }
+
.si-markdown.si--color::before { color: #000000; }
+
.si-marko::before { content: "\f0ac"; }
+
.si-marko.si--color::before { color: #2596BE; }
+
.si-marriott::before { content: "\f0ad"; }
+
.si-marriott.si--color::before { color: #A70023; }
+
.si-marvelapp::before { content: "\f0ae"; }
+
.si-marvelapp.si--color::before { color: #1FB6FF; }
+
.si-maserati::before { content: "\f0af"; }
+
.si-maserati.si--color::before { color: #0C2340; }
+
.si-mastercard::before { content: "\f0b0"; }
+
.si-mastercard.si--color::before { color: #EB001B; }
+
.si-mastercomfig::before { content: "\f0b1"; }
+
.si-mastercomfig.si--color::before { color: #009688; }
+
.si-mastodon::before { content: "\f0b2"; }
+
.si-mastodon.si--color::before { color: #6364FF; }
+
.si-materialdesign::before { content: "\f0b3"; }
+
.si-materialdesign.si--color::before { color: #757575; }
+
.si-materialdesignicons::before { content: "\f0b4"; }
+
.si-materialdesignicons.si--color::before { color: #2196F3; }
+
.si-materialformkdocs::before { content: "\f0b5"; }
+
.si-materialformkdocs.si--color::before { color: #526CFE; }
+
.si-matillion::before { content: "\f0b6"; }
+
.si-matillion.si--color::before { color: #19E57F; }
+
.si-matomo::before { content: "\f0b7"; }
+
.si-matomo.si--color::before { color: #3152A0; }
+
.si-matrix::before { content: "\f0b8"; }
+
.si-matrix.si--color::before { color: #000000; }
+
.si-matterdotjs::before { content: "\f0b9"; }
+
.si-matterdotjs.si--color::before { color: #4B5562; }
+
.si-mattermost::before { content: "\f0ba"; }
+
.si-mattermost.si--color::before { color: #0058CC; }
+
.si-matternet::before { content: "\f0bb"; }
+
.si-matternet.si--color::before { color: #261C29; }
+
.si-mautic::before { content: "\f0bc"; }
+
.si-mautic.si--color::before { color: #4E5E9E; }
+
.si-max::before { content: "\f0bd"; }
+
.si-max.si--color::before { color: #525252; }
+
.si-maxplanckgesellschaft::before { content: "\f0be"; }
+
.si-maxplanckgesellschaft.si--color::before { color: #006C66; }
+
.si-maytag::before { content: "\f0bf"; }
+
.si-maytag.si--color::before { color: #002E5F; }
+
.si-mazda::before { content: "\f0c0"; }
+
.si-mazda.si--color::before { color: #101010; }
+
.si-maze::before { content: "\f0c1"; }
+
.si-maze.si--color::before { color: #000000; }
+
.si-mcafee::before { content: "\f0c2"; }
+
.si-mcafee.si--color::before { color: #C01818; }
+
.si-mcdonalds::before { content: "\f0c3"; }
+
.si-mcdonalds.si--color::before { color: #FBC817; }
+
.si-mclaren::before { content: "\f0c4"; }
+
.si-mclaren.si--color::before { color: #FF0000; }
+
.si-mdbook::before { content: "\f0c5"; }
+
.si-mdbook.si--color::before { color: #000000; }
+
.si-mdnwebdocs::before { content: "\f0c6"; }
+
.si-mdnwebdocs.si--color::before { color: #000000; }
+
.si-mdx::before { content: "\f0c7"; }
+
.si-mdx.si--color::before { color: #1B1F24; }
+
.si-mealie::before { content: "\f0c8"; }
+
.si-mealie.si--color::before { color: #E58325; }
+
.si-mediafire::before { content: "\f0c9"; }
+
.si-mediafire.si--color::before { color: #1299F3; }
+
.si-mediamarkt::before { content: "\f0ca"; }
+
.si-mediamarkt.si--color::before { color: #DF0000; }
+
.si-mediapipe::before { content: "\f0cb"; }
+
.si-mediapipe.si--color::before { color: #0097A7; }
+
.si-mediatek::before { content: "\f0cc"; }
+
.si-mediatek.si--color::before { color: #EC9430; }
+
.si-medibangpaint::before { content: "\f0cd"; }
+
.si-medibangpaint.si--color::before { color: #00DBDE; }
+
.si-medium::before { content: "\f0ce"; }
+
.si-medium.si--color::before { color: #000000; }
+
.si-medusa::before { content: "\f0cf"; }
+
.si-medusa.si--color::before { color: #000000; }
+
.si-meetup::before { content: "\f0d0"; }
+
.si-meetup.si--color::before { color: #ED1C40; }
+
.si-mega::before { content: "\f0d1"; }
+
.si-mega.si--color::before { color: #D9272E; }
+
.si-meilisearch::before { content: "\f0d2"; }
+
.si-meilisearch.si--color::before { color: #FF5CAA; }
+
.si-meituan::before { content: "\f0d3"; }
+
.si-meituan.si--color::before { color: #FFD100; }
+
.si-meizu::before { content: "\f0d4"; }
+
.si-meizu.si--color::before { color: #FF4132; }
+
.si-mendeley::before { content: "\f0d5"; }
+
.si-mendeley.si--color::before { color: #9D1620; }
+
.si-mentorcruise::before { content: "\f0d6"; }
+
.si-mentorcruise.si--color::before { color: #172E59; }
+
.si-mercadopago::before { content: "\f0d7"; }
+
.si-mercadopago.si--color::before { color: #00B1EA; }
+
.si-mercedes::before { content: "\f0d8"; }
+
.si-mercedes.si--color::before { color: #242424; }
+
.si-merck::before { content: "\f0d9"; }
+
.si-merck.si--color::before { color: #007A73; }
+
.si-mercurial::before { content: "\f0da"; }
+
.si-mercurial.si--color::before { color: #999999; }
+
.si-mermaid::before { content: "\f0db"; }
+
.si-mermaid.si--color::before { color: #FF3670; }
+
.si-messenger::before { content: "\f0dc"; }
+
.si-messenger.si--color::before { color: #00B2FF; }
+
.si-meta::before { content: "\f0dd"; }
+
.si-meta.si--color::before { color: #0467DF; }
+
.si-metabase::before { content: "\f0de"; }
+
.si-metabase.si--color::before { color: #509EE3; }
+
.si-metacritic::before { content: "\f0df"; }
+
.si-metacritic.si--color::before { color: #000000; }
+
.si-metafilter::before { content: "\f0e0"; }
+
.si-metafilter.si--color::before { color: #065A8F; }
+
.si-metasploit::before { content: "\f0e1"; }
+
.si-metasploit.si--color::before { color: #2596CD; }
+
.si-meteor::before { content: "\f0e2"; }
+
.si-meteor.si--color::before { color: #DE4F4F; }
+
.si-metro::before { content: "\f0e3"; }
+
.si-metro.si--color::before { color: #EF4242; }
+
.si-metrodelaciudaddemexico::before { content: "\f0e4"; }
+
.si-metrodelaciudaddemexico.si--color::before { color: #F77E1C; }
+
.si-metrodemadrid::before { content: "\f0e5"; }
+
.si-metrodemadrid.si--color::before { color: #255E9C; }
+
.si-metrodeparis::before { content: "\f0e6"; }
+
.si-metrodeparis.si--color::before { color: #003E95; }
+
.si-mewe::before { content: "\f0e7"; }
+
.si-mewe.si--color::before { color: #17377F; }
+
.si-mg::before { content: "\f0e8"; }
+
.si-mg.si--color::before { color: #FF0000; }
+
.si-microeditor::before { content: "\f0e9"; }
+
.si-microeditor.si--color::before { color: #2E3192; }
+
.si-microbit::before { content: "\f0ea"; }
+
.si-microbit.si--color::before { color: #00ED00; }
+
.si-microdotblog::before { content: "\f0eb"; }
+
.si-microdotblog.si--color::before { color: #FF8800; }
+
.si-micropython::before { content: "\f0ec"; }
+
.si-micropython.si--color::before { color: #2B2728; }
+
.si-microstation::before { content: "\f0ed"; }
+
.si-microstation.si--color::before { color: #62BB47; }
+
.si-microstrategy::before { content: "\f0ee"; }
+
.si-microstrategy.si--color::before { color: #D9232E; }
+
.si-midi::before { content: "\f0ef"; }
+
.si-midi.si--color::before { color: #000000; }
+
.si-migadu::before { content: "\f0f0"; }
+
.si-migadu.si--color::before { color: #0043CE; }
+
.si-mihoyo::before { content: "\f0f1"; }
+
.si-mihoyo.si--color::before { color: #4EA4DD; }
+
.si-mikrotik::before { content: "\f0f2"; }
+
.si-mikrotik.si--color::before { color: #293239; }
+
.si-milanote::before { content: "\f0f3"; }
+
.si-milanote.si--color::before { color: #31303A; }
+
.si-milvus::before { content: "\f0f4"; }
+
.si-milvus.si--color::before { color: #00A1EA; }
+
.si-minds::before { content: "\f0f5"; }
+
.si-minds.si--color::before { color: #FED12F; }
+
.si-minetest::before { content: "\f0f6"; }
+
.si-minetest.si--color::before { color: #53AC56; }
+
.si-mingww64::before { content: "\f0f7"; }
+
.si-mingww64.si--color::before { color: #000000; }
+
.si-mini::before { content: "\f0f8"; }
+
.si-mini.si--color::before { color: #000000; }
+
.si-minio::before { content: "\f0f9"; }
+
.si-minio.si--color::before { color: #C72E49; }
+
.si-mintlify::before { content: "\f0fa"; }
+
.si-mintlify.si--color::before { color: #18E299; }
+
.si-minutemailer::before { content: "\f0fb"; }
+
.si-minutemailer.si--color::before { color: #30B980; }
+
.si-miraheze::before { content: "\f0fc"; }
+
.si-miraheze.si--color::before { color: #FFFC00; }
+
.si-miro::before { content: "\f0fd"; }
+
.si-miro.si--color::before { color: #050038; }
+
.si-misskey::before { content: "\f0fe"; }
+
.si-misskey.si--color::before { color: #A1CA03; }
+
.si-mitsubishi::before { content: "\f0ff"; }
+
.si-mitsubishi.si--color::before { color: #E60012; }
+
.si-mix::before { content: "\f100"; }
+
.si-mix.si--color::before { color: #FF8126; }
+
.si-mixcloud::before { content: "\f101"; }
+
.si-mixcloud.si--color::before { color: #5000FF; }
+
.si-mixpanel::before { content: "\f102"; }
+
.si-mixpanel.si--color::before { color: #7856FF; }
+
.si-mlb::before { content: "\f103"; }
+
.si-mlb.si--color::before { color: #041E42; }
+
.si-mlflow::before { content: "\f104"; }
+
.si-mlflow.si--color::before { color: #0194E2; }
+
.si-mobx::before { content: "\f105"; }
+
.si-mobx.si--color::before { color: #FF9955; }
+
.si-mobxstatetree::before { content: "\f106"; }
+
.si-mobxstatetree.si--color::before { color: #FF7102; }
+
.si-mocha::before { content: "\f107"; }
+
.si-mocha.si--color::before { color: #8D6748; }
+
.si-mockserviceworker::before { content: "\f108"; }
+
.si-mockserviceworker.si--color::before { color: #FF6A33; }
+
.si-modal::before { content: "\f109"; }
+
.si-modal.si--color::before { color: #7FEE64; }
+
.si-modin::before { content: "\f10a"; }
+
.si-modin.si--color::before { color: #001729; }
+
.si-modrinth::before { content: "\f10b"; }
+
.si-modrinth.si--color::before { color: #00AF5C; }
+
.si-modx::before { content: "\f10c"; }
+
.si-modx.si--color::before { color: #102C53; }
+
.si-mojeek::before { content: "\f10d"; }
+
.si-mojeek.si--color::before { color: #7AB93C; }
+
.si-moleculer::before { content: "\f10e"; }
+
.si-moleculer.si--color::before { color: #3CAFCE; }
+
.si-momenteo::before { content: "\f10f"; }
+
.si-momenteo.si--color::before { color: #5A6AB1; }
+
.si-monero::before { content: "\f110"; }
+
.si-monero.si--color::before { color: #FF6600; }
+
.si-moneygram::before { content: "\f111"; }
+
.si-moneygram.si--color::before { color: #DA291C; }
+
.si-mongodb::before { content: "\f112"; }
+
.si-mongodb.si--color::before { color: #47A248; }
+
.si-mongoose::before { content: "\f113"; }
+
.si-mongoose.si--color::before { color: #880000; }
+
.si-mongoosedotws::before { content: "\f114"; }
+
.si-mongoosedotws.si--color::before { color: #F04D35; }
+
.si-monica::before { content: "\f115"; }
+
.si-monica.si--color::before { color: #2C2B29; }
+
.si-monkeytie::before { content: "\f116"; }
+
.si-monkeytie.si--color::before { color: #1A52C2; }
+
.si-monkeytype::before { content: "\f117"; }
+
.si-monkeytype.si--color::before { color: #E2B714; }
+
.si-monogame::before { content: "\f118"; }
+
.si-monogame.si--color::before { color: #E73C00; }
+
.si-monoprix::before { content: "\f119"; }
+
.si-monoprix.si--color::before { color: #FB1911; }
+
.si-monster::before { content: "\f11a"; }
+
.si-monster.si--color::before { color: #6D4C9F; }
+
.si-monzo::before { content: "\f11b"; }
+
.si-monzo.si--color::before { color: #14233C; }
+
.si-moo::before { content: "\f11c"; }
+
.si-moo.si--color::before { color: #00945E; }
+
.si-moodle::before { content: "\f11d"; }
+
.si-moodle.si--color::before { color: #F98012; }
+
.si-moonrepo::before { content: "\f11e"; }
+
.si-moonrepo.si--color::before { color: #6F53F3; }
+
.si-moq::before { content: "\f11f"; }
+
.si-moq.si--color::before { color: #F4BE00; }
+
.si-moqups::before { content: "\f120"; }
+
.si-moqups.si--color::before { color: #006BE5; }
+
.si-morrisons::before { content: "\f121"; }
+
.si-morrisons.si--color::before { color: #007531; }
+
.si-moscowmetro::before { content: "\f122"; }
+
.si-moscowmetro.si--color::before { color: #D9232E; }
+
.si-motorola::before { content: "\f123"; }
+
.si-motorola.si--color::before { color: #E1140A; }
+
.si-movistar::before { content: "\f124"; }
+
.si-movistar.si--color::before { color: #019DF4; }
+
.si-mozilla::before { content: "\f125"; }
+
.si-mozilla.si--color::before { color: #000000; }
+
.si-mpv::before { content: "\f126"; }
+
.si-mpv.si--color::before { color: #691F69; }
+
.si-mqtt::before { content: "\f127"; }
+
.si-mqtt.si--color::before { color: #660066; }
+
.si-msi::before { content: "\f128"; }
+
.si-msi.si--color::before { color: #FF0000; }
+
.si-msibusiness::before { content: "\f129"; }
+
.si-msibusiness.si--color::before { color: #9A8555; }
+
.si-mta::before { content: "\f12a"; }
+
.si-mta.si--color::before { color: #0039A6; }
+
.si-mtr::before { content: "\f12b"; }
+
.si-mtr.si--color::before { color: #AC2E45; }
+
.si-mubi::before { content: "\f12c"; }
+
.si-mubi.si--color::before { color: #000000; }
+
.si-mui::before { content: "\f12d"; }
+
.si-mui.si--color::before { color: #007FFF; }
+
.si-mulesoft::before { content: "\f12e"; }
+
.si-mulesoft.si--color::before { color: #00A0DF; }
+
.si-muller::before { content: "\f12f"; }
+
.si-muller.si--color::before { color: #F46519; }
+
.si-mullvad::before { content: "\f130"; }
+
.si-mullvad.si--color::before { color: #294D73; }
+
.si-multisim::before { content: "\f131"; }
+
.si-multisim.si--color::before { color: #57B685; }
+
.si-mumble::before { content: "\f132"; }
+
.si-mumble.si--color::before { color: #000000; }
+
.si-muo::before { content: "\f133"; }
+
.si-muo.si--color::before { color: #C60D0D; }
+
.si-mural::before { content: "\f134"; }
+
.si-mural.si--color::before { color: #FF4B4B; }
+
.si-musescore::before { content: "\f135"; }
+
.si-musescore.si--color::before { color: #1A70B8; }
+
.si-musicbrainz::before { content: "\f136"; }
+
.si-musicbrainz.si--color::before { color: #BA478F; }
+
.si-mxlinux::before { content: "\f137"; }
+
.si-mxlinux.si--color::before { color: #000000; }
+
.si-myanimelist::before { content: "\f138"; }
+
.si-myanimelist.si--color::before { color: #2E51A2; }
+
.si-myget::before { content: "\f139"; }
+
.si-myget.si--color::before { color: #0C79CE; }
+
.si-myob::before { content: "\f13a"; }
+
.si-myob.si--color::before { color: #6100A5; }
+
.si-myspace::before { content: "\f13b"; }
+
.si-myspace.si--color::before { color: #030303; }
+
.si-mysql::before { content: "\f13c"; }
+
.si-mysql.si--color::before { color: #4479A1; }
+
.si-n26::before { content: "\f13d"; }
+
.si-n26.si--color::before { color: #48AC98; }
+
.si-n8n::before { content: "\f13e"; }
+
.si-n8n.si--color::before { color: #EA4B71; }
+
.si-namebase::before { content: "\f13f"; }
+
.si-namebase.si--color::before { color: #0068FF; }
+
.si-namecheap::before { content: "\f140"; }
+
.si-namecheap.si--color::before { color: #DE3723; }
+
.si-namemc::before { content: "\f141"; }
+
.si-namemc.si--color::before { color: #12161A; }
+
.si-namesilo::before { content: "\f142"; }
+
.si-namesilo.si--color::before { color: #031B4E; }
+
.si-namuwiki::before { content: "\f143"; }
+
.si-namuwiki.si--color::before { color: #008275; }
+
.si-nano::before { content: "\f144"; }
+
.si-nano.si--color::before { color: #4A90E2; }
+
.si-nanostores::before { content: "\f145"; }
+
.si-nanostores.si--color::before { color: #000000; }
+
.si-napster::before { content: "\f146"; }
+
.si-napster.si--color::before { color: #2259FF; }
+
.si-nasa::before { content: "\f147"; }
+
.si-nasa.si--color::before { color: #E03C31; }
+
.si-nationalgrid::before { content: "\f148"; }
+
.si-nationalgrid.si--color::before { color: #00148C; }
+
.si-nationalrail::before { content: "\f149"; }
+
.si-nationalrail.si--color::before { color: #003366; }
+
.si-nativescript::before { content: "\f14a"; }
+
.si-nativescript.si--color::before { color: #65ADF1; }
+
.si-natsdotio::before { content: "\f14b"; }
+
.si-natsdotio.si--color::before { color: #27AAE1; }
+
.si-naver::before { content: "\f14c"; }
+
.si-naver.si--color::before { color: #03C75A; }
+
.si-nba::before { content: "\f14d"; }
+
.si-nba.si--color::before { color: #253B73; }
+
.si-nbb::before { content: "\f14e"; }
+
.si-nbb.si--color::before { color: #FF7100; }
+
.si-nbc::before { content: "\f14f"; }
+
.si-nbc.si--color::before { color: #222222; }
+
.si-ndr::before { content: "\f150"; }
+
.si-ndr.si--color::before { color: #0C1754; }
+
.si-near::before { content: "\f151"; }
+
.si-near.si--color::before { color: #000000; }
+
.si-nebula::before { content: "\f152"; }
+
.si-nebula.si--color::before { color: #2CADFE; }
+
.si-nec::before { content: "\f153"; }
+
.si-nec.si--color::before { color: #1414A0; }
+
.si-neo4j::before { content: "\f154"; }
+
.si-neo4j.si--color::before { color: #4581C3; }
+
.si-neovim::before { content: "\f155"; }
+
.si-neovim.si--color::before { color: #57A143; }
+
.si-neptune::before { content: "\f156"; }
+
.si-neptune.si--color::before { color: #5B69C2; }
+
.si-nestjs::before { content: "\f157"; }
+
.si-nestjs.si--color::before { color: #E0234E; }
+
.si-netapp::before { content: "\f158"; }
+
.si-netapp.si--color::before { color: #0067C5; }
+
.si-netbsd::before { content: "\f159"; }
+
.si-netbsd.si--color::before { color: #FF6600; }
+
.si-netcup::before { content: "\f15a"; }
+
.si-netcup.si--color::before { color: #056473; }
+
.si-netdata::before { content: "\f15b"; }
+
.si-netdata.si--color::before { color: #00AB44; }
+
.si-neteasecloudmusic::before { content: "\f15c"; }
+
.si-neteasecloudmusic.si--color::before { color: #D43C33; }
+
.si-netflix::before { content: "\f15d"; }
+
.si-netflix.si--color::before { color: #E50914; }
+
.si-netgear::before { content: "\f15e"; }
+
.si-netgear.si--color::before { color: #2C262D; }
+
.si-netlify::before { content: "\f15f"; }
+
.si-netlify.si--color::before { color: #00C7B7; }
+
.si-nette::before { content: "\f160"; }
+
.si-nette.si--color::before { color: #3484D2; }
+
.si-netto::before { content: "\f161"; }
+
.si-netto.si--color::before { color: #FFE500; }
+
.si-neutralinojs::before { content: "\f162"; }
+
.si-neutralinojs.si--color::before { color: #F89901; }
+
.si-newbalance::before { content: "\f163"; }
+
.si-newbalance.si--color::before { color: #CF0A2C; }
+
.si-newjapanprowrestling::before { content: "\f164"; }
+
.si-newjapanprowrestling.si--color::before { color: #FF160B; }
+
.si-newrelic::before { content: "\f165"; }
+
.si-newrelic.si--color::before { color: #1CE783; }
+
.si-newyorktimes::before { content: "\f166"; }
+
.si-newyorktimes.si--color::before { color: #000000; }
+
.si-newegg::before { content: "\f167"; }
+
.si-newegg.si--color::before { color: #E05E00; }
+
.si-nexon::before { content: "\f168"; }
+
.si-nexon.si--color::before { color: #000000; }
+
.si-nextdotjs::before { content: "\f169"; }
+
.si-nextdotjs.si--color::before { color: #000000; }
+
.si-nextbilliondotai::before { content: "\f16a"; }
+
.si-nextbilliondotai.si--color::before { color: #8D5A9E; }
+
.si-nextcloud::before { content: "\f16b"; }
+
.si-nextcloud.si--color::before { color: #0082C9; }
+
.si-nextdns::before { content: "\f16c"; }
+
.si-nextdns.si--color::before { color: #007BFF; }
+
.si-nextdoor::before { content: "\f16d"; }
+
.si-nextdoor.si--color::before { color: #8ED500; }
+
.si-nextflow::before { content: "\f16e"; }
+
.si-nextflow.si--color::before { color: #0DC09D; }
+
.si-nextra::before { content: "\f16f"; }
+
.si-nextra.si--color::before { color: #000000; }
+
.si-nextui::before { content: "\f170"; }
+
.si-nextui.si--color::before { color: #000000; }
+
.si-nexusmods::before { content: "\f171"; }
+
.si-nexusmods.si--color::before { color: #E6832B; }
+
.si-nfcore::before { content: "\f172"; }
+
.si-nfcore.si--color::before { color: #24B064; }
+
.si-nfc::before { content: "\f173"; }
+
.si-nfc.si--color::before { color: #002E5F; }
+
.si-nginx::before { content: "\f174"; }
+
.si-nginx.si--color::before { color: #009639; }
+
.si-nginxproxymanager::before { content: "\f175"; }
+
.si-nginxproxymanager.si--color::before { color: #F15833; }
+
.si-ngrok::before { content: "\f176"; }
+
.si-ngrok.si--color::before { color: #1F1E37; }
+
.si-ngrx::before { content: "\f177"; }
+
.si-ngrx.si--color::before { color: #BA2BD2; }
+
.si-nhl::before { content: "\f178"; }
+
.si-nhl.si--color::before { color: #000000; }
+
.si-nicehash::before { content: "\f179"; }
+
.si-nicehash.si--color::before { color: #FBC342; }
+
.si-niconico::before { content: "\f17a"; }
+
.si-niconico.si--color::before { color: #231815; }
+
.si-nike::before { content: "\f17b"; }
+
.si-nike.si--color::before { color: #111111; }
+
.si-nikon::before { content: "\f17c"; }
+
.si-nikon.si--color::before { color: #FFE100; }
+
.si-nim::before { content: "\f17d"; }
+
.si-nim.si--color::before { color: #FFE953; }
+
.si-nissan::before { content: "\f17e"; }
+
.si-nissan.si--color::before { color: #C3002F; }
+
.si-nixos::before { content: "\f17f"; }
+
.si-nixos.si--color::before { color: #5277C3; }
+
.si-nodered::before { content: "\f180"; }
+
.si-nodered.si--color::before { color: #8F0000; }
+
.si-nodedotjs::before { content: "\f181"; }
+
.si-nodedotjs.si--color::before { color: #5FA04E; }
+
.si-nodemon::before { content: "\f182"; }
+
.si-nodemon.si--color::before { color: #76D04B; }
+
.si-nokia::before { content: "\f183"; }
+
.si-nokia.si--color::before { color: #005AFF; }
+
.si-nomad::before { content: "\f184"; }
+
.si-nomad.si--color::before { color: #00CA8E; }
+
.si-norco::before { content: "\f185"; }
+
.si-norco.si--color::before { color: #00FF00; }
+
.si-nordicsemiconductor::before { content: "\f186"; }
+
.si-nordicsemiconductor.si--color::before { color: #00A9CE; }
+
.si-nordvpn::before { content: "\f187"; }
+
.si-nordvpn.si--color::before { color: #4687FF; }
+
.si-normalizedotcss::before { content: "\f188"; }
+
.si-normalizedotcss.si--color::before { color: #E3695F; }
+
.si-norton::before { content: "\f189"; }
+
.si-norton.si--color::before { color: #FFE01A; }
+
.si-norwegian::before { content: "\f18a"; }
+
.si-norwegian.si--color::before { color: #D81939; }
+
.si-notepadplusplus::before { content: "\f18b"; }
+
.si-notepadplusplus.si--color::before { color: #90E59A; }
+
.si-notion::before { content: "\f18c"; }
+
.si-notion.si--color::before { color: #000000; }
+
.si-notist::before { content: "\f18d"; }
+
.si-notist.si--color::before { color: #333333; }
+
.si-nounproject::before { content: "\f18e"; }
+
.si-nounproject.si--color::before { color: #000000; }
+
.si-novu::before { content: "\f18f"; }
+
.si-novu.si--color::before { color: #000000; }
+
.si-now::before { content: "\f190"; }
+
.si-now.si--color::before { color: #001211; }
+
.si-npm::before { content: "\f191"; }
+
.si-npm.si--color::before { color: #CB3837; }
+
.si-nrwl::before { content: "\f192"; }
+
.si-nrwl.si--color::before { color: #96D7E8; }
+
.si-nsis::before { content: "\f193"; }
+
.si-nsis.si--color::before { color: #01B0F0; }
+
.si-ntfy::before { content: "\f194"; }
+
.si-ntfy.si--color::before { color: #317F6F; }
+
.si-nubank::before { content: "\f195"; }
+
.si-nubank.si--color::before { color: #820AD1; }
+
.si-nucleo::before { content: "\f196"; }
+
.si-nucleo.si--color::before { color: #252B2D; }
+
.si-nuget::before { content: "\f197"; }
+
.si-nuget.si--color::before { color: #004880; }
+
.si-nuke::before { content: "\f198"; }
+
.si-nuke.si--color::before { color: #000000; }
+
.si-numba::before { content: "\f199"; }
+
.si-numba.si--color::before { color: #00A3E0; }
+
.si-numpy::before { content: "\f19a"; }
+
.si-numpy.si--color::before { color: #013243; }
+
.si-nunjucks::before { content: "\f19b"; }
+
.si-nunjucks.si--color::before { color: #1C4913; }
+
.si-nushell::before { content: "\f19c"; }
+
.si-nushell.si--color::before { color: #4E9A06; }
+
.si-nutanix::before { content: "\f19d"; }
+
.si-nutanix.si--color::before { color: #024DA1; }
+
.si-nuxt::before { content: "\f19e"; }
+
.si-nuxt.si--color::before { color: #00DC82; }
+
.si-nvidia::before { content: "\f19f"; }
+
.si-nvidia.si--color::before { color: #76B900; }
+
.si-nvm::before { content: "\f1a0"; }
+
.si-nvm.si--color::before { color: #F4DD4B; }
+
.si-nx::before { content: "\f1a1"; }
+
.si-nx.si--color::before { color: #143055; }
+
.si-nxp::before { content: "\f1a2"; }
+
.si-nxp.si--color::before { color: #000000; }
+
.si-nzxt::before { content: "\f1a3"; }
+
.si-nzxt.si--color::before { color: #000000; }
+
.si-oreilly::before { content: "\f1a4"; }
+
.si-oreilly.si--color::before { color: #D3002D; }
+
.si-o2::before { content: "\f1a5"; }
+
.si-o2.si--color::before { color: #0050FF; }
+
.si-obb::before { content: "\f1a6"; }
+
.si-obb.si--color::before { color: #E40327; }
+
.si-obsstudio::before { content: "\f1a7"; }
+
.si-obsstudio.si--color::before { color: #302E31; }
+
.si-observable::before { content: "\f1a8"; }
+
.si-observable.si--color::before { color: #353E58; }
+
.si-obsidian::before { content: "\f1a9"; }
+
.si-obsidian.si--color::before { color: #7C3AED; }
+
.si-obtainium::before { content: "\f1aa"; }
+
.si-obtainium.si--color::before { color: #D2BCFD; }
+
.si-ocaml::before { content: "\f1ab"; }
+
.si-ocaml.si--color::before { color: #EC6813; }
+
.si-oclc::before { content: "\f1ac"; }
+
.si-oclc.si--color::before { color: #007DBA; }
+
.si-oclif::before { content: "\f1ad"; }
+
.si-oclif.si--color::before { color: #000000; }
+
.si-octanerender::before { content: "\f1ae"; }
+
.si-octanerender.si--color::before { color: #000000; }
+
.si-octave::before { content: "\f1af"; }
+
.si-octave.si--color::before { color: #0790C0; }
+
.si-octobercms::before { content: "\f1b0"; }
+
.si-octobercms.si--color::before { color: #DB6A26; }
+
.si-octoprint::before { content: "\f1b1"; }
+
.si-octoprint.si--color::before { color: #13C100; }
+
.si-octopusdeploy::before { content: "\f1b2"; }
+
.si-octopusdeploy.si--color::before { color: #2F93E0; }
+
.si-oculus::before { content: "\f1b3"; }
+
.si-oculus.si--color::before { color: #1C1E20; }
+
.si-odin::before { content: "\f1b4"; }
+
.si-odin.si--color::before { color: #3882D2; }
+
.si-odnoklassniki::before { content: "\f1b5"; }
+
.si-odnoklassniki.si--color::before { color: #EE8208; }
+
.si-odoo::before { content: "\f1b6"; }
+
.si-odoo.si--color::before { color: #714B67; }
+
.si-odysee::before { content: "\f1b7"; }
+
.si-odysee.si--color::before { color: #EF1970; }
+
.si-ohdear::before { content: "\f1b8"; }
+
.si-ohdear.si--color::before { color: #FF3900; }
+
.si-okcupid::before { content: "\f1b9"; }
+
.si-okcupid.si--color::before { color: #0500BE; }
+
.si-okta::before { content: "\f1ba"; }
+
.si-okta.si--color::before { color: #007DC1; }
+
.si-okx::before { content: "\f1bb"; }
+
.si-okx.si--color::before { color: #000000; }
+
.si-ollama::before { content: "\f1bc"; }
+
.si-ollama.si--color::before { color: #000000; }
+
.si-omadacloud::before { content: "\f1bd"; }
+
.si-omadacloud.si--color::before { color: #10C1D0; }
+
.si-oneplus::before { content: "\f1be"; }
+
.si-oneplus.si--color::before { color: #F5010C; }
+
.si-onlyfans::before { content: "\f1bf"; }
+
.si-onlyfans.si--color::before { color: #00AFF0; }
+
.si-onlyoffice::before { content: "\f1c0"; }
+
.si-onlyoffice.si--color::before { color: #444444; }
+
.si-onnx::before { content: "\f1c1"; }
+
.si-onnx.si--color::before { color: #005CED; }
+
.si-onstar::before { content: "\f1c2"; }
+
.si-onstar.si--color::before { color: #003D7D; }
+
.si-opel::before { content: "\f1c3"; }
+
.si-opel.si--color::before { color: #F7FF14; }
+
.si-openaccess::before { content: "\f1c4"; }
+
.si-openaccess.si--color::before { color: #F68212; }
+
.si-openbadges::before { content: "\f1c5"; }
+
.si-openbadges.si--color::before { color: #073B5A; }
+
.si-openbugbounty::before { content: "\f1c6"; }
+
.si-openbugbounty.si--color::before { color: #F67909; }
+
.si-opencollective::before { content: "\f1c7"; }
+
.si-opencollective.si--color::before { color: #7FADF2; }
+
.si-opencontainersinitiative::before { content: "\f1c8"; }
+
.si-opencontainersinitiative.si--color::before { color: #262261; }
+
.si-opensourcehardware::before { content: "\f1c9"; }
+
.si-opensourcehardware.si--color::before { color: #0099B0; }
+
.si-opensourceinitiative::before { content: "\f1ca"; }
+
.si-opensourceinitiative.si--color::before { color: #3DA639; }
+
.si-open3d::before { content: "\f1cb"; }
+
.si-open3d.si--color::before { color: #000000; }
+
.si-openai::before { content: "\f1cc"; }
+
.si-openai.si--color::before { color: #412991; }
+
.si-openaigym::before { content: "\f1cd"; }
+
.si-openaigym.si--color::before { color: #0081A5; }
+
.si-openapiinitiative::before { content: "\f1ce"; }
+
.si-openapiinitiative.si--color::before { color: #6BA539; }
+
.si-openbsd::before { content: "\f1cf"; }
+
.si-openbsd.si--color::before { color: #F2CA30; }
+
.si-opencv::before { content: "\f1d0"; }
+
.si-opencv.si--color::before { color: #5C3EE8; }
+
.si-openfaas::before { content: "\f1d1"; }
+
.si-openfaas.si--color::before { color: #3B5EE9; }
+
.si-opengl::before { content: "\f1d2"; }
+
.si-opengl.si--color::before { color: #5586A4; }
+
.si-openhab::before { content: "\f1d3"; }
+
.si-openhab.si--color::before { color: #E64A19; }
+
.si-openid::before { content: "\f1d4"; }
+
.si-openid.si--color::before { color: #F78C40; }
+
.si-openjdk::before { content: "\f1d5"; }
+
.si-openjdk.si--color::before { color: #000000; }
+
.si-openjsfoundation::before { content: "\f1d6"; }
+
.si-openjsfoundation.si--color::before { color: #0075C9; }
+
.si-openlayers::before { content: "\f1d7"; }
+
.si-openlayers.si--color::before { color: #1F6B75; }
+
.si-openmediavault::before { content: "\f1d8"; }
+
.si-openmediavault.si--color::before { color: #5DACDF; }
+
.si-openmined::before { content: "\f1d9"; }
+
.si-openmined.si--color::before { color: #ED986C; }
+
.si-opennebula::before { content: "\f1da"; }
+
.si-opennebula.si--color::before { color: #0097C2; }
+
.si-openproject::before { content: "\f1db"; }
+
.si-openproject.si--color::before { color: #0770B8; }
+
.si-openscad::before { content: "\f1dc"; }
+
.si-openscad.si--color::before { color: #F9D72C; }
+
.si-opensea::before { content: "\f1dd"; }
+
.si-opensea.si--color::before { color: #2081E2; }
+
.si-opensearch::before { content: "\f1de"; }
+
.si-opensearch.si--color::before { color: #005EB8; }
+
.si-openssl::before { content: "\f1df"; }
+
.si-openssl.si--color::before { color: #721412; }
+
.si-openstack::before { content: "\f1e0"; }
+
.si-openstack.si--color::before { color: #ED1944; }
+
.si-openstreetmap::before { content: "\f1e1"; }
+
.si-openstreetmap.si--color::before { color: #7EBC6F; }
+
.si-opensuse::before { content: "\f1e2"; }
+
.si-opensuse.si--color::before { color: #73BA25; }
+
.si-opentelemetry::before { content: "\f1e3"; }
+
.si-opentelemetry.si--color::before { color: #000000; }
+
.si-opentext::before { content: "\f1e4"; }
+
.si-opentext.si--color::before { color: #000000; }
+
.si-opentofu::before { content: "\f1e5"; }
+
.si-opentofu.si--color::before { color: #FFDA18; }
+
.si-openverse::before { content: "\f1e6"; }
+
.si-openverse.si--color::before { color: #FFE033; }
+
.si-openvpn::before { content: "\f1e7"; }
+
.si-openvpn.si--color::before { color: #EA7E20; }
+
.si-openwrt::before { content: "\f1e8"; }
+
.si-openwrt.si--color::before { color: #00B5E2; }
+
.si-openzeppelin::before { content: "\f1e9"; }
+
.si-openzeppelin.si--color::before { color: #4E5EE4; }
+
.si-openzfs::before { content: "\f1ea"; }
+
.si-openzfs.si--color::before { color: #2A667F; }
+
.si-opera::before { content: "\f1eb"; }
+
.si-opera.si--color::before { color: #FF1B2D; }
+
.si-operagx::before { content: "\f1ec"; }
+
.si-operagx.si--color::before { color: #EE2950; }
+
.si-opnsense::before { content: "\f1ed"; }
+
.si-opnsense.si--color::before { color: #D94F00; }
+
.si-oppo::before { content: "\f1ee"; }
+
.si-oppo.si--color::before { color: #2D683D; }
+
.si-opsgenie::before { content: "\f1ef"; }
+
.si-opsgenie.si--color::before { color: #172B4D; }
+
.si-opslevel::before { content: "\f1f0"; }
+
.si-opslevel.si--color::before { color: #0A53E0; }
+
.si-optimism::before { content: "\f1f1"; }
+
.si-optimism.si--color::before { color: #FF0420; }
+
.si-orange::before { content: "\f1f2"; }
+
.si-orange.si--color::before { color: #FF7900; }
+
.si-orcid::before { content: "\f1f3"; }
+
.si-orcid.si--color::before { color: #A6CE39; }
+
.si-org::before { content: "\f1f4"; }
+
.si-org.si--color::before { color: #77AA99; }
+
.si-organicmaps::before { content: "\f1f5"; }
+
.si-organicmaps.si--color::before { color: #006C35; }
+
.si-origin::before { content: "\f1f6"; }
+
.si-origin.si--color::before { color: #F56C2D; }
+
.si-osano::before { content: "\f1f7"; }
+
.si-osano.si--color::before { color: #7764FA; }
+
.si-osf::before { content: "\f1f8"; }
+
.si-osf.si--color::before { color: #2CB9F1; }
+
.si-osgeo::before { content: "\f1f9"; }
+
.si-osgeo.si--color::before { color: #4CB05B; }
+
.si-oshkosh::before { content: "\f1fa"; }
+
.si-oshkosh.si--color::before { color: #E6830F; }
+
.si-osmc::before { content: "\f1fb"; }
+
.si-osmc.si--color::before { color: #17394A; }
+
.si-osu::before { content: "\f1fc"; }
+
.si-osu.si--color::before { color: #FF66AA; }
+
.si-otto::before { content: "\f1fd"; }
+
.si-otto.si--color::before { color: #D4021D; }
+
.si-outline::before { content: "\f1fe"; }
+
.si-outline.si--color::before { color: #000000; }
+
.si-overcast::before { content: "\f1ff"; }
+
.si-overcast.si--color::before { color: #FC7E0F; }
+
.si-overleaf::before { content: "\f200"; }
+
.si-overleaf.si--color::before { color: #47A141; }
+
.si-ovh::before { content: "\f201"; }
+
.si-ovh.si--color::before { color: #123F6D; }
+
.si-owasp::before { content: "\f202"; }
+
.si-owasp.si--color::before { color: #000000; }
+
.si-dependencycheck::before { content: "\f203"; }
+
.si-dependencycheck.si--color::before { color: #F78D0A; }
+
.si-owncloud::before { content: "\f204"; }
+
.si-owncloud.si--color::before { color: #041E42; }
+
.si-oxygen::before { content: "\f205"; }
+
.si-oxygen.si--color::before { color: #3A209E; }
+
.si-oyo::before { content: "\f206"; }
+
.si-oyo.si--color::before { color: #EE2E24; }
+
.si-p5dotjs::before { content: "\f207"; }
+
.si-p5dotjs.si--color::before { color: #ED225D; }
+
.si-packagist::before { content: "\f208"; }
+
.si-packagist.si--color::before { color: #F28D1A; }
+
.si-packer::before { content: "\f209"; }
+
.si-packer.si--color::before { color: #02A8EF; }
+
.si-packt::before { content: "\f20a"; }
+
.si-packt.si--color::before { color: #F37143; }
+
.si-paddle::before { content: "\f20b"; }
+
.si-paddle.si--color::before { color: #FDDD35; }
+
.si-paddlepaddle::before { content: "\f20c"; }
+
.si-paddlepaddle.si--color::before { color: #0062B0; }
+
.si-paddypower::before { content: "\f20d"; }
+
.si-paddypower.si--color::before { color: #004833; }
+
.si-pagekit::before { content: "\f20e"; }
+
.si-pagekit.si--color::before { color: #212121; }
+
.si-pagerduty::before { content: "\f20f"; }
+
.si-pagerduty.si--color::before { color: #06AC38; }
+
.si-pagespeedinsights::before { content: "\f210"; }
+
.si-pagespeedinsights.si--color::before { color: #4285F4; }
+
.si-pagseguro::before { content: "\f211"; }
+
.si-pagseguro.si--color::before { color: #FFC801; }
+
.si-palantir::before { content: "\f212"; }
+
.si-palantir.si--color::before { color: #101113; }
+
.si-paloaltonetworks::before { content: "\f213"; }
+
.si-paloaltonetworks.si--color::before { color: #F04E23; }
+
.si-paloaltosoftware::before { content: "\f214"; }
+
.si-paloaltosoftware.si--color::before { color: #83DA77; }
+
.si-panasonic::before { content: "\f215"; }
+
.si-panasonic.si--color::before { color: #0049AB; }
+
.si-pandas::before { content: "\f216"; }
+
.si-pandas.si--color::before { color: #150458; }
+
.si-pandora::before { content: "\f217"; }
+
.si-pandora.si--color::before { color: #224099; }
+
.si-pantheon::before { content: "\f218"; }
+
.si-pantheon.si--color::before { color: #FFDC28; }
+
.si-paperlessngx::before { content: "\f219"; }
+
.si-paperlessngx.si--color::before { color: #17541F; }
+
.si-paperswithcode::before { content: "\f21a"; }
+
.si-paperswithcode.si--color::before { color: #21CBCE; }
+
.si-paperspace::before { content: "\f21b"; }
+
.si-paperspace.si--color::before { color: #000000; }
+
.si-paradoxinteractive::before { content: "\f21c"; }
+
.si-paradoxinteractive.si--color::before { color: #101010; }
+
.si-paramountplus::before { content: "\f21d"; }
+
.si-paramountplus.si--color::before { color: #0064FF; }
+
.si-paritysubstrate::before { content: "\f21e"; }
+
.si-paritysubstrate.si--color::before { color: #282828; }
+
.si-parrotsecurity::before { content: "\f21f"; }
+
.si-parrotsecurity.si--color::before { color: #15E0ED; }
+
.si-parsedotly::before { content: "\f220"; }
+
.si-parsedotly.si--color::before { color: #5BA745; }
+
.si-passport::before { content: "\f221"; }
+
.si-passport.si--color::before { color: #34E27A; }
+
.si-pastebin::before { content: "\f222"; }
+
.si-pastebin.si--color::before { color: #02456C; }
+
.si-patreon::before { content: "\f223"; }
+
.si-patreon.si--color::before { color: #000000; }
+
.si-paychex::before { content: "\f224"; }
+
.si-paychex.si--color::before { color: #004B8D; }
+
.si-payhip::before { content: "\f225"; }
+
.si-payhip.si--color::before { color: #5C6AC4; }
+
.si-payloadcms::before { content: "\f226"; }
+
.si-payloadcms.si--color::before { color: #000000; }
+
.si-payoneer::before { content: "\f227"; }
+
.si-payoneer.si--color::before { color: #FF4800; }
+
.si-paypal::before { content: "\f228"; }
+
.si-paypal.si--color::before { color: #003087; }
+
.si-paytm::before { content: "\f229"; }
+
.si-paytm.si--color::before { color: #20336B; }
+
.si-pcgamingwiki::before { content: "\f22a"; }
+
.si-pcgamingwiki.si--color::before { color: #556DB3; }
+
.si-pdm::before { content: "\f22b"; }
+
.si-pdm.si--color::before { color: #AC75D7; }
+
.si-pdq::before { content: "\f22c"; }
+
.si-pdq.si--color::before { color: #231F20; }
+
.si-peakdesign::before { content: "\f22d"; }
+
.si-peakdesign.si--color::before { color: #1C1B1C; }
+
.si-pearson::before { content: "\f22e"; }
+
.si-pearson.si--color::before { color: #000000; }
+
.si-peerlist::before { content: "\f22f"; }
+
.si-peerlist.si--color::before { color: #00AA45; }
+
.si-peertube::before { content: "\f230"; }
+
.si-peertube.si--color::before { color: #F1680D; }
+
.si-pegasusairlines::before { content: "\f231"; }
+
.si-pegasusairlines.si--color::before { color: #FDC43E; }
+
.si-pelican::before { content: "\f232"; }
+
.si-pelican.si--color::before { color: #14A0C4; }
+
.si-peloton::before { content: "\f233"; }
+
.si-peloton.si--color::before { color: #181A1D; }
+
.si-penny::before { content: "\f234"; }
+
.si-penny.si--color::before { color: #CD1414; }
+
.si-penpot::before { content: "\f235"; }
+
.si-penpot.si--color::before { color: #000000; }
+
.si-percy::before { content: "\f236"; }
+
.si-percy.si--color::before { color: #9E66BF; }
+
.si-perforce::before { content: "\f237"; }
+
.si-perforce.si--color::before { color: #404040; }
+
.si-perl::before { content: "\f238"; }
+
.si-perl.si--color::before { color: #0073A1; }
+
.si-perplexity::before { content: "\f239"; }
+
.si-perplexity.si--color::before { color: #1FB8CD; }
+
.si-persistent::before { content: "\f23a"; }
+
.si-persistent.si--color::before { color: #FD5F07; }
+
.si-personio::before { content: "\f23b"; }
+
.si-personio.si--color::before { color: #000000; }
+
.si-petsathome::before { content: "\f23c"; }
+
.si-petsathome.si--color::before { color: #00AA28; }
+
.si-peugeot::before { content: "\f23d"; }
+
.si-peugeot.si--color::before { color: #000000; }
+
.si-pexels::before { content: "\f23e"; }
+
.si-pexels.si--color::before { color: #05A081; }
+
.si-pfsense::before { content: "\f23f"; }
+
.si-pfsense.si--color::before { color: #212121; }
+
.si-phabricator::before { content: "\f240"; }
+
.si-phabricator.si--color::before { color: #4A5F88; }
+
.si-philipshue::before { content: "\f241"; }
+
.si-philipshue.si--color::before { color: #0065D3; }
+
.si-phoenixframework::before { content: "\f242"; }
+
.si-phoenixframework.si--color::before { color: #FD4F00; }
+
.si-phonepe::before { content: "\f243"; }
+
.si-phonepe.si--color::before { color: #5F259F; }
+
.si-phosphoricons::before { content: "\f244"; }
+
.si-phosphoricons.si--color::before { color: #3C402B; }
+
.si-photobucket::before { content: "\f245"; }
+
.si-photobucket.si--color::before { color: #1C47CB; }
+
.si-photocrowd::before { content: "\f246"; }
+
.si-photocrowd.si--color::before { color: #3DAD4B; }
+
.si-photon::before { content: "\f247"; }
+
.si-photon.si--color::before { color: #004480; }
+
.si-photopea::before { content: "\f248"; }
+
.si-photopea.si--color::before { color: #18A497; }
+
.si-php::before { content: "\f249"; }
+
.si-php.si--color::before { color: #777BB4; }
+
.si-phpbb::before { content: "\f24a"; }
+
.si-phpbb.si--color::before { color: #009BDF; }
+
.si-phpmyadmin::before { content: "\f24b"; }
+
.si-phpmyadmin.si--color::before { color: #6C78AF; }
+
.si-phpstorm::before { content: "\f24c"; }
+
.si-phpstorm.si--color::before { color: #000000; }
+
.si-pinetwork::before { content: "\f24d"; }
+
.si-pinetwork.si--color::before { color: #F4AF47; }
+
.si-pihole::before { content: "\f24e"; }
+
.si-pihole.si--color::before { color: #96060C; }
+
.si-piaggiogroup::before { content: "\f24f"; }
+
.si-piaggiogroup.si--color::before { color: #000000; }
+
.si-piapro::before { content: "\f250"; }
+
.si-piapro.si--color::before { color: #E4007B; }
+
.si-picardsurgeles::before { content: "\f251"; }
+
.si-picardsurgeles.si--color::before { color: #2D4999; }
+
.si-picartodottv::before { content: "\f252"; }
+
.si-picartodottv.si--color::before { color: #1DA456; }
+
.si-picnic::before { content: "\f253"; }
+
.si-picnic.si--color::before { color: #E1171E; }
+
.si-picpay::before { content: "\f254"; }
+
.si-picpay.si--color::before { color: #21C25E; }
+
.si-picrew::before { content: "\f255"; }
+
.si-picrew.si--color::before { color: #FFBD16; }
+
.si-picsart::before { content: "\f256"; }
+
.si-picsart.si--color::before { color: #C209C1; }
+
.si-picxy::before { content: "\f257"; }
+
.si-picxy.si--color::before { color: #2E3192; }
+
.si-pimcore::before { content: "\f258"; }
+
.si-pimcore.si--color::before { color: #6428B4; }
+
.si-pinboard::before { content: "\f259"; }
+
.si-pinboard.si--color::before { color: #0000FF; }
+
.si-pinescript::before { content: "\f25a"; }
+
.si-pinescript.si--color::before { color: #00B453; }
+
.si-pingdom::before { content: "\f25b"; }
+
.si-pingdom.si--color::before { color: #FFF000; }
+
.si-pino::before { content: "\f25c"; }
+
.si-pino.si--color::before { color: #687634; }
+
.si-pinterest::before { content: "\f25d"; }
+
.si-pinterest.si--color::before { color: #BD081C; }
+
.si-pioneerdj::before { content: "\f25e"; }
+
.si-pioneerdj.si--color::before { color: #1A1928; }
+
.si-piped::before { content: "\f25f"; }
+
.si-piped.si--color::before { color: #F84330; }
+
.si-pipx::before { content: "\f260"; }
+
.si-pipx.si--color::before { color: #2CFFAA; }
+
.si-pivotaltracker::before { content: "\f261"; }
+
.si-pivotaltracker.si--color::before { color: #517A9E; }
+
.si-piwigo::before { content: "\f262"; }
+
.si-piwigo.si--color::before { color: #FF7700; }
+
.si-pix::before { content: "\f263"; }
+
.si-pix.si--color::before { color: #77B6A8; }
+
.si-pixabay::before { content: "\f264"; }
+
.si-pixabay.si--color::before { color: #2EC66D; }
+
.si-pixelfed::before { content: "\f265"; }
+
.si-pixelfed.si--color::before { color: #6366F1; }
+
.si-pixiv::before { content: "\f266"; }
+
.si-pixiv.si--color::before { color: #0096FA; }
+
.si-pixlr::before { content: "\f267"; }
+
.si-pixlr.si--color::before { color: #3EBBDF; }
+
.si-pkgsrc::before { content: "\f268"; }
+
.si-pkgsrc.si--color::before { color: #FF6600; }
+
.si-planet::before { content: "\f269"; }
+
.si-planet.si--color::before { color: #009DB1; }
+
.si-planetscale::before { content: "\f26a"; }
+
.si-planetscale.si--color::before { color: #000000; }
+
.si-plangrid::before { content: "\f26b"; }
+
.si-plangrid.si--color::before { color: #0085DE; }
+
.si-platformdotsh::before { content: "\f26c"; }
+
.si-platformdotsh.si--color::before { color: #1A182A; }
+
.si-platformio::before { content: "\f26d"; }
+
.si-platformio.si--color::before { color: #F5822A; }
+
.si-platzi::before { content: "\f26e"; }
+
.si-platzi.si--color::before { color: #98CA3F; }
+
.si-plausibleanalytics::before { content: "\f26f"; }
+
.si-plausibleanalytics.si--color::before { color: #5850EC; }
+
.si-playcanvas::before { content: "\f270"; }
+
.si-playcanvas.si--color::before { color: #E05F2C; }
+
.si-playerfm::before { content: "\f271"; }
+
.si-playerfm.si--color::before { color: #C8122A; }
+
.si-playerdotme::before { content: "\f272"; }
+
.si-playerdotme.si--color::before { color: #C0379A; }
+
.si-playstation::before { content: "\f273"; }
+
.si-playstation.si--color::before { color: #0070D1; }
+
.si-playstation2::before { content: "\f274"; }
+
.si-playstation2.si--color::before { color: #003791; }
+
.si-playstation3::before { content: "\f275"; }
+
.si-playstation3.si--color::before { color: #003791; }
+
.si-playstation4::before { content: "\f276"; }
+
.si-playstation4.si--color::before { color: #003791; }
+
.si-playstation5::before { content: "\f277"; }
+
.si-playstation5.si--color::before { color: #003791; }
+
.si-playstationportable::before { content: "\f278"; }
+
.si-playstationportable.si--color::before { color: #003791; }
+
.si-playstationvita::before { content: "\f279"; }
+
.si-playstationvita.si--color::before { color: #003791; }
+
.si-pleroma::before { content: "\f27a"; }
+
.si-pleroma.si--color::before { color: #FBA457; }
+
.si-plesk::before { content: "\f27b"; }
+
.si-plesk.si--color::before { color: #52BBE6; }
+
.si-plex::before { content: "\f27c"; }
+
.si-plex.si--color::before { color: #EBAF00; }
+
.si-plotly::before { content: "\f27d"; }
+
.si-plotly.si--color::before { color: #3F4F75; }
+
.si-plume::before { content: "\f27e"; }
+
.si-plume.si--color::before { color: #7C5CDF; }
+
.si-pluralsight::before { content: "\f27f"; }
+
.si-pluralsight.si--color::before { color: #F15B2A; }
+
.si-plurk::before { content: "\f280"; }
+
.si-plurk.si--color::before { color: #FF574D; }
+
.si-pluscodes::before { content: "\f281"; }
+
.si-pluscodes.si--color::before { color: #4285F4; }
+
.si-pm2::before { content: "\f282"; }
+
.si-pm2.si--color::before { color: #2B037A; }
+
.si-pnpm::before { content: "\f283"; }
+
.si-pnpm.si--color::before { color: #F69220; }
+
.si-pocket::before { content: "\f284"; }
+
.si-pocket.si--color::before { color: #EF3F56; }
+
.si-pocketcasts::before { content: "\f285"; }
+
.si-pocketcasts.si--color::before { color: #F43E37; }
+
.si-pocketbase::before { content: "\f286"; }
+
.si-pocketbase.si--color::before { color: #B8DBE4; }
+
.si-podcastaddict::before { content: "\f287"; }
+
.si-podcastaddict.si--color::before { color: #F4842D; }
+
.si-podcastindex::before { content: "\f288"; }
+
.si-podcastindex.si--color::before { color: #F90000; }
+
.si-podman::before { content: "\f289"; }
+
.si-podman.si--color::before { color: #892CA0; }
+
.si-poe::before { content: "\f28a"; }
+
.si-poe.si--color::before { color: #5D5CDE; }
+
.si-poetry::before { content: "\f28b"; }
+
.si-poetry.si--color::before { color: #60A5FA; }
+
.si-pointy::before { content: "\f28c"; }
+
.si-pointy.si--color::before { color: #009DE0; }
+
.si-polars::before { content: "\f28d"; }
+
.si-polars.si--color::before { color: #CD792C; }
+
.si-polestar::before { content: "\f28e"; }
+
.si-polestar.si--color::before { color: #000000; }
+
.si-polkadot::before { content: "\f28f"; }
+
.si-polkadot.si--color::before { color: #E6007A; }
+
.si-poly::before { content: "\f290"; }
+
.si-poly.si--color::before { color: #EB3C00; }
+
.si-polygon::before { content: "\f291"; }
+
.si-polygon.si--color::before { color: #7B3FE4; }
+
.si-polymerproject::before { content: "\f292"; }
+
.si-polymerproject.si--color::before { color: #FF4470; }
+
.si-polywork::before { content: "\f293"; }
+
.si-polywork.si--color::before { color: #543DE0; }
+
.si-pond5::before { content: "\f294"; }
+
.si-pond5.si--color::before { color: #000000; }
+
.si-popos::before { content: "\f295"; }
+
.si-popos.si--color::before { color: #48B9C7; }
+
.si-porkbun::before { content: "\f296"; }
+
.si-porkbun.si--color::before { color: #EF7878; }
+
.si-porsche::before { content: "\f297"; }
+
.si-porsche.si--color::before { color: #B12B28; }
+
.si-portainer::before { content: "\f298"; }
+
.si-portainer.si--color::before { color: #13BEF9; }
+
.si-portswigger::before { content: "\f299"; }
+
.si-portswigger.si--color::before { color: #FF6633; }
+
.si-posit::before { content: "\f29a"; }
+
.si-posit.si--color::before { color: #447099; }
+
.si-postcss::before { content: "\f29b"; }
+
.si-postcss.si--color::before { color: #DD3A0A; }
+
.si-postgresql::before { content: "\f29c"; }
+
.si-postgresql.si--color::before { color: #4169E1; }
+
.si-posthog::before { content: "\f29d"; }
+
.si-posthog.si--color::before { color: #000000; }
+
.si-postman::before { content: "\f29e"; }
+
.si-postman.si--color::before { color: #FF6C37; }
+
.si-postmates::before { content: "\f29f"; }
+
.si-postmates.si--color::before { color: #FFDF18; }
+
.si-powers::before { content: "\f2a0"; }
+
.si-powers.si--color::before { color: #E74536; }
+
.si-prdotco::before { content: "\f2a1"; }
+
.si-prdotco.si--color::before { color: #0080FF; }
+
.si-precommit::before { content: "\f2a2"; }
+
.si-precommit.si--color::before { color: #FAB040; }
+
.si-preact::before { content: "\f2a3"; }
+
.si-preact.si--color::before { color: #673AB8; }
+
.si-prefect::before { content: "\f2a4"; }
+
.si-prefect.si--color::before { color: #070E10; }
+
.si-premierleague::before { content: "\f2a5"; }
+
.si-premierleague.si--color::before { color: #360D3A; }
+
.si-prepbytes::before { content: "\f2a6"; }
+
.si-prepbytes.si--color::before { color: #5A87C6; }
+
.si-prestashop::before { content: "\f2a7"; }
+
.si-prestashop.si--color::before { color: #DF0067; }
+
.si-presto::before { content: "\f2a8"; }
+
.si-presto.si--color::before { color: #5890FF; }
+
.si-prettier::before { content: "\f2a9"; }
+
.si-prettier.si--color::before { color: #F7B93E; }
+
.si-pretzel::before { content: "\f2aa"; }
+
.si-pretzel.si--color::before { color: #1BB3A4; }
+
.si-prevention::before { content: "\f2ab"; }
+
.si-prevention.si--color::before { color: #44C1C5; }
+
.si-prezi::before { content: "\f2ac"; }
+
.si-prezi.si--color::before { color: #3181FF; }
+
.si-prime::before { content: "\f2ad"; }
+
.si-prime.si--color::before { color: #00A8E1; }
+
.si-primevideo::before { content: "\f2ae"; }
+
.si-primevideo.si--color::before { color: #1F2E3E; }
+
.si-primefaces::before { content: "\f2af"; }
+
.si-primefaces.si--color::before { color: #263238; }
+
.si-primeng::before { content: "\f2b0"; }
+
.si-primeng.si--color::before { color: #DD0031; }
+
.si-primereact::before { content: "\f2b1"; }
+
.si-primereact.si--color::before { color: #03C4E8; }
+
.si-primevue::before { content: "\f2b2"; }
+
.si-primevue.si--color::before { color: #41B883; }
+
.si-printables::before { content: "\f2b3"; }
+
.si-printables.si--color::before { color: #FA6831; }
+
.si-prisma::before { content: "\f2b4"; }
+
.si-prisma.si--color::before { color: #2D3748; }
+
.si-prismic::before { content: "\f2b5"; }
+
.si-prismic.si--color::before { color: #5163BA; }
+
.si-privatedivision::before { content: "\f2b6"; }
+
.si-privatedivision.si--color::before { color: #000000; }
+
.si-privateinternetaccess::before { content: "\f2b7"; }
+
.si-privateinternetaccess.si--color::before { color: #1E811F; }
+
.si-protools::before { content: "\f2b8"; }
+
.si-protools.si--color::before { color: #7ACB10; }
+
.si-probot::before { content: "\f2b9"; }
+
.si-probot.si--color::before { color: #00B0D8; }
+
.si-processingfoundation::before { content: "\f2ba"; }
+
.si-processingfoundation.si--color::before { color: #006699; }
+
.si-processwire::before { content: "\f2bb"; }
+
.si-processwire.si--color::before { color: #2480E6; }
+
.si-producthunt::before { content: "\f2bc"; }
+
.si-producthunt.si--color::before { color: #DA552F; }
+
.si-progate::before { content: "\f2bd"; }
+
.si-progate.si--color::before { color: #380953; }
+
.si-progress::before { content: "\f2be"; }
+
.si-progress.si--color::before { color: #5CE500; }
+
.si-prometheus::before { content: "\f2bf"; }
+
.si-prometheus.si--color::before { color: #E6522C; }
+
.si-pronounsdotpage::before { content: "\f2c0"; }
+
.si-pronounsdotpage.si--color::before { color: #C71585; }
+
.si-prosieben::before { content: "\f2c1"; }
+
.si-prosieben.si--color::before { color: #E6000F; }
+
.si-proteus::before { content: "\f2c2"; }
+
.si-proteus.si--color::before { color: #1C79B3; }
+
.si-protodotio::before { content: "\f2c3"; }
+
.si-protodotio.si--color::before { color: #34A7C1; }
+
.si-protocolsdotio::before { content: "\f2c4"; }
+
.si-protocolsdotio.si--color::before { color: #4D9FE7; }
+
.si-proton::before { content: "\f2c5"; }
+
.si-proton.si--color::before { color: #6D4AFF; }
+
.si-protoncalendar::before { content: "\f2c6"; }
+
.si-protoncalendar.si--color::before { color: #50B0E9; }
+
.si-protondrive::before { content: "\f2c7"; }
+
.si-protondrive.si--color::before { color: #EB508D; }
+
.si-protonmail::before { content: "\f2c8"; }
+
.si-protonmail.si--color::before { color: #6D4AFF; }
+
.si-protonvpn::before { content: "\f2c9"; }
+
.si-protonvpn.si--color::before { color: #66DEB1; }
+
.si-protondb::before { content: "\f2ca"; }
+
.si-protondb.si--color::before { color: #F50057; }
+
.si-protractor::before { content: "\f2cb"; }
+
.si-protractor.si--color::before { color: #ED163A; }
+
.si-proxmox::before { content: "\f2cc"; }
+
.si-proxmox.si--color::before { color: #E57000; }
+
.si-pterodactyl::before { content: "\f2cd"; }
+
.si-pterodactyl.si--color::before { color: #10539F; }
+
.si-pubg::before { content: "\f2ce"; }
+
.si-pubg.si--color::before { color: #F4B942; }
+
.si-publons::before { content: "\f2cf"; }
+
.si-publons.si--color::before { color: #336699; }
+
.si-pubmed::before { content: "\f2d0"; }
+
.si-pubmed.si--color::before { color: #326599; }
+
.si-pug::before { content: "\f2d1"; }
+
.si-pug.si--color::before { color: #A86454; }
+
.si-pulumi::before { content: "\f2d2"; }
+
.si-pulumi.si--color::before { color: #8A3391; }
+
.si-puma::before { content: "\f2d3"; }
+
.si-puma.si--color::before { color: #242B2F; }
+
.si-puppet::before { content: "\f2d4"; }
+
.si-puppet.si--color::before { color: #FFAE1A; }
+
.si-puppeteer::before { content: "\f2d5"; }
+
.si-puppeteer.si--color::before { color: #40B5A4; }
+
.si-purescript::before { content: "\f2d6"; }
+
.si-purescript.si--color::before { color: #14161A; }
+
.si-purgecss::before { content: "\f2d7"; }
+
.si-purgecss.si--color::before { color: #14161A; }
+
.si-purism::before { content: "\f2d8"; }
+
.si-purism.si--color::before { color: #2D2D2D; }
+
.si-pushbullet::before { content: "\f2d9"; }
+
.si-pushbullet.si--color::before { color: #4AB367; }
+
.si-pusher::before { content: "\f2da"; }
+
.si-pusher.si--color::before { color: #300D4F; }
+
.si-pwa::before { content: "\f2db"; }
+
.si-pwa.si--color::before { color: #5A0FC8; }
+
.si-pycharm::before { content: "\f2dc"; }
+
.si-pycharm.si--color::before { color: #000000; }
+
.si-pycqa::before { content: "\f2dd"; }
+
.si-pycqa.si--color::before { color: #201B44; }
+
.si-pydantic::before { content: "\f2de"; }
+
.si-pydantic.si--color::before { color: #E92063; }
+
.si-pyg::before { content: "\f2df"; }
+
.si-pyg.si--color::before { color: #3C2179; }
+
.si-pypi::before { content: "\f2e0"; }
+
.si-pypi.si--color::before { color: #3775A9; }
+
.si-pypy::before { content: "\f2e1"; }
+
.si-pypy.si--color::before { color: #193440; }
+
.si-pyscaffold::before { content: "\f2e2"; }
+
.si-pyscaffold.si--color::before { color: #005CA0; }
+
.si-pysyft::before { content: "\f2e3"; }
+
.si-pysyft.si--color::before { color: #F1BF7A; }
+
.si-pytest::before { content: "\f2e4"; }
+
.si-pytest.si--color::before { color: #0A9EDC; }
+
.si-python::before { content: "\f2e5"; }
+
.si-python.si--color::before { color: #3776AB; }
+
.si-pythonanywhere::before { content: "\f2e6"; }
+
.si-pythonanywhere.si--color::before { color: #1D9FD7; }
+
.si-pytorch::before { content: "\f2e7"; }
+
.si-pytorch.si--color::before { color: #EE4C2C; }
+
.si-pyup::before { content: "\f2e8"; }
+
.si-pyup.si--color::before { color: #9F55FF; }
+
.si-qantas::before { content: "\f2e9"; }
+
.si-qantas.si--color::before { color: #E40000; }
+
.si-qase::before { content: "\f2ea"; }
+
.si-qase.si--color::before { color: #4F46DC; }
+
.si-qatarairways::before { content: "\f2eb"; }
+
.si-qatarairways.si--color::before { color: #5C0D34; }
+
.si-qbittorrent::before { content: "\f2ec"; }
+
.si-qbittorrent.si--color::before { color: #2F67BA; }
+
.si-qemu::before { content: "\f2ed"; }
+
.si-qemu.si--color::before { color: #FF6600; }
+
.si-qgis::before { content: "\f2ee"; }
+
.si-qgis.si--color::before { color: #589632; }
+
.si-qi::before { content: "\f2ef"; }
+
.si-qi.si--color::before { color: #000000; }
+
.si-qiita::before { content: "\f2f0"; }
+
.si-qiita.si--color::before { color: #55C500; }
+
.si-qiskit::before { content: "\f2f1"; }
+
.si-qiskit.si--color::before { color: #6929C4; }
+
.si-qiwi::before { content: "\f2f2"; }
+
.si-qiwi.si--color::before { color: #FF8C00; }
+
.si-qlik::before { content: "\f2f3"; }
+
.si-qlik.si--color::before { color: #009848; }
+
.si-qmk::before { content: "\f2f4"; }
+
.si-qmk.si--color::before { color: #333333; }
+
.si-qnap::before { content: "\f2f5"; }
+
.si-qnap.si--color::before { color: #0C2E82; }
+
.si-qq::before { content: "\f2f6"; }
+
.si-qq.si--color::before { color: #1EBAFC; }
+
.si-qt::before { content: "\f2f7"; }
+
.si-qt.si--color::before { color: #41CD52; }
+
.si-qualcomm::before { content: "\f2f8"; }
+
.si-qualcomm.si--color::before { color: #3253DC; }
+
.si-qualtrics::before { content: "\f2f9"; }
+
.si-qualtrics.si--color::before { color: #00B4EF; }
+
.si-qualys::before { content: "\f2fa"; }
+
.si-qualys.si--color::before { color: #ED2E26; }
+
.si-quantcast::before { content: "\f2fb"; }
+
.si-quantcast.si--color::before { color: #000000; }
+
.si-quantconnect::before { content: "\f2fc"; }
+
.si-quantconnect.si--color::before { color: #F98309; }
+
.si-quarkus::before { content: "\f2fd"; }
+
.si-quarkus.si--color::before { color: #4695EB; }
+
.si-quarto::before { content: "\f2fe"; }
+
.si-quarto.si--color::before { color: #39729E; }
+
.si-quasar::before { content: "\f2ff"; }
+
.si-quasar.si--color::before { color: #050A14; }
+
.si-qubesos::before { content: "\f300"; }
+
.si-qubesos.si--color::before { color: #3874D8; }
+
.si-quest::before { content: "\f301"; }
+
.si-quest.si--color::before { color: #FB4F14; }
+
.si-quickbooks::before { content: "\f302"; }
+
.si-quickbooks.si--color::before { color: #2CA01C; }
+
.si-quicklook::before { content: "\f303"; }
+
.si-quicklook.si--color::before { color: #0078D3; }
+
.si-quicktime::before { content: "\f304"; }
+
.si-quicktime.si--color::before { color: #1C69F0; }
+
.si-quicktype::before { content: "\f305"; }
+
.si-quicktype.si--color::before { color: #159588; }
+
.si-quip::before { content: "\f306"; }
+
.si-quip.si--color::before { color: #F27557; }
+
.si-quizlet::before { content: "\f307"; }
+
.si-quizlet.si--color::before { color: #4255FF; }
+
.si-quora::before { content: "\f308"; }
+
.si-quora.si--color::before { color: #B92B27; }
+
.si-qwant::before { content: "\f309"; }
+
.si-qwant.si--color::before { color: #282B2F; }
+
.si-qwik::before { content: "\f30a"; }
+
.si-qwik.si--color::before { color: #AC7EF4; }
+
.si-qwiklabs::before { content: "\f30b"; }
+
.si-qwiklabs.si--color::before { color: #F5CD0E; }
+
.si-qzone::before { content: "\f30c"; }
+
.si-qzone.si--color::before { color: #FECE00; }
+
.si-r::before { content: "\f30d"; }
+
.si-r.si--color::before { color: #276DC3; }
+
.si-r3::before { content: "\f30e"; }
+
.si-r3.si--color::before { color: #EC1D24; }
+
.si-rabbitmq::before { content: "\f30f"; }
+
.si-rabbitmq.si--color::before { color: #FF6600; }
+
.si-racket::before { content: "\f310"; }
+
.si-racket.si--color::before { color: #9F1D20; }
+
.si-radstudio::before { content: "\f311"; }
+
.si-radstudio.si--color::before { color: #E62431; }
+
.si-radar::before { content: "\f312"; }
+
.si-radar.si--color::before { color: #007AFF; }
+
.si-radarr::before { content: "\f313"; }
+
.si-radarr.si--color::before { color: #FFCB3D; }
+
.si-radixui::before { content: "\f314"; }
+
.si-radixui.si--color::before { color: #161618; }
+
.si-railway::before { content: "\f315"; }
+
.si-railway.si--color::before { color: #0B0D0E; }
+
.si-rainmeter::before { content: "\f316"; }
+
.si-rainmeter.si--color::before { color: #19519B; }
+
.si-rakuten::before { content: "\f317"; }
+
.si-rakuten.si--color::before { color: #BF0000; }
+
.si-ram::before { content: "\f318"; }
+
.si-ram.si--color::before { color: #000000; }
+
.si-rancher::before { content: "\f319"; }
+
.si-rancher.si--color::before { color: #0075A8; }
+
.si-rapid::before { content: "\f31a"; }
+
.si-rapid.si--color::before { color: #0055DA; }
+
.si-rarible::before { content: "\f31b"; }
+
.si-rarible.si--color::before { color: #FEDA03; }
+
.si-rasa::before { content: "\f31c"; }
+
.si-rasa.si--color::before { color: #5A17EE; }
+
.si-raspberrypi::before { content: "\f31d"; }
+
.si-raspberrypi.si--color::before { color: #A22846; }
+
.si-ravelry::before { content: "\f31e"; }
+
.si-ravelry.si--color::before { color: #EE6E62; }
+
.si-ray::before { content: "\f31f"; }
+
.si-ray.si--color::before { color: #028CF0; }
+
.si-raycast::before { content: "\f320"; }
+
.si-raycast.si--color::before { color: #FF6363; }
+
.si-raylib::before { content: "\f321"; }
+
.si-raylib.si--color::before { color: #000000; }
+
.si-razer::before { content: "\f322"; }
+
.si-razer.si--color::before { color: #00FF00; }
+
.si-razorpay::before { content: "\f323"; }
+
.si-razorpay.si--color::before { color: #0C2451; }
+
.si-rclone::before { content: "\f324"; }
+
.si-rclone.si--color::before { color: #3F79AD; }
+
.si-react::before { content: "\f325"; }
+
.si-react.si--color::before { color: #61DAFB; }
+
.si-reactbootstrap::before { content: "\f326"; }
+
.si-reactbootstrap.si--color::before { color: #41E0FD; }
+
.si-reacthookform::before { content: "\f327"; }
+
.si-reacthookform.si--color::before { color: #EC5990; }
+
.si-reactquery::before { content: "\f328"; }
+
.si-reactquery.si--color::before { color: #FF4154; }
+
.si-reactrouter::before { content: "\f329"; }
+
.si-reactrouter.si--color::before { color: #CA4245; }
+
.si-reacttable::before { content: "\f32a"; }
+
.si-reacttable.si--color::before { color: #FF4154; }
+
.si-reactiveresume::before { content: "\f32b"; }
+
.si-reactiveresume.si--color::before { color: #000000; }
+
.si-reactivex::before { content: "\f32c"; }
+
.si-reactivex.si--color::before { color: #B7178C; }
+
.si-reactos::before { content: "\f32d"; }
+
.si-reactos.si--color::before { color: #0088CC; }
+
.si-readthedocs::before { content: "\f32e"; }
+
.si-readthedocs.si--color::before { color: #8CA1AF; }
+
.si-readdotcv::before { content: "\f32f"; }
+
.si-readdotcv.si--color::before { color: #111111; }
+
.si-readme::before { content: "\f330"; }
+
.si-readme.si--color::before { color: #018EF5; }
+
.si-reason::before { content: "\f331"; }
+
.si-reason.si--color::before { color: #DD4B39; }
+
.si-reasonstudios::before { content: "\f332"; }
+
.si-reasonstudios.si--color::before { color: #FFFFFF; }
+
.si-recoil::before { content: "\f333"; }
+
.si-recoil.si--color::before { color: #3578E5; }
+
.si-red::before { content: "\f334"; }
+
.si-red.si--color::before { color: #B32629; }
+
.si-redbull::before { content: "\f335"; }
+
.si-redbull.si--color::before { color: #DB0A40; }
+
.si-redcandlegames::before { content: "\f336"; }
+
.si-redcandlegames.si--color::before { color: #D23735; }
+
.si-redhat::before { content: "\f337"; }
+
.si-redhat.si--color::before { color: #EE0000; }
+
.si-redhatopenshift::before { content: "\f338"; }
+
.si-redhatopenshift.si--color::before { color: #EE0000; }
+
.si-redash::before { content: "\f339"; }
+
.si-redash.si--color::before { color: #FF7964; }
+
.si-redbubble::before { content: "\f33a"; }
+
.si-redbubble.si--color::before { color: #E41321; }
+
.si-reddit::before { content: "\f33b"; }
+
.si-reddit.si--color::before { color: #FF4500; }
+
.si-redis::before { content: "\f33c"; }
+
.si-redis.si--color::before { color: #FF4438; }
+
.si-redmine::before { content: "\f33d"; }
+
.si-redmine.si--color::before { color: #B32024; }
+
.si-redox::before { content: "\f33e"; }
+
.si-redox.si--color::before { color: #000000; }
+
.si-redragon::before { content: "\f33f"; }
+
.si-redragon.si--color::before { color: #E60012; }
+
.si-redsys::before { content: "\f340"; }
+
.si-redsys.si--color::before { color: #DC7C26; }
+
.si-redux::before { content: "\f341"; }
+
.si-redux.si--color::before { color: #764ABC; }
+
.si-reduxsaga::before { content: "\f342"; }
+
.si-reduxsaga.si--color::before { color: #999999; }
+
.si-redwoodjs::before { content: "\f343"; }
+
.si-redwoodjs.si--color::before { color: #BF4722; }
+
.si-reebok::before { content: "\f344"; }
+
.si-reebok.si--color::before { color: #E41D1B; }
+
.si-refine::before { content: "\f345"; }
+
.si-refine.si--color::before { color: #14141F; }
+
.si-refinedgithub::before { content: "\f346"; }
+
.si-refinedgithub.si--color::before { color: #9E95B7; }
+
.si-relay::before { content: "\f347"; }
+
.si-relay.si--color::before { color: #F26B00; }
+
.si-relianceindustrieslimited::before { content: "\f348"; }
+
.si-relianceindustrieslimited.si--color::before { color: #D1AB66; }
+
.si-remark::before { content: "\f349"; }
+
.si-remark.si--color::before { color: #000000; }
+
.si-remedyentertainment::before { content: "\f34a"; }
+
.si-remedyentertainment.si--color::before { color: #D6001C; }
+
.si-remix::before { content: "\f34b"; }
+
.si-remix.si--color::before { color: #000000; }
+
.si-removedotbg::before { content: "\f34c"; }
+
.si-removedotbg.si--color::before { color: #54616C; }
+
.si-renpy::before { content: "\f34d"; }
+
.si-renpy.si--color::before { color: #FF7F7F; }
+
.si-renault::before { content: "\f34e"; }
+
.si-renault.si--color::before { color: #FFCC33; }
+
.si-render::before { content: "\f34f"; }
+
.si-render.si--color::before { color: #000000; }
+
.si-renovate::before { content: "\f350"; }
+
.si-renovate.si--color::before { color: #308BE3; }
+
.si-renren::before { content: "\f351"; }
+
.si-renren.si--color::before { color: #217DC6; }
+
.si-replicate::before { content: "\f352"; }
+
.si-replicate.si--color::before { color: #000000; }
+
.si-replit::before { content: "\f353"; }
+
.si-replit.si--color::before { color: #F26207; }
+
.si-republicofgamers::before { content: "\f354"; }
+
.si-republicofgamers.si--color::before { color: #FF0029; }
+
.si-rescript::before { content: "\f355"; }
+
.si-rescript.si--color::before { color: #E6484F; }
+
.si-rescuetime::before { content: "\f356"; }
+
.si-rescuetime.si--color::before { color: #161A3B; }
+
.si-researchgate::before { content: "\f357"; }
+
.si-researchgate.si--color::before { color: #00CCBB; }
+
.si-resend::before { content: "\f358"; }
+
.si-resend.si--color::before { color: #000000; }
+
.si-resharper::before { content: "\f359"; }
+
.si-resharper.si--color::before { color: #000000; }
+
.si-resurrectionremixos::before { content: "\f35a"; }
+
.si-resurrectionremixos.si--color::before { color: #000000; }
+
.si-retool::before { content: "\f35b"; }
+
.si-retool.si--color::before { color: #3D3D3D; }
+
.si-retroarch::before { content: "\f35c"; }
+
.si-retroarch.si--color::before { color: #000000; }
+
.si-retropie::before { content: "\f35d"; }
+
.si-retropie.si--color::before { color: #CC0000; }
+
.si-revanced::before { content: "\f35e"; }
+
.si-revanced.si--color::before { color: #9ED5FF; }
+
.si-revealdotjs::before { content: "\f35f"; }
+
.si-revealdotjs.si--color::before { color: #F2E142; }
+
.si-reverbnation::before { content: "\f360"; }
+
.si-reverbnation.si--color::before { color: #E43526; }
+
.si-revoltdotchat::before { content: "\f361"; }
+
.si-revoltdotchat.si--color::before { color: #FF4655; }
+
.si-revolut::before { content: "\f362"; }
+
.si-revolut.si--color::before { color: #191C1F; }
+
.si-rewe::before { content: "\f363"; }
+
.si-rewe.si--color::before { color: #CC071E; }
+
.si-rezgo::before { content: "\f364"; }
+
.si-rezgo.si--color::before { color: #F76C00; }
+
.si-rhinoceros::before { content: "\f365"; }
+
.si-rhinoceros.si--color::before { color: #801010; }
+
.si-rich::before { content: "\f366"; }
+
.si-rich.si--color::before { color: #FAE742; }
+
.si-rider::before { content: "\f367"; }
+
.si-rider.si--color::before { color: #000000; }
+
.si-rimacautomobili::before { content: "\f368"; }
+
.si-rimacautomobili.si--color::before { color: #0A222E; }
+
.si-rime::before { content: "\f369"; }
+
.si-rime.si--color::before { color: #000000; }
+
.si-ring::before { content: "\f36a"; }
+
.si-ring.si--color::before { color: #1C9AD6; }
+
.si-riotgames::before { content: "\f36b"; }
+
.si-riotgames.si--color::before { color: #EB0029; }
+
.si-ripple::before { content: "\f36c"; }
+
.si-ripple.si--color::before { color: #0085C0; }
+
.si-riscv::before { content: "\f36d"; }
+
.si-riscv.si--color::before { color: #283272; }
+
.si-riseup::before { content: "\f36e"; }
+
.si-riseup.si--color::before { color: #FF0000; }
+
.si-ritzcarlton::before { content: "\f36f"; }
+
.si-ritzcarlton.si--color::before { color: #000000; }
+
.si-rive::before { content: "\f370"; }
+
.si-rive.si--color::before { color: #1D1D1D; }
+
.si-roadmapdotsh::before { content: "\f371"; }
+
.si-roadmapdotsh.si--color::before { color: #000000; }
+
.si-roamresearch::before { content: "\f372"; }
+
.si-roamresearch.si--color::before { color: #343A40; }
+
.si-robinhood::before { content: "\f373"; }
+
.si-robinhood.si--color::before { color: #CCFF00; }
+
.si-roblox::before { content: "\f374"; }
+
.si-roblox.si--color::before { color: #000000; }
+
.si-robloxstudio::before { content: "\f375"; }
+
.si-robloxstudio.si--color::before { color: #00A2FF; }
+
.si-roboflow::before { content: "\f376"; }
+
.si-roboflow.si--color::before { color: #6706CE; }
+
.si-robotframework::before { content: "\f377"; }
+
.si-robotframework.si--color::before { color: #000000; }
+
.si-rocket::before { content: "\f378"; }
+
.si-rocket.si--color::before { color: #D33847; }
+
.si-rocketdotchat::before { content: "\f379"; }
+
.si-rocketdotchat.si--color::before { color: #F5455C; }
+
.si-rocksdb::before { content: "\f37a"; }
+
.si-rocksdb.si--color::before { color: #2A2A2A; }
+
.si-rockstargames::before { content: "\f37b"; }
+
.si-rockstargames.si--color::before { color: #FCAF17; }
+
.si-rockwellautomation::before { content: "\f37c"; }
+
.si-rockwellautomation.si--color::before { color: #CD163F; }
+
.si-rockylinux::before { content: "\f37d"; }
+
.si-rockylinux.si--color::before { color: #10B981; }
+
.si-roku::before { content: "\f37e"; }
+
.si-roku.si--color::before { color: #662D91; }
+
.si-roll20::before { content: "\f37f"; }
+
.si-roll20.si--color::before { color: #E10085; }
+
.si-rollsroyce::before { content: "\f380"; }
+
.si-rollsroyce.si--color::before { color: #281432; }
+
.si-rollupdotjs::before { content: "\f381"; }
+
.si-rollupdotjs.si--color::before { color: #EC4A3F; }
+
.si-rook::before { content: "\f382"; }
+
.si-rook.si--color::before { color: #2AC6EA; }
+
.si-roon::before { content: "\f383"; }
+
.si-roon.si--color::before { color: #2039F3; }
+
.si-rootme::before { content: "\f384"; }
+
.si-rootme.si--color::before { color: #000000; }
+
.si-roots::before { content: "\f385"; }
+
.si-roots.si--color::before { color: #525DDC; }
+
.si-rootsbedrock::before { content: "\f386"; }
+
.si-rootsbedrock.si--color::before { color: #525DDC; }
+
.si-rootssage::before { content: "\f387"; }
+
.si-rootssage.si--color::before { color: #525DDC; }
+
.si-ros::before { content: "\f388"; }
+
.si-ros.si--color::before { color: #22314E; }
+
.si-rossmann::before { content: "\f389"; }
+
.si-rossmann.si--color::before { color: #C3002D; }
+
.si-rotaryinternational::before { content: "\f38a"; }
+
.si-rotaryinternational.si--color::before { color: #F7A81B; }
+
.si-rottentomatoes::before { content: "\f38b"; }
+
.si-rottentomatoes.si--color::before { color: #FA320A; }
+
.si-roundcube::before { content: "\f38c"; }
+
.si-roundcube.si--color::before { color: #37BEFF; }
+
.si-rsocket::before { content: "\f38d"; }
+
.si-rsocket.si--color::before { color: #EF0092; }
+
.si-rss::before { content: "\f38e"; }
+
.si-rss.si--color::before { color: #FFA500; }
+
.si-rstudioide::before { content: "\f38f"; }
+
.si-rstudioide.si--color::before { color: #75AADB; }
+
.si-rte::before { content: "\f390"; }
+
.si-rte.si--color::before { color: #00A7B3; }
+
.si-rtl::before { content: "\f391"; }
+
.si-rtl.si--color::before { color: #FA002E; }
+
.si-rtlzwei::before { content: "\f392"; }
+
.si-rtlzwei.si--color::before { color: #00BCF6; }
+
.si-rtm::before { content: "\f393"; }
+
.si-rtm.si--color::before { color: #36474F; }
+
.si-rubocop::before { content: "\f394"; }
+
.si-rubocop.si--color::before { color: #000000; }
+
.si-ruby::before { content: "\f395"; }
+
.si-ruby.si--color::before { color: #CC342D; }
+
.si-rubyonrails::before { content: "\f396"; }
+
.si-rubyonrails.si--color::before { color: #D30001; }
+
.si-rubysinatra::before { content: "\f397"; }
+
.si-rubysinatra.si--color::before { color: #000000; }
+
.si-rubygems::before { content: "\f398"; }
+
.si-rubygems.si--color::before { color: #E9573F; }
+
.si-rubymine::before { content: "\f399"; }
+
.si-rubymine.si--color::before { color: #000000; }
+
.si-ruff::before { content: "\f39a"; }
+
.si-ruff.si--color::before { color: #D7FF64; }
+
.si-rumahweb::before { content: "\f39b"; }
+
.si-rumahweb.si--color::before { color: #2EB4E3; }
+
.si-rumble::before { content: "\f39c"; }
+
.si-rumble.si--color::before { color: #85C742; }
+
.si-rundeck::before { content: "\f39d"; }
+
.si-rundeck.si--color::before { color: #F73F39; }
+
.si-runkeeper::before { content: "\f39e"; }
+
.si-runkeeper.si--color::before { color: #001E62; }
+
.si-runkit::before { content: "\f39f"; }
+
.si-runkit.si--color::before { color: #491757; }
+
.si-runrundotit::before { content: "\f3a0"; }
+
.si-runrundotit.si--color::before { color: #DB3729; }
+
.si-rust::before { content: "\f3a1"; }
+
.si-rust.si--color::before { color: #000000; }
+
.si-rustdesk::before { content: "\f3a2"; }
+
.si-rustdesk.si--color::before { color: #024EFF; }
+
.si-rxdb::before { content: "\f3a3"; }
+
.si-rxdb.si--color::before { color: #8D1F89; }
+
.si-ryanair::before { content: "\f3a4"; }
+
.si-ryanair.si--color::before { color: #073590; }
+
.si-rye::before { content: "\f3a5"; }
+
.si-rye.si--color::before { color: #000000; }
+
.si-s7airlines::before { content: "\f3a6"; }
+
.si-s7airlines.si--color::before { color: #C4D600; }
+
.si-sabanci::before { content: "\f3a7"; }
+
.si-sabanci.si--color::before { color: #004B93; }
+
.si-safari::before { content: "\f3a8"; }
+
.si-safari.si--color::before { color: #006CFF; }
+
.si-sage::before { content: "\f3a9"; }
+
.si-sage.si--color::before { color: #00D639; }
+
.si-sahibinden::before { content: "\f3aa"; }
+
.si-sahibinden.si--color::before { color: #FFE800; }
+
.si-sailfishos::before { content: "\f3ab"; }
+
.si-sailfishos.si--color::before { color: #053766; }
+
.si-sailsdotjs::before { content: "\f3ac"; }
+
.si-sailsdotjs.si--color::before { color: #14ACC2; }
+
.si-salesforce::before { content: "\f3ad"; }
+
.si-salesforce.si--color::before { color: #00A1E0; }
+
.si-salla::before { content: "\f3ae"; }
+
.si-salla.si--color::before { color: #BAF3E6; }
+
.si-saltproject::before { content: "\f3af"; }
+
.si-saltproject.si--color::before { color: #57BCAD; }
+
.si-samsclub::before { content: "\f3b0"; }
+
.si-samsclub.si--color::before { color: #0067A0; }
+
.si-samsung::before { content: "\f3b1"; }
+
.si-samsung.si--color::before { color: #1428A0; }
+
.si-samsungpay::before { content: "\f3b2"; }
+
.si-samsungpay.si--color::before { color: #1428A0; }
+
.si-sanfranciscomunicipalrailway::before { content: "\f3b3"; }
+
.si-sanfranciscomunicipalrailway.si--color::before { color: #BA0C2F; }
+
.si-sandisk::before { content: "\f3b4"; }
+
.si-sandisk.si--color::before { color: #ED1C24; }
+
.si-sanic::before { content: "\f3b5"; }
+
.si-sanic.si--color::before { color: #FF0D68; }
+
.si-sanity::before { content: "\f3b6"; }
+
.si-sanity.si--color::before { color: #F03E2F; }
+
.si-saopaulometro::before { content: "\f3b7"; }
+
.si-saopaulometro.si--color::before { color: #004382; }
+
.si-sap::before { content: "\f3b8"; }
+
.si-sap.si--color::before { color: #0FAAFF; }
+
.si-sartorius::before { content: "\f3b9"; }
+
.si-sartorius.si--color::before { color: #FFED00; }
+
.si-sass::before { content: "\f3ba"; }
+
.si-sass.si--color::before { color: #CC6699; }
+
.si-sat1::before { content: "\f3bb"; }
+
.si-sat1.si--color::before { color: #047DA3; }
+
.si-satellite::before { content: "\f3bc"; }
+
.si-satellite.si--color::before { color: #000000; }
+
.si-saturn::before { content: "\f3bd"; }
+
.si-saturn.si--color::before { color: #EB680B; }
+
.si-saucelabs::before { content: "\f3be"; }
+
.si-saucelabs.si--color::before { color: #3DDC91; }
+
.si-saudia::before { content: "\f3bf"; }
+
.si-saudia.si--color::before { color: #026938; }
+
.si-scala::before { content: "\f3c0"; }
+
.si-scala.si--color::before { color: #DC322F; }
+
.si-scalar::before { content: "\f3c1"; }
+
.si-scalar.si--color::before { color: #1A1A1A; }
+
.si-scaleway::before { content: "\f3c2"; }
+
.si-scaleway.si--color::before { color: #4F0599; }
+
.si-scania::before { content: "\f3c3"; }
+
.si-scania.si--color::before { color: #041E42; }
+
.si-schneiderelectric::before { content: "\f3c4"; }
+
.si-schneiderelectric.si--color::before { color: #3DCD58; }
+
.si-scikitlearn::before { content: "\f3c5"; }
+
.si-scikitlearn.si--color::before { color: #F7931E; }
+
.si-scilab::before { content: "\f3c6"; }
+
.si-scilab.si--color::before { color: #CD1925; }
+
.si-scipy::before { content: "\f3c7"; }
+
.si-scipy.si--color::before { color: #8CAAE6; }
+
.si-scopus::before { content: "\f3c8"; }
+
.si-scopus.si--color::before { color: #E9711C; }
+
.si-scpfoundation::before { content: "\f3c9"; }
+
.si-scpfoundation.si--color::before { color: #FFFFFF; }
+
.si-scrapbox::before { content: "\f3ca"; }
+
.si-scrapbox.si--color::before { color: #06B632; }
+
.si-scrapy::before { content: "\f3cb"; }
+
.si-scrapy.si--color::before { color: #60A839; }
+
.si-scratch::before { content: "\f3cc"; }
+
.si-scratch.si--color::before { color: #4D97FF; }
+
.si-screencastify::before { content: "\f3cd"; }
+
.si-screencastify.si--color::before { color: #FF8282; }
+
.si-scribd::before { content: "\f3ce"; }
+
.si-scribd.si--color::before { color: #1E7B85; }
+
.si-scrimba::before { content: "\f3cf"; }
+
.si-scrimba.si--color::before { color: #2B283A; }
+
.si-scrollreveal::before { content: "\f3d0"; }
+
.si-scrollreveal.si--color::before { color: #FFCB36; }
+
.si-scrumalliance::before { content: "\f3d1"; }
+
.si-scrumalliance.si--color::before { color: #009FDA; }
+
.si-scrutinizerci::before { content: "\f3d2"; }
+
.si-scrutinizerci.si--color::before { color: #8A9296; }
+
.si-scylladb::before { content: "\f3d3"; }
+
.si-scylladb.si--color::before { color: #6CD5E7; }
+
.si-seagate::before { content: "\f3d4"; }
+
.si-seagate.si--color::before { color: #6EBE49; }
+
.si-searxng::before { content: "\f3d5"; }
+
.si-searxng.si--color::before { color: #3050FF; }
+
.si-seat::before { content: "\f3d6"; }
+
.si-seat.si--color::before { color: #33302E; }
+
.si-seatgeek::before { content: "\f3d7"; }
+
.si-seatgeek.si--color::before { color: #FF5B49; }
+
.si-securityscorecard::before { content: "\f3d8"; }
+
.si-securityscorecard.si--color::before { color: #7033FD; }
+
.si-sefaria::before { content: "\f3d9"; }
+
.si-sefaria.si--color::before { color: #212E50; }
+
.si-sega::before { content: "\f3da"; }
+
.si-sega.si--color::before { color: #0089CF; }
+
.si-selenium::before { content: "\f3db"; }
+
.si-selenium.si--color::before { color: #43B02A; }
+
.si-sellfy::before { content: "\f3dc"; }
+
.si-sellfy.si--color::before { color: #21B352; }
+
.si-semanticscholar::before { content: "\f3dd"; }
+
.si-semanticscholar.si--color::before { color: #1857B6; }
+
.si-semanticui::before { content: "\f3de"; }
+
.si-semanticui.si--color::before { color: #00B5AD; }
+
.si-semanticuireact::before { content: "\f3df"; }
+
.si-semanticuireact.si--color::before { color: #35BDB2; }
+
.si-semanticweb::before { content: "\f3e0"; }
+
.si-semanticweb.si--color::before { color: #005A9C; }
+
.si-semanticrelease::before { content: "\f3e1"; }
+
.si-semanticrelease.si--color::before { color: #494949; }
+
.si-semaphoreci::before { content: "\f3e2"; }
+
.si-semaphoreci.si--color::before { color: #19A974; }
+
.si-semrush::before { content: "\f3e3"; }
+
.si-semrush.si--color::before { color: #FF642D; }
+
.si-semver::before { content: "\f3e4"; }
+
.si-semver.si--color::before { color: #3F4551; }
+
.si-sencha::before { content: "\f3e5"; }
+
.si-sencha.si--color::before { color: #86BC40; }
+
.si-sendgrid::before { content: "\f3e6"; }
+
.si-sendgrid.si--color::before { color: #51A9E3; }
+
.si-sennheiser::before { content: "\f3e7"; }
+
.si-sennheiser.si--color::before { color: #000000; }
+
.si-sensu::before { content: "\f3e8"; }
+
.si-sensu.si--color::before { color: #89C967; }
+
.si-sentry::before { content: "\f3e9"; }
+
.si-sentry.si--color::before { color: #362D59; }
+
.si-sepa::before { content: "\f3ea"; }
+
.si-sepa.si--color::before { color: #2350A9; }
+
.si-sequelize::before { content: "\f3eb"; }
+
.si-sequelize.si--color::before { color: #52B0E7; }
+
.si-serverfault::before { content: "\f3ec"; }
+
.si-serverfault.si--color::before { color: #E7282D; }
+
.si-serverless::before { content: "\f3ed"; }
+
.si-serverless.si--color::before { color: #FD5750; }
+
.si-session::before { content: "\f3ee"; }
+
.si-session.si--color::before { color: #000000; }
+
.si-sessionize::before { content: "\f3ef"; }
+
.si-sessionize.si--color::before { color: #1AB394; }
+
.si-setapp::before { content: "\f3f0"; }
+
.si-setapp.si--color::before { color: #E6C3A5; }
+
.si-sfml::before { content: "\f3f1"; }
+
.si-sfml.si--color::before { color: #8CC445; }
+
.si-shadcnui::before { content: "\f3f2"; }
+
.si-shadcnui.si--color::before { color: #000000; }
+
.si-shadow::before { content: "\f3f3"; }
+
.si-shadow.si--color::before { color: #0A0C0D; }
+
.si-shanghaimetro::before { content: "\f3f4"; }
+
.si-shanghaimetro.si--color::before { color: #EC1C24; }
+
.si-sharex::before { content: "\f3f5"; }
+
.si-sharex.si--color::before { color: #2885F1; }
+
.si-sharp::before { content: "\f3f6"; }
+
.si-sharp.si--color::before { color: #99CC00; }
+
.si-shazam::before { content: "\f3f7"; }
+
.si-shazam.si--color::before { color: #0088FF; }
+
.si-shell::before { content: "\f3f8"; }
+
.si-shell.si--color::before { color: #FFD500; }
+
.si-shelly::before { content: "\f3f9"; }
+
.si-shelly.si--color::before { color: #4495D1; }
+
.si-shenzhenmetro::before { content: "\f3fa"; }
+
.si-shenzhenmetro.si--color::before { color: #009943; }
+
.si-shieldsdotio::before { content: "\f3fb"; }
+
.si-shieldsdotio.si--color::before { color: #000000; }
+
.si-shikimori::before { content: "\f3fc"; }
+
.si-shikimori.si--color::before { color: #343434; }
+
.si-shopee::before { content: "\f3fd"; }
+
.si-shopee.si--color::before { color: #EE4D2D; }
+
.si-shopify::before { content: "\f3fe"; }
+
.si-shopify.si--color::before { color: #7AB55C; }
+
.si-shopware::before { content: "\f3ff"; }
+
.si-shopware.si--color::before { color: #189EFF; }
+
.si-shortcut::before { content: "\f400"; }
+
.si-shortcut.si--color::before { color: #58B1E4; }
+
.si-showpad::before { content: "\f401"; }
+
.si-showpad.si--color::before { color: #2D2E83; }
+
.si-showtime::before { content: "\f402"; }
+
.si-showtime.si--color::before { color: #B10000; }
+
.si-showwcase::before { content: "\f403"; }
+
.si-showwcase.si--color::before { color: #0A0D14; }
+
.si-shutterstock::before { content: "\f404"; }
+
.si-shutterstock.si--color::before { color: #EE2B24; }
+
.si-sidekiq::before { content: "\f405"; }
+
.si-sidekiq.si--color::before { color: #B1003E; }
+
.si-sidequest::before { content: "\f406"; }
+
.si-sidequest.si--color::before { color: #101227; }
+
.si-siemens::before { content: "\f407"; }
+
.si-siemens.si--color::before { color: #009999; }
+
.si-sifive::before { content: "\f408"; }
+
.si-sifive.si--color::before { color: #252323; }
+
.si-signal::before { content: "\f409"; }
+
.si-signal.si--color::before { color: #3B45FD; }
+
.si-silverairways::before { content: "\f40a"; }
+
.si-silverairways.si--color::before { color: #D0006F; }
+
.si-similarweb::before { content: "\f40b"; }
+
.si-similarweb.si--color::before { color: #092540; }
+
.si-simkl::before { content: "\f40c"; }
+
.si-simkl.si--color::before { color: #000000; }
+
.si-simpleanalytics::before { content: "\f40d"; }
+
.si-simpleanalytics.si--color::before { color: #FF4F64; }
+
.si-simpleicons::before { content: "\f40e"; }
+
.si-simpleicons.si--color::before { color: #111111; }
+
.si-simplelogin::before { content: "\f40f"; }
+
.si-simplelogin.si--color::before { color: #EA319F; }
+
.si-simplenote::before { content: "\f410"; }
+
.si-simplenote.si--color::before { color: #3361CC; }
+
.si-simplex::before { content: "\f411"; }
+
.si-simplex.si--color::before { color: #000000; }
+
.si-sinaweibo::before { content: "\f412"; }
+
.si-sinaweibo.si--color::before { color: #E6162D; }
+
.si-singaporeairlines::before { content: "\f413"; }
+
.si-singaporeairlines.si--color::before { color: #F99F1C; }
+
.si-singlestore::before { content: "\f414"; }
+
.si-singlestore.si--color::before { color: #AA00FF; }
+
.si-sitecore::before { content: "\f415"; }
+
.si-sitecore.si--color::before { color: #EB1F1F; }
+
.si-sitepoint::before { content: "\f416"; }
+
.si-sitepoint.si--color::before { color: #258AAF; }
+
.si-siyuan::before { content: "\f417"; }
+
.si-siyuan.si--color::before { color: #D23F31; }
+
.si-skaffold::before { content: "\f418"; }
+
.si-skaffold.si--color::before { color: #2AA2D6; }
+
.si-sketch::before { content: "\f419"; }
+
.si-sketch.si--color::before { color: #F7B500; }
+
.si-sketchfab::before { content: "\f41a"; }
+
.si-sketchfab.si--color::before { color: #1CAAD9; }
+
.si-sketchup::before { content: "\f41b"; }
+
.si-sketchup.si--color::before { color: #005F9E; }
+
.si-skillshare::before { content: "\f41c"; }
+
.si-skillshare.si--color::before { color: #00FF84; }
+
.si-skoda::before { content: "\f41d"; }
+
.si-skoda.si--color::before { color: #0E3A2F; }
+
.si-sky::before { content: "\f41e"; }
+
.si-sky.si--color::before { color: #0072C9; }
+
.si-skypack::before { content: "\f41f"; }
+
.si-skypack.si--color::before { color: #3167FF; }
+
.si-slack::before { content: "\f420"; }
+
.si-slack.si--color::before { color: #4A154B; }
+
.si-slackware::before { content: "\f421"; }
+
.si-slackware.si--color::before { color: #000000; }
+
.si-slashdot::before { content: "\f422"; }
+
.si-slashdot.si--color::before { color: #026664; }
+
.si-slickpic::before { content: "\f423"; }
+
.si-slickpic.si--color::before { color: #FF880F; }
+
.si-slides::before { content: "\f424"; }
+
.si-slides.si--color::before { color: #E4637C; }
+
.si-slideshare::before { content: "\f425"; }
+
.si-slideshare.si--color::before { color: #008ED2; }
+
.si-slint::before { content: "\f426"; }
+
.si-slint.si--color::before { color: #2379F4; }
+
.si-smart::before { content: "\f427"; }
+
.si-smart.si--color::before { color: #D7E600; }
+
.si-smartthings::before { content: "\f428"; }
+
.si-smartthings.si--color::before { color: #15BFFF; }
+
.si-smashingmagazine::before { content: "\f429"; }
+
.si-smashingmagazine.si--color::before { color: #E85C33; }
+
.si-smrt::before { content: "\f42a"; }
+
.si-smrt.si--color::before { color: #EE2E24; }
+
.si-smugmug::before { content: "\f42b"; }
+
.si-smugmug.si--color::before { color: #6DB944; }
+
.si-snapchat::before { content: "\f42c"; }
+
.si-snapchat.si--color::before { color: #FFFC00; }
+
.si-snapcraft::before { content: "\f42d"; }
+
.si-snapcraft.si--color::before { color: #82BEA0; }
+
.si-snapdragon::before { content: "\f42e"; }
+
.si-snapdragon.si--color::before { color: #C33139; }
+
.si-sncf::before { content: "\f42f"; }
+
.si-sncf.si--color::before { color: #CA0939; }
+
.si-snort::before { content: "\f430"; }
+
.si-snort.si--color::before { color: #F6A7AA; }
+
.si-snowflake::before { content: "\f431"; }
+
.si-snowflake.si--color::before { color: #29B5E8; }
+
.si-snowpack::before { content: "\f432"; }
+
.si-snowpack.si--color::before { color: #2E5E82; }
+
.si-snyk::before { content: "\f433"; }
+
.si-snyk.si--color::before { color: #4C4A73; }
+
.si-socialblade::before { content: "\f434"; }
+
.si-socialblade.si--color::before { color: #B3382C; }
+
.si-society6::before { content: "\f435"; }
+
.si-society6.si--color::before { color: #000000; }
+
.si-socket::before { content: "\f436"; }
+
.si-socket.si--color::before { color: #C93CD7; }
+
.si-socketdotio::before { content: "\f437"; }
+
.si-socketdotio.si--color::before { color: #010101; }
+
.si-softcatala::before { content: "\f438"; }
+
.si-softcatala.si--color::before { color: #BA2626; }
+
.si-softpedia::before { content: "\f439"; }
+
.si-softpedia.si--color::before { color: #002873; }
+
.si-sogou::before { content: "\f43a"; }
+
.si-sogou.si--color::before { color: #FB6022; }
+
.si-solana::before { content: "\f43b"; }
+
.si-solana.si--color::before { color: #9945FF; }
+
.si-solid::before { content: "\f43c"; }
+
.si-solid.si--color::before { color: #2C4F7C; }
+
.si-solidity::before { content: "\f43d"; }
+
.si-solidity.si--color::before { color: #363636; }
+
.si-sololearn::before { content: "\f43e"; }
+
.si-sololearn.si--color::before { color: #149EF2; }
+
.si-solus::before { content: "\f43f"; }
+
.si-solus.si--color::before { color: #5294E2; }
+
.si-sonar::before { content: "\f440"; }
+
.si-sonar.si--color::before { color: #FD3456; }
+
.si-sonarcloud::before { content: "\f441"; }
+
.si-sonarcloud.si--color::before { color: #F3702A; }
+
.si-sonarlint::before { content: "\f442"; }
+
.si-sonarlint.si--color::before { color: #CB2029; }
+
.si-sonarqube::before { content: "\f443"; }
+
.si-sonarqube.si--color::before { color: #4E9BCD; }
+
.si-sonarr::before { content: "\f444"; }
+
.si-sonarr.si--color::before { color: #2596BE; }
+
.si-sonatype::before { content: "\f445"; }
+
.si-sonatype.si--color::before { color: #1B1C30; }
+
.si-songkick::before { content: "\f446"; }
+
.si-songkick.si--color::before { color: #F80046; }
+
.si-songoda::before { content: "\f447"; }
+
.si-songoda.si--color::before { color: #FC494A; }
+
.si-sonicwall::before { content: "\f448"; }
+
.si-sonicwall.si--color::before { color: #FF791A; }
+
.si-sonos::before { content: "\f449"; }
+
.si-sonos.si--color::before { color: #000000; }
+
.si-sony::before { content: "\f44a"; }
+
.si-sony.si--color::before { color: #FFFFFF; }
+
.si-soriana::before { content: "\f44b"; }
+
.si-soriana.si--color::before { color: #D52B1E; }
+
.si-soundcharts::before { content: "\f44c"; }
+
.si-soundcharts.si--color::before { color: #0C1528; }
+
.si-soundcloud::before { content: "\f44d"; }
+
.si-soundcloud.si--color::before { color: #FF5500; }
+
.si-sourceengine::before { content: "\f44e"; }
+
.si-sourceengine.si--color::before { color: #F79A10; }
+
.si-sourceforge::before { content: "\f44f"; }
+
.si-sourceforge.si--color::before { color: #FF6600; }
+
.si-sourcehut::before { content: "\f450"; }
+
.si-sourcehut.si--color::before { color: #000000; }
+
.si-sourcetree::before { content: "\f451"; }
+
.si-sourcetree.si--color::before { color: #0052CC; }
+
.si-southwestairlines::before { content: "\f452"; }
+
.si-southwestairlines.si--color::before { color: #304CB2; }
+
.si-spacemacs::before { content: "\f453"; }
+
.si-spacemacs.si--color::before { color: #9266CC; }
+
.si-spaceship::before { content: "\f454"; }
+
.si-spaceship.si--color::before { color: #394EFF; }
+
.si-spacex::before { content: "\f455"; }
+
.si-spacex.si--color::before { color: #000000; }
+
.si-spacy::before { content: "\f456"; }
+
.si-spacy.si--color::before { color: #09A3D5; }
+
.si-sparkar::before { content: "\f457"; }
+
.si-sparkar.si--color::before { color: #FF5C83; }
+
.si-sparkasse::before { content: "\f458"; }
+
.si-sparkasse.si--color::before { color: #FF0000; }
+
.si-sparkfun::before { content: "\f459"; }
+
.si-sparkfun.si--color::before { color: #E53525; }
+
.si-sparkpost::before { content: "\f45a"; }
+
.si-sparkpost.si--color::before { color: #FA6423; }
+
.si-spdx::before { content: "\f45b"; }
+
.si-spdx.si--color::before { color: #4398CC; }
+
.si-speakerdeck::before { content: "\f45c"; }
+
.si-speakerdeck.si--color::before { color: #009287; }
+
.si-spectrum::before { content: "\f45d"; }
+
.si-spectrum.si--color::before { color: #7B16FF; }
+
.si-speedtest::before { content: "\f45e"; }
+
.si-speedtest.si--color::before { color: #141526; }
+
.si-speedypage::before { content: "\f45f"; }
+
.si-speedypage.si--color::before { color: #1C71F9; }
+
.si-spoj::before { content: "\f460"; }
+
.si-spoj.si--color::before { color: #337AB7; }
+
.si-sphinx::before { content: "\f461"; }
+
.si-sphinx.si--color::before { color: #000000; }
+
.si-spigotmc::before { content: "\f462"; }
+
.si-spigotmc.si--color::before { color: #ED8106; }
+
.si-spine::before { content: "\f463"; }
+
.si-spine.si--color::before { color: #FF4000; }
+
.si-spinnaker::before { content: "\f464"; }
+
.si-spinnaker.si--color::before { color: #139BB4; }
+
.si-splunk::before { content: "\f465"; }
+
.si-splunk.si--color::before { color: #000000; }
+
.si-spond::before { content: "\f466"; }
+
.si-spond.si--color::before { color: #EE4353; }
+
.si-spotify::before { content: "\f467"; }
+
.si-spotify.si--color::before { color: #1ED760; }
+
.si-spotlight::before { content: "\f468"; }
+
.si-spotlight.si--color::before { color: #352A71; }
+
.si-spreadshirt::before { content: "\f469"; }
+
.si-spreadshirt.si--color::before { color: #00B2A5; }
+
.si-spreaker::before { content: "\f46a"; }
+
.si-spreaker.si--color::before { color: #F5C300; }
+
.si-spring::before { content: "\f46b"; }
+
.si-spring.si--color::before { color: #6DB33F; }
+
.si-spring_creators::before { content: "\f46c"; }
+
.si-spring_creators.si--color::before { color: #000000; }
+
.si-springboot::before { content: "\f46d"; }
+
.si-springboot.si--color::before { color: #6DB33F; }
+
.si-springsecurity::before { content: "\f46e"; }
+
.si-springsecurity.si--color::before { color: #6DB33F; }
+
.si-spyderide::before { content: "\f46f"; }
+
.si-spyderide.si--color::before { color: #8C0000; }
+
.si-sqlalchemy::before { content: "\f470"; }
+
.si-sqlalchemy.si--color::before { color: #D71F00; }
+
.si-sqlite::before { content: "\f471"; }
+
.si-sqlite.si--color::before { color: #003B57; }
+
.si-square::before { content: "\f472"; }
+
.si-square.si--color::before { color: #3E4348; }
+
.si-squareenix::before { content: "\f473"; }
+
.si-squareenix.si--color::before { color: #ED1C24; }
+
.si-squarespace::before { content: "\f474"; }
+
.si-squarespace.si--color::before { color: #000000; }
+
.si-srgssr::before { content: "\f475"; }
+
.si-srgssr.si--color::before { color: #AF001E; }
+
.si-ssrn::before { content: "\f476"; }
+
.si-ssrn.si--color::before { color: #154881; }
+
.si-sst::before { content: "\f477"; }
+
.si-sst.si--color::before { color: #E27152; }
+
.si-stackexchange::before { content: "\f478"; }
+
.si-stackexchange.si--color::before { color: #1E5397; }
+
.si-stackoverflow::before { content: "\f479"; }
+
.si-stackoverflow.si--color::before { color: #F58025; }
+
.si-stackbit::before { content: "\f47a"; }
+
.si-stackbit.si--color::before { color: #207BEA; }
+
.si-stackblitz::before { content: "\f47b"; }
+
.si-stackblitz.si--color::before { color: #1269D3; }
+
.si-stackedit::before { content: "\f47c"; }
+
.si-stackedit.si--color::before { color: #606060; }
+
.si-stackhawk::before { content: "\f47d"; }
+
.si-stackhawk.si--color::before { color: #00CBC6; }
+
.si-stackshare::before { content: "\f47e"; }
+
.si-stackshare.si--color::before { color: #0690FA; }
+
.si-stadia::before { content: "\f47f"; }
+
.si-stadia.si--color::before { color: #CD2640; }
+
.si-staffbase::before { content: "\f480"; }
+
.si-staffbase.si--color::before { color: #00A4FD; }
+
.si-stagetimer::before { content: "\f481"; }
+
.si-stagetimer.si--color::before { color: #00A66C; }
+
.si-standardresume::before { content: "\f482"; }
+
.si-standardresume.si--color::before { color: #2A3FFB; }
+
.si-standardjs::before { content: "\f483"; }
+
.si-standardjs.si--color::before { color: #F3DF49; }
+
.si-startrek::before { content: "\f484"; }
+
.si-startrek.si--color::before { color: #FFE200; }
+
.si-starbucks::before { content: "\f485"; }
+
.si-starbucks.si--color::before { color: #006241; }
+
.si-stardock::before { content: "\f486"; }
+
.si-stardock.si--color::before { color: #004B8D; }
+
.si-starlingbank::before { content: "\f487"; }
+
.si-starlingbank.si--color::before { color: #6935D3; }
+
.si-starship::before { content: "\f488"; }
+
.si-starship.si--color::before { color: #DD0B78; }
+
.si-startdotgg::before { content: "\f489"; }
+
.si-startdotgg.si--color::before { color: #2E75BA; }
+
.si-startpage::before { content: "\f48a"; }
+
.si-startpage.si--color::before { color: #6563FF; }
+
.si-starz::before { content: "\f48b"; }
+
.si-starz.si--color::before { color: #082125; }
+
.si-statamic::before { content: "\f48c"; }
+
.si-statamic.si--color::before { color: #FF269E; }
+
.si-statista::before { content: "\f48d"; }
+
.si-statista.si--color::before { color: #001327; }
+
.si-statuspage::before { content: "\f48e"; }
+
.si-statuspage.si--color::before { color: #172B4D; }
+
.si-statuspal::before { content: "\f48f"; }
+
.si-statuspal.si--color::before { color: #4934BF; }
+
.si-steam::before { content: "\f490"; }
+
.si-steam.si--color::before { color: #000000; }
+
.si-steamdeck::before { content: "\f491"; }
+
.si-steamdeck.si--color::before { color: #1A9FFF; }
+
.si-steamdb::before { content: "\f492"; }
+
.si-steamdb.si--color::before { color: #000000; }
+
.si-steamworks::before { content: "\f493"; }
+
.si-steamworks.si--color::before { color: #1E1E1E; }
+
.si-steelseries::before { content: "\f494"; }
+
.si-steelseries.si--color::before { color: #FF5200; }
+
.si-steem::before { content: "\f495"; }
+
.si-steem.si--color::before { color: #171FC9; }
+
.si-steemit::before { content: "\f496"; }
+
.si-steemit.si--color::before { color: #06D6A9; }
+
.si-steinberg::before { content: "\f497"; }
+
.si-steinberg.si--color::before { color: #C90827; }
+
.si-stellar::before { content: "\f498"; }
+
.si-stellar.si--color::before { color: #7D00FF; }
+
.si-stencil::before { content: "\f499"; }
+
.si-stencil.si--color::before { color: #5530FF; }
+
.si-stencyl::before { content: "\f49a"; }
+
.si-stencyl.si--color::before { color: #8E1C04; }
+
.si-stimulus::before { content: "\f49b"; }
+
.si-stimulus.si--color::before { color: #77E8B9; }
+
.si-stmicroelectronics::before { content: "\f49c"; }
+
.si-stmicroelectronics.si--color::before { color: #03234B; }
+
.si-stockx::before { content: "\f49d"; }
+
.si-stockx.si--color::before { color: #006340; }
+
.si-stopstalk::before { content: "\f49e"; }
+
.si-stopstalk.si--color::before { color: #536DFE; }
+
.si-storyblok::before { content: "\f49f"; }
+
.si-storyblok.si--color::before { color: #09B3AF; }
+
.si-storybook::before { content: "\f4a0"; }
+
.si-storybook.si--color::before { color: #FF4785; }
+
.si-strapi::before { content: "\f4a1"; }
+
.si-strapi.si--color::before { color: #4945FF; }
+
.si-strava::before { content: "\f4a2"; }
+
.si-strava.si--color::before { color: #FC4C02; }
+
.si-streamlabs::before { content: "\f4a3"; }
+
.si-streamlabs.si--color::before { color: #80F5D2; }
+
.si-streamlit::before { content: "\f4a4"; }
+
.si-streamlit.si--color::before { color: #FF4B4B; }
+
.si-streamrunners::before { content: "\f4a5"; }
+
.si-streamrunners.si--color::before { color: #6644F8; }
+
.si-stremio::before { content: "\f4a6"; }
+
.si-stremio.si--color::before { color: #685CEE; }
+
.si-stripe::before { content: "\f4a7"; }
+
.si-stripe.si--color::before { color: #635BFF; }
+
.si-strongswan::before { content: "\f4a8"; }
+
.si-strongswan.si--color::before { color: #E00033; }
+
.si-stryker::before { content: "\f4a9"; }
+
.si-stryker.si--color::before { color: #E74C3C; }
+
.si-stubhub::before { content: "\f4aa"; }
+
.si-stubhub.si--color::before { color: #003168; }
+
.si-studio3t::before { content: "\f4ab"; }
+
.si-studio3t.si--color::before { color: #17AF66; }
+
.si-styledcomponents::before { content: "\f4ac"; }
+
.si-styledcomponents.si--color::before { color: #DB7093; }
+
.si-stylelint::before { content: "\f4ad"; }
+
.si-stylelint.si--color::before { color: #263238; }
+
.si-styleshare::before { content: "\f4ae"; }
+
.si-styleshare.si--color::before { color: #212121; }
+
.si-stylus::before { content: "\f4af"; }
+
.si-stylus.si--color::before { color: #333333; }
+
.si-subaru::before { content: "\f4b0"; }
+
.si-subaru.si--color::before { color: #013C74; }
+
.si-sublimetext::before { content: "\f4b1"; }
+
.si-sublimetext.si--color::before { color: #FF9800; }
+
.si-substack::before { content: "\f4b2"; }
+
.si-substack.si--color::before { color: #FF6719; }
+
.si-subtitleedit::before { content: "\f4b3"; }
+
.si-subtitleedit.si--color::before { color: #CC2424; }
+
.si-subversion::before { content: "\f4b4"; }
+
.si-subversion.si--color::before { color: #809CC9; }
+
.si-suckless::before { content: "\f4b5"; }
+
.si-suckless.si--color::before { color: #1177AA; }
+
.si-sui::before { content: "\f4b6"; }
+
.si-sui.si--color::before { color: #4DA2FF; }
+
.si-sumologic::before { content: "\f4b7"; }
+
.si-sumologic.si--color::before { color: #000099; }
+
.si-suno::before { content: "\f4b8"; }
+
.si-suno.si--color::before { color: #000000; }
+
.si-sunrise::before { content: "\f4b9"; }
+
.si-sunrise.si--color::before { color: #DA291C; }
+
.si-supabase::before { content: "\f4ba"; }
+
.si-supabase.si--color::before { color: #3FCF8E; }
+
.si-superuser::before { content: "\f4bb"; }
+
.si-superuser.si--color::before { color: #38A1CE; }
+
.si-supercrease::before { content: "\f4bc"; }
+
.si-supercrease.si--color::before { color: #000000; }
+
.si-supermicro::before { content: "\f4bd"; }
+
.si-supermicro.si--color::before { color: #151F6D; }
+
.si-surfshark::before { content: "\f4be"; }
+
.si-surfshark.si--color::before { color: #1EBFBF; }
+
.si-surrealdb::before { content: "\f4bf"; }
+
.si-surrealdb.si--color::before { color: #FF00A0; }
+
.si-surveymonkey::before { content: "\f4c0"; }
+
.si-surveymonkey.si--color::before { color: #00BF6F; }
+
.si-suse::before { content: "\f4c1"; }
+
.si-suse.si--color::before { color: #0C322C; }
+
.si-suzuki::before { content: "\f4c2"; }
+
.si-suzuki.si--color::before { color: #E30613; }
+
.si-svelte::before { content: "\f4c3"; }
+
.si-svelte.si--color::before { color: #FF3E00; }
+
.si-svg::before { content: "\f4c4"; }
+
.si-svg.si--color::before { color: #FFB13B; }
+
.si-svgdotjs::before { content: "\f4c5"; }
+
.si-svgdotjs.si--color::before { color: #FF0066; }
+
.si-svgo::before { content: "\f4c6"; }
+
.si-svgo.si--color::before { color: #3E7FC1; }
+
.si-svgtrace::before { content: "\f4c7"; }
+
.si-svgtrace.si--color::before { color: #F453C4; }
+
.si-swagger::before { content: "\f4c8"; }
+
.si-swagger.si--color::before { color: #85EA2D; }
+
.si-swarm::before { content: "\f4c9"; }
+
.si-swarm.si--color::before { color: #FFA633; }
+
.si-sway::before { content: "\f4ca"; }
+
.si-sway.si--color::before { color: #68751C; }
+
.si-swc::before { content: "\f4cb"; }
+
.si-swc.si--color::before { color: #F8C457; }
+
.si-swift::before { content: "\f4cc"; }
+
.si-swift.si--color::before { color: #F05138; }
+
.si-swiggy::before { content: "\f4cd"; }
+
.si-swiggy.si--color::before { color: #FC8019; }
+
.si-swiper::before { content: "\f4ce"; }
+
.si-swiper.si--color::before { color: #6332F6; }
+
.si-swr::before { content: "\f4cf"; }
+
.si-swr.si--color::before { color: #000000; }
+
.si-symantec::before { content: "\f4d0"; }
+
.si-symantec.si--color::before { color: #FDB511; }
+
.si-symbolab::before { content: "\f4d1"; }
+
.si-symbolab.si--color::before { color: #DB3F59; }
+
.si-symfony::before { content: "\f4d2"; }
+
.si-symfony.si--color::before { color: #000000; }
+
.si-symphony::before { content: "\f4d3"; }
+
.si-symphony.si--color::before { color: #0098FF; }
+
.si-sympy::before { content: "\f4d4"; }
+
.si-sympy.si--color::before { color: #3B5526; }
+
.si-syncthing::before { content: "\f4d5"; }
+
.si-syncthing.si--color::before { color: #0891D1; }
+
.si-synology::before { content: "\f4d6"; }
+
.si-synology.si--color::before { color: #B5B5B6; }
+
.si-system76::before { content: "\f4d7"; }
+
.si-system76.si--color::before { color: #585048; }
+
.si-tabelog::before { content: "\f4d8"; }
+
.si-tabelog.si--color::before { color: #F2CC38; }
+
.si-tablecheck::before { content: "\f4d9"; }
+
.si-tablecheck.si--color::before { color: #7935D2; }
+
.si-tacobell::before { content: "\f4da"; }
+
.si-tacobell.si--color::before { color: #38096C; }
+
.si-tado::before { content: "\f4db"; }
+
.si-tado.si--color::before { color: #FFA900; }
+
.si-taichigraphics::before { content: "\f4dc"; }
+
.si-taichigraphics.si--color::before { color: #000000; }
+
.si-taichilang::before { content: "\f4dd"; }
+
.si-taichilang.si--color::before { color: #000000; }
+
.si-tails::before { content: "\f4de"; }
+
.si-tails.si--color::before { color: #56347C; }
+
.si-tailscale::before { content: "\f4df"; }
+
.si-tailscale.si--color::before { color: #242424; }
+
.si-tailwindcss::before { content: "\f4e0"; }
+
.si-tailwindcss.si--color::before { color: #06B6D4; }
+
.si-taipy::before { content: "\f4e1"; }
+
.si-taipy.si--color::before { color: #FF371A; }
+
.si-taketwointeractivesoftware::before { content: "\f4e2"; }
+
.si-taketwointeractivesoftware.si--color::before { color: #000000; }
+
.si-talend::before { content: "\f4e3"; }
+
.si-talend.si--color::before { color: #FF6D70; }
+
.si-talenthouse::before { content: "\f4e4"; }
+
.si-talenthouse.si--color::before { color: #000000; }
+
.si-talos::before { content: "\f4e5"; }
+
.si-talos.si--color::before { color: #FF7300; }
+
.si-tamiya::before { content: "\f4e6"; }
+
.si-tamiya.si--color::before { color: #000000; }
+
.si-tampermonkey::before { content: "\f4e7"; }
+
.si-tampermonkey.si--color::before { color: #00485B; }
+
.si-taobao::before { content: "\f4e8"; }
+
.si-taobao.si--color::before { color: #E94F20; }
+
.si-tapas::before { content: "\f4e9"; }
+
.si-tapas.si--color::before { color: #FFCE00; }
+
.si-target::before { content: "\f4ea"; }
+
.si-target.si--color::before { color: #CC0000; }
+
.si-tarom::before { content: "\f4eb"; }
+
.si-tarom.si--color::before { color: #003366; }
+
.si-task::before { content: "\f4ec"; }
+
.si-task.si--color::before { color: #29BEB0; }
+
.si-tasmota::before { content: "\f4ed"; }
+
.si-tasmota.si--color::before { color: #1FA3EC; }
+
.si-tata::before { content: "\f4ee"; }
+
.si-tata.si--color::before { color: #486AAE; }
+
.si-tcs::before { content: "\f4ef"; }
+
.si-tcs.si--color::before { color: #EE3984; }
+
.si-tauri::before { content: "\f4f0"; }
+
.si-tauri.si--color::before { color: #24C8D8; }
+
.si-taxbuzz::before { content: "\f4f1"; }
+
.si-taxbuzz.si--color::before { color: #ED8B0B; }
+
.si-teal::before { content: "\f4f2"; }
+
.si-teal.si--color::before { color: #005149; }
+
.si-teamcity::before { content: "\f4f3"; }
+
.si-teamcity.si--color::before { color: #000000; }
+
.si-teamspeak::before { content: "\f4f4"; }
+
.si-teamspeak.si--color::before { color: #4B69B6; }
+
.si-teamviewer::before { content: "\f4f5"; }
+
.si-teamviewer.si--color::before { color: #050A52; }
+
.si-techcrunch::before { content: "\f4f6"; }
+
.si-techcrunch.si--color::before { color: #029F00; }
+
.si-ted::before { content: "\f4f7"; }
+
.si-ted.si--color::before { color: #E62B1E; }
+
.si-teepublic::before { content: "\f4f8"; }
+
.si-teepublic.si--color::before { color: #4E64DF; }
+
.si-teespring::before { content: "\f4f9"; }
+
.si-teespring.si--color::before { color: #ED2761; }
+
.si-tekton::before { content: "\f4fa"; }
+
.si-tekton.si--color::before { color: #FD495C; }
+
.si-tele5::before { content: "\f4fb"; }
+
.si-tele5.si--color::before { color: #FF00FF; }
+
.si-telequebec::before { content: "\f4fc"; }
+
.si-telequebec.si--color::before { color: #1343FB; }
+
.si-telefonica::before { content: "\f4fd"; }
+
.si-telefonica.si--color::before { color: #0066FF; }
+
.si-telegram::before { content: "\f4fe"; }
+
.si-telegram.si--color::before { color: #26A5E4; }
+
.si-telegraph::before { content: "\f4ff"; }
+
.si-telegraph.si--color::before { color: #FAFAFA; }
+
.si-temporal::before { content: "\f500"; }
+
.si-temporal.si--color::before { color: #000000; }
+
.si-tensorflow::before { content: "\f501"; }
+
.si-tensorflow.si--color::before { color: #FF6F00; }
+
.si-teradata::before { content: "\f502"; }
+
.si-teradata.si--color::before { color: #F37440; }
+
.si-teratail::before { content: "\f503"; }
+
.si-teratail.si--color::before { color: #F4C51C; }
+
.si-termius::before { content: "\f504"; }
+
.si-termius.si--color::before { color: #000000; }
+
.si-terraform::before { content: "\f505"; }
+
.si-terraform.si--color::before { color: #844FBA; }
+
.si-tesco::before { content: "\f506"; }
+
.si-tesco.si--color::before { color: #00539F; }
+
.si-tesla::before { content: "\f507"; }
+
.si-tesla.si--color::before { color: #CC0000; }
+
.si-testcafe::before { content: "\f508"; }
+
.si-testcafe.si--color::before { color: #36B6E5; }
+
.si-testin::before { content: "\f509"; }
+
.si-testin.si--color::before { color: #007DD7; }
+
.si-testinglibrary::before { content: "\f50a"; }
+
.si-testinglibrary.si--color::before { color: #E33332; }
+
.si-testrail::before { content: "\f50b"; }
+
.si-testrail.si--color::before { color: #65C179; }
+
.si-tether::before { content: "\f50c"; }
+
.si-tether.si--color::before { color: #50AF95; }
+
.si-textpattern::before { content: "\f50d"; }
+
.si-textpattern.si--color::before { color: #FFDA44; }
+
.si-tga::before { content: "\f50e"; }
+
.si-tga.si--color::before { color: #0014FF; }
+
.si-thangs::before { content: "\f50f"; }
+
.si-thangs.si--color::before { color: #FFBC00; }
+
.si-thanos::before { content: "\f510"; }
+
.si-thanos.si--color::before { color: #6D41FF; }
+
.si-thealgorithms::before { content: "\f511"; }
+
.si-thealgorithms.si--color::before { color: #00BCB4; }
+
.si-theboringcompany::before { content: "\f512"; }
+
.si-theboringcompany.si--color::before { color: #000000; }
+
.si-theconversation::before { content: "\f513"; }
+
.si-theconversation.si--color::before { color: #D8352A; }
+
.si-thefinals::before { content: "\f514"; }
+
.si-thefinals.si--color::before { color: #D31F3C; }
+
.si-theguardian::before { content: "\f515"; }
+
.si-theguardian.si--color::before { color: #052962; }
+
.si-theirishtimes::before { content: "\f516"; }
+
.si-theirishtimes.si--color::before { color: #000000; }
+
.si-themighty::before { content: "\f517"; }
+
.si-themighty.si--color::before { color: #D0072A; }
+
.si-themodelsresource::before { content: "\f518"; }
+
.si-themodelsresource.si--color::before { color: #3A75BD; }
+
.si-themoviedatabase::before { content: "\f519"; }
+
.si-themoviedatabase.si--color::before { color: #01B4E4; }
+
.si-thenorthface::before { content: "\f51a"; }
+
.si-thenorthface.si--color::before { color: #000000; }
+
.si-theodinproject::before { content: "\f51b"; }
+
.si-theodinproject.si--color::before { color: #A9792B; }
+
.si-theregister::before { content: "\f51c"; }
+
.si-theregister.si--color::before { color: #FF0000; }
+
.si-thesoundsresource::before { content: "\f51d"; }
+
.si-thesoundsresource.si--color::before { color: #39BE6B; }
+
.si-thespritersresource::before { content: "\f51e"; }
+
.si-thespritersresource.si--color::before { color: #BE3939; }
+
.si-thewashingtonpost::before { content: "\f51f"; }
+
.si-thewashingtonpost.si--color::before { color: #231F20; }
+
.si-theweatherchannel::before { content: "\f520"; }
+
.si-theweatherchannel.si--color::before { color: #003399; }
+
.si-thingiverse::before { content: "\f521"; }
+
.si-thingiverse.si--color::before { color: #248BFB; }
+
.si-thinkpad::before { content: "\f522"; }
+
.si-thinkpad.si--color::before { color: #EE2624; }
+
.si-thirdweb::before { content: "\f523"; }
+
.si-thirdweb.si--color::before { color: #F213A4; }
+
.si-threadless::before { content: "\f524"; }
+
.si-threadless.si--color::before { color: #0099FF; }
+
.si-threads::before { content: "\f525"; }
+
.si-threads.si--color::before { color: #000000; }
+
.si-threedotjs::before { content: "\f526"; }
+
.si-threedotjs.si--color::before { color: #000000; }
+
.si-threema::before { content: "\f527"; }
+
.si-threema.si--color::before { color: #3FE669; }
+
.si-thumbtack::before { content: "\f528"; }
+
.si-thumbtack.si--color::before { color: #009FD9; }
+
.si-thunderbird::before { content: "\f529"; }
+
.si-thunderbird.si--color::before { color: #0A84FF; }
+
.si-thunderstore::before { content: "\f52a"; }
+
.si-thunderstore.si--color::before { color: #23FFB0; }
+
.si-thurgauerkantonalbank::before { content: "\f52b"; }
+
.si-thurgauerkantonalbank.si--color::before { color: #006D41; }
+
.si-thymeleaf::before { content: "\f52c"; }
+
.si-thymeleaf.si--color::before { color: #005F0F; }
+
.si-ticketmaster::before { content: "\f52d"; }
+
.si-ticketmaster.si--color::before { color: #026CDF; }
+
.si-ticktick::before { content: "\f52e"; }
+
.si-ticktick.si--color::before { color: #4772FA; }
+
.si-tidal::before { content: "\f52f"; }
+
.si-tidal.si--color::before { color: #000000; }
+
.si-tiddlywiki::before { content: "\f530"; }
+
.si-tiddlywiki.si--color::before { color: #111111; }
+
.si-tide::before { content: "\f531"; }
+
.si-tide.si--color::before { color: #4050FB; }
+
.si-tidyverse::before { content: "\f532"; }
+
.si-tidyverse.si--color::before { color: #1A162D; }
+
.si-tietoevry::before { content: "\f533"; }
+
.si-tietoevry.si--color::before { color: #063752; }
+
.si-tiktok::before { content: "\f534"; }
+
.si-tiktok.si--color::before { color: #000000; }
+
.si-tildapublishing::before { content: "\f535"; }
+
.si-tildapublishing.si--color::before { color: #FFA282; }
+
.si-tile::before { content: "\f536"; }
+
.si-tile.si--color::before { color: #000000; }
+
.si-timescale::before { content: "\f537"; }
+
.si-timescale.si--color::before { color: #FDB515; }
+
.si-tina::before { content: "\f538"; }
+
.si-tina.si--color::before { color: #EC4815; }
+
.si-tinder::before { content: "\f539"; }
+
.si-tinder.si--color::before { color: #FF6B6B; }
+
.si-tindie::before { content: "\f53a"; }
+
.si-tindie.si--color::before { color: #17AEB9; }
+
.si-tinkercad::before { content: "\f53b"; }
+
.si-tinkercad.si--color::before { color: #1477D1; }
+
.si-tinygrad::before { content: "\f53c"; }
+
.si-tinygrad.si--color::before { color: #FFFFFF; }
+
.si-tinyletter::before { content: "\f53d"; }
+
.si-tinyletter.si--color::before { color: #ED1C24; }
+
.si-tistory::before { content: "\f53e"; }
+
.si-tistory.si--color::before { color: #000000; }
+
.si-tldraw::before { content: "\f53f"; }
+
.si-tldraw.si--color::before { color: #FAFAFA; }
+
.si-tmux::before { content: "\f540"; }
+
.si-tmux.si--color::before { color: #1BB91F; }
+
.si-todoist::before { content: "\f541"; }
+
.si-todoist.si--color::before { color: #E44332; }
+
.si-toggl::before { content: "\f542"; }
+
.si-toggl.si--color::before { color: #FFDE91; }
+
.si-toggltrack::before { content: "\f543"; }
+
.si-toggltrack.si--color::before { color: #E57CD8; }
+
.si-tokyometro::before { content: "\f544"; }
+
.si-tokyometro.si--color::before { color: #149DD3; }
+
.si-toll::before { content: "\f545"; }
+
.si-toll.si--color::before { color: #007A68; }
+
.si-toml::before { content: "\f546"; }
+
.si-toml.si--color::before { color: #9C4121; }
+
.si-tomorrowland::before { content: "\f547"; }
+
.si-tomorrowland.si--color::before { color: #000000; }
+
.si-tomtom::before { content: "\f548"; }
+
.si-tomtom.si--color::before { color: #DF1B12; }
+
.si-ton::before { content: "\f549"; }
+
.si-ton.si--color::before { color: #0098EA; }
+
.si-topdotgg::before { content: "\f54a"; }
+
.si-topdotgg.si--color::before { color: #FF3366; }
+
.si-topcoder::before { content: "\f54b"; }
+
.si-topcoder.si--color::before { color: #29A7DF; }
+
.si-toptal::before { content: "\f54c"; }
+
.si-toptal.si--color::before { color: #3863A0; }
+
.si-torbrowser::before { content: "\f54d"; }
+
.si-torbrowser.si--color::before { color: #7D4698; }
+
.si-torproject::before { content: "\f54e"; }
+
.si-torproject.si--color::before { color: #7D4698; }
+
.si-torizon::before { content: "\f54f"; }
+
.si-torizon.si--color::before { color: #FAAF00; }
+
.si-toshiba::before { content: "\f550"; }
+
.si-toshiba.si--color::before { color: #FF0000; }
+
.si-totvs::before { content: "\f551"; }
+
.si-totvs.si--color::before { color: #363636; }
+
.si-tourbox::before { content: "\f552"; }
+
.si-tourbox.si--color::before { color: #231F20; }
+
.si-tower::before { content: "\f553"; }
+
.si-tower.si--color::before { color: #00CAF4; }
+
.si-toyota::before { content: "\f554"; }
+
.si-toyota.si--color::before { color: #EB0A1E; }
+
.si-tplink::before { content: "\f555"; }
+
.si-tplink.si--color::before { color: #4ACBD6; }
+
.si-tqdm::before { content: "\f556"; }
+
.si-tqdm.si--color::before { color: #FFC107; }
+
.si-traccar::before { content: "\f557"; }
+
.si-traccar.si--color::before { color: #000000; }
+
.si-tradingview::before { content: "\f558"; }
+
.si-tradingview.si--color::before { color: #131622; }
+
.si-traefikmesh::before { content: "\f559"; }
+
.si-traefikmesh.si--color::before { color: #9D0FB0; }
+
.si-traefikproxy::before { content: "\f55a"; }
+
.si-traefikproxy.si--color::before { color: #24A1C1; }
+
.si-trailforks::before { content: "\f55b"; }
+
.si-trailforks.si--color::before { color: #FFCD00; }
+
.si-trainerroad::before { content: "\f55c"; }
+
.si-trainerroad.si--color::before { color: #DA291C; }
+
.si-trakt::before { content: "\f55d"; }
+
.si-trakt.si--color::before { color: #ED1C24; }
+
.si-transifex::before { content: "\f55e"; }
+
.si-transifex.si--color::before { color: #0064AB; }
+
.si-transmission::before { content: "\f55f"; }
+
.si-transmission.si--color::before { color: #D70008; }
+
.si-transportforireland::before { content: "\f560"; }
+
.si-transportforireland.si--color::before { color: #00B274; }
+
.si-transportforlondon::before { content: "\f561"; }
+
.si-transportforlondon.si--color::before { color: #113B92; }
+
.si-travisci::before { content: "\f562"; }
+
.si-travisci.si--color::before { color: #3EAAAF; }
+
.si-treehouse::before { content: "\f563"; }
+
.si-treehouse.si--color::before { color: #5FCF80; }
+
.si-trello::before { content: "\f564"; }
+
.si-trello.si--color::before { color: #0052CC; }
+
.si-trendmicro::before { content: "\f565"; }
+
.si-trendmicro.si--color::before { color: #D71921; }
+
.si-treyarch::before { content: "\f566"; }
+
.si-treyarch.si--color::before { color: #000000; }
+
.si-tricentis::before { content: "\f567"; }
+
.si-tricentis.si--color::before { color: #12438C; }
+
.si-trilium::before { content: "\f568"; }
+
.si-trilium.si--color::before { color: #000000; }
+
.si-triller::before { content: "\f569"; }
+
.si-triller.si--color::before { color: #FF0089; }
+
.si-trillertv::before { content: "\f56a"; }
+
.si-trillertv.si--color::before { color: #E61414; }
+
.si-trimble::before { content: "\f56b"; }
+
.si-trimble.si--color::before { color: #0063A3; }
+
.si-trino::before { content: "\f56c"; }
+
.si-trino.si--color::before { color: #DD00A1; }
+
.si-tripdotcom::before { content: "\f56d"; }
+
.si-tripdotcom.si--color::before { color: #287DFA; }
+
.si-tripadvisor::before { content: "\f56e"; }
+
.si-tripadvisor.si--color::before { color: #34E0A1; }
+
.si-trivago::before { content: "\f56f"; }
+
.si-trivago.si--color::before { color: #E32851; }
+
.si-trivy::before { content: "\f570"; }
+
.si-trivy.si--color::before { color: #1904DA; }
+
.si-trove::before { content: "\f571"; }
+
.si-trove.si--color::before { color: #2D004B; }
+
.si-trpc::before { content: "\f572"; }
+
.si-trpc.si--color::before { color: #2596BE; }
+
.si-truenas::before { content: "\f573"; }
+
.si-truenas.si--color::before { color: #0095D5; }
+
.si-trueup::before { content: "\f574"; }
+
.si-trueup.si--color::before { color: #4E71DA; }
+
.si-trulia::before { content: "\f575"; }
+
.si-trulia.si--color::before { color: #0A0B09; }
+
.si-trustedshops::before { content: "\f576"; }
+
.si-trustedshops.si--color::before { color: #FFDC0F; }
+
.si-trustpilot::before { content: "\f577"; }
+
.si-trustpilot.si--color::before { color: #00B67A; }
+
.si-tryitonline::before { content: "\f578"; }
+
.si-tryitonline.si--color::before { color: #303030; }
+
.si-tryhackme::before { content: "\f579"; }
+
.si-tryhackme.si--color::before { color: #212C42; }
+
.si-tsnode::before { content: "\f57a"; }
+
.si-tsnode.si--color::before { color: #3178C6; }
+
.si-tubi::before { content: "\f57b"; }
+
.si-tubi.si--color::before { color: #7408FF; }
+
.si-tui::before { content: "\f57c"; }
+
.si-tui.si--color::before { color: #D40E14; }
+
.si-tumblr::before { content: "\f57d"; }
+
.si-tumblr.si--color::before { color: #36465D; }
+
.si-tunein::before { content: "\f57e"; }
+
.si-tunein.si--color::before { color: #14D8CC; }
+
.si-turbo::before { content: "\f57f"; }
+
.si-turbo.si--color::before { color: #5CD8E5; }
+
.si-turborepo::before { content: "\f580"; }
+
.si-turborepo.si--color::before { color: #EF4444; }
+
.si-turbosquid::before { content: "\f581"; }
+
.si-turbosquid.si--color::before { color: #FF8135; }
+
.si-turkishairlines::before { content: "\f582"; }
+
.si-turkishairlines.si--color::before { color: #C70A0C; }
+
.si-turso::before { content: "\f583"; }
+
.si-turso.si--color::before { color: #4FF8D2; }
+
.si-tuta::before { content: "\f584"; }
+
.si-tuta.si--color::before { color: #850122; }
+
.si-tvtime::before { content: "\f585"; }
+
.si-tvtime.si--color::before { color: #FFD400; }
+
.si-tv4play::before { content: "\f586"; }
+
.si-tv4play.si--color::before { color: #E0001C; }
+
.si-twilio::before { content: "\f587"; }
+
.si-twilio.si--color::before { color: #F22F46; }
+
.si-twinkly::before { content: "\f588"; }
+
.si-twinkly.si--color::before { color: #FCC15E; }
+
.si-twinmotion::before { content: "\f589"; }
+
.si-twinmotion.si--color::before { color: #000000; }
+
.si-twitch::before { content: "\f58a"; }
+
.si-twitch.si--color::before { color: #9146FF; }
+
.si-typeform::before { content: "\f58b"; }
+
.si-typeform.si--color::before { color: #262627; }
+
.si-typeorm::before { content: "\f58c"; }
+
.si-typeorm.si--color::before { color: #FE0803; }
+
.si-typer::before { content: "\f58d"; }
+
.si-typer.si--color::before { color: #000000; }
+
.si-typescript::before { content: "\f58e"; }
+
.si-typescript.si--color::before { color: #3178C6; }
+
.si-typo3::before { content: "\f58f"; }
+
.si-typo3.si--color::before { color: #FF8700; }
+
.si-typst::before { content: "\f590"; }
+
.si-typst.si--color::before { color: #239DAD; }
+
.si-udotsdotnews::before { content: "\f591"; }
+
.si-udotsdotnews.si--color::before { color: #005EA6; }
+
.si-uber::before { content: "\f592"; }
+
.si-uber.si--color::before { color: #000000; }
+
.si-ubereats::before { content: "\f593"; }
+
.si-ubereats.si--color::before { color: #06C167; }
+
.si-ubiquiti::before { content: "\f594"; }
+
.si-ubiquiti.si--color::before { color: #0559C9; }
+
.si-ubisoft::before { content: "\f595"; }
+
.si-ubisoft.si--color::before { color: #000000; }
+
.si-ublockorigin::before { content: "\f596"; }
+
.si-ublockorigin.si--color::before { color: #800000; }
+
.si-ubuntu::before { content: "\f597"; }
+
.si-ubuntu.si--color::before { color: #E95420; }
+
.si-ubuntumate::before { content: "\f598"; }
+
.si-ubuntumate.si--color::before { color: #84A454; }
+
.si-udacity::before { content: "\f599"; }
+
.si-udacity.si--color::before { color: #02B3E4; }
+
.si-udemy::before { content: "\f59a"; }
+
.si-udemy.si--color::before { color: #A435F0; }
+
.si-ufc::before { content: "\f59b"; }
+
.si-ufc.si--color::before { color: #D20A0A; }
+
.si-uikit::before { content: "\f59c"; }
+
.si-uikit.si--color::before { color: #2396F3; }
+
.si-uipath::before { content: "\f59d"; }
+
.si-uipath.si--color::before { color: #FA4616; }
+
.si-ukca::before { content: "\f59e"; }
+
.si-ukca.si--color::before { color: #000000; }
+
.si-ultralytics::before { content: "\f59f"; }
+
.si-ultralytics.si--color::before { color: #111F68; }
+
.si-ulule::before { content: "\f5a0"; }
+
.si-ulule.si--color::before { color: #18A5D6; }
+
.si-umami::before { content: "\f5a1"; }
+
.si-umami.si--color::before { color: #000000; }
+
.si-umbraco::before { content: "\f5a2"; }
+
.si-umbraco.si--color::before { color: #3544B1; }
+
.si-uml::before { content: "\f5a3"; }
+
.si-uml.si--color::before { color: #FABD14; }
+
.si-unacademy::before { content: "\f5a4"; }
+
.si-unacademy.si--color::before { color: #08BD80; }
+
.si-underarmour::before { content: "\f5a5"; }
+
.si-underarmour.si--color::before { color: #1D1D1D; }
+
.si-underscoredotjs::before { content: "\f5a6"; }
+
.si-underscoredotjs.si--color::before { color: #0371B5; }
+
.si-undertale::before { content: "\f5a7"; }
+
.si-undertale.si--color::before { color: #E71D29; }
+
.si-unicode::before { content: "\f5a8"; }
+
.si-unicode.si--color::before { color: #5455FE; }
+
.si-unilever::before { content: "\f5a9"; }
+
.si-unilever.si--color::before { color: #1F36C7; }
+
.si-uniqlo::before { content: "\f5aa"; }
+
.si-uniqlo.si--color::before { color: #FF0000; }
+
.si-uniqlo_ja::before { content: "\f5ab"; }
+
.si-uniqlo_ja.si--color::before { color: #FF0000; }
+
.si-unitedairlines::before { content: "\f5ac"; }
+
.si-unitedairlines.si--color::before { color: #002244; }
+
.si-unitednations::before { content: "\f5ad"; }
+
.si-unitednations.si--color::before { color: #009EDB; }
+
.si-unity::before { content: "\f5ae"; }
+
.si-unity.si--color::before { color: #FFFFFF; }
+
.si-unjs::before { content: "\f5af"; }
+
.si-unjs.si--color::before { color: #ECDC5A; }
+
.si-unlicense::before { content: "\f5b0"; }
+
.si-unlicense.si--color::before { color: #808080; }
+
.si-unocss::before { content: "\f5b1"; }
+
.si-unocss.si--color::before { color: #333333; }
+
.si-unpkg::before { content: "\f5b2"; }
+
.si-unpkg.si--color::before { color: #000000; }
+
.si-unraid::before { content: "\f5b3"; }
+
.si-unraid.si--color::before { color: #F15A2C; }
+
.si-unrealengine::before { content: "\f5b4"; }
+
.si-unrealengine.si--color::before { color: #0E1128; }
+
.si-unsplash::before { content: "\f5b5"; }
+
.si-unsplash.si--color::before { color: #000000; }
+
.si-untappd::before { content: "\f5b6"; }
+
.si-untappd.si--color::before { color: #FFC000; }
+
.si-upcloud::before { content: "\f5b7"; }
+
.si-upcloud.si--color::before { color: #7B00FF; }
+
.si-uphold::before { content: "\f5b8"; }
+
.si-uphold.si--color::before { color: #49CC68; }
+
.si-uplabs::before { content: "\f5b9"; }
+
.si-uplabs.si--color::before { color: #3930D8; }
+
.si-upptime::before { content: "\f5ba"; }
+
.si-upptime.si--color::before { color: #1ABC9C; }
+
.si-ups::before { content: "\f5bb"; }
+
.si-ups.si--color::before { color: #150400; }
+
.si-upstash::before { content: "\f5bc"; }
+
.si-upstash.si--color::before { color: #00E9A3; }
+
.si-uptimekuma::before { content: "\f5bd"; }
+
.si-uptimekuma.si--color::before { color: #5CDD8B; }
+
.si-upwork::before { content: "\f5be"; }
+
.si-upwork.si--color::before { color: #6FDA44; }
+
.si-usps::before { content: "\f5bf"; }
+
.si-usps.si--color::before { color: #333366; }
+
.si-utorrent::before { content: "\f5c0"; }
+
.si-utorrent.si--color::before { color: #76B83F; }
+
.si-uv::before { content: "\f5c1"; }
+
.si-uv.si--color::before { color: #DE5FE9; }
+
.si-v::before { content: "\f5c2"; }
+
.si-v.si--color::before { color: #5D87BF; }
+
.si-v0::before { content: "\f5c3"; }
+
.si-v0.si--color::before { color: #000000; }
+
.si-v2ex::before { content: "\f5c4"; }
+
.si-v2ex.si--color::before { color: #1F1F1F; }
+
.si-v8::before { content: "\f5c5"; }
+
.si-v8.si--color::before { color: #4B8BF5; }
+
.si-vaadin::before { content: "\f5c6"; }
+
.si-vaadin.si--color::before { color: #00B4F0; }
+
.si-vagrant::before { content: "\f5c7"; }
+
.si-vagrant.si--color::before { color: #1868F2; }
+
.si-vala::before { content: "\f5c8"; }
+
.si-vala.si--color::before { color: #7239B3; }
+
.si-valorant::before { content: "\f5c9"; }
+
.si-valorant.si--color::before { color: #FA4454; }
+
.si-valve::before { content: "\f5ca"; }
+
.si-valve.si--color::before { color: #F74843; }
+
.si-vapor::before { content: "\f5cb"; }
+
.si-vapor.si--color::before { color: #0D0D0D; }
+
.si-vault::before { content: "\f5cc"; }
+
.si-vault.si--color::before { color: #FFEC6E; }
+
.si-vaultwarden::before { content: "\f5cd"; }
+
.si-vaultwarden.si--color::before { color: #000000; }
+
.si-vauxhall::before { content: "\f5ce"; }
+
.si-vauxhall.si--color::before { color: #EB001E; }
+
.si-vbulletin::before { content: "\f5cf"; }
+
.si-vbulletin.si--color::before { color: #184D66; }
+
.si-vectary::before { content: "\f5d0"; }
+
.si-vectary.si--color::before { color: #6100FF; }
+
.si-vectorlogozone::before { content: "\f5d1"; }
+
.si-vectorlogozone.si--color::before { color: #184D66; }
+
.si-vectorworks::before { content: "\f5d2"; }
+
.si-vectorworks.si--color::before { color: #000000; }
+
.si-veeam::before { content: "\f5d3"; }
+
.si-veeam.si--color::before { color: #00B336; }
+
.si-veed::before { content: "\f5d4"; }
+
.si-veed.si--color::before { color: #B6FF60; }
+
.si-veepee::before { content: "\f5d5"; }
+
.si-veepee.si--color::before { color: #EC008C; }
+
.si-vega::before { content: "\f5d6"; }
+
.si-vega.si--color::before { color: #2450B2; }
+
.si-vegas::before { content: "\f5d7"; }
+
.si-vegas.si--color::before { color: #1A1A1A; }
+
.si-velocity::before { content: "\f5d8"; }
+
.si-velocity.si--color::before { color: #1BBAE0; }
+
.si-velog::before { content: "\f5d9"; }
+
.si-velog.si--color::before { color: #20C997; }
+
.si-vencord::before { content: "\f5da"; }
+
.si-vencord.si--color::before { color: #D3859B; }
+
.si-venmo::before { content: "\f5db"; }
+
.si-venmo.si--color::before { color: #008CFF; }
+
.si-vercel::before { content: "\f5dc"; }
+
.si-vercel.si--color::before { color: #000000; }
+
.si-verdaccio::before { content: "\f5dd"; }
+
.si-verdaccio.si--color::before { color: #4B5E40; }
+
.si-veritas::before { content: "\f5de"; }
+
.si-veritas.si--color::before { color: #B1181E; }
+
.si-verizon::before { content: "\f5df"; }
+
.si-verizon.si--color::before { color: #CD040B; }
+
.si-vespa::before { content: "\f5e0"; }
+
.si-vespa.si--color::before { color: #85B09A; }
+
.si-vestel::before { content: "\f5e1"; }
+
.si-vestel.si--color::before { color: #DD052B; }
+
.si-vexxhost::before { content: "\f5e2"; }
+
.si-vexxhost.si--color::before { color: #2A1659; }
+
.si-vfairs::before { content: "\f5e3"; }
+
.si-vfairs.si--color::before { color: #EF4678; }
+
.si-viadeo::before { content: "\f5e4"; }
+
.si-viadeo.si--color::before { color: #F07355; }
+
.si-viaplay::before { content: "\f5e5"; }
+
.si-viaplay.si--color::before { color: #FE365F; }
+
.si-viber::before { content: "\f5e6"; }
+
.si-viber.si--color::before { color: #7360F2; }
+
.si-viblo::before { content: "\f5e7"; }
+
.si-viblo.si--color::before { color: #5387C6; }
+
.si-victoriametrics::before { content: "\f5e8"; }
+
.si-victoriametrics.si--color::before { color: #621773; }
+
.si-victronenergy::before { content: "\f5e9"; }
+
.si-victronenergy.si--color::before { color: #0066B2; }
+
.si-vim::before { content: "\f5ea"; }
+
.si-vim.si--color::before { color: #019733; }
+
.si-vimeo::before { content: "\f5eb"; }
+
.si-vimeo.si--color::before { color: #1AB7EA; }
+
.si-vimeolivestream::before { content: "\f5ec"; }
+
.si-vimeolivestream.si--color::before { color: #0A0A20; }
+
.si-virgin::before { content: "\f5ed"; }
+
.si-virgin.si--color::before { color: #E10A0A; }
+
.si-virginatlantic::before { content: "\f5ee"; }
+
.si-virginatlantic.si--color::before { color: #DA0530; }
+
.si-virginmedia::before { content: "\f5ef"; }
+
.si-virginmedia.si--color::before { color: #ED1A37; }
+
.si-virtualbox::before { content: "\f5f0"; }
+
.si-virtualbox.si--color::before { color: #2F61B4; }
+
.si-virustotal::before { content: "\f5f1"; }
+
.si-virustotal.si--color::before { color: #394EFF; }
+
.si-visa::before { content: "\f5f2"; }
+
.si-visa.si--color::before { color: #1A1F71; }
+
.si-visx::before { content: "\f5f3"; }
+
.si-visx.si--color::before { color: #FF1231; }
+
.si-vite::before { content: "\f5f4"; }
+
.si-vite.si--color::before { color: #646CFF; }
+
.si-vitepress::before { content: "\f5f5"; }
+
.si-vitepress.si--color::before { color: #5C73E7; }
+
.si-vitess::before { content: "\f5f6"; }
+
.si-vitess.si--color::before { color: #F16728; }
+
.si-vitest::before { content: "\f5f7"; }
+
.si-vitest.si--color::before { color: #6E9F18; }
+
.si-vivawallet::before { content: "\f5f8"; }
+
.si-vivawallet.si--color::before { color: #1F263A; }
+
.si-vivaldi::before { content: "\f5f9"; }
+
.si-vivaldi.si--color::before { color: #EF3939; }
+
.si-vivino::before { content: "\f5fa"; }
+
.si-vivino.si--color::before { color: #A61A30; }
+
.si-vivint::before { content: "\f5fb"; }
+
.si-vivint.si--color::before { color: #212721; }
+
.si-vivo::before { content: "\f5fc"; }
+
.si-vivo.si--color::before { color: #415FFF; }
+
.si-vk::before { content: "\f5fd"; }
+
.si-vk.si--color::before { color: #0077FF; }
+
.si-vlcmediaplayer::before { content: "\f5fe"; }
+
.si-vlcmediaplayer.si--color::before { color: #FF8800; }
+
.si-vmware::before { content: "\f5ff"; }
+
.si-vmware.si--color::before { color: #607078; }
+
.si-vodafone::before { content: "\f600"; }
+
.si-vodafone.si--color::before { color: #E60000; }
+
.si-voidlinux::before { content: "\f601"; }
+
.si-voidlinux.si--color::before { color: #478061; }
+
.si-voipdotms::before { content: "\f602"; }
+
.si-voipdotms.si--color::before { color: #E1382D; }
+
.si-volkswagen::before { content: "\f603"; }
+
.si-volkswagen.si--color::before { color: #151F5D; }
+
.si-volvo::before { content: "\f604"; }
+
.si-volvo.si--color::before { color: #003057; }
+
.si-vonage::before { content: "\f605"; }
+
.si-vonage.si--color::before { color: #000000; }
+
.si-vorondesign::before { content: "\f606"; }
+
.si-vorondesign.si--color::before { color: #ED3023; }
+
.si-vowpalwabbit::before { content: "\f607"; }
+
.si-vowpalwabbit.si--color::before { color: #FF81F9; }
+
.si-vox::before { content: "\f608"; }
+
.si-vox.si--color::before { color: #DA074A; }
+
.si-vrchat::before { content: "\f609"; }
+
.si-vrchat.si--color::before { color: #000000; }
+
.si-vsco::before { content: "\f60a"; }
+
.si-vsco.si--color::before { color: #000000; }
+
.si-vscodium::before { content: "\f60b"; }
+
.si-vscodium.si--color::before { color: #2F80ED; }
+
.si-vtex::before { content: "\f60c"; }
+
.si-vtex.si--color::before { color: #ED125F; }
+
.si-vuedotjs::before { content: "\f60d"; }
+
.si-vuedotjs.si--color::before { color: #4FC08D; }
+
.si-vuetify::before { content: "\f60e"; }
+
.si-vuetify.si--color::before { color: #1867C0; }
+
.si-vulkan::before { content: "\f60f"; }
+
.si-vulkan.si--color::before { color: #A41E22; }
+
.si-vultr::before { content: "\f610"; }
+
.si-vultr.si--color::before { color: #007BFC; }
+
.si-vyond::before { content: "\f611"; }
+
.si-vyond.si--color::before { color: #D95E26; }
+
.si-w3schools::before { content: "\f612"; }
+
.si-w3schools.si--color::before { color: #04AA6D; }
+
.si-wacom::before { content: "\f613"; }
+
.si-wacom.si--color::before { color: #000000; }
+
.si-wagmi::before { content: "\f614"; }
+
.si-wagmi.si--color::before { color: #000000; }
+
.si-wagtail::before { content: "\f615"; }
+
.si-wagtail.si--color::before { color: #43B1B0; }
+
.si-wails::before { content: "\f616"; }
+
.si-wails.si--color::before { color: #DF0000; }
+
.si-wakatime::before { content: "\f617"; }
+
.si-wakatime.si--color::before { color: #000000; }
+
.si-walkman::before { content: "\f618"; }
+
.si-walkman.si--color::before { color: #000000; }
+
.si-wallabag::before { content: "\f619"; }
+
.si-wallabag.si--color::before { color: #3F6184; }
+
.si-walletconnect::before { content: "\f61a"; }
+
.si-walletconnect.si--color::before { color: #3B99FC; }
+
.si-walmart::before { content: "\f61b"; }
+
.si-walmart.si--color::before { color: #0071CE; }
+
.si-wantedly::before { content: "\f61c"; }
+
.si-wantedly.si--color::before { color: #21BDDB; }
+
.si-wappalyzer::before { content: "\f61d"; }
+
.si-wappalyzer.si--color::before { color: #4608AD; }
+
.si-warnerbros::before { content: "\f61e"; }
+
.si-warnerbros.si--color::before { color: #004DB4; }
+
.si-warp::before { content: "\f61f"; }
+
.si-warp.si--color::before { color: #01A4FF; }
+
.si-wasabi::before { content: "\f620"; }
+
.si-wasabi.si--color::before { color: #01CD3E; }
+
.si-wasmcloud::before { content: "\f621"; }
+
.si-wasmcloud.si--color::before { color: #00BC8E; }
+
.si-wasmer::before { content: "\f622"; }
+
.si-wasmer.si--color::before { color: #4946DD; }
+
.si-watchtower::before { content: "\f623"; }
+
.si-watchtower.si--color::before { color: #416271; }
+
.si-wattpad::before { content: "\f624"; }
+
.si-wattpad.si--color::before { color: #FF500A; }
+
.si-wayland::before { content: "\f625"; }
+
.si-wayland.si--color::before { color: #FFBC00; }
+
.si-waze::before { content: "\f626"; }
+
.si-waze.si--color::before { color: #33CCFF; }
+
.si-wazirx::before { content: "\f627"; }
+
.si-wazirx.si--color::before { color: #3067F0; }
+
.si-wearos::before { content: "\f628"; }
+
.si-wearos.si--color::before { color: #4285F4; }
+
.si-weasyl::before { content: "\f629"; }
+
.si-weasyl.si--color::before { color: #990000; }
+
.si-webdotde::before { content: "\f62a"; }
+
.si-webdotde.si--color::before { color: #FFD800; }
+
.si-web3dotjs::before { content: "\f62b"; }
+
.si-web3dotjs.si--color::before { color: #F16822; }
+
.si-webassembly::before { content: "\f62c"; }
+
.si-webassembly.si--color::before { color: #654FF0; }
+
.si-webauthn::before { content: "\f62d"; }
+
.si-webauthn.si--color::before { color: #3423A6; }
+
.si-webcomponentsdotorg::before { content: "\f62e"; }
+
.si-webcomponentsdotorg.si--color::before { color: #29ABE2; }
+
.si-webdriverio::before { content: "\f62f"; }
+
.si-webdriverio.si--color::before { color: #EA5906; }
+
.si-webex::before { content: "\f630"; }
+
.si-webex.si--color::before { color: #000000; }
+
.si-webflow::before { content: "\f631"; }
+
.si-webflow.si--color::before { color: #146EF5; }
+
.si-webgl::before { content: "\f632"; }
+
.si-webgl.si--color::before { color: #990000; }
+
.si-webgpu::before { content: "\f633"; }
+
.si-webgpu.si--color::before { color: #005A9C; }
+
.si-weblate::before { content: "\f634"; }
+
.si-weblate.si--color::before { color: #2ECCAA; }
+
.si-webmin::before { content: "\f635"; }
+
.si-webmin.si--color::before { color: #7DA0D0; }
+
.si-webmoney::before { content: "\f636"; }
+
.si-webmoney.si--color::before { color: #036CB5; }
+
.si-webpack::before { content: "\f637"; }
+
.si-webpack.si--color::before { color: #8DD6F9; }
+
.si-webrtc::before { content: "\f638"; }
+
.si-webrtc.si--color::before { color: #333333; }
+
.si-webstorm::before { content: "\f639"; }
+
.si-webstorm.si--color::before { color: #000000; }
+
.si-webtoon::before { content: "\f63a"; }
+
.si-webtoon.si--color::before { color: #00D564; }
+
.si-webtrees::before { content: "\f63b"; }
+
.si-webtrees.si--color::before { color: #2694E8; }
+
.si-wechat::before { content: "\f63c"; }
+
.si-wechat.si--color::before { color: #07C160; }
+
.si-wegame::before { content: "\f63d"; }
+
.si-wegame.si--color::before { color: #FAAB00; }
+
.si-weightsandbiases::before { content: "\f63e"; }
+
.si-weightsandbiases.si--color::before { color: #FFBE00; }
+
.si-welcometothejungle::before { content: "\f63f"; }
+
.si-welcometothejungle.si--color::before { color: #FFCD00; }
+
.si-wellfound::before { content: "\f640"; }
+
.si-wellfound.si--color::before { color: #000000; }
+
.si-wellsfargo::before { content: "\f641"; }
+
.si-wellsfargo.si--color::before { color: #D71E28; }
+
.si-wemo::before { content: "\f642"; }
+
.si-wemo.si--color::before { color: #72D44C; }
+
.si-westerndigital::before { content: "\f643"; }
+
.si-westerndigital.si--color::before { color: #995DFF; }
+
.si-westernunion::before { content: "\f644"; }
+
.si-westernunion.si--color::before { color: #FFDD00; }
+
.si-wetransfer::before { content: "\f645"; }
+
.si-wetransfer.si--color::before { color: #409FFF; }
+
.si-wezterm::before { content: "\f646"; }
+
.si-wezterm.si--color::before { color: #4E49EE; }
+
.si-wgpu::before { content: "\f647"; }
+
.si-wgpu.si--color::before { color: #40E0D0; }
+
.si-whatsapp::before { content: "\f648"; }
+
.si-whatsapp.si--color::before { color: #25D366; }
+
.si-wheniwork::before { content: "\f649"; }
+
.si-wheniwork.si--color::before { color: #51A33D; }
+
.si-wikidotgg::before { content: "\f64a"; }
+
.si-wikidotgg.si--color::before { color: #FF1985; }
+
.si-wikidotjs::before { content: "\f64b"; }
+
.si-wikidotjs.si--color::before { color: #1976D2; }
+
.si-wikibooks::before { content: "\f64c"; }
+
.si-wikibooks.si--color::before { color: #006699; }
+
.si-wikidata::before { content: "\f64d"; }
+
.si-wikidata.si--color::before { color: #006699; }
+
.si-wikimediacommons::before { content: "\f64e"; }
+
.si-wikimediacommons.si--color::before { color: #006699; }
+
.si-wikimediafoundation::before { content: "\f64f"; }
+
.si-wikimediafoundation.si--color::before { color: #000000; }
+
.si-wikipedia::before { content: "\f650"; }
+
.si-wikipedia.si--color::before { color: #000000; }
+
.si-wikiquote::before { content: "\f651"; }
+
.si-wikiquote.si--color::before { color: #006699; }
+
.si-wikiversity::before { content: "\f652"; }
+
.si-wikiversity.si--color::before { color: #00649A; }
+
.si-wikivoyage::before { content: "\f653"; }
+
.si-wikivoyage.si--color::before { color: #006699; }
+
.si-winamp::before { content: "\f654"; }
+
.si-winamp.si--color::before { color: #F93821; }
+
.si-wine::before { content: "\f655"; }
+
.si-wine.si--color::before { color: #800000; }
+
.si-wipro::before { content: "\f656"; }
+
.si-wipro.si--color::before { color: #341C53; }
+
.si-wire::before { content: "\f657"; }
+
.si-wire.si--color::before { color: #000000; }
+
.si-wireguard::before { content: "\f658"; }
+
.si-wireguard.si--color::before { color: #88171A; }
+
.si-wireshark::before { content: "\f659"; }
+
.si-wireshark.si--color::before { color: #1679A7; }
+
.si-wise::before { content: "\f65a"; }
+
.si-wise.si--color::before { color: #9FE870; }
+
.si-wish::before { content: "\f65b"; }
+
.si-wish.si--color::before { color: #32E476; }
+
.si-wistia::before { content: "\f65c"; }
+
.si-wistia.si--color::before { color: #58B7FE; }
+
.si-wix::before { content: "\f65d"; }
+
.si-wix.si--color::before { color: #0C6EFC; }
+
.si-wizzair::before { content: "\f65e"; }
+
.si-wizzair.si--color::before { color: #C6007E; }
+
.si-wolfram::before { content: "\f65f"; }
+
.si-wolfram.si--color::before { color: #DD1100; }
+
.si-wolframlanguage::before { content: "\f660"; }
+
.si-wolframlanguage.si--color::before { color: #DD1100; }
+
.si-wolframmathematica::before { content: "\f661"; }
+
.si-wolframmathematica.si--color::before { color: #DD1100; }
+
.si-wondershare::before { content: "\f662"; }
+
.si-wondershare.si--color::before { color: #000000; }
+
.si-wondersharefilmora::before { content: "\f663"; }
+
.si-wondersharefilmora.si--color::before { color: #07273D; }
+
.si-woo::before { content: "\f664"; }
+
.si-woo.si--color::before { color: #96588A; }
+
.si-woocommerce::before { content: "\f665"; }
+
.si-woocommerce.si--color::before { color: #96588A; }
+
.si-wordpress::before { content: "\f666"; }
+
.si-wordpress.si--color::before { color: #21759B; }
+
.si-workplace::before { content: "\f667"; }
+
.si-workplace.si--color::before { color: #4526CE; }
+
.si-worldhealthorganization::before { content: "\f668"; }
+
.si-worldhealthorganization.si--color::before { color: #0093D5; }
+
.si-wpengine::before { content: "\f669"; }
+
.si-wpengine.si--color::before { color: #0ECAD4; }
+
.si-wprocket::before { content: "\f66a"; }
+
.si-wprocket.si--color::before { color: #F56640; }
+
.si-wpexplorer::before { content: "\f66b"; }
+
.si-wpexplorer.si--color::before { color: #2563EB; }
+
.si-writedotas::before { content: "\f66c"; }
+
.si-writedotas.si--color::before { color: #5AC4EE; }
+
.si-wwe::before { content: "\f66d"; }
+
.si-wwe.si--color::before { color: #000000; }
+
.si-wwise::before { content: "\f66e"; }
+
.si-wwise.si--color::before { color: #00549F; }
+
.si-wxt::before { content: "\f66f"; }
+
.si-wxt.si--color::before { color: #67D55E; }
+
.si-wykop::before { content: "\f670"; }
+
.si-wykop.si--color::before { color: #367DA9; }
+
.si-wyze::before { content: "\f671"; }
+
.si-wyze.si--color::before { color: #1DF0BB; }
+
.si-x::before { content: "\f672"; }
+
.si-x.si--color::before { color: #000000; }
+
.si-xdotorg::before { content: "\f673"; }
+
.si-xdotorg.si--color::before { color: #F28834; }
+
.si-xampp::before { content: "\f674"; }
+
.si-xampp.si--color::before { color: #FB7A24; }
+
.si-xcode::before { content: "\f675"; }
+
.si-xcode.si--color::before { color: #147EFB; }
+
.si-xdadevelopers::before { content: "\f676"; }
+
.si-xdadevelopers.si--color::before { color: #EA7100; }
+
.si-xendit::before { content: "\f677"; }
+
.si-xendit.si--color::before { color: #4573FF; }
+
.si-xero::before { content: "\f678"; }
+
.si-xero.si--color::before { color: #13B5EA; }
+
.si-xfce::before { content: "\f679"; }
+
.si-xfce.si--color::before { color: #2284F2; }
+
.si-xiaohongshu::before { content: "\f67a"; }
+
.si-xiaohongshu.si--color::before { color: #FF2442; }
+
.si-xiaomi::before { content: "\f67b"; }
+
.si-xiaomi.si--color::before { color: #FF6900; }
+
.si-xing::before { content: "\f67c"; }
+
.si-xing.si--color::before { color: #006567; }
+
.si-xml::before { content: "\f67d"; }
+
.si-xml.si--color::before { color: #005FAD; }
+
.si-xmpp::before { content: "\f67e"; }
+
.si-xmpp.si--color::before { color: #002B5C; }
+
.si-xo::before { content: "\f67f"; }
+
.si-xo.si--color::before { color: #5ED9C7; }
+
.si-xrp::before { content: "\f680"; }
+
.si-xrp.si--color::before { color: #25A768; }
+
.si-xsplit::before { content: "\f681"; }
+
.si-xsplit.si--color::before { color: #0095DE; }
+
.si-xstate::before { content: "\f682"; }
+
.si-xstate.si--color::before { color: #2C3E50; }
+
.si-xubuntu::before { content: "\f683"; }
+
.si-xubuntu.si--color::before { color: #0044AA; }
+
.si-ycombinator::before { content: "\f684"; }
+
.si-ycombinator.si--color::before { color: #F0652F; }
+
.si-yabai::before { content: "\f685"; }
+
.si-yabai.si--color::before { color: #00364B; }
+
.si-yale::before { content: "\f686"; }
+
.si-yale.si--color::before { color: #FFD900; }
+
.si-yamahacorporation::before { content: "\f687"; }
+
.si-yamahacorporation.si--color::before { color: #4B1E78; }
+
.si-yamahamotorcorporation::before { content: "\f688"; }
+
.si-yamahamotorcorporation.si--color::before { color: #E60012; }
+
.si-yaml::before { content: "\f689"; }
+
.si-yaml.si--color::before { color: #CB171E; }
+
.si-yandexcloud::before { content: "\f68a"; }
+
.si-yandexcloud.si--color::before { color: #5282FF; }
+
.si-yarn::before { content: "\f68b"; }
+
.si-yarn.si--color::before { color: #2C8EBB; }
+
.si-yelp::before { content: "\f68c"; }
+
.si-yelp.si--color::before { color: #FF1A1A; }
+
.si-yeti::before { content: "\f68d"; }
+
.si-yeti.si--color::before { color: #00263C; }
+
.si-yii::before { content: "\f68e"; }
+
.si-yii.si--color::before { color: #40B3D8; }
+
.si-yoast::before { content: "\f68f"; }
+
.si-yoast.si--color::before { color: #A61E69; }
+
.si-yolo::before { content: "\f690"; }
+
.si-yolo.si--color::before { color: #111F68; }
+
.si-youhodler::before { content: "\f691"; }
+
.si-youhodler.si--color::before { color: #546DF9; }
+
.si-youtube::before { content: "\f692"; }
+
.si-youtube.si--color::before { color: #FF0000; }
+
.si-youtubegaming::before { content: "\f693"; }
+
.si-youtubegaming.si--color::before { color: #FF0000; }
+
.si-youtubekids::before { content: "\f694"; }
+
.si-youtubekids.si--color::before { color: #FF0000; }
+
.si-youtubemusic::before { content: "\f695"; }
+
.si-youtubemusic.si--color::before { color: #FF0000; }
+
.si-youtubeshorts::before { content: "\f696"; }
+
.si-youtubeshorts.si--color::before { color: #FF0000; }
+
.si-youtubestudio::before { content: "\f697"; }
+
.si-youtubestudio.si--color::before { color: #FF0000; }
+
.si-youtubetv::before { content: "\f698"; }
+
.si-youtubetv.si--color::before { color: #FF0000; }
+
.si-yr::before { content: "\f699"; }
+
.si-yr.si--color::before { color: #00B9F1; }
+
.si-yubico::before { content: "\f69a"; }
+
.si-yubico.si--color::before { color: #84BD00; }
+
.si-yunohost::before { content: "\f69b"; }
+
.si-yunohost.si--color::before { color: #000000; }
+
.si-zabka::before { content: "\f69c"; }
+
.si-zabka.si--color::before { color: #006420; }
+
.si-zaim::before { content: "\f69d"; }
+
.si-zaim.si--color::before { color: #50A135; }
+
.si-zalando::before { content: "\f69e"; }
+
.si-zalando.si--color::before { color: #FF6900; }
+
.si-zalo::before { content: "\f69f"; }
+
.si-zalo.si--color::before { color: #0068FF; }
+
.si-zap::before { content: "\f6a0"; }
+
.si-zap.si--color::before { color: #00549E; }
+
.si-zapier::before { content: "\f6a1"; }
+
.si-zapier.si--color::before { color: #FF4F00; }
+
.si-zara::before { content: "\f6a2"; }
+
.si-zara.si--color::before { color: #000000; }
+
.si-zazzle::before { content: "\f6a3"; }
+
.si-zazzle.si--color::before { color: #212121; }
+
.si-zcash::before { content: "\f6a4"; }
+
.si-zcash.si--color::before { color: #F3B724; }
+
.si-zcool::before { content: "\f6a5"; }
+
.si-zcool.si--color::before { color: #FFF200; }
+
.si-zdf::before { content: "\f6a6"; }
+
.si-zdf.si--color::before { color: #FA7D19; }
+
.si-zebpay::before { content: "\f6a7"; }
+
.si-zebpay.si--color::before { color: #2072EF; }
+
.si-zebratechnologies::before { content: "\f6a8"; }
+
.si-zebratechnologies.si--color::before { color: #000000; }
+
.si-zedindustries::before { content: "\f6a9"; }
+
.si-zedindustries.si--color::before { color: #084CCF; }
+
.si-zelle::before { content: "\f6aa"; }
+
.si-zelle.si--color::before { color: #6D1ED4; }
+
.si-zend::before { content: "\f6ab"; }
+
.si-zend.si--color::before { color: #0679EA; }
+
.si-zendesk::before { content: "\f6ac"; }
+
.si-zendesk.si--color::before { color: #03363D; }
+
.si-zenn::before { content: "\f6ad"; }
+
.si-zenn.si--color::before { color: #3EA8FF; }
+
.si-zenodo::before { content: "\f6ae"; }
+
.si-zenodo.si--color::before { color: #1682D4; }
+
.si-zensar::before { content: "\f6af"; }
+
.si-zensar.si--color::before { color: #000000; }
+
.si-zerodha::before { content: "\f6b0"; }
+
.si-zerodha.si--color::before { color: #387ED1; }
+
.si-zerotier::before { content: "\f6b1"; }
+
.si-zerotier.si--color::before { color: #FFB441; }
+
.si-zettlr::before { content: "\f6b2"; }
+
.si-zettlr.si--color::before { color: #1CB27E; }
+
.si-zhihu::before { content: "\f6b3"; }
+
.si-zhihu.si--color::before { color: #0084FF; }
+
.si-zig::before { content: "\f6b4"; }
+
.si-zig.si--color::before { color: #F7A41D; }
+
.si-zigbee::before { content: "\f6b5"; }
+
.si-zigbee.si--color::before { color: #EB0443; }
+
.si-zigbee2mqtt::before { content: "\f6b6"; }
+
.si-zigbee2mqtt.si--color::before { color: #FFC135; }
+
.si-ziggo::before { content: "\f6b7"; }
+
.si-ziggo.si--color::before { color: #F48C00; }
+
.si-zilch::before { content: "\f6b8"; }
+
.si-zilch.si--color::before { color: #00D287; }
+
.si-zillow::before { content: "\f6b9"; }
+
.si-zillow.si--color::before { color: #006AFF; }
+
.si-zincsearch::before { content: "\f6ba"; }
+
.si-zincsearch.si--color::before { color: #5BA37F; }
+
.si-zingat::before { content: "\f6bb"; }
+
.si-zingat.si--color::before { color: #009CFB; }
+
.si-zod::before { content: "\f6bc"; }
+
.si-zod.si--color::before { color: #3E67B1; }
+
.si-zoho::before { content: "\f6bd"; }
+
.si-zoho.si--color::before { color: #E42527; }
+
.si-zoiper::before { content: "\f6be"; }
+
.si-zoiper.si--color::before { color: #F47920; }
+
.si-zomato::before { content: "\f6bf"; }
+
.si-zomato.si--color::before { color: #E23744; }
+
.si-zoom::before { content: "\f6c0"; }
+
.si-zoom.si--color::before { color: #0B5CFF; }
+
.si-zorin::before { content: "\f6c1"; }
+
.si-zorin.si--color::before { color: #15A6F0; }
+
.si-zotero::before { content: "\f6c2"; }
+
.si-zotero.si--color::before { color: #CC2936; }
+
.si-zsh::before { content: "\f6c3"; }
+
.si-zsh.si--color::before { color: #F15A24; }
+
.si-zulip::before { content: "\f6c4"; }
+
.si-zulip.si--color::before { color: #6492FE; }
+
.si-zyte::before { content: "\f6c5"; }
+
.si-zyte.si--color::before { color: #B02CCE; }
scripts/simple-icons/src/simple-icons.woff2

This is a binary file and will not be displayed.

+16
src/_data.toml
···
+
[metas]
+
site = "dish's space"
+
lang = "en"
+
generator = true
+
+
[author]
+
name = "dish"
+
pronouns = "fox/it/she"
+
icon = "assets/author.png"
+
[author.links]
+
email = "pyrox@pyrox.dev"
+
linkedin = "pyrox-rabach"
+
github = "pyrox0"
+
forgejo = "https://git.pyrox.dev/pyrox"
+
kofi = "pyroxdev"
+
bluesky = "pyrox.dev"
+33
src/_includes/components/footer.vto
···
+
<footer class="bg-mantle min-h-24 inset-x-0 bottom-0 absolute border-t-2 border-surface1 grid text-text grid-cols-3">
+
<div class="flex flex-row justify-center gap-x-4 content-center">
+
<i class="bi bi-exclamation-triangle text-yellow self-center justify-self-end text-4xl"></i>
+
<p class="text-text text-xl self-center">some<b>thing</b>'s space</p>
+
</div>
+
<div class="mt-2">
+
<p class="text-overlay2 text-lg">Social</p>
+
<ul class="list-none space-x-4 text-3xl text-subtext1">
+
<li class="inline-block">
+
<a href="https://bsky.app/profile/{{ author.links.bluesky }}" rel="me">
+
<i class="si si-bluesky self-center justify-self-end"></i>
+
</a>
+
</li>
+
<li class="inline-block">
+
<a href="https://github.com/{{ author.links.github }}" rel="me">
+
<i class="si si-github self-center justify-self-end"></i>
+
</a>
+
</li>
+
<li class="inline-block">
+
<a href="https://ko-fi.com/{{ author.links.kofi }}" rel="me">
+
<i class="si si-kofi self-center justify-self-end"></i>
+
</a>
+
</li>
+
<li class="inline-block">
+
<a href="{{ author.links.forgejo }}" rel="me">
+
<i aria-label="Forgejo logo" class="si si-forgejo self-center justify-self-end"></i>
+
</a>
+
</li>
+
</ul>
+
</div>
+
<div class="text-mauve">meow</div>
+
</footer>
+
<div style="display:none" class="latte"></div>
+9
src/_includes/components/head.vto
···
+
<meta charset="utf-8" />
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
+
<meta name="view-transition" content="same-origin" />
+
<meta name="supported-color-schemes" content="light dark" />
+
<link rel="alternate" type="application/feed+json" href="/blog.json" />
+
<link rel="alternate" type="application/rss+xml" href="/blog.rss" />
+
<link rel="stylesheet" href="/static/styles.css" />
+
<link rel="stylesheet" href="/static/icons/bsi.min.css" />
+
<link rel="stylesheet" href="/static/icons/si.min.css" />
+3
src/_includes/components/navbar.vto
···
+
<header role="banner">
+
+
</header>
+11
src/_includes/layouts/home.vto
···
+
<!DOCTYPE html>
+
<html>
+
<head>
+
{{ include "components/head.vto" }}
+
</head>
+
<body id="body" class="mocha bg-crust">
+
<h1 class="text-blue">meow</h1>
+
<h2 class="text-mauve">the fitnessgram pacer test</h2>
+
{{ include "components/footer.vto" }}
+
</body>
+
</html>
+6
src/index.vto
···
+
---
+
title: dish's space
+
description: "Lover of computers, programming, and sysadmin."
+
layout: layouts/home.vto
+
---
+
+22
src/static/icons/bsi.min.css
···
+
+
@font-face {
+
font-display: block;
+
font-family: bootstrap-icons;
+
src: url("/static/icons/bsi.min.woff2?v=1739124270") format("woff2");
+
}
+
.bi::before,
+
[class*=" bi-"]::before,
+
[class^="bi-"]::before {
+
display: inline-block;
+
font-family: bootstrap-icons !important;
+
font-style: normal;
+
font-weight: 400 !important;
+
font-variant: normal;
+
text-transform: none;
+
line-height: 1;
+
vertical-align: -0.125em;
+
-webkit-font-smoothing: antialiased;
+
-moz-osx-font-smoothing: grayscale;
+
}.bi-exclamation-triangle::before {
+
content: "\f33b";
+
}
src/static/icons/bsi.min.woff2

This is a binary file and will not be displayed.

+11
src/static/icons/si.min.css
···
+
@font-face {
+
font-family: "Simple Icons";
+
src:
+
url("/static/icons/si.min.woff2?v=1739141282") format("woff2")
+
}
+
+
.si {
+
font-style: normal;
+
font-family: "Simple Icons", sans-serif;
+
vertical-align: middle;
+
}.si-bluesky::before { content: "\eb81"; }.si-forgejo::before { content: "\edf3"; }.si-github::before { content: "\ee42"; }.si-kofi::before { content: "\eff6"; }
src/static/icons/si.min.woff2

This is a binary file and will not be displayed.

+3
src/static/styles.css
···
+
@tailwind base;
+
@tailwind components;
+
@tailwind utilities;